]> jfr.im git - solanum.git/blame - src/s_user.c
Missed file from previous changeset
[solanum.git] / src / s_user.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * s_user.c: User related functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
0a61720a 24 * $Id: s_user.c 3586 2007-11-20 11:16:43Z nenolod $
212380e3
AC
25 */
26
27#include "stdinc.h"
212380e3
AC
28#include "s_user.h"
29#include "channel.h"
30#include "class.h"
31#include "client.h"
32#include "common.h"
33#include "hash.h"
34#include "irc_string.h"
35#include "sprintf_irc.h"
36#include "ircd.h"
37#include "listener.h"
38#include "msg.h"
39#include "numeric.h"
212380e3
AC
40#include "s_conf.h"
41#include "s_newconf.h"
4016731b 42#include "logger.h"
212380e3
AC
43#include "s_serv.h"
44#include "s_stats.h"
45#include "scache.h"
46#include "send.h"
47#include "supported.h"
48#include "whowas.h"
212380e3
AC
49#include "packet.h"
50#include "reject.h"
51#include "cache.h"
52#include "hook.h"
53#include "monitor.h"
54#include "snomask.h"
55#include "blacklist.h"
92fb5c31 56#include "substitution.h"
212380e3
AC
57
58static void report_and_set_user_flags(struct Client *, struct ConfItem *);
59void user_welcome(struct Client *source_p);
60
61extern char *crypt();
62
63char umodebuf[128];
64
a8086a7c 65static int orphaned_umodes = 0;
212380e3
AC
66int user_modes[256] = {
67 /* 0x00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x0F */
68 /* 0x10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x1F */
69 /* 0x20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x2F */
70 /* 0x30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x3F */
71 0, /* @ */
72 0, /* A */
73 0, /* B */
74 0, /* C */
75 UMODE_DEAF, /* D */
76 0, /* E */
77 0, /* F */
78 0, /* G */
79 0, /* H */
80 0, /* I */
81 0, /* J */
82 0, /* K */
83 0, /* L */
84 0, /* M */
85 0, /* N */
86 0, /* O */
87 0, /* P */
88 UMODE_NOFORWARD, /* Q */
89 UMODE_REGONLYMSG, /* R */
90 UMODE_SERVICE, /* S */
91 0, /* T */
92 0, /* U */
93 0, /* V */
94 0, /* W */
95 0, /* X */
96 0, /* Y */
3318e109 97 UMODE_SSLCLIENT, /* Z */
212380e3
AC
98 /* 0x5B */ 0, 0, 0, 0, 0, 0, /* 0x60 */
99 UMODE_ADMIN, /* a */
100 0, /* b */
101 0, /* c */
102 0, /* d */
103 0, /* e */
104 0, /* f */
105 UMODE_CALLERID, /* g */
106 0, /* h */
107 UMODE_INVISIBLE, /* i */
108 0, /* j */
109 0, /* k */
110 UMODE_LOCOPS, /* l */
111 0, /* m */
112 0, /* n */
113 UMODE_OPER, /* o */
114 0, /* p */
115 0, /* q */
116 0, /* r */
117 UMODE_SERVNOTICE, /* s */
118 0, /* t */
119 0, /* u */
120 0, /* v */
121 UMODE_WALLOP, /* w */
122 0, /* x */
123 0, /* y */
124 UMODE_OPERWALL, /* z */
125 /* 0x7B */ 0, 0, 0, 0, 0, /* 0x7F */
126 /* 0x80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x9F */
127 /* 0x90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x9F */
128 /* 0xA0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xAF */
129 /* 0xB0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xBF */
130 /* 0xC0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xCF */
131 /* 0xD0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xDF */
132 /* 0xE0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xEF */
133 /* 0xF0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 0xFF */
134};
135/* *INDENT-ON* */
136
137/*
138 * show_lusers -
139 *
140 * inputs - pointer to client
141 * output -
142 * side effects - display to client user counts etc.
143 */
144int
145show_lusers(struct Client *source_p)
146{
330fc5c1
AC
147 if(rb_dlink_list_length(&lclient_list) > (unsigned long)MaxClientCount)
148 MaxClientCount = rb_dlink_list_length(&lclient_list);
2f15f871 149
330fc5c1 150 if((rb_dlink_list_length(&lclient_list) + rb_dlink_list_length(&serv_list)) >
2f15f871 151 (unsigned long)MaxConnectionCount)
330fc5c1
AC
152 MaxConnectionCount = rb_dlink_list_length(&lclient_list) +
153 rb_dlink_list_length(&serv_list);
2f15f871 154
212380e3
AC
155 sendto_one_numeric(source_p, RPL_LUSERCLIENT, form_str(RPL_LUSERCLIENT),
156 (Count.total - Count.invisi),
330fc5c1 157 Count.invisi, rb_dlink_list_length(&global_serv_list));
212380e3 158
330fc5c1 159 if(rb_dlink_list_length(&oper_list) > 0)
212380e3 160 sendto_one_numeric(source_p, RPL_LUSEROP,
330fc5c1 161 form_str(RPL_LUSEROP), rb_dlink_list_length(&oper_list));
212380e3 162
330fc5c1 163 if(rb_dlink_list_length(&unknown_list) > 0)
212380e3
AC
164 sendto_one_numeric(source_p, RPL_LUSERUNKNOWN,
165 form_str(RPL_LUSERUNKNOWN),
330fc5c1 166 rb_dlink_list_length(&unknown_list));
212380e3 167
330fc5c1 168 if(rb_dlink_list_length(&global_channel_list) > 0)
212380e3
AC
169 sendto_one_numeric(source_p, RPL_LUSERCHANNELS,
170 form_str(RPL_LUSERCHANNELS),
330fc5c1 171 rb_dlink_list_length(&global_channel_list));
212380e3
AC
172
173 sendto_one_numeric(source_p, RPL_LUSERME, form_str(RPL_LUSERME),
330fc5c1
AC
174 rb_dlink_list_length(&lclient_list),
175 rb_dlink_list_length(&serv_list));
212380e3
AC
176
177 sendto_one_numeric(source_p, RPL_LOCALUSERS,
178 form_str(RPL_LOCALUSERS),
330fc5c1 179 rb_dlink_list_length(&lclient_list),
212380e3 180 Count.max_loc,
330fc5c1 181 rb_dlink_list_length(&lclient_list),
212380e3
AC
182 Count.max_loc);
183
184 sendto_one_numeric(source_p, RPL_GLOBALUSERS, form_str(RPL_GLOBALUSERS),
185 Count.total, Count.max_tot,
186 Count.total, Count.max_tot);
187
188 sendto_one_numeric(source_p, RPL_STATSCONN,
189 form_str(RPL_STATSCONN),
190 MaxConnectionCount, MaxClientCount,
191 Count.totalrestartcount);
192
212380e3
AC
193 return 0;
194}
195
196/*
197** register_local_user
198** This function is called when both NICK and USER messages
199** have been accepted for the client, in whatever order. Only
200** after this, is the USER message propagated.
201**
202** NICK's must be propagated at once when received, although
203** it would be better to delay them too until full info is
204** available. Doing it is not so simple though, would have
205** to implement the following:
206**
207** (actually it has been implemented already for a while) -orabidoo
208**
209** 1) user telnets in and gives only "NICK foobar" and waits
210** 2) another user far away logs in normally with the nick
211** "foobar" (quite legal, as this server didn't propagate
212** it).
213** 3) now this server gets nick "foobar" from outside, but
214** has alread the same defined locally. Current server
215** would just issue "KILL foobar" to clean out dups. But,
216** this is not fair. It should actually request another
217** nick from local user or kill him/her...
218*/
219
220int
221register_local_user(struct Client *client_p, struct Client *source_p, const char *username)
222{
35f6f850 223 struct ConfItem *aconf, *xconf;
212380e3
AC
224 struct User *user = source_p->user;
225 char tmpstr2[IRCD_BUFSIZE];
226 char ipaddr[HOSTIPLEN];
227 char myusername[USERLEN+1];
228 int status;
229
230 s_assert(NULL != source_p);
231 s_assert(MyConnect(source_p));
232 s_assert(source_p->username != username);
233
234 if(source_p == NULL)
235 return -1;
236
237 if(IsAnyDead(source_p))
238 return -1;
239
240 if(ConfigFileEntry.ping_cookie)
241 {
242 if(!(source_p->flags & FLAGS_PINGSENT) && source_p->localClient->random_ping == 0)
243 {
244 source_p->localClient->random_ping = (unsigned long) (rand() * rand()) << 1;
245 sendto_one(source_p, "PING :%08lX",
246 (unsigned long) source_p->localClient->random_ping);
247 source_p->flags |= FLAGS_PINGSENT;
248 return -1;
249 }
095328a7 250 if(!(source_p->flags & FLAGS_PING_COOKIE))
212380e3
AC
251 {
252 return -1;
253 }
254 }
255
256 /* hasnt finished client cap negotiation */
095328a7 257 if(source_p->flags & FLAGS_CLICAP)
212380e3
AC
258 return -1;
259
260 /* still has DNSbls to validate against */
330fc5c1 261 if(rb_dlink_list_length(&source_p->preClient->dnsbl_queries) > 0)
212380e3
AC
262 return -1;
263
e3354945 264 client_p->localClient->last = rb_current_time();
212380e3
AC
265 /* Straight up the maximum rate of flooding... */
266 source_p->localClient->allow_read = MAX_FLOOD_BURST;
267
268 /* XXX - fixme. we shouldnt have to build a users buffer twice.. */
269 if(!IsGotId(source_p) && (strchr(username, '[') != NULL))
270 {
271 const char *p;
272 int i = 0;
273
274 p = username;
275
276 while(*p && i < USERLEN)
277 {
278 if(*p != '[')
279 myusername[i++] = *p;
280 p++;
281 }
282
283 myusername[i] = '\0';
284 username = myusername;
285 }
286
287 if((status = check_client(client_p, source_p, username)) < 0)
288 return (CLIENT_EXITED);
289
290 /* Apply nick override */
291 if(*source_p->preClient->spoofnick)
292 {
fa94d8fb
AC
293 char note[NICKLEN + 10];
294
212380e3 295 del_from_client_hash(source_p->name, source_p);
f427c8b0 296 rb_strlcpy(source_p->name, source_p->preClient->spoofnick, NICKLEN + 1);
212380e3 297 add_to_client_hash(source_p->name, source_p);
fa94d8fb
AC
298
299 rb_snprintf(note, NICKLEN + 10, "Nick: %s", source_p->name);
300 rb_note(source_p->localClient->F, note);
212380e3
AC
301 }
302
303 if(!valid_hostname(source_p->host))
304 {
5366977b 305 sendto_one_notice(source_p, ":*** Notice -- You have an illegal character in your hostname");
212380e3 306
f427c8b0 307 rb_strlcpy(source_p->host, source_p->sockhost, sizeof(source_p->host));
212380e3
AC
308 }
309
310
311 aconf = source_p->localClient->att_conf;
312
313 if(aconf == NULL)
314 {
315 exit_client(client_p, source_p, &me, "*** Not Authorised");
316 return (CLIENT_EXITED);
317 }
318
319 if(!IsGotId(source_p))
320 {
321 const char *p;
322 int i = 0;
323
324 if(IsNeedIdentd(aconf))
325 {
47adde3d 326 ServerStats.is_ref++;
5366977b 327 sendto_one_notice(source_p, ":*** Notice -- You need to install identd to use this server");
212380e3
AC
328 exit_client(client_p, source_p, &me, "Install identd");
329 return (CLIENT_EXITED);
330 }
331
332 /* dont replace username if its supposed to be spoofed --fl */
333 if(!IsConfDoSpoofIp(aconf) || !strchr(aconf->name, '@'))
334 {
335 p = username;
336
337 if(!IsNoTilde(aconf))
338 source_p->username[i++] = '~';
339
340 while (*p && i < USERLEN)
341 {
342 if(*p != '[')
343 source_p->username[i++] = *p;
344 p++;
345 }
346
347 source_p->username[i] = '\0';
348 }
349 }
350
351 if(IsNeedSasl(aconf) && !*user->suser)
352 {
47adde3d 353 ServerStats.is_ref++;
5366977b 354 sendto_one_notice(source_p, ":*** Notice -- You need to identify via SASL to use this server");
212380e3
AC
355 exit_client(client_p, source_p, &me, "SASL access only");
356 return (CLIENT_EXITED);
357 }
358
359 /* password check */
360 if(!EmptyString(aconf->passwd))
361 {
362 const char *encr;
363
364 if(EmptyString(source_p->localClient->passwd))
365 encr = "";
366 else if(IsConfEncrypted(aconf))
367 encr = crypt(source_p->localClient->passwd, aconf->passwd);
368 else
369 encr = source_p->localClient->passwd;
370
371 if(strcmp(encr, aconf->passwd))
372 {
47adde3d 373 ServerStats.is_ref++;
212380e3
AC
374 sendto_one(source_p, form_str(ERR_PASSWDMISMATCH), me.name, source_p->name);
375 exit_client(client_p, source_p, &me, "Bad Password");
376 return (CLIENT_EXITED);
377 }
378
379 /* clear password only if used now, otherwise send it
380 * to services -- jilles */
381 if(source_p->localClient->passwd)
382 {
383 memset(source_p->localClient->passwd, 0, strlen(source_p->localClient->passwd));
637c4932 384 rb_free(source_p->localClient->passwd);
212380e3
AC
385 source_p->localClient->passwd = NULL;
386 }
387 }
388
389 /* report if user has &^>= etc. and set flags as needed in source_p */
390 report_and_set_user_flags(source_p, aconf);
391
392 /* Limit clients */
393 /*
394 * We want to be able to have servers and F-line clients
395 * connect, so save room for "buffer" connections.
396 * Smaller servers may want to decrease this, and it should
397 * probably be just a percentage of the MAXCLIENTS...
398 * -Taner
399 */
400 /* Except "F:" clients */
330fc5c1 401 if(rb_dlink_list_length(&lclient_list) >=
5ca543e7 402 (unsigned long)GlobalSetOptions.maxclients && !IsConfExemptLimits(aconf))
212380e3
AC
403 {
404 sendto_realops_snomask(SNO_FULL, L_ALL,
405 "Too many clients, rejecting %s[%s].", source_p->name, source_p->host);
406
47adde3d 407 ServerStats.is_ref++;
212380e3
AC
408 exit_client(client_p, source_p, &me, "Sorry, server is full - try later");
409 return (CLIENT_EXITED);
410 }
411
212380e3
AC
412 /* kline exemption extends to xline too */
413 if(!IsExemptKline(source_p) &&
35f6f850 414 (xconf = find_xline(source_p->info, 1)) != NULL)
212380e3 415 {
47adde3d 416 ServerStats.is_ref++;
54ac8b60 417 add_reject(source_p, xconf->name, NULL);
212380e3
AC
418 exit_client(client_p, source_p, &me, "Bad user info");
419 return CLIENT_EXITED;
420 }
421
422 /* dnsbl check */
423 if (source_p->preClient->dnsbl_listed != NULL)
424 {
425 if (IsExemptKline(source_p) || IsConfExemptDNSBL(aconf))
426 sendto_one_notice(source_p, ":*** Your IP address %s is listed in %s, but you are exempt",
427 source_p->sockhost, source_p->preClient->dnsbl_listed->host);
428 else
429 {
330fc5c1 430 rb_dlink_list varlist = { NULL, NULL, 0 };
92fb5c31
AC
431
432 substitution_append_var(&varlist, "nick", source_p->name);
433 substitution_append_var(&varlist, "ip", source_p->sockhost);
434 substitution_append_var(&varlist, "host", source_p->host);
435 substitution_append_var(&varlist, "dnsbl-host", source_p->preClient->dnsbl_listed->host);
436 substitution_append_var(&varlist, "network-name", ServerInfo.network_name);
437
47adde3d 438 ServerStats.is_ref++;
92fb5c31 439
212380e3
AC
440 sendto_one(source_p, form_str(ERR_YOUREBANNEDCREEP),
441 me.name, source_p->name,
92fb5c31
AC
442 substitution_parse(source_p->preClient->dnsbl_listed->reject_reason, &varlist));
443
444 substitution_free(&varlist);
445
212380e3
AC
446 sendto_one_notice(source_p, ":*** Your IP address %s is listed in %s",
447 source_p->sockhost, source_p->preClient->dnsbl_listed->host);
448 source_p->preClient->dnsbl_listed->hits++;
54ac8b60 449 add_reject(source_p, NULL, NULL);
212380e3
AC
450 exit_client(client_p, source_p, &me, "*** Banned (DNS blacklist)");
451 return CLIENT_EXITED;
452 }
453 }
454
0734f634
JT
455 /* valid user name check */
456
457 if(!valid_username(source_p->username))
458 {
459 sendto_realops_snomask(SNO_REJ, L_ALL,
460 "Invalid username: %s (%s@%s)",
461 source_p->name, source_p->username, source_p->host);
47adde3d 462 ServerStats.is_ref++;
cc32202d
AC
463 sendto_one_notice(source_p, ":*** Your username is invalid. Please make sure that your username contains "
464 "only alphanumeric characters.");
b2f0da88 465 rb_sprintf(tmpstr2, "Invalid username [%s]", source_p->username);
0734f634
JT
466 exit_client(client_p, source_p, &me, tmpstr2);
467 return (CLIENT_EXITED);
468 }
469
470 /* end of valid user name check */
471
212380e3 472 /* Store original hostname -- jilles */
f427c8b0 473 rb_strlcpy(source_p->orighost, source_p->host, HOSTLEN + 1);
212380e3
AC
474
475 /* Spoof user@host */
476 if(*source_p->preClient->spoofuser)
f427c8b0 477 rb_strlcpy(source_p->username, source_p->preClient->spoofuser, USERLEN + 1);
212380e3
AC
478 if(*source_p->preClient->spoofhost)
479 {
f427c8b0 480 rb_strlcpy(source_p->host, source_p->preClient->spoofhost, HOSTLEN + 1);
212380e3
AC
481 if (irccmp(source_p->host, source_p->orighost))
482 SetDynSpoof(source_p);
483 }
484
e2b44358
JT
485 source_p->umodes |= ConfigFileEntry.default_umodes & ~ConfigFileEntry.oper_only_umodes & ~orphaned_umodes;
486
487 call_hook(h_new_local_user, source_p);
488
489 /* If they have died in send_* or were thrown out by the
490 * new_local_user hook don't do anything. */
491 if(IsAnyDead(source_p))
212380e3
AC
492 return CLIENT_EXITED;
493
e2b44358
JT
494 /* To avoid inconsistencies, do not abort the registration
495 * starting from this point -- jilles
496 */
212380e3
AC
497 inetntop_sock((struct sockaddr *)&source_p->localClient->ip, ipaddr, sizeof(ipaddr));
498
499 sendto_realops_snomask(SNO_CCONN, L_ALL,
500 "Client connecting: %s (%s@%s) [%s] {%s} [%s]",
501 source_p->name, source_p->username, source_p->orighost,
502 show_ip(NULL, source_p) ? ipaddr : "255.255.255.255",
503 get_client_class(source_p), source_p->info);
504
505 sendto_realops_snomask(SNO_CCONNEXT, L_ALL,
506 "CLICONN %s %s %s %s %s %s 0 %s",
507 source_p->name, source_p->username, source_p->orighost,
508 show_ip(NULL, source_p) ? ipaddr : "255.255.255.255",
509 get_client_class(source_p),
510 /* mirc can sometimes send ips here */
511 show_ip(NULL, source_p) ? source_p->localClient->fullcaps : "<hidden> <hidden>",
512 source_p->info);
513
212380e3
AC
514 add_to_hostname_hash(source_p->orighost, source_p);
515
516 /* Allocate a UID if it was not previously allocated.
517 * If this already occured, it was probably during SASL auth...
518 */
519 if(!*source_p->id)
520 {
521 strcpy(source_p->id, generate_uid());
522 add_to_id_hash(source_p->id, source_p);
523 }
524
3318e109
AC
525 if (IsSSL(source_p))
526 source_p->umodes |= UMODE_SSLCLIENT;
527
212380e3
AC
528 if (source_p->umodes & UMODE_INVISIBLE)
529 Count.invisi++;
530
531 s_assert(!IsClient(source_p));
54ac8b60 532 del_unknown_ip(source_p);
330fc5c1 533 rb_dlinkMoveNode(&source_p->localClient->tnode, &unknown_list, &lclient_list);
212380e3
AC
534 SetClient(source_p);
535
0a61720a 536 source_p->servptr = &me;
330fc5c1 537 rb_dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->users);
0a61720a 538
212380e3
AC
539 /* Increment our total user count here */
540 if(++Count.total > Count.max_tot)
541 Count.max_tot = Count.total;
0a61720a 542
212380e3
AC
543 source_p->localClient->allow_read = MAX_FLOOD_BURST;
544
545 Count.totalrestartcount++;
546
547 s_assert(source_p->localClient != NULL);
548
330fc5c1 549 if(rb_dlink_list_length(&lclient_list) > (unsigned long)Count.max_loc)
212380e3 550 {
330fc5c1 551 Count.max_loc = rb_dlink_list_length(&lclient_list);
212380e3
AC
552 if(!(Count.max_loc % 10))
553 sendto_realops_snomask(SNO_GENERAL, L_ALL,
554 "New Max Local Clients: %d", Count.max_loc);
555 }
556
557 /* they get a reduced limit */
558 if(find_tgchange(source_p->sockhost))
559 USED_TARGETS(source_p) = 6;
560
212380e3
AC
561 monitor_signon(source_p);
562 user_welcome(source_p);
563
564 free_pre_client(source_p);
565
566 return (introduce_client(client_p, source_p, user, source_p->name, 1));
567}
568
569/*
570 * introduce_clients
571 *
572 * inputs -
573 * output -
574 * side effects - This common function introduces a client to the rest
575 * of the net, either from a local client connect or
576 * from a remote connect.
577 */
578int
579introduce_client(struct Client *client_p, struct Client *source_p, struct User *user, const char *nick, int use_euid)
580{
581 static char ubuf[12];
582 struct Client *identifyservice_p;
583 char *p;
584 hook_data_umode_changed hdata;
585 hook_data_client hdata2;
586
587 if(MyClient(source_p))
588 send_umode(source_p, source_p, 0, 0, ubuf);
589 else
590 send_umode(NULL, source_p, 0, 0, ubuf);
591
592 if(!*ubuf)
593 {
594 ubuf[0] = '+';
595 ubuf[1] = '\0';
596 }
597
598 /* if it has an ID, introduce it with its id to TS6 servers,
599 * otherwise introduce it normally to all.
600 */
601 if(has_id(source_p))
602 {
603 char sockhost[HOSTLEN];
604 if(source_p->sockhost[0] == ':')
605 {
606 sockhost[0] = '0';
607 sockhost[1] = '\0';
79c70bbb 608 rb_strlcat(sockhost, source_p->sockhost, sizeof(sockhost));
212380e3
AC
609 } else
610 strcpy(sockhost, source_p->sockhost);
611
612 if (use_euid)
613 sendto_server(client_p, NULL, CAP_EUID | CAP_TS6, NOCAPS,
614 ":%s EUID %s %d %ld %s %s %s %s %s %s %s :%s",
615 source_p->servptr->id, nick,
616 source_p->hopcount + 1,
617 (long) source_p->tsinfo, ubuf,
618 source_p->username, source_p->host,
619 IsIPSpoof(source_p) ? "0" : sockhost,
620 source_p->id,
621 IsDynSpoof(source_p) ? source_p->orighost : "*",
622 EmptyString(source_p->user->suser) ? "*" : source_p->user->suser,
623 source_p->info);
624
625 sendto_server(client_p, NULL, CAP_TS6, use_euid ? CAP_EUID : NOCAPS,
626 ":%s UID %s %d %ld %s %s %s %s %s :%s",
627 source_p->servptr->id, nick,
628 source_p->hopcount + 1,
629 (long) source_p->tsinfo, ubuf,
630 source_p->username, source_p->host,
631 IsIPSpoof(source_p) ? "0" : sockhost,
632 source_p->id, source_p->info);
633
634 sendto_server(client_p, NULL, NOCAPS, CAP_TS6,
635 "NICK %s %d %ld %s %s %s %s :%s",
636 nick, source_p->hopcount + 1,
637 (long) source_p->tsinfo,
638 ubuf, source_p->username, source_p->host,
c88cdb00 639 source_p->servptr->name, source_p->info);
212380e3
AC
640 }
641 else
642 sendto_server(client_p, NULL, NOCAPS, NOCAPS,
643 "NICK %s %d %ld %s %s %s %s :%s",
644 nick, source_p->hopcount + 1,
645 (long) source_p->tsinfo,
646 ubuf, source_p->username, source_p->host,
c88cdb00 647 source_p->servptr->name, source_p->info);
212380e3
AC
648
649 if (IsDynSpoof(source_p))
650 {
651 sendto_server(client_p, NULL, CAP_TS6, use_euid ? CAP_EUID : NOCAPS, ":%s ENCAP * REALHOST %s",
652 use_id(source_p), source_p->orighost);
653 sendto_server(client_p, NULL, NOCAPS, CAP_TS6, ":%s ENCAP * REALHOST %s",
654 source_p->name, source_p->orighost);
655 }
656 if (!EmptyString(source_p->user->suser))
657 {
658 sendto_server(client_p, NULL, CAP_TS6, use_euid ? CAP_EUID : NOCAPS, ":%s ENCAP * LOGIN %s",
659 use_id(source_p), source_p->user->suser);
660 sendto_server(client_p, NULL, NOCAPS, CAP_TS6, ":%s ENCAP * LOGIN %s",
661 source_p->name, source_p->user->suser);
662 }
663
664 if(MyConnect(source_p) && source_p->localClient->passwd)
665 {
666 if (ConfigFileEntry.identifyservice[0] != '\0' &&
667 ConfigFileEntry.identifycommand[0] != '\0')
668 {
669 /* use user@server */
670 p = strchr(ConfigFileEntry.identifyservice, '@');
671 if (p != NULL)
672 identifyservice_p = find_named_client(p + 1);
673 else
674 identifyservice_p = NULL;
675 if (identifyservice_p != NULL)
676 sendto_one(identifyservice_p, ":%s PRIVMSG %s :%s %s",
677 get_id(source_p, identifyservice_p),
678 ConfigFileEntry.identifyservice,
679 ConfigFileEntry.identifycommand,
680 source_p->localClient->passwd);
681 }
682 memset(source_p->localClient->passwd, 0, strlen(source_p->localClient->passwd));
637c4932 683 rb_free(source_p->localClient->passwd);
212380e3
AC
684 source_p->localClient->passwd = NULL;
685 }
686
687 /* let modules providing usermodes know that we've got a new user,
688 * why is this here? -- well, some modules need to be able to send out new
689 * information about a client, so this was the best place to do it
690 * --nenolod
691 */
692 hdata.client = source_p;
693 hdata.oldumodes = 0;
694 hdata.oldsnomask = 0;
695 call_hook(h_umode_changed, &hdata);
696
697 /* On the other hand, some modules need to know when a client is
698 * being introduced, period.
699 * --gxti
700 */
701 hdata2.client = client_p;
702 hdata2.target = source_p;
703 call_hook(h_introduce_client, &hdata2);
704
705 return 0;
706}
707
708/*
709 * valid_hostname - check hostname for validity
710 *
711 * Inputs - pointer to user
712 * Output - YES if valid, NO if not
713 * Side effects - NONE
714 *
715 * NOTE: this doesn't allow a hostname to begin with a dot and
716 * will not allow more dots than chars.
717 */
718int
719valid_hostname(const char *hostname)
720{
721 const char *p = hostname;
722 int found_sep = 0;
723
724 s_assert(NULL != p);
725
726 if(hostname == NULL)
727 return NO;
728
729 if('.' == *p || ':' == *p)
730 return NO;
731
732 while (*p)
733 {
734 if(!IsHostChar(*p))
735 return NO;
736 if(*p == '.' || *p == ':')
737 found_sep++;
738 p++;
739 }
740
741 if(found_sep == 0)
742 return(NO);
743
744 return (YES);
745}
746
747/*
748 * valid_username - check username for validity
749 *
750 * Inputs - pointer to user
751 * Output - YES if valid, NO if not
752 * Side effects - NONE
753 *
754 * Absolutely always reject any '*' '!' '?' '@' in an user name
755 * reject any odd control characters names.
756 * Allow '.' in username to allow for "first.last"
757 * style of username
758 */
759int
760valid_username(const char *username)
761{
762 int dots = 0;
763 const char *p = username;
764
765 s_assert(NULL != p);
766
767 if(username == NULL)
768 return NO;
769
770 if('~' == *p)
771 ++p;
772
773 /* reject usernames that don't start with an alphanum
774 * i.e. reject jokers who have '-@somehost' or '.@somehost'
775 * or "-hi-@somehost", "h-----@somehost" would still be accepted.
776 */
777 if(!IsAlNum(*p))
778 return NO;
779
780 while (*++p)
781 {
782 if((*p == '.') && ConfigFileEntry.dots_in_ident)
783 {
784 dots++;
785 if(dots > ConfigFileEntry.dots_in_ident)
786 return NO;
787 if(!IsUserChar(p[1]))
788 return NO;
789 }
790 else if(!IsUserChar(*p))
791 return NO;
792 }
793 return YES;
794}
795
796/* report_and_set_user_flags
797 *
798 * Inputs - pointer to source_p
799 * - pointer to aconf for this user
800 * Output - NONE
801 * Side effects -
802 * Report to user any special flags they are getting, and set them.
803 */
804
805static void
806report_and_set_user_flags(struct Client *source_p, struct ConfItem *aconf)
807{
808 /* If this user is being spoofed, tell them so */
809 if(IsConfDoSpoofIp(aconf))
810 {
5366977b 811 sendto_one_notice(source_p, ":*** Spoofing your IP. congrats.");
212380e3
AC
812 }
813
814 /* If this user is in the exception class, Set it "E lined" */
815 if(IsConfExemptKline(aconf))
816 {
817 SetExemptKline(source_p);
eae06274 818 sendto_one_notice(source_p, ":*** You are exempt from K/X lines. congrats.");
212380e3
AC
819 }
820
212380e3
AC
821 if(IsConfExemptDNSBL(aconf))
822 /* kline exempt implies this, don't send both */
823 if(!IsConfExemptKline(aconf))
5366977b 824 sendto_one_notice(source_p, ":*** You are exempt from DNS blacklists.");
212380e3
AC
825
826 /* If this user is exempt from user limits set it F lined" */
827 if(IsConfExemptLimits(aconf))
828 {
e4b9c8e1 829 sendto_one_notice(source_p, ":*** You are exempt from user limits. congrats.");
212380e3
AC
830 }
831
212380e3
AC
832 if(IsConfExemptFlood(aconf))
833 {
834 SetExemptFlood(source_p);
5366977b 835 sendto_one_notice(source_p, ":*** You are exempt from flood limits.");
212380e3
AC
836 }
837
838 if(IsConfExemptSpambot(aconf))
839 {
840 SetExemptSpambot(source_p);
5366977b 841 sendto_one_notice(source_p, ":*** You are exempt from spambot checks.");
212380e3
AC
842 }
843
844 if(IsConfExemptJupe(aconf))
845 {
846 SetExemptJupe(source_p);
5366977b 847 sendto_one_notice(source_p, ":*** You are exempt from juped channel warnings.");
212380e3
AC
848 }
849
850 if(IsConfExemptResv(aconf))
851 {
852 SetExemptResv(source_p);
5366977b 853 sendto_one_notice(source_p, ":*** You are exempt from resvs.");
212380e3
AC
854 }
855
856 if(IsConfExemptShide(aconf))
857 {
858 SetExemptShide(source_p);
5366977b 859 sendto_one_notice(source_p, ":*** You are exempt from serverhiding.");
212380e3
AC
860 }
861}
862
863/*
864 * user_mode - set get current users mode
865 *
866 * m_umode() added 15/10/91 By Darren Reed.
867 * parv[0] - sender
868 * parv[1] - username to change mode for
869 * parv[2] - modes to change
870 */
871int
872user_mode(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
873{
874 int flag;
875 int i;
876 char *m;
877 const char *pm;
878 struct Client *target_p;
879 int what, setflags;
880 int badflag = NO; /* Only send one bad flag notice */
881 int showsnomask = NO;
882 unsigned int setsnomask;
883 char buf[BUFSIZE];
884 hook_data_umode_changed hdata;
885
886 what = MODE_ADD;
887
888 if(parc < 2)
889 {
890 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS), me.name, source_p->name, "MODE");
891 return 0;
892 }
893
894 if((target_p = MyClient(source_p) ? find_named_person(parv[1]) : find_person(parv[1])) == NULL)
895 {
896 if(MyConnect(source_p))
897 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
898 form_str(ERR_NOSUCHCHANNEL), parv[1]);
899 return 0;
900 }
901
902 /* Dont know why these were commented out..
903 * put them back using new sendto() funcs
904 */
905
906 if(IsServer(source_p))
907 {
908 sendto_realops_snomask(SNO_GENERAL, L_ADMIN,
909 "*** Mode for User %s from %s", parv[1], source_p->name);
910 return 0;
911 }
912
913 if(source_p != target_p || target_p->from != source_p->from)
914 {
915 sendto_one(source_p, form_str(ERR_USERSDONTMATCH), me.name, source_p->name);
916 return 0;
917 }
918
919 if(parc < 3)
920 {
921 m = buf;
922 *m++ = '+';
923
924 for (i = 0; i < 128; i++) /* >= 127 is extended ascii */
925 if (source_p->umodes & user_modes[i])
926 *m++ = (char) i;
927
928 *m = '\0';
e8a2d50d 929 sendto_one_numeric(source_p, RPL_UMODEIS, form_str(RPL_UMODEIS), buf);
88520303 930
212380e3 931 if (source_p->snomask != 0)
88520303 932 sendto_one_numeric(source_p, RPL_SNOMASK, form_str(RPL_SNOMASK),
212380e3 933 construct_snobuf(source_p->snomask));
88520303 934
212380e3
AC
935 return 0;
936 }
937
938 /* find flags already set for user */
939 setflags = source_p->umodes;
940 setsnomask = source_p->snomask;
941
942 /*
943 * parse mode change string(s)
944 */
945 for (pm = parv[2]; *pm; pm++)
946 switch (*pm)
947 {
948 case '+':
949 what = MODE_ADD;
950 break;
951 case '-':
952 what = MODE_DEL;
953 break;
954
955 case 'o':
956 if(what == MODE_ADD)
957 {
958 if(IsServer(client_p) && !IsOper(source_p))
959 {
960 ++Count.oper;
961 SetOper(source_p);
330fc5c1 962 rb_dlinkAddAlloc(source_p, &oper_list);
212380e3
AC
963 }
964 }
965 else
966 {
967 /* Only decrement the oper counts if an oper to begin with
968 * found by Pat Szuta, Perly , perly@xnet.com
969 */
970
971 if(!IsOper(source_p))
972 break;
973
974 ClearOper(source_p);
975
976 Count.oper--;
977
978 if(MyConnect(source_p))
979 {
980 source_p->umodes &= ~ConfigFileEntry.oper_only_umodes;
981 if (!(source_p->umodes & UMODE_SERVNOTICE) && source_p->snomask != 0)
982 {
983 source_p->snomask = 0;
984 showsnomask = YES;
985 }
986 source_p->flags2 &= ~OPER_FLAGS;
987
637c4932 988 rb_free(source_p->localClient->opername);
212380e3
AC
989 source_p->localClient->opername = NULL;
990
330fc5c1 991 rb_dlinkFindDestroy(source_p, &local_oper_list);
212380e3
AC
992 }
993
330fc5c1 994 rb_dlinkFindDestroy(source_p, &oper_list);
212380e3
AC
995 }
996 break;
997
998 /* we may not get these,
999 * but they shouldnt be in default
1000 */
1001
1002 /* can only be set on burst */
1003 case 'S':
3318e109 1004 case 'Z':
212380e3
AC
1005 case ' ':
1006 case '\n':
1007 case '\r':
1008 case '\t':
1009 break;
1010
1011 case 's':
1012 if (MyConnect(source_p))
1013 {
1014 if(!IsOper(source_p)
1015 && (ConfigFileEntry.oper_only_umodes & UMODE_SERVNOTICE))
1016 {
1017 if (what == MODE_ADD || source_p->umodes & UMODE_SERVNOTICE)
1018 badflag = YES;
1019 continue;
1020 }
1021 showsnomask = YES;
1022 if(what == MODE_ADD)
1023 {
1024 if (parc > 3)
1025 source_p->snomask = parse_snobuf_to_mask(source_p->snomask, parv[3]);
1026 else
1027 source_p->snomask |= SNO_GENERAL;
1028 }
1029 else
1030 source_p->snomask = 0;
1031 if (source_p->snomask != 0)
1032 source_p->umodes |= UMODE_SERVNOTICE;
1033 else
1034 source_p->umodes &= ~UMODE_SERVNOTICE;
1035 break;
1036 }
1037 /* FALLTHROUGH */
1038 default:
1039 if (MyConnect(source_p) && *pm == 'Q' && !ConfigChannel.use_forward) {
1040 badflag = YES;
1041 break;
1042 }
1043
1044 if((flag = user_modes[(unsigned char) *pm]))
1045 {
1046 if(MyConnect(source_p)
a8086a7c
JT
1047 && ((!IsOper(source_p)
1048 && (ConfigFileEntry.oper_only_umodes & flag))
1049 || (orphaned_umodes & flag)))
212380e3
AC
1050 {
1051 if (what == MODE_ADD || source_p->umodes & flag)
1052 badflag = YES;
1053 }
1054 else
1055 {
1056 if(what == MODE_ADD)
1057 source_p->umodes |= flag;
1058 else
1059 source_p->umodes &= ~flag;
1060 }
1061 }
1062 else
1063 {
1064 if(MyConnect(source_p))
1065 badflag = YES;
1066 }
1067 break;
1068 }
1069
1070 if(badflag)
1071 sendto_one(source_p, form_str(ERR_UMODEUNKNOWNFLAG), me.name, source_p->name);
1072
1073 if(MyClient(source_p) && (source_p->snomask & SNO_NCHANGE) && !IsOperN(source_p))
1074 {
b4838ccd 1075 sendto_one_notice(source_p, ":*** You need oper and nick_changes flag for +s +n");
212380e3
AC
1076 source_p->snomask &= ~SNO_NCHANGE; /* only tcm's really need this */
1077 }
1078
1079 if(MyClient(source_p) && (source_p->umodes & UMODE_OPERWALL) && !IsOperOperwall(source_p))
1080 {
5366977b 1081 sendto_one_notice(source_p, ":*** You need oper and operwall flag for +z");
212380e3
AC
1082 source_p->umodes &= ~UMODE_OPERWALL;
1083 }
1084
1085 if(MyConnect(source_p) && (source_p->umodes & UMODE_ADMIN) &&
1086 (!IsOperAdmin(source_p) || IsOperHiddenAdmin(source_p)))
1087 {
b4838ccd 1088 sendto_one_notice(source_p, ":*** You need oper and admin flag for +a");
212380e3
AC
1089 source_p->umodes &= ~UMODE_ADMIN;
1090 }
1091
1092 /* let modules providing usermodes know that we've changed our usermode --nenolod */
1093 hdata.client = source_p;
1094 hdata.oldumodes = setflags;
1095 hdata.oldsnomask = setsnomask;
1096 call_hook(h_umode_changed, &hdata);
1097
1098 if(!(setflags & UMODE_INVISIBLE) && IsInvisible(source_p))
1099 ++Count.invisi;
1100 if((setflags & UMODE_INVISIBLE) && !IsInvisible(source_p))
1101 --Count.invisi;
1102 /*
1103 * compare new flags with old flags and send string which
1104 * will cause servers to update correctly.
1105 */
1106 send_umode_out(client_p, source_p, setflags);
1107 if (showsnomask && MyConnect(source_p))
88520303 1108 sendto_one_numeric(source_p, RPL_SNOMASK, form_str(RPL_SNOMASK),
212380e3
AC
1109 construct_snobuf(source_p->snomask));
1110
1111 return (0);
1112}
1113
1114/*
1115 * send the MODE string for user (user) to connection client_p
1116 * -avalon
1117 */
1118void
1119send_umode(struct Client *client_p, struct Client *source_p, int old, int sendmask, char *umode_buf)
1120{
1121 int i;
1122 int flag;
1123 char *m;
1124 int what = 0;
1125
1126 /*
1127 * build a string in umode_buf to represent the change in the user's
1128 * mode between the new (source_p->flag) and 'old'.
1129 */
1130 m = umode_buf;
1131 *m = '\0';
1132
1133 for (i = 0; i < 128; i++)
1134 {
1135 flag = user_modes[i];
1136
1137 if((flag & old) && !(source_p->umodes & flag))
1138 {
1139 if(what == MODE_DEL)
1140 *m++ = (char) i;
1141 else
1142 {
1143 what = MODE_DEL;
1144 *m++ = '-';
1145 *m++ = (char) i;
1146 }
1147 }
1148 else if(!(flag & old) && (source_p->umodes & flag))
1149 {
1150 if(what == MODE_ADD)
1151 *m++ = (char) i;
1152 else
1153 {
1154 what = MODE_ADD;
1155 *m++ = '+';
1156 *m++ = (char) i;
1157 }
1158 }
1159 }
1160 *m = '\0';
1161
1162 if(*umode_buf && client_p)
1163 sendto_one(client_p, ":%s MODE %s :%s", source_p->name, source_p->name, umode_buf);
1164}
1165
1166/*
1167 * send_umode_out
1168 *
1169 * inputs -
1170 * output - NONE
1171 * side effects -
1172 */
1173void
1174send_umode_out(struct Client *client_p, struct Client *source_p, int old)
1175{
1176 struct Client *target_p;
1177 char buf[BUFSIZE];
330fc5c1 1178 rb_dlink_node *ptr;
212380e3
AC
1179
1180 send_umode(NULL, source_p, old, 0, buf);
1181
5cefa1d6 1182 RB_DLINK_FOREACH(ptr, serv_list.head)
212380e3
AC
1183 {
1184 target_p = ptr->data;
1185
1186 if((target_p != client_p) && (target_p != source_p) && (*buf))
1187 {
1188 sendto_one(target_p, ":%s MODE %s :%s",
1189 get_id(source_p, target_p),
1190 get_id(source_p, target_p), buf);
1191 }
1192 }
1193
1194 if(client_p && MyClient(client_p))
1195 send_umode(client_p, source_p, old, 0, buf);
1196}
1197
1198/*
1199 * user_welcome
1200 *
1201 * inputs - client pointer to client to welcome
1202 * output - NONE
1203 * side effects -
1204 */
1205void
1206user_welcome(struct Client *source_p)
1207{
88520303
AC
1208 sendto_one_numeric(source_p, RPL_WELCOME, form_str(RPL_WELCOME), ServerInfo.network_name, source_p->name);
1209 sendto_one_numeric(source_p, RPL_YOURHOST, form_str(RPL_YOURHOST),
212380e3 1210 get_listener_name(source_p->localClient->listener), ircd_version);
88520303
AC
1211 sendto_one_numeric(source_p, RPL_CREATED, form_str(RPL_CREATED), creation);
1212 sendto_one_numeric(source_p, RPL_MYINFO, form_str(RPL_MYINFO), me.name, ircd_version, umodebuf);
212380e3
AC
1213
1214 show_isupport(source_p);
1215
1216 show_lusers(source_p);
1217
1218 if(ConfigFileEntry.short_motd)
1219 {
5366977b
AC
1220 sendto_one_notice(source_p, ":*** Notice -- motd was last changed at %s", user_motd_changed);
1221 sendto_one_notice(source_p, ":*** Notice -- Please read the motd if you haven't read it");
212380e3
AC
1222
1223 sendto_one(source_p, form_str(RPL_MOTDSTART),
1224 me.name, source_p->name, me.name);
1225
1226 sendto_one(source_p, form_str(RPL_MOTD),
1227 me.name, source_p->name, "*** This is the short motd ***");
1228
1229 sendto_one(source_p, form_str(RPL_ENDOFMOTD), me.name, source_p->name);
1230 }
1231 else
1232 send_user_motd(source_p);
1233}
1234
1235/* oper_up()
1236 *
1237 * inputs - pointer to given client to oper
1238 * - pointer to ConfItem to use
1239 * output - none
1240 * side effects - opers up source_p using aconf for reference
1241 */
1242int
1243oper_up(struct Client *source_p, struct oper_conf *oper_p)
1244{
1245 unsigned int old = source_p->umodes, oldsnomask = source_p->snomask;
1246 hook_data_umode_changed hdata;
1247
1248 SetOper(source_p);
1249
1250 if(oper_p->umodes)
1251 source_p->umodes |= oper_p->umodes;
1252 else if(ConfigFileEntry.oper_umodes)
1253 source_p->umodes |= ConfigFileEntry.oper_umodes;
1254 else
1255 source_p->umodes |= DEFAULT_OPER_UMODES;
1256
1257 if (oper_p->snomask)
1258 {
1259 source_p->snomask |= oper_p->snomask;
1260 source_p->umodes |= UMODE_SERVNOTICE;
1261 }
1262 else if (source_p->umodes & UMODE_SERVNOTICE)
1263 {
1264 /* Only apply these if +s is already set -- jilles */
1265 if (ConfigFileEntry.oper_snomask)
1266 source_p->snomask |= ConfigFileEntry.oper_snomask;
1267 else
1268 source_p->snomask |= DEFAULT_OPER_SNOMASK;
1269 }
1270
1271 Count.oper++;
1272
1273 SetExemptKline(source_p);
1274
1275 source_p->flags2 |= oper_p->flags;
47a03750 1276 source_p->localClient->opername = rb_strdup(oper_p->name);
212380e3 1277
330fc5c1
AC
1278 rb_dlinkAddAlloc(source_p, &local_oper_list);
1279 rb_dlinkAddAlloc(source_p, &oper_list);
212380e3
AC
1280
1281 if(IsOperAdmin(source_p) && !IsOperHiddenAdmin(source_p))
1282 source_p->umodes |= UMODE_ADMIN;
1283 if(!IsOperN(source_p))
1284 source_p->snomask &= ~SNO_NCHANGE;
1285 if(!IsOperOperwall(source_p))
1286 source_p->umodes &= ~UMODE_OPERWALL;
1287 hdata.client = source_p;
1288 hdata.oldumodes = old;
1289 hdata.oldsnomask = oldsnomask;
1290 call_hook(h_umode_changed, &hdata);
1291
1292 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1293 "%s (%s@%s) is now an operator", source_p->name,
1294 source_p->username, source_p->host);
652b8478
JT
1295 if(!(old & UMODE_INVISIBLE) && IsInvisible(source_p))
1296 ++Count.invisi;
1297 if((old & UMODE_INVISIBLE) && !IsInvisible(source_p))
1298 --Count.invisi;
212380e3 1299 send_umode_out(source_p, source_p, old);
88520303 1300 sendto_one_numeric(source_p, RPL_SNOMASK, form_str(RPL_SNOMASK),
212380e3
AC
1301 construct_snobuf(source_p->snomask));
1302 sendto_one(source_p, form_str(RPL_YOUREOPER), me.name, source_p->name);
5366977b 1303 sendto_one_notice(source_p, ":*** Oper privs are %s", get_oper_privs(oper_p->flags));
212380e3
AC
1304 send_oper_motd(source_p);
1305
1306 return (1);
1307}
1308
01cebbd8
JT
1309/*
1310 * find_umode_slot
1311 *
1312 * inputs - NONE
1313 * outputs - an available umode bitmask or
1314 * 0 if no umodes are available
1315 * side effects - NONE
1316 */
1317unsigned int
1318find_umode_slot(void)
1319{
1320 unsigned int all_umodes = 0, my_umode = 0, i;
1321
1322 for (i = 0; i < 128; i++)
1323 all_umodes |= user_modes[i];
1324
1325 for (my_umode = 1; my_umode && (all_umodes & my_umode);
1326 my_umode <<= 1);
1327
1328 return my_umode;
1329}
1330
212380e3
AC
1331void
1332construct_umodebuf(void)
1333{
1334 int i;
1335 char *ptr = umodebuf;
a8086a7c 1336 static int prev_user_modes[128];
212380e3
AC
1337
1338 *ptr = '\0';
1339
1340 for (i = 0; i < 128; i++)
a8086a7c
JT
1341 {
1342 if (prev_user_modes[i] != 0 && prev_user_modes[i] != user_modes[i])
1343 {
1344 if (user_modes[i] == 0)
1345 {
1346 orphaned_umodes |= prev_user_modes[i];
1347 sendto_realops_snomask(SNO_DEBUG, L_ALL, "Umode +%c is now orphaned", i);
1348 }
1349 else
1350 {
1351 orphaned_umodes &= ~prev_user_modes[i];
1352 sendto_realops_snomask(SNO_DEBUG, L_ALL, "Orphaned umode +%c is picked up by module", i);
1353 }
1354 user_modes[i] = prev_user_modes[i];
1355 }
1356 else
1357 prev_user_modes[i] = user_modes[i];
212380e3
AC
1358 if (user_modes[i])
1359 *ptr++ = (char) i;
a8086a7c 1360 }
212380e3
AC
1361
1362 *ptr++ = '\0';
1363}
1364
1365void
1366change_nick_user_host(struct Client *target_p, const char *nick, const char *user,
82622732 1367 const char *host, int newts, const char *format, ...)
212380e3 1368{
330fc5c1 1369 rb_dlink_node *ptr;
212380e3
AC
1370 struct Channel *chptr;
1371 struct membership *mscptr;
1372 int changed = irccmp(target_p->name, nick);
1373 int changed_case = strcmp(target_p->name, nick);
1374 int do_qjm = irccmp(target_p->username, user) || irccmp(target_p->host, host);
1375 char mode[10], modeval[NICKLEN * 2 + 2], reason[256], *mptr;
1376 va_list ap;
1377
1378 modeval[0] = '\0';
1379
1380 if(changed)
1381 {
1382 target_p->tsinfo = newts;
1383 monitor_signoff(target_p);
1384 }
1385 invalidate_bancache_user(target_p);
1386
1387 if(do_qjm)
1388 {
1389 va_start(ap, format);
1390 vsnprintf(reason, 255, format, ap);
1391 va_end(ap);
1392
1393 sendto_common_channels_local_butone(target_p, ":%s!%s@%s QUIT :%s",
1394 target_p->name, target_p->username, target_p->host,
1395 reason);
1396
5cefa1d6 1397 RB_DLINK_FOREACH(ptr, target_p->user->channel.head)
212380e3
AC
1398 {
1399 mscptr = ptr->data;
1400 chptr = mscptr->chptr;
1401 mptr = mode;
1402
1403 if(is_chanop(mscptr))
1404 {
1405 *mptr++ = 'o';
1406 strcat(modeval, nick);
1407 strcat(modeval, " ");
1408 }
1409
1410 if(is_voiced(mscptr))
1411 {
1412 *mptr++ = 'v';
1413 strcat(modeval, nick);
1414 }
1415
1416 *mptr = '\0';
1417
1418 sendto_channel_local_butone(target_p, ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
1419 nick, user, host, chptr->chname);
1420 if(*mode)
1421 sendto_channel_local_butone(target_p, ALL_MEMBERS, chptr,
1422 ":%s MODE %s +%s %s",
1423 target_p->servptr->name,
1424 chptr->chname, mode, modeval);
1425
1426 *modeval = '\0';
1427 }
1428
1429 if(MyClient(target_p) && changed_case)
1430 sendto_one(target_p, ":%s!%s@%s NICK %s",
1431 target_p->name, target_p->username, target_p->host, nick);
1432 }
1433 else if(changed_case)
1434 {
1435 sendto_common_channels_local(target_p, ":%s!%s@%s NICK :%s",
1436 target_p->name, target_p->username,
1437 target_p->host, nick);
1438 }
1439
f427c8b0
VY
1440 rb_strlcpy(target_p->username, user, sizeof target_p->username);
1441 rb_strlcpy(target_p->host, host, sizeof target_p->host);
212380e3
AC
1442
1443 if (changed)
1444 add_history(target_p, 1);
1445
1446 del_from_client_hash(target_p->name, target_p);
f427c8b0 1447 rb_strlcpy(target_p->name, nick, NICKLEN);
212380e3
AC
1448 add_to_client_hash(target_p->name, target_p);
1449
1450 if(changed)
1451 {
1452 monitor_signon(target_p);
1453 del_all_accepts(target_p);
1454 }
1455}