ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/user.c
Revision: 3318
Committed: Tue Apr 15 14:26:38 2014 UTC (11 years, 4 months ago) by michael
Content type: text/x-csrc
Original Path: ircd-hybrid/trunk/src/s_user.c
File size: 33801 byte(s)
Log Message:
- s_user.c:valid_nickname(): removed redundant assert()

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2916 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 2916 * Copyright (c) 1997-2014 ircd-hybrid development team
5 adx 30 *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19     * USA
20     */
21    
22 michael 2916 /*! \file s_user.c
23     * \brief User related functions.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28 michael 1011 #include "list.h"
29 adx 30 #include "s_user.h"
30     #include "s_misc.h"
31     #include "channel.h"
32     #include "channel_mode.h"
33     #include "client.h"
34     #include "hash.h"
35     #include "irc_string.h"
36     #include "ircd.h"
37     #include "listener.h"
38     #include "motd.h"
39     #include "numeric.h"
40 michael 1309 #include "conf.h"
41     #include "log.h"
42 adx 30 #include "s_serv.h"
43     #include "send.h"
44     #include "supported.h"
45     #include "memory.h"
46     #include "packet.h"
47 michael 982 #include "rng_mt.h"
48 adx 30 #include "userhost.h"
49     #include "s_misc.h"
50 michael 1243 #include "parse.h"
51 michael 876 #include "watch.h"
52 adx 30
53     static char umode_buffer[IRCD_BUFSIZE];
54 michael 1080 static const char *uid_get(void);
55 adx 30
56     /* Used for building up the isupport string,
57     * used with init_isupport, add_isupport, delete_isupport
58     */
59 michael 2345 struct Isupport
60 adx 30 {
61     dlink_node node;
62     char *name;
63     char *options;
64     int number;
65     };
66    
67 michael 2159 static dlink_list support_list;
68     static dlink_list support_list_lines;
69 adx 30
70     /* memory is cheap. map 0-255 to equivalent mode */
71 michael 2022 const unsigned int user_modes[256] =
72 adx 30 {
73     /* 0x00 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x0F */
74     /* 0x10 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x1F */
75     /* 0x20 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x2F */
76     /* 0x30 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x3F */
77     0, /* @ */
78     0, /* A */
79     0, /* B */
80 michael 2185 0, /* C */
81 adx 30 UMODE_DEAF, /* D */
82     0, /* E */
83 michael 1976 UMODE_FARCONNECT, /* F */
84 adx 30 UMODE_SOFTCALLERID, /* G */
85 michael 1294 UMODE_HIDDEN, /* H */
86 adx 30 0, /* I */
87     0, /* J */
88     0, /* K */
89     0, /* L */
90     0, /* M */
91     0, /* N */
92     0, /* O */
93     0, /* P */
94     0, /* Q */
95 michael 1175 UMODE_REGONLY, /* R */
96 michael 2246 UMODE_SSL, /* S */
97 adx 30 0, /* T */
98     0, /* U */
99     0, /* V */
100 michael 2511 UMODE_WEBIRC, /* W */
101 adx 30 0, /* X */
102     0, /* Y */
103     0, /* Z 0x5A */
104 michael 2345 0, 0, 0, 0, 0, /* 0x5F */
105 adx 30 0, /* 0x60 */
106     UMODE_ADMIN, /* a */
107     UMODE_BOTS, /* b */
108     UMODE_CCONN, /* c */
109     UMODE_DEBUG, /* d */
110 michael 1818 UMODE_EXTERNAL, /* e */
111 adx 30 UMODE_FULL, /* f */
112     UMODE_CALLERID, /* g */
113     0, /* h */
114     UMODE_INVISIBLE, /* i */
115 michael 1158 UMODE_REJ, /* j */
116 adx 30 UMODE_SKILL, /* k */
117     UMODE_LOCOPS, /* l */
118     0, /* m */
119     UMODE_NCHANGE, /* n */
120     UMODE_OPER, /* o */
121     0, /* p */
122     0, /* q */
123 michael 1158 UMODE_REGISTERED, /* r */
124 adx 30 UMODE_SERVNOTICE, /* s */
125     0, /* t */
126     UMODE_UNAUTH, /* u */
127     0, /* v */
128     UMODE_WALLOP, /* w */
129 michael 2137 UMODE_HIDDENHOST, /* x */
130 adx 30 UMODE_SPY, /* y */
131     UMODE_OPERWALL, /* z 0x7A */
132     0,0,0,0,0, /* 0x7B - 0x7F */
133    
134     /* 0x80 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x8F */
135     /* 0x90 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x9F */
136     /* 0xA0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0xAF */
137     /* 0xB0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0xBF */
138     /* 0xC0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0xCF */
139     /* 0xD0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0xDF */
140     /* 0xE0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0xEF */
141     /* 0xF0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* 0xFF */
142     };
143    
144     void
145     assemble_umode_buffer(void)
146     {
147     unsigned int idx = 0;
148     char *umode_buffer_ptr = umode_buffer;
149    
150 michael 1013 for (; idx < (sizeof(user_modes) / sizeof(user_modes[0])); ++idx)
151 adx 30 if (user_modes[idx])
152     *umode_buffer_ptr++ = idx;
153    
154     *umode_buffer_ptr = '\0';
155     }
156    
157     /* show_lusers()
158     *
159     * inputs - pointer to client
160     * output - NONE
161     * side effects - display to client user counts etc.
162     */
163     void
164 michael 2345 show_lusers(struct Client *source_p)
165 adx 30 {
166 michael 1219 if (!ConfigServerHide.hide_servers || HasUMode(source_p, UMODE_OPER))
167 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSERCLIENT, (Count.total-Count.invisi),
168     Count.invisi, dlink_list_length(&global_serv_list));
169 adx 30 else
170 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSERCLIENT,
171     (Count.total-Count.invisi), Count.invisi, 1);
172 adx 30
173     if (Count.oper > 0)
174 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSEROP, Count.oper);
175 adx 30
176     if (dlink_list_length(&unknown_list) > 0)
177 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSERUNKNOWN, dlink_list_length(&unknown_list));
178 adx 30
179     if (dlink_list_length(&global_channel_list) > 0)
180 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSERCHANNELS, dlink_list_length(&global_channel_list));
181 adx 30
182 michael 1219 if (!ConfigServerHide.hide_servers || HasUMode(source_p, UMODE_OPER))
183 adx 30 {
184 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSERME, Count.local, Count.myserver);
185     sendto_one_numeric(source_p, &me, RPL_LOCALUSERS, Count.local, Count.max_loc);
186 adx 30 }
187     else
188     {
189 michael 3109 sendto_one_numeric(source_p, &me, RPL_LUSERME, Count.total, 0);
190     sendto_one_numeric(source_p, &me, RPL_LOCALUSERS, Count.total, Count.max_tot);
191 adx 30 }
192    
193 michael 3109 sendto_one_numeric(source_p, &me, RPL_GLOBALUSERS, Count.total, Count.max_tot);
194 adx 30
195 michael 1219 if (!ConfigServerHide.hide_servers || HasUMode(source_p, UMODE_OPER))
196 michael 3109 sendto_one_numeric(source_p, &me, RPL_STATSCONN, Count.max_loc_con,
197     Count.max_loc_cli, Count.totalrestartcount);
198 adx 30
199 michael 1143 if (Count.local > Count.max_loc_cli)
200     Count.max_loc_cli = Count.local;
201 adx 30
202 michael 1143 if ((Count.local + Count.myserver) > Count.max_loc_con)
203 michael 2345 Count.max_loc_con = Count.local + Count.myserver;
204 adx 30 }
205    
206     /* show_isupport()
207     *
208     * inputs - pointer to client
209     * output - NONE
210     * side effects - display to client what we support (for them)
211     */
212     void
213 michael 2345 show_isupport(struct Client *source_p)
214 adx 30 {
215 michael 2159 const dlink_node *ptr = NULL;
216    
217     DLINK_FOREACH(ptr, support_list_lines.head)
218 michael 3109 sendto_one_numeric(source_p, &me, RPL_ISUPPORT, ptr->data);
219 adx 30 }
220    
221 michael 3272
222     /* report_and_set_user_flags()
223     *
224     * inputs - pointer to source_p
225     * - pointer to conf for this user
226     * output - NONE
227     * side effects - Report to user any special flags
228     * they are getting, and set them.
229     */
230     static void
231     report_and_set_user_flags(struct Client *source_p, const struct MaskItem *conf)
232     {
233     /* If this user is being spoofed, tell them so */
234     if (IsConfDoSpoofIp(conf))
235     sendto_one_notice(source_p, &me, ":*** Spoofing your IP. Congrats.");
236    
237     /* If this user is in the exception class, Set it "E lined" */
238     if (IsConfExemptKline(conf))
239     {
240     SetExemptKline(source_p);
241     sendto_one_notice(source_p, &me, ":*** You are exempt from K/D/G lines. Congrats.");
242     }
243    
244     /*
245     * The else here is to make sure that G line exempt users
246     * do not get noticed twice.
247     */
248     else if (IsConfExemptGline(conf))
249     {
250     SetExemptGline(source_p);
251     sendto_one_notice(source_p, &me, ":*** You are exempt from G lines. Congrats.");
252     }
253    
254     if (IsConfExemptResv(conf))
255     {
256     SetExemptResv(source_p);
257     sendto_one_notice(source_p, &me, ":*** You are exempt from resvs. Congrats.");
258     }
259    
260     /* If this user is exempt from user limits set it "F lined" */
261     if (IsConfExemptLimits(conf))
262     {
263     SetExemptLimits(source_p);
264     sendto_one_notice(source_p, &me, ":*** You are exempt from user limits. Congrats.");
265     }
266    
267     if (IsConfCanFlood(conf))
268     {
269     SetCanFlood(source_p);
270     sendto_one_notice(source_p, &me, ":*** You are exempt from flood "
271     "protection, aren't you fearsome.");
272     }
273     }
274    
275     /* introduce_client()
276     *
277     * inputs - source_p
278     * output - NONE
279     * side effects - This common function introduces a client to the rest
280     * of the net, either from a local client connect or
281     * from a remote connect.
282     */
283     static void
284     introduce_client(struct Client *source_p)
285     {
286     dlink_node *ptr = NULL;
287     char ubuf[IRCD_BUFSIZE] = "";
288    
289     if (MyClient(source_p))
290     send_umode(source_p, source_p, 0, SEND_UMODES, ubuf);
291     else
292     send_umode(NULL, source_p, 0, SEND_UMODES, ubuf);
293    
294     watch_check_hash(source_p, RPL_LOGON);
295    
296     if (ubuf[0] == '\0')
297     {
298     ubuf[0] = '+';
299     ubuf[1] = '\0';
300     }
301    
302     DLINK_FOREACH(ptr, serv_list.head)
303     {
304     struct Client *server = ptr->data;
305    
306     if (server == source_p->from)
307     continue;
308    
309     if (IsCapable(server, CAP_SVS))
310     sendto_one(server, ":%s UID %s %d %lu %s %s %s %s %s %s :%s",
311     source_p->servptr->id,
312     source_p->name, source_p->hopcount+1,
313     (unsigned long)source_p->tsinfo,
314     ubuf, source_p->username, source_p->host,
315     (MyClient(source_p) && IsIPSpoof(source_p)) ?
316     "0" : source_p->sockhost, source_p->id,
317     source_p->svid,
318     source_p->info);
319     else
320     sendto_one(server, ":%s UID %s %d %lu %s %s %s %s %s :%s",
321     source_p->servptr->id,
322     source_p->name, source_p->hopcount+1,
323     (unsigned long)source_p->tsinfo,
324     ubuf, source_p->username, source_p->host,
325     (MyClient(source_p) && IsIPSpoof(source_p)) ?
326     "0" : source_p->sockhost, source_p->id, source_p->info);
327    
328     if (!EmptyString(source_p->certfp))
329     sendto_one(server, ":%s CERTFP %s", source_p->id, source_p->certfp);
330     }
331     }
332    
333     /* user_welcome()
334     *
335     * inputs - client pointer to client to welcome
336     * output - NONE
337     * side effects -
338     */
339     static void
340     user_welcome(struct Client *source_p)
341     {
342     #if defined(__TIME__) && defined(__DATE__)
343     static const char built_date[] = __DATE__ " at " __TIME__;
344     #else
345     static const char built_date[] = "unknown";
346     #endif
347    
348     #ifdef HAVE_LIBCRYPTO
349     if (HasFlag(source_p, FLAGS_SSL))
350     {
351     AddUMode(source_p, UMODE_SSL);
352     sendto_one_notice(source_p, &me, ":*** Connected securely via %s",
353     ssl_get_cipher(source_p->localClient->fd.ssl));
354     }
355     #endif
356    
357     sendto_one_numeric(source_p, &me, RPL_WELCOME, ServerInfo.network_name,
358     source_p->name);
359     sendto_one_numeric(source_p, &me, RPL_YOURHOST,
360     get_listener_name(source_p->localClient->listener), ircd_version);
361     sendto_one_numeric(source_p, &me, RPL_CREATED, built_date);
362     sendto_one_numeric(source_p, &me, RPL_MYINFO, me.name, ircd_version, umode_buffer);
363     show_isupport(source_p);
364    
365     if (source_p->id[0])
366     sendto_one_numeric(source_p, &me, RPL_YOURID, source_p->id);
367    
368     show_lusers(source_p);
369     motd_signon(source_p);
370     }
371    
372     /* check_xline()
373     *
374     * inputs - pointer to client to test
375     * outupt - 1 if exiting 0 if ok
376     * side effects -
377     */
378     static int
379     check_xline(struct Client *source_p)
380     {
381     struct MaskItem *conf = NULL;
382     const char *reason = NULL;
383    
384     if ((conf = find_matching_name_conf(CONF_XLINE, source_p->info, NULL, NULL, 0)))
385     {
386     ++conf->count;
387    
388     if (conf->reason)
389     reason = conf->reason;
390     else
391     reason = CONF_NOREASON;
392    
393     sendto_realops_flags(UMODE_REJ, L_ALL, SEND_NOTICE,
394     "X-line Rejecting [%s] [%s], user %s [%s]",
395     source_p->info, reason,
396     get_client_name(source_p, HIDE_IP),
397     source_p->sockhost);
398    
399     ++ServerStats.is_ref;
400     exit_client(source_p, "Bad user info");
401     return 1;
402     }
403    
404     return 0;
405     }
406    
407 michael 3317 /*! \brief This function is called when both NICK and USER messages
408 michael 3316 * have been accepted for the client, in whatever order. Only
409     * after this, is the UID message propagated.
410 michael 3317 * \param source_p Pointer to given client to introduce
411 michael 3316 */
412 adx 30 void
413 michael 1080 register_local_user(struct Client *source_p)
414 adx 30 {
415 michael 1115 const char *id = NULL;
416 michael 1632 const struct MaskItem *conf = NULL;
417 adx 30
418 michael 1080 assert(source_p == source_p->from);
419 adx 30 assert(MyConnect(source_p));
420 michael 503 assert(!source_p->localClient->registration);
421 adx 30
422 michael 1080 ClearCap(source_p, CAP_TS6);
423 michael 589
424 adx 30 if (ConfigFileEntry.ping_cookie)
425     {
426 michael 2314 if (!IsPingSent(source_p) && !source_p->localClient->random_ping)
427 adx 30 {
428 michael 983 do
429     source_p->localClient->random_ping = genrand_int32();
430     while (!source_p->localClient->random_ping);
431    
432 michael 982 sendto_one(source_p, "PING :%u",
433 adx 30 source_p->localClient->random_ping);
434     SetPingSent(source_p);
435     return;
436     }
437    
438     if (!HasPingCookie(source_p))
439     return;
440     }
441    
442 michael 1176 source_p->localClient->last_privmsg = CurrentTime;
443 adx 30 /* Straight up the maximum rate of flooding... */
444     source_p->localClient->allow_read = MAX_FLOOD_BURST;
445    
446 michael 1644 if (!check_client(source_p))
447 adx 30 return;
448    
449 michael 2314 if (!valid_hostname(source_p->host))
450 adx 30 {
451 michael 3110 sendto_one_notice(source_p, &me, ":*** Notice -- You have an illegal "
452     "character in your hostname");
453 adx 30 strlcpy(source_p->host, source_p->sockhost,
454     sizeof(source_p->host));
455     }
456    
457 michael 1632 conf = source_p->localClient->confs.head->data;
458 adx 30
459     if (!IsGotId(source_p))
460     {
461 michael 3215 char username[USERLEN + 1] = "";
462 michael 1080 const char *p = username;
463 adx 30 unsigned int i = 0;
464    
465 michael 1632 if (IsNeedIdentd(conf))
466 adx 30 {
467 michael 896 ++ServerStats.is_ref;
468 michael 3110 sendto_one_notice(source_p, &me, ":*** Notice -- You need to install "
469     "identd to use this server");
470 michael 3171 exit_client(source_p, "Install identd");
471 adx 30 return;
472     }
473    
474 michael 1080 strlcpy(username, source_p->username, sizeof(username));
475 adx 30
476 michael 1632 if (!IsNoTilde(conf))
477 adx 30 source_p->username[i++] = '~';
478    
479 michael 1080 for (; *p && i < USERLEN; ++p)
480 adx 30 if (*p != '[')
481     source_p->username[i++] = *p;
482    
483     source_p->username[i] = '\0';
484     }
485    
486 michael 3317 /* Password check */
487 michael 1632 if (!EmptyString(conf->passwd))
488 adx 30 {
489     const char *pass = source_p->localClient->passwd;
490    
491 michael 1632 if (!match_conf_password(pass, conf))
492 adx 30 {
493 michael 896 ++ServerStats.is_ref;
494 michael 3109
495     sendto_one_numeric(source_p, &me, ERR_PASSWDMISMATCH);
496 michael 3171 exit_client(source_p, "Bad Password");
497 adx 30 return;
498     }
499     }
500    
501 michael 3317 /*
502     * Don't free source_p->localClient->passwd here - it can be required
503 adx 30 * by masked /stats I if there are auth{} blocks with need_password = no;
504     * --adx
505     */
506    
507 michael 3317 /*
508     * Report if user has &^>= etc. and set flags as needed in source_p
509     */
510 michael 1632 report_and_set_user_flags(source_p, conf);
511 adx 30
512 michael 1080 if (IsDead(source_p))
513 michael 980 return;
514    
515 michael 3317 /*
516     * Limit clients -
517 adx 30 * We want to be able to have servers and F-line clients
518     * connect, so save room for "buffer" connections.
519     * Smaller servers may want to decrease this, and it should
520     * probably be just a percentage of the MAXCLIENTS...
521     * -Taner
522     */
523     if ((Count.local >= ServerInfo.max_clients + MAX_BUFFER) ||
524     (Count.local >= ServerInfo.max_clients && !IsExemptLimits(source_p)))
525     {
526 michael 1618 sendto_realops_flags(UMODE_FULL, L_ALL, SEND_NOTICE,
527 adx 30 "Too many clients, rejecting %s[%s].",
528 michael 1080 source_p->name, source_p->host);
529 michael 896 ++ServerStats.is_ref;
530 michael 3171 exit_client(source_p, "Sorry, server is full - try later");
531 adx 30 return;
532     }
533    
534 michael 2314 if (!valid_username(source_p->username, 1))
535 adx 30 {
536 michael 3215 char tmpstr2[IRCD_BUFSIZE] = "";
537 adx 30
538 michael 1618 sendto_realops_flags(UMODE_REJ, L_ALL, SEND_NOTICE,
539     "Invalid username: %s (%s@%s)",
540 michael 1080 source_p->name, source_p->username, source_p->host);
541 michael 896 ++ServerStats.is_ref;
542 michael 1124 snprintf(tmpstr2, sizeof(tmpstr2), "Invalid username [%s]",
543     source_p->username);
544 michael 3171 exit_client(source_p, tmpstr2);
545 adx 30 return;
546     }
547    
548 michael 592 if (check_xline(source_p))
549 adx 30 return;
550    
551 michael 3215 while (hash_find_id((id = uid_get())))
552 michael 1115 ;
553 michael 573
554 michael 1115 strlcpy(source_p->id, id, sizeof(source_p->id));
555     hash_add_id(source_p);
556 adx 30
557 michael 1618 sendto_realops_flags(UMODE_CCONN, L_ALL, SEND_NOTICE,
558 michael 1137 "Client connecting: %s (%s@%s) [%s] {%s} [%s] <%s>",
559 michael 1080 source_p->name, source_p->username, source_p->host,
560 adx 30 ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
561 michael 891 "255.255.255.255" : source_p->sockhost,
562 michael 1632 get_client_class(&source_p->localClient->confs),
563 michael 1137 source_p->info, source_p->id);
564 adx 30
565     if (ConfigFileEntry.invisible_on_connect)
566 michael 159 {
567 michael 1219 AddUMode(source_p, UMODE_INVISIBLE);
568 michael 980 ++Count.invisi;
569 michael 159 }
570 adx 30
571 michael 2314 if (++Count.local > Count.max_loc)
572 adx 30 {
573     Count.max_loc = Count.local;
574    
575     if (!(Count.max_loc % 10))
576 michael 1618 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
577     "New Max Local Clients: %d",
578 adx 30 Count.max_loc);
579     }
580    
581     if (++Count.total > Count.max_tot)
582     Count.max_tot = Count.total;
583 michael 948 ++Count.totalrestartcount;
584 adx 30
585 michael 1080 assert(source_p->servptr == &me);
586     SetClient(source_p);
587     dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->client_list);
588    
589 adx 30 source_p->localClient->allow_read = MAX_FLOOD_BURST;
590    
591 michael 1125 assert(dlinkFind(&unknown_list, source_p));
592 michael 1013
593 michael 1126 dlink_move_node(&source_p->localClient->lclient_node,
594     &unknown_list, &local_client_list);
595 adx 30
596     user_welcome(source_p);
597     add_user_host(source_p->username, source_p->host, 0);
598     SetUserHost(source_p);
599    
600 michael 1080 introduce_client(source_p);
601 adx 30 }
602    
603     /* register_remote_user()
604     *
605 michael 1080 * inputs - source_p remote or directly connected client
606 adx 30 * - username to register as
607     * - host name to register as
608     * - server name
609     * output - NONE
610     * side effects - This function is called when a remote client
611     * is introduced by a server.
612     */
613     void
614 michael 2955 register_remote_user(struct Client *source_p, const char *username,
615     const char *host, const char *server)
616 adx 30 {
617 michael 56 struct Client *target_p = NULL;
618 adx 30
619     assert(source_p->username != username);
620    
621 michael 2345 strlcpy(source_p->host, host, sizeof(source_p->host));
622 adx 30 strlcpy(source_p->username, username, sizeof(source_p->username));
623    
624     /*
625 michael 3317 * Coming from another server, take the servers word for it
626 adx 30 */
627 michael 1169 source_p->servptr = hash_find_server(server);
628 adx 30
629 michael 1618 /*
630     * Super GhostDetect:
631 adx 30 * If we can't find the server the user is supposed to be on,
632     * then simply blow the user away. -Taner
633     */
634     if (source_p->servptr == NULL)
635     {
636 michael 1618 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
637 adx 30 "No server %s for user %s[%s@%s] from %s",
638     server, source_p->name, source_p->username,
639     source_p->host, source_p->from->name);
640 michael 3176 sendto_one(source_p->from,
641     ":%s KILL %s :%s (Ghosted, server %s doesn't exist)",
642 michael 3186 me.id, source_p->id, me.name, server);
643 adx 30
644 michael 1219 AddFlag(source_p, FLAGS_KILLED);
645 michael 3171 exit_client(source_p, "Ghosted Client");
646 adx 30 return;
647     }
648    
649     if ((target_p = source_p->servptr) && target_p->from != source_p->from)
650     {
651 michael 1618 sendto_realops_flags(UMODE_DEBUG, L_ALL, SEND_NOTICE,
652 adx 30 "Bad User [%s] :%s USER %s@%s %s, != %s[%s]",
653 michael 1080 source_p->from->name, source_p->name, source_p->username,
654 adx 30 source_p->host, source_p->servptr->name,
655     target_p->name, target_p->from->name);
656 michael 3176 sendto_one(source_p->from,
657     ":%s KILL %s :%s (NICK from wrong direction (%s != %s))",
658 michael 3186 me.id, source_p->id, me.name, source_p->servptr->name,
659 michael 3176 target_p->from->name);
660    
661 michael 1219 AddFlag(source_p, FLAGS_KILLED);
662 michael 3171 exit_client(source_p, "USER server wrong direction");
663 adx 30 return;
664     }
665    
666 michael 1167 /*
667     * If the nick has been introduced by a services server,
668     * make it a service as well.
669     */
670 michael 1219 if (HasFlag(source_p->servptr, FLAGS_SERVICE))
671     AddFlag(source_p, FLAGS_SERVICE);
672 michael 1167
673 michael 510 if (++Count.total > Count.max_tot)
674     Count.max_tot = Count.total;
675    
676 adx 30 SetClient(source_p);
677 michael 889 dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->client_list);
678 adx 30 add_user_host(source_p->username, source_p->host, 1);
679     SetUserHost(source_p);
680    
681 michael 1976 if (HasFlag(source_p->servptr, FLAGS_EOB))
682     sendto_realops_flags(UMODE_FARCONNECT, L_ALL, SEND_NOTICE,
683     "Client connecting at %s: %s (%s@%s) [%s] <%s>",
684     source_p->servptr->name,
685     source_p->name, source_p->username, source_p->host,
686     source_p->info, source_p->id);
687    
688 michael 1080 introduce_client(source_p);
689 adx 30 }
690    
691     /* valid_hostname()
692     *
693     * Inputs - pointer to hostname
694     * Output - 1 if valid, 0 if not
695     * Side effects - check hostname for validity
696     *
697     * NOTE: this doesn't allow a hostname to begin with a dot and
698     * will not allow more dots than chars.
699     */
700     int
701     valid_hostname(const char *hostname)
702     {
703     const char *p = hostname;
704    
705 michael 3235 assert(p);
706 adx 30
707 michael 2352 if (EmptyString(p) || *p == '.' || *p == ':')
708 michael 56 return 0;
709 adx 30
710 michael 1080 for (; *p; ++p)
711 adx 30 if (!IsHostChar(*p))
712 michael 56 return 0;
713 adx 30
714 michael 1795 return p - hostname <= HOSTLEN;
715 adx 30 }
716    
717     /* valid_username()
718     *
719     * Inputs - pointer to user
720     * Output - 1 if valid, 0 if not
721     * Side effects - check username for validity
722     *
723     * Absolutely always reject any '*' '!' '?' '@' in an user name
724     * reject any odd control characters names.
725     * Allow '.' in username to allow for "first.last"
726     * style of username
727     */
728     int
729 michael 2069 valid_username(const char *username, const int local)
730 adx 30 {
731     int dots = 0;
732     const char *p = username;
733    
734 michael 3235 assert(p);
735 adx 30
736 michael 1080 if (*p == '~')
737 adx 30 ++p;
738    
739 michael 2067 /*
740     * Reject usernames that don't start with an alphanum
741 adx 30 * i.e. reject jokers who have '-@somehost' or '.@somehost'
742     * or "-hi-@somehost", "h-----@somehost" would still be accepted.
743     */
744     if (!IsAlNum(*p))
745 michael 56 return 0;
746 adx 30
747 michael 2067 if (local)
748 adx 30 {
749 michael 2067 while (*++p)
750 adx 30 {
751 michael 2067 if ((*p == '.') && ConfigFileEntry.dots_in_ident)
752     {
753     if (++dots > ConfigFileEntry.dots_in_ident)
754     return 0;
755     if (!IsUserChar(*(p + 1)))
756     return 0;
757     }
758     else if (!IsUserChar(*p))
759 michael 56 return 0;
760 adx 30 }
761     }
762 michael 2067 else
763     {
764     while (*++p)
765     if (!IsUserChar(*p))
766     return 0;
767     }
768 adx 30
769 michael 2067 return p - username <= USERLEN;;
770 adx 30 }
771    
772 michael 1165 /* clean_nick_name()
773     *
774     * input - nickname
775     * - whether it's a local nick (1) or remote (0)
776     * output - none
777     * side effects - walks through the nickname, returning 0 if erroneous
778     */
779     int
780     valid_nickname(const char *nickname, const int local)
781     {
782     const char *p = nickname;
783 michael 3318
784 michael 1165 assert(nickname && *nickname);
785    
786 michael 3317 /*
787     * Nicks can't start with a digit or - or be 0 length.
788     */
789 michael 1165 if (*p == '-' || (IsDigit(*p) && local) || *p == '\0')
790     return 0;
791    
792     for (; *p; ++p)
793     if (!IsNickChar(*p))
794     return 0;
795    
796 michael 1431 return p - nickname <= NICKLEN;
797 michael 1165 }
798    
799 adx 30 /* send_umode()
800     * send the MODE string for user (user) to connection client_p
801     * -avalon
802 db 849 *
803     * inputs - client_p
804     * - source_p
805     * - int old
806     * - sendmask mask of modes to send
807     * - suplied umode_buf
808     * output - NONE
809 adx 30 */
810     void
811     send_umode(struct Client *client_p, struct Client *source_p,
812     unsigned int old, unsigned int sendmask, char *umode_buf)
813     {
814 michael 1013 char *m = umode_buf;
815 adx 30 int what = 0;
816     unsigned int i;
817     unsigned int flag;
818    
819 michael 56 /*
820 michael 3317 * Build a string in umode_buf to represent the change in the user's
821 adx 30 * mode between the new (source_p->umodes) and 'old'.
822     */
823 michael 2314 for (i = 0; i < 128; ++i)
824 adx 30 {
825     flag = user_modes[i];
826     if (!flag)
827     continue;
828    
829     if (MyClient(source_p) && !(flag & sendmask))
830     continue;
831    
832 michael 1219 if ((flag & old) && !HasUMode(source_p, flag))
833 adx 30 {
834     if (what == MODE_DEL)
835     *m++ = (char)i;
836     else
837     {
838     what = MODE_DEL;
839     *m++ = '-';
840     *m++ = (char)i;
841     }
842     }
843 michael 1219 else if (!(flag & old) && HasUMode(source_p, flag))
844 adx 30 {
845     if (what == MODE_ADD)
846     *m++ = (char)i;
847     else
848     {
849     what = MODE_ADD;
850     *m++ = '+';
851     *m++ = (char)i;
852     }
853     }
854     }
855    
856     *m = '\0';
857    
858     if (*umode_buf && client_p)
859 michael 528 sendto_one(client_p, ":%s!%s@%s MODE %s :%s",
860     source_p->name, source_p->username,
861     source_p->host, source_p->name, umode_buf);
862 adx 30 }
863    
864     /* send_umode_out()
865     *
866     * inputs -
867     * output - NONE
868     * side effects - Only send ubuf out to servers that know about this client
869     */
870     void
871     send_umode_out(struct Client *client_p, struct Client *source_p,
872     unsigned int old)
873     {
874 michael 3215 char buf[IRCD_BUFSIZE] = "";
875 adx 30
876 michael 1294 send_umode(NULL, source_p, old, SEND_UMODES, buf);
877 adx 30
878 michael 573 if (buf[0])
879 michael 3155 sendto_server(source_p, NOCAPS, NOCAPS, ":%s MODE %s :%s",
880 michael 3186 source_p->id, source_p->id, buf);
881 adx 30
882     if (client_p && MyClient(client_p))
883     send_umode(client_p, source_p, old, 0xffffffff, buf);
884     }
885    
886 michael 1819 void
887 michael 2137 user_set_hostmask(struct Client *target_p, const char *hostname, const int what)
888 michael 1819 {
889 michael 2141 dlink_node *ptr = NULL;
890    
891 michael 2145 if (!strcmp(target_p->host, hostname))
892     return;
893 michael 2141
894 michael 2137 switch (what)
895     {
896     case MODE_ADD:
897     AddUMode(target_p, UMODE_HIDDENHOST);
898     AddFlag(target_p, FLAGS_IP_SPOOFING);
899     break;
900     case MODE_DEL:
901     DelUMode(target_p, UMODE_HIDDENHOST);
902 michael 2138
903 michael 2141 if (!HasFlag(target_p, FLAGS_AUTH_SPOOF))
904 michael 2138 DelFlag(target_p, FLAGS_IP_SPOOFING);
905 michael 2137 break;
906 michael 2145 default: return;
907 michael 2137 }
908    
909 michael 2289 if (ConfigFileEntry.cycle_on_host_change)
910     sendto_common_channels_local(target_p, 0, 0, ":%s!%s@%s QUIT :Changing hostname",
911     target_p->name, target_p->username, target_p->host);
912 michael 2145
913     if (IsUserHostIp(target_p))
914     delete_user_host(target_p->username, target_p->host, !MyConnect(target_p));
915    
916     strlcpy(target_p->host, hostname, sizeof(target_p->host));
917    
918     add_user_host(target_p->username, target_p->host, !MyConnect(target_p));
919     SetUserHost(target_p);
920    
921 michael 1819 if (MyClient(target_p))
922 michael 2137 {
923 michael 3109 sendto_one_numeric(target_p, &me, RPL_NEWHOSTIS, target_p->host);
924 michael 1819 clear_ban_cache_client(target_p);
925 michael 2137 }
926 michael 2141
927 michael 2283 if (!ConfigFileEntry.cycle_on_host_change)
928     return;
929    
930 michael 2141 DLINK_FOREACH(ptr, target_p->channel.head)
931     {
932 michael 3215 char modebuf[4], nickbuf[NICKLEN * 3 + 3] = "";
933 michael 2141 char *p = modebuf;
934     int len = 0;
935     const struct Membership *ms = ptr->data;
936    
937 michael 2283 if (has_member_flags(ms, CHFL_CHANOP))
938     {
939 michael 2141 *p++ = 'o';
940     len += snprintf(nickbuf + len, sizeof(nickbuf) - len, len ? " %s" : "%s", target_p->name);
941     }
942    
943 michael 2283 if (has_member_flags(ms, CHFL_HALFOP))
944     {
945 michael 2141 *p++ = 'h';
946     len += snprintf(nickbuf + len, sizeof(nickbuf) - len, len ? " %s" : "%s", target_p->name);
947     }
948    
949 michael 2283 if (has_member_flags(ms, CHFL_VOICE))
950     {
951 michael 2141 *p++ = 'v';
952     len += snprintf(nickbuf + len, sizeof(nickbuf) - len, len ? " %s" : "%s", target_p->name);
953     }
954    
955     *p = '\0';
956    
957     sendto_channel_local_butone(target_p, 0, 0, ms->chptr, ":%s!%s@%s JOIN :%s",
958     target_p->name, target_p->username, target_p->host,
959     ms->chptr->chname);
960     if (nickbuf[0])
961     sendto_channel_local_butone(target_p, 0, 0, ms->chptr, ":%s MODE %s +%s %s",
962     target_p->servptr->name, ms->chptr->chname,
963     modebuf, nickbuf);
964    
965     }
966    
967     if (target_p->away[0])
968     sendto_common_channels_local(target_p, 0, CAP_AWAY_NOTIFY,
969     ":%s!%s@%s AWAY :%s",
970     target_p->name, target_p->username,
971     target_p->host, target_p->away);
972 michael 1819 }
973    
974 michael 3317 /*! \brief Blindly opers up given source_p, using conf info.
975     * All checks on passwords have already been done.
976     * \param source_p Pointer to given client to oper
977 adx 30 */
978     void
979     oper_up(struct Client *source_p)
980     {
981 michael 1469 const unsigned int old = source_p->umodes;
982 michael 1644 const struct MaskItem *conf = source_p->localClient->confs.head->data;
983 adx 30
984 michael 56 assert(source_p->localClient->confs.head);
985    
986     ++Count.oper;
987 adx 30 SetOper(source_p);
988    
989 michael 1632 if (conf->modes)
990     AddUMode(source_p, conf->modes);
991 michael 56 else if (ConfigFileEntry.oper_umodes)
992 michael 1219 AddUMode(source_p, ConfigFileEntry.oper_umodes);
993 adx 30
994 michael 1219 if (!(old & UMODE_INVISIBLE) && HasUMode(source_p, UMODE_INVISIBLE))
995 michael 882 ++Count.invisi;
996 michael 1219 if ((old & UMODE_INVISIBLE) && !HasUMode(source_p, UMODE_INVISIBLE))
997 michael 882 --Count.invisi;
998    
999 adx 30 assert(dlinkFind(&oper_list, source_p) == NULL);
1000     dlinkAdd(source_p, make_dlink_node(), &oper_list);
1001    
1002 michael 1632 AddOFlag(source_p, conf->port);
1003 adx 30
1004 michael 1294 if (HasOFlag(source_p, OPER_FLAG_ADMIN))
1005 michael 1158 AddUMode(source_p, UMODE_ADMIN);
1006 adx 30
1007 michael 1618 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, "%s is now an operator",
1008 michael 1458 get_oper_name(source_p));
1009 adx 30 send_umode_out(source_p, source_p, old);
1010 michael 3109 sendto_one_numeric(source_p, &me, RPL_YOUREOPER);
1011 adx 30 }
1012    
1013 michael 573 static char new_uid[TOTALSIDUID + 1]; /* allow for \0 */
1014 adx 30
1015 michael 573 int
1016     valid_sid(const char *sid)
1017     {
1018     if (strlen(sid) == IRC_MAXSID)
1019     if (IsDigit(*sid))
1020 michael 582 if (IsAlNum(*(sid + 1)) && IsAlNum(*(sid + 2)))
1021 michael 573 return 1;
1022    
1023     return 0;
1024     }
1025    
1026 adx 30 /*
1027     * init_uid()
1028 michael 2345 *
1029 adx 30 * inputs - NONE
1030     * output - NONE
1031     * side effects - new_uid is filled in with server id portion (sid)
1032     * (first 3 bytes) or defaulted to 'A'.
1033     * Rest is filled in with 'A'
1034     */
1035     void
1036     init_uid(void)
1037     {
1038     memset(new_uid, 0, sizeof(new_uid));
1039    
1040 michael 1115 if (!EmptyString(ServerInfo.sid))
1041 michael 573 strlcpy(new_uid, ServerInfo.sid, sizeof(new_uid));
1042    
1043 michael 3235 for (unsigned int i = 0; i < IRC_MAXSID; ++i)
1044 michael 2345 if (new_uid[i] == '\0')
1045 adx 30 new_uid[i] = 'A';
1046    
1047 michael 573 /* NOTE: if IRC_MAXUID != 6, this will have to be rewritten */
1048     memcpy(new_uid + IRC_MAXSID, "AAAAA@", IRC_MAXUID);
1049 adx 30 }
1050    
1051     /*
1052     * add_one_to_uid
1053     *
1054     * inputs - index number into new_uid
1055     * output - NONE
1056     * side effects - new_uid is incremented by one
1057     * note this is a recursive function
1058     */
1059     static void
1060     add_one_to_uid(int i)
1061     {
1062 michael 56 if (i != IRC_MAXSID) /* Not reached server SID portion yet? */
1063 adx 30 {
1064     if (new_uid[i] == 'Z')
1065     new_uid[i] = '0';
1066     else if (new_uid[i] == '9')
1067     {
1068     new_uid[i] = 'A';
1069     add_one_to_uid(i-1);
1070     }
1071 michael 573 else
1072     ++new_uid[i];
1073 adx 30 }
1074     else
1075     {
1076 michael 573 /* NOTE: if IRC_MAXUID != 6, this will have to be rewritten */
1077 adx 30 if (new_uid[i] == 'Z')
1078 michael 573 memcpy(new_uid + IRC_MAXSID, "AAAAAA", IRC_MAXUID);
1079 adx 30 else
1080 michael 573 ++new_uid[i];
1081 adx 30 }
1082     }
1083    
1084     /*
1085 michael 573 * uid_get
1086     *
1087     * inputs - struct Client *
1088     * output - new UID is returned to caller
1089     * side effects - new_uid is incremented by one.
1090     */
1091 michael 1080 static const char *
1092     uid_get(void)
1093 michael 573 {
1094     add_one_to_uid(TOTALSIDUID - 1); /* index from 0 */
1095     return new_uid;
1096     }
1097    
1098     /*
1099 adx 30 * init_isupport()
1100     *
1101     * input - NONE
1102     * output - NONE
1103     * side effects - Must be called before isupport is enabled
1104     */
1105     void
1106     init_isupport(void)
1107     {
1108     add_isupport("CALLERID", NULL, -1);
1109     add_isupport("CASEMAPPING", CASEMAP, -1);
1110 adx 716 add_isupport("DEAF", "D", -1);
1111 adx 30 add_isupport("KICKLEN", NULL, KICKLEN);
1112     add_isupport("MODES", NULL, MAXMODEPARAMS);
1113     #ifdef HALFOPS
1114     add_isupport("PREFIX", "(ohv)@%+", -1);
1115     add_isupport("STATUSMSG", "@%+", -1);
1116     #else
1117     add_isupport("PREFIX", "(ov)@+", -1);
1118     add_isupport("STATUSMSG", "@+", -1);
1119     #endif
1120 michael 2175 add_isupport("EXCEPTS", "e", -1);
1121     add_isupport("INVEX", "I", -1);
1122 adx 30 }
1123    
1124     /*
1125     * add_isupport()
1126     *
1127     * input - name of supported function
1128     * - options if any
1129     * - number if any
1130     * output - NONE
1131     * side effects - Each supported item must call this when activated
1132     */
1133     void
1134     add_isupport(const char *name, const char *options, int n)
1135     {
1136     dlink_node *ptr;
1137     struct Isupport *support;
1138    
1139     DLINK_FOREACH(ptr, support_list.head)
1140     {
1141     support = ptr->data;
1142     if (irccmp(support->name, name) == 0)
1143     {
1144     MyFree(support->name);
1145     MyFree(support->options);
1146     break;
1147     }
1148     }
1149    
1150     if (ptr == NULL)
1151     {
1152     support = MyMalloc(sizeof(*support));
1153     dlinkAddTail(support, &support->node, &support_list);
1154     }
1155    
1156 michael 1646 support->name = xstrdup(name);
1157 adx 30 if (options != NULL)
1158 michael 1646 support->options = xstrdup(options);
1159 adx 30 support->number = n;
1160    
1161     rebuild_isupport_message_line();
1162     }
1163    
1164     /*
1165     * delete_isupport()
1166     *
1167     * input - name of supported function
1168     * output - NONE
1169     * side effects - Each supported item must call this when deactivated
1170     */
1171     void
1172     delete_isupport(const char *name)
1173     {
1174     dlink_node *ptr;
1175     struct Isupport *support;
1176    
1177     DLINK_FOREACH(ptr, support_list.head)
1178     {
1179     support = ptr->data;
1180     if (irccmp(support->name, name) == 0)
1181     {
1182     dlinkDelete(ptr, &support_list);
1183     MyFree(support->name);
1184     MyFree(support->options);
1185     MyFree(support);
1186     break;
1187     }
1188     }
1189    
1190     rebuild_isupport_message_line();
1191     }
1192    
1193     /*
1194     * rebuild_isupport_message_line
1195     *
1196     * input - NONE
1197     * output - NONE
1198     * side effects - Destroy the isupport MessageFile lines, and rebuild.
1199     */
1200     void
1201     rebuild_isupport_message_line(void)
1202     {
1203     char isupportbuffer[IRCD_BUFSIZE];
1204     char *p = isupportbuffer;
1205 michael 2159 dlink_node *ptr = NULL, *ptr_next = NULL;
1206 adx 30 int n = 0;
1207     int tokens = 0;
1208     size_t len = 0;
1209 michael 3109 size_t reserve = strlen(me.name) + HOSTLEN + strlen(numeric_form(RPL_ISUPPORT));
1210 adx 30
1211 michael 2159 DLINK_FOREACH_SAFE(ptr, ptr_next, support_list_lines.head)
1212     {
1213     dlinkDelete(ptr, &support_list_lines);
1214     MyFree(ptr->data);
1215     free_dlink_node(ptr);
1216     }
1217 adx 30
1218     DLINK_FOREACH(ptr, support_list.head)
1219     {
1220     struct Isupport *support = ptr->data;
1221    
1222 michael 1793 p += (n = sprintf(p, "%s", support->name));
1223 adx 30 len += n;
1224    
1225     if (support->options != NULL)
1226     {
1227 michael 1793 p += (n = sprintf(p, "=%s", support->options));
1228 adx 30 len += n;
1229     }
1230    
1231     if (support->number > 0)
1232     {
1233 michael 1793 p += (n = sprintf(p, "=%d", support->number));
1234 adx 30 len += n;
1235     }
1236    
1237     *p++ = ' ';
1238     len++;
1239     *p = '\0';
1240    
1241     if (++tokens == (MAXPARA-2) || len >= (sizeof(isupportbuffer)-reserve))
1242     { /* arbritrary for now */
1243     if (*--p == ' ')
1244 michael 56 *p = '\0';
1245 adx 30
1246 michael 2159 dlinkAddTail(xstrdup(isupportbuffer), make_dlink_node(), &support_list_lines);
1247 adx 30 p = isupportbuffer;
1248     len = 0;
1249     n = tokens = 0;
1250     }
1251     }
1252    
1253     if (len != 0)
1254     {
1255     if (*--p == ' ')
1256     *p = '\0';
1257 michael 2159 dlinkAddTail(xstrdup(isupportbuffer), make_dlink_node(), &support_list_lines);
1258 adx 30 }
1259     }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision