Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / s_user.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_user.c (formerly ircd/s_msg.c)
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
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 1, or (at your option)
12  * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25 #include "config.h"
26
27 #include "s_user.h"
28 #include "IPcheck.h"
29 #include "channel.h"
30 #include "class.h"
31 #include "client.h"
32 #include "hash.h"
33 #include "ircd.h"
34 #include "ircd_alloc.h"
35 #include "ircd_chattr.h"
36 #include "ircd_features.h"
37 #include "ircd_log.h"
38 #include "ircd_policy.h"
39 #include "ircd_reply.h"
40 #include "ircd_snprintf.h"
41 #include "ircd_string.h"
42 #include "list.h"
43 #include "match.h"
44 #include "motd.h"
45 #include "msg.h"
46 #include "msgq.h"
47 #include "numeric.h"
48 #include "numnicks.h"
49 #include "parse.h"
50 #include "querycmds.h"
51 #include "random.h"
52 #include "s_bsd.h"
53 #include "s_conf.h"
54 #include "s_debug.h"
55 #include "s_misc.h"
56 #include "s_serv.h" /* max_client_count */
57 #include "send.h"
58 #include "struct.h"
59 #include "support.h"
60 #include "supported.h"
61 #include "sys.h"
62 #include "userload.h"
63 #include "version.h"
64 #include "whowas.h"
65
66 #include "handlers.h" /* m_motd and m_lusers */
67
68 #include <assert.h>
69 #include <fcntl.h>
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <string.h>
73 #include <sys/stat.h>
74
75
76 static int userCount = 0;
77
78 /*
79  * 'make_user' add's an User information block to a client
80  * if it was not previously allocated.
81  */
82 struct User *make_user(struct Client *cptr)
83 {
84   assert(0 != cptr);
85
86   if (!cli_user(cptr)) {
87     cli_user(cptr) = (struct User*) MyMalloc(sizeof(struct User));
88     assert(0 != cli_user(cptr));
89
90     /* All variables are 0 by default */
91     memset(cli_user(cptr), 0, sizeof(struct User));
92 #ifdef  DEBUGMODE
93     ++userCount;
94 #endif
95     cli_user(cptr)->refcnt = 1;
96   }
97   return cli_user(cptr);
98 }
99
100 /*
101  * free_user
102  *
103  * Decrease user reference count by one and release block, if count reaches 0.
104  */
105 void free_user(struct User* user)
106 {
107   assert(0 != user);
108   assert(0 < user->refcnt);
109
110   if (--user->refcnt == 0) {
111     if (user->away)
112       MyFree(user->away);
113     /*
114      * sanity check
115      */
116     assert(0 == user->joined);
117     assert(0 == user->invited);
118     assert(0 == user->channel);
119
120     MyFree(user);
121 #ifdef  DEBUGMODE
122     --userCount;
123 #endif
124   }
125 }
126
127 void user_count_memory(size_t* count_out, size_t* bytes_out)
128 {
129   assert(0 != count_out);
130   assert(0 != bytes_out);
131   *count_out = userCount;
132   *bytes_out = userCount * sizeof(struct User);
133 }
134
135
136 /*
137  * next_client
138  *
139  * Local function to find the next matching client. The search
140  * can be continued from the specified client entry. Normal
141  * usage loop is:
142  *
143  * for (x = client; x = next_client(x,mask); x = x->next)
144  *     HandleMatchingClient;
145  *
146  */
147 struct Client *next_client(struct Client *next, const char* ch)
148 {
149   struct Client *tmp = next;
150
151   if (!tmp)
152     return NULL;
153
154   next = FindClient(ch);
155   next = next ? next : tmp;
156   if (cli_prev(tmp) == next)
157     return NULL;
158   if (next != tmp)
159     return next;
160   for (; next; next = cli_next(next))
161     if (!match(ch, cli_name(next)))
162       break;
163   return next;
164 }
165
166 /*
167  * hunt_server
168  *
169  *    Do the basic thing in delivering the message (command)
170  *    across the relays to the specific server (server) for
171  *    actions.
172  *
173  *    Note:   The command is a format string and *MUST* be
174  *            of prefixed style (e.g. ":%s COMMAND %s ...").
175  *            Command can have only max 8 parameters.
176  *
177  *    server  parv[server] is the parameter identifying the
178  *            target server.
179  *
180  *    *WARNING*
181  *            parv[server] is replaced with the pointer to the
182  *            real servername from the matched client (I'm lazy
183  *            now --msa).
184  *
185  *    returns: (see #defines)
186  */
187 int hunt_server_cmd(struct Client *from, const char *cmd, const char *tok,
188                     struct Client *one, int MustBeOper, const char *pattern,
189                     int server, int parc, char *parv[])
190 {
191   struct Client *acptr;
192   char *to;
193
194   /* Assume it's me, if no server or an unregistered client */
195   if (parc <= server || EmptyString((to = parv[server])) || IsUnknown(from))
196     return (HUNTED_ISME);
197
198   /* Make sure it's a server */
199   if (MyUser(from)) {
200     /* Make sure it's a server */
201     if (!strchr(to, '*')) {
202       if (0 == (acptr = FindClient(to)))
203         return HUNTED_NOSUCH;
204
205       if (cli_user(acptr))
206         acptr = cli_user(acptr)->server;
207     } else if (!(acptr = find_match_server(to))) {
208       send_reply(from, ERR_NOSUCHSERVER, to);
209       return (HUNTED_NOSUCH);
210     }
211   } else if (!(acptr = FindNServer(to)))
212     return (HUNTED_NOSUCH);        /* Server broke off in the meantime */
213
214   if (IsMe(acptr))
215     return (HUNTED_ISME);
216
217   if (MustBeOper && !IsPrivileged(from)) {
218     send_reply(from, ERR_NOPRIVILEGES);
219     return HUNTED_NOSUCH;
220   }
221
222   assert(!IsServer(from));
223
224   parv[server] = (char *) acptr; /* HACK! HACK! HACK! ARGH! */
225
226   sendcmdto_one(from, cmd, tok, acptr, pattern, parv[1], parv[2], parv[3],
227                 parv[4], parv[5], parv[6], parv[7], parv[8]);
228
229   return (HUNTED_PASS);
230 }
231
232 int hunt_server_prio_cmd(struct Client *from, const char *cmd, const char *tok,
233                          struct Client *one, int MustBeOper,
234                          const char *pattern, int server, int parc,
235                          char *parv[])
236 {
237   struct Client *acptr;
238   char *to;
239
240   /* Assume it's me, if no server or an unregistered client */
241   if (parc <= server || EmptyString((to = parv[server])) || IsUnknown(from))
242     return (HUNTED_ISME);
243
244   /* Make sure it's a server */
245   if (MyUser(from)) {
246     /* Make sure it's a server */
247     if (!strchr(to, '*')) {
248       if (0 == (acptr = FindClient(to)))
249         return HUNTED_NOSUCH;
250
251       if (cli_user(acptr))
252         acptr = cli_user(acptr)->server;
253     } else if (!(acptr = find_match_server(to))) {
254       send_reply(from, ERR_NOSUCHSERVER, to);
255       return (HUNTED_NOSUCH);
256     }
257   } else if (!(acptr = FindNServer(to)))
258     return (HUNTED_NOSUCH);        /* Server broke off in the meantime */
259
260   if (IsMe(acptr))
261     return (HUNTED_ISME);
262
263   if (MustBeOper && !IsPrivileged(from)) {
264     send_reply(from, ERR_NOPRIVILEGES);
265     return HUNTED_NOSUCH;
266   }
267
268   assert(!IsServer(from));
269
270   parv[server] = (char *) acptr; /* HACK! HACK! HACK! ARGH! */
271
272   sendcmdto_prio_one(from, cmd, tok, acptr, pattern, parv[1], parv[2], parv[3],
273                      parv[4], parv[5], parv[6], parv[7], parv[8]);
274
275   return (HUNTED_PASS);
276 }
277
278 /*
279  * 'do_nick_name' ensures that the given parameter (nick) is really a proper
280  * string for a nickname (note, the 'nick' may be modified in the process...)
281  *
282  * RETURNS the length of the final NICKNAME (0, if nickname is invalid)
283  *
284  * Nickname characters are in range 'A'..'}', '_', '-', '0'..'9'
285  *  anything outside the above set will terminate nickname.
286  * In addition, the first character cannot be '-' or a Digit.
287  *
288  * Note:
289  *  The '~'-character should be allowed, but a change should be global,
290  *  some confusion would result if only few servers allowed it...
291  */
292 int do_nick_name(char* nick)
293 {
294   char* ch  = nick;
295   char* end = ch + NICKLEN;
296   assert(0 != ch);
297
298   if (*ch == '-' || IsDigit(*ch))        /* first character in [0..9-] */
299     return 0;
300
301   for ( ; (ch < end) && *ch; ++ch)
302     if (!IsNickChar(*ch))
303       break;
304
305   *ch = '\0';
306
307   return (ch - nick);
308 }
309
310 /*
311  * clean_user_id
312  *
313  * Copy `source' to `dest', replacing all occurances of '~' and characters that
314  * are not `isIrcUi' by an underscore.
315  * Copies at most USERLEN - 1 characters or up till the first control character.
316  * If `tilde' is true, then a tilde is prepended to `dest'.
317  * Note that `dest' and `source' can point to the same area or to different
318  * non-overlapping areas.
319  */
320 static char *clean_user_id(char *dest, char *source, int tilde)
321 {
322   char ch;
323   char *d = dest;
324   char *s = source;
325   int rlen = USERLEN;
326
327   ch = *s++;                        /* Store first character to copy: */
328   if (tilde)
329   {
330     *d++ = '~';                        /* If `dest' == `source', then this overwrites `ch' */
331     --rlen;
332   }
333   while (ch && !IsCntrl(ch) && rlen--)
334   {
335     char nch = *s++;        /* Store next character to copy */
336     *d++ = IsUserChar(ch) ? ch : '_';        /* This possibly overwrites it */
337     if (nch == '~')
338       ch = '_';
339     else
340       ch = nch;
341   }
342   *d = 0;
343   return dest;
344 }
345
346 /*
347  * register_user
348  *
349  * This function is called when both NICK and USER messages
350  * have been accepted for the client, in whatever order. Only
351  * after this the USER message is propagated.
352  *
353  * NICK's must be propagated at once when received, although
354  * it would be better to delay them too until full info is
355  * available. Doing it is not so simple though, would have
356  * to implement the following:
357  *
358  * 1) user telnets in and gives only "NICK foobar" and waits
359  * 2) another user far away logs in normally with the nick
360  *    "foobar" (quite legal, as this server didn't propagate it).
361  * 3) now this server gets nick "foobar" from outside, but
362  *    has already the same defined locally. Current server
363  *    would just issue "KILL foobar" to clean out dups. But,
364  *    this is not fair. It should actually request another
365  *    nick from local user or kill him/her...
366  */
367 int register_user(struct Client *cptr, struct Client *sptr,
368                   const char *nick, char *username)
369 {
370   struct ConfItem* aconf;
371   char*            parv[3];
372   char*            tmpstr;
373   char*            tmpstr2;
374   char             c = 0;    /* not alphanum */
375   char             d = 'a';  /* not a digit */
376   short            upper = 0;
377   short            lower = 0;
378   short            pos = 0;
379   short            leadcaps = 0;
380   short            other = 0;
381   short            digits = 0;
382   short            badid = 0;
383   short            digitgroups = 0;
384   struct User*     user = cli_user(sptr);
385   char             ip_base64[8];
386   char             featurebuf[512];
387
388   user->last = CurrentTime;
389   parv[0] = cli_name(sptr);
390   parv[1] = parv[2] = NULL;
391
392   if (MyConnect(sptr))
393   {
394     static time_t last_too_many1;
395     static time_t last_too_many2;
396
397     assert(cptr == sptr);
398     switch (conf_check_client(sptr))
399     {
400       case ACR_OK:
401         break;
402       case ACR_NO_AUTHORIZATION:
403         sendto_opmask_butone(0, SNO_UNAUTH, "Unauthorized connection from %s.",
404                              get_client_name(sptr, HIDE_IP));
405         ++ServerStats->is_ref;
406         return exit_client(cptr, sptr, &me,
407                            "No Authorization - use another server");
408       case ACR_TOO_MANY_IN_CLASS:
409         if (CurrentTime - last_too_many1 >= (time_t) 60)
410         {
411           last_too_many1 = CurrentTime;
412           sendto_opmask_butone(0, SNO_TOOMANY, "Too many connections in "
413                                "class %i for %s.", get_client_class(sptr),
414                                get_client_name(sptr, SHOW_IP));
415         }
416         ++ServerStats->is_ref;
417         IPcheck_connect_fail(cli_ip(sptr));
418         return exit_client(cptr, sptr, &me,
419                            "Sorry, your connection class is full - try "
420                            "again later or try another server");
421       case ACR_TOO_MANY_FROM_IP:
422         if (CurrentTime - last_too_many2 >= (time_t) 60)
423         {
424           last_too_many2 = CurrentTime;
425           sendto_opmask_butone(0, SNO_TOOMANY, "Too many connections from "
426                                "same IP for %s.",
427                                get_client_name(sptr, SHOW_IP));
428         }
429         ++ServerStats->is_ref;
430         return exit_client(cptr, sptr, &me,
431                            "Too many connections from your host");
432       case ACR_ALREADY_AUTHORIZED:
433         /* Can this ever happen? */
434       case ACR_BAD_SOCKET:
435         ++ServerStats->is_ref;
436         IPcheck_connect_fail(cli_ip(sptr));
437         return exit_client(cptr, sptr, &me, "Unknown error -- Try again");
438     }
439     ircd_strncpy(user->host, cli_sockhost(sptr), HOSTLEN);
440     aconf = cli_confs(sptr)->value.aconf;
441
442     clean_user_id(user->username,
443         (cli_flags(sptr) & FLAGS_GOTID) ? cli_username(sptr) : username,
444         (cli_flags(sptr) & FLAGS_DOID) && !(cli_flags(sptr) & FLAGS_GOTID));
445
446     if ((user->username[0] == '\0')
447         || ((user->username[0] == '~') && (user->username[1] == '\000')))
448       return exit_client(cptr, sptr, &me, "USER: Bogus userid.");
449
450     if (!EmptyString(aconf->passwd)
451         && !(IsDigit(*aconf->passwd) && !aconf->passwd[1])
452         && strcmp(cli_passwd(sptr), aconf->passwd))
453     {
454       ServerStats->is_ref++;
455       IPcheck_connect_fail(cli_ip(sptr));
456       send_reply(sptr, ERR_PASSWDMISMATCH);
457       return exit_client(cptr, sptr, &me, "Bad Password");
458     }
459     memset(cli_passwd(sptr), 0, sizeof(cli_passwd(sptr)));
460     /*
461      * following block for the benefit of time-dependent K:-lines
462      */
463     if (find_kill(sptr)) {
464       ServerStats->is_ref++;
465       IPcheck_connect_fail(cli_ip(sptr));
466       return exit_client(cptr, sptr, &me, "K-lined");
467     }
468     /*
469      * Check for mixed case usernames, meaning probably hacked.  Jon2 3-94
470      * Summary of rules now implemented in this patch:         Ensor 11-94
471      * In a mixed-case name, if first char is upper, one more upper may
472      * appear anywhere.  (A mixed-case name *must* have an upper first
473      * char, and may have one other upper.)
474      * A third upper may appear if all 3 appear at the beginning of the
475      * name, separated only by "others" (-/_/.).
476      * A single group of digits is allowed anywhere.
477      * Two groups of digits are allowed if at least one of the groups is
478      * at the beginning or the end.
479      * Only one '-', '_', or '.' is allowed (or two, if not consecutive).
480      * But not as the first or last char.
481      * No other special characters are allowed.
482      * Name must contain at least one letter.
483      */
484     tmpstr2 = tmpstr = (username[0] == '~' ? &username[1] : username);
485     while (*tmpstr && !badid)
486     {
487       pos++;
488       c = *tmpstr;
489       tmpstr++;
490       if (IsLower(c))
491       {
492         lower++;
493       }
494       else if (IsUpper(c))
495       {
496         upper++;
497         if ((leadcaps || pos == 1) && !lower && !digits)
498           leadcaps++;
499       }
500       else if (IsDigit(c))
501       {
502         digits++;
503         if (pos == 1 || !IsDigit(d))
504         {
505           digitgroups++;
506           if (digitgroups > 2)
507             badid = 1;
508         }
509       }
510       else if (c == '-' || c == '_' || c == '.')
511       {
512         other++;
513         if (pos == 1)
514           badid = 1;
515         else if (d == '-' || d == '_' || d == '.' || other > 2)
516           badid = 1;
517       }
518       else
519         badid = 1;
520       d = c;
521     }
522     if (!badid)
523     {
524       if (lower && upper && (!leadcaps || leadcaps > 3 ||
525           (upper > 2 && upper > leadcaps)))
526         badid = 1;
527       else if (digitgroups == 2 && !(IsDigit(tmpstr2[0]) || IsDigit(c)))
528         badid = 1;
529       else if ((!lower && !upper) || !IsAlnum(c))
530         badid = 1;
531     }
532     if (badid && (!(cli_flags(sptr) & FLAGS_GOTID) ||
533         strcmp(cli_username(sptr), username) != 0))
534     {
535       ServerStats->is_ref++;
536
537       send_reply(cptr, SND_EXPLICIT | ERR_INVALIDUSERNAME,
538                  ":Your username is invalid.");
539       send_reply(cptr, SND_EXPLICIT | ERR_INVALIDUSERNAME,
540                  ":Connect with your real username, in lowercase.");
541       send_reply(cptr, SND_EXPLICIT | ERR_INVALIDUSERNAME,
542                  ":If your mail address were foo@bar.com, your username "
543                  "would be foo.");
544       return exit_client(cptr, sptr, &me, "USER: Bad username");
545     }
546     Count_unknownbecomesclient(sptr, UserStats);
547   }
548   else {
549     ircd_strncpy(user->username, username, USERLEN);
550     Count_newremoteclient(UserStats, user->server);
551   }
552   SetUser(sptr);
553
554   if (IsInvisible(sptr))
555     ++UserStats.inv_clients;
556   if (IsOper(sptr))
557     ++UserStats.opers;
558
559   if (MyConnect(sptr)) {
560     cli_handler(sptr) = CLIENT_HANDLER;
561     release_dns_reply(sptr);
562
563     send_reply(sptr, RPL_WELCOME, nick);
564     /*
565      * This is a duplicate of the NOTICE but see below...
566      */
567     send_reply(sptr, RPL_YOURHOST, cli_name(&me), version);
568     send_reply(sptr, RPL_CREATED, creation);
569     send_reply(sptr, RPL_MYINFO, cli_name(&me), version);
570     ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES, FEATURESVALUES);
571     send_reply(sptr, RPL_ISUPPORT, featurebuf);
572     m_lusers(sptr, sptr, 1, parv);
573     update_load();
574     motd_signon(sptr);
575 /*      nextping = CurrentTime; */
576     if (cli_snomask(sptr) & SNO_NOISY)
577       set_snomask(sptr, cli_snomask(sptr) & SNO_NOISY, SNO_ADD);
578     IPcheck_connect_succeeded(sptr);
579   }
580   else
581     /* if (IsServer(cptr)) */
582   {
583     struct Client *acptr;
584
585     acptr = user->server;
586     if (cli_from(acptr) != cli_from(sptr))
587     {
588       sendcmdto_one(&me, CMD_KILL, cptr, "%C :%s (%s != %s[%s])",
589                     sptr, cli_name(&me), cli_name(user->server), cli_name(cli_from(acptr)),
590                     cli_sockhost(cli_from(acptr)));
591       cli_flags(sptr) |= FLAGS_KILLED;
592       return exit_client(cptr, sptr, &me, "NICK server wrong direction");
593     }
594     else
595       cli_flags(sptr) |= (cli_flags(acptr) & FLAGS_TS8);
596
597     /*
598      * Check to see if this user is being propogated
599      * as part of a net.burst, or is using protocol 9.
600      * FIXME: This can be speeded up - its stupid to check it for
601      * every NICK message in a burst again  --Run.
602      */
603     for (acptr = user->server; acptr != &me; acptr = cli_serv(acptr)->up) {
604       if (IsBurst(acptr) || Protocol(acptr) < 10)
605         break;
606     }
607     if (!IPcheck_remote_connect(sptr, (acptr != &me))) {
608       /*
609        * We ran out of bits to count this
610        */
611       sendcmdto_one(&me, CMD_KILL, sptr, "%C :%s (Too many connections from your host -- Ghost)",
612                     sptr, cli_name(&me));
613       return exit_client(cptr, sptr, &me,"Too many connections from your host -- throttled");
614     }
615   }
616   tmpstr = umode_str(sptr);
617   sendcmdto_serv_butone(user->server, CMD_NICK, cptr,
618                         "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
619                         nick, cli_hopcount(sptr) + 1, cli_lastnick(sptr),
620                         user->username, user->host,
621                         *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
622                         inttobase64(ip_base64, ntohl(cli_ip(sptr).s_addr), 6),
623                         NumNick(sptr), cli_info(sptr));
624   
625   /* Send umode to client */
626   if (MyUser(sptr))
627   {
628     send_umode(cptr, sptr, 0, ALL_UMODES);
629     if (cli_snomask(sptr) != SNO_DEFAULT && (cli_flags(sptr) & FLAGS_SERVNOTICE))
630       send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
631   }
632
633   return 0;
634 }
635
636
637 static const struct UserMode {
638   unsigned int flag;
639   char         c;
640 } userModeList[] = {
641   { FLAGS_OPER,        'o' },
642   { FLAGS_LOCOP,       'O' },
643   { FLAGS_INVISIBLE,   'i' },
644   { FLAGS_WALLOP,      'w' },
645   { FLAGS_SERVNOTICE,  's' },
646   { FLAGS_DEAF,        'd' },
647   { FLAGS_CHSERV,      'k' },
648   { FLAGS_DEBUG,       'g' }
649 };
650
651 #define USERMODELIST_SIZE sizeof(userModeList) / sizeof(struct UserMode)
652
653 /*
654  * XXX - find a way to get rid of this
655  */
656 static char umodeBuf[BUFSIZE];
657
658 int set_nick_name(struct Client* cptr, struct Client* sptr,
659                   const char* nick, int parc, char* parv[])
660 {
661   if (IsServer(sptr)) {
662     int   i;
663     const char* p;
664
665     /*
666      * A server introducing a new client, change source
667      */
668     struct Client* new_client = make_client(cptr, STAT_UNKNOWN);
669     assert(0 != new_client);
670
671     cli_hopcount(new_client) = atoi(parv[2]);
672     cli_lastnick(new_client) = atoi(parv[3]);
673     if (Protocol(cptr) > 9 && parc > 7 && *parv[6] == '+') {
674       for (p = parv[6] + 1; *p; p++) {
675         for (i = 0; i < USERMODELIST_SIZE; ++i) {
676           if (userModeList[i].c == *p) {
677             cli_flags(new_client) |= userModeList[i].flag;
678             break;
679           }
680         }
681       }
682     }
683     client_set_privs(new_client); /* set privs on user */
684     /*
685      * Set new nick name.
686      */
687     strcpy(cli_name(new_client), nick);
688     cli_user(new_client) = make_user(new_client);
689     cli_user(new_client)->server = sptr;
690     SetRemoteNumNick(new_client, parv[parc - 2]);
691     /*
692      * IP# of remote client
693      */
694     cli_ip(new_client).s_addr = htonl(base64toint(parv[parc - 3]));
695
696     add_client_to_list(new_client);
697     hAddClient(new_client);
698
699     cli_serv(sptr)->ghost = 0;        /* :server NICK means end of net.burst */
700     ircd_strncpy(cli_username(new_client), parv[4], USERLEN);
701     ircd_strncpy(cli_user(new_client)->host, parv[5], HOSTLEN);
702     ircd_strncpy(cli_info(new_client), parv[parc - 1], REALLEN);
703
704     return register_user(cptr, new_client, cli_name(new_client), parv[4]);
705   }
706   else if ((cli_name(sptr))[0]) {
707     /*
708      * Client changing its nick
709      *
710      * If the client belongs to me, then check to see
711      * if client is on any channels where it is currently
712      * banned.  If so, do not allow the nick change to occur.
713      */
714     if (MyUser(sptr)) {
715       const char* channel_name;
716       if ((channel_name = find_no_nickchange_channel(sptr))) {
717         return send_reply(cptr, ERR_BANNICKCHANGE, channel_name);
718       }
719       /*
720        * Refuse nick change if the last nick change was less
721        * then 30 seconds ago. This is intended to get rid of
722        * clone bots doing NICK FLOOD. -SeKs
723        * If someone didn't change their nick for more then 60 seconds
724        * however, allow to do two nick changes immedately after another
725        * before limiting the nick flood. -Run
726        */
727       if (CurrentTime < cli_nextnick(cptr)) {
728         cli_nextnick(cptr) += 2;
729         send_reply(cptr, ERR_NICKTOOFAST, parv[1],
730                    cli_nextnick(cptr) - CurrentTime);
731         /* Send error message */
732         sendcmdto_one(cptr, CMD_NICK, cptr, "%s", cli_name(cptr));
733         /* bounce NICK to user */
734         return 0;                /* ignore nick change! */
735       }
736       else {
737         /* Limit total to 1 change per NICK_DELAY seconds: */
738         cli_nextnick(cptr) += NICK_DELAY;
739         /* However allow _maximal_ 1 extra consecutive nick change: */
740         if (cli_nextnick(cptr) < CurrentTime)
741           cli_nextnick(cptr) = CurrentTime;
742       }
743     }
744     /*
745      * Also set 'lastnick' to current time, if changed.
746      */
747     if (0 != ircd_strcmp(parv[0], nick))
748       cli_lastnick(sptr) = (sptr == cptr) ? TStime() : atoi(parv[2]);
749
750     /*
751      * Client just changing his/her nick. If he/she is
752      * on a channel, send note of change to all clients
753      * on that channel. Propagate notice to other servers.
754      */
755     if (IsUser(sptr)) {
756       sendcmdto_common_channels(sptr, CMD_NICK, ":%s", nick);
757       add_history(sptr, 1);
758       sendcmdto_serv_butone(sptr, CMD_NICK, cptr, "%s %Tu", nick,
759                             cli_lastnick(sptr));
760     }
761     else
762       sendcmdto_one(sptr, CMD_NICK, sptr, ":%s", nick);
763
764     if ((cli_name(sptr))[0])
765       hRemClient(sptr);
766     strcpy(cli_name(sptr), nick);
767     hAddClient(sptr);
768   }
769   else {
770     /* Local client setting NICK the first time */
771
772     strcpy(cli_name(sptr), nick);
773     if (!cli_user(sptr)) {
774       cli_user(sptr) = make_user(sptr);
775       cli_user(sptr)->server = &me;
776     }
777     SetLocalNumNick(sptr);
778     hAddClient(sptr);
779
780     /*
781      * If the client hasn't gotten a cookie-ping yet,
782      * choose a cookie and send it. -record!jegelhof@cloud9.net
783      */
784     if (!cli_cookie(sptr)) {
785       do {
786         cli_cookie(sptr) = (ircrandom() & 0x7fffffff);
787       } while (!cli_cookie(sptr));
788       sendrawto_one(cptr, MSG_PING " :%u", cli_cookie(sptr));
789     }
790     else if (*(cli_user(sptr))->host && cli_cookie(sptr) == COOKIE_VERIFIED) {
791       /*
792        * USER and PONG already received, now we have NICK.
793        * register_user may reject the client and call exit_client
794        * for it - must test this and exit m_nick too !
795        */
796       cli_lastnick(sptr) = TStime();        /* Always local client */
797       if (register_user(cptr, sptr, nick, cli_user(sptr)->username) == CPTR_KILLED)
798         return CPTR_KILLED;
799     }
800   }
801   return 0;
802 }
803
804 static unsigned char hash_target(unsigned int target)
805 {
806   return (unsigned char) (target >> 16) ^ (target >> 8);
807 }
808
809 /*
810  * add_target
811  *
812  * sptr must be a local client!
813  *
814  * Cannonifies target for client `sptr'.
815  */
816 void add_target(struct Client *sptr, void *target)
817 {
818   /* Ok, this shouldn't work esp on alpha
819   */
820   unsigned char  hash = hash_target((unsigned long) target);
821   unsigned char* targets;
822   int            i;
823   assert(0 != sptr);
824   assert(cli_local(sptr));
825
826   targets = cli_targets(sptr);
827   /* 
828    * Already in table?
829    */
830   for (i = 0; i < MAXTARGETS; ++i) {
831     if (targets[i] == hash)
832       return;
833   }
834   /*
835    * New target
836    */
837   memmove(&targets[RESERVEDTARGETS + 1],
838           &targets[RESERVEDTARGETS], MAXTARGETS - RESERVEDTARGETS - 1);
839   targets[RESERVEDTARGETS] = hash;
840 }
841
842 /*
843  * check_target_limit
844  *
845  * sptr must be a local client !
846  *
847  * Returns 'true' (1) when too many targets are addressed.
848  * Returns 'false' (0) when it's ok to send to this target.
849  */
850 int check_target_limit(struct Client *sptr, void *target, const char *name,
851     int created)
852 {
853   unsigned char hash = hash_target((unsigned long) target);
854   int            i;
855   unsigned char* targets;
856
857   assert(0 != sptr);
858   assert(cli_local(sptr));
859   targets = cli_targets(sptr);
860
861   /*
862    * Same target as last time?
863    */
864   if (targets[0] == hash)
865     return 0;
866   for (i = 1; i < MAXTARGETS; ++i) {
867     if (targets[i] == hash) {
868       memmove(&targets[1], &targets[0], i);
869       targets[0] = hash;
870       return 0;
871     }
872   }
873   /*
874    * New target
875    */
876   if (!created) {
877     if (CurrentTime < cli_nexttarget(sptr)) {
878       if (cli_nexttarget(sptr) - CurrentTime < TARGET_DELAY + 8) {
879         /*
880          * No server flooding
881          */
882         cli_nexttarget(sptr) += 2;
883         send_reply(sptr, ERR_TARGETTOOFAST, name,
884                    cli_nexttarget(sptr) - CurrentTime);
885       }
886       return 1;
887     }
888     else {
889       cli_nexttarget(sptr) += TARGET_DELAY;
890       if (cli_nexttarget(sptr) < CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1)))
891         cli_nexttarget(sptr) = CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1));
892     }
893   }
894   memmove(&targets[1], &targets[0], MAXTARGETS - 1);
895   targets[0] = hash;
896   return 0;
897 }
898
899 /*
900  * whisper - called from m_cnotice and m_cprivmsg.
901  *
902  * parv[0] = sender prefix
903  * parv[1] = nick
904  * parv[2] = #channel
905  * parv[3] = Private message text
906  *
907  * Added 971023 by Run.
908  * Reason: Allows channel operators to sent an arbitrary number of private
909  *   messages to users on their channel, avoiding the max.targets limit.
910  *   Building this into m_private would use too much cpu because we'd have
911  *   to a cross channel lookup for every private message!
912  * Note that we can't allow non-chan ops to use this command, it would be
913  *   abused by mass advertisers.
914  *
915  */
916 int whisper(struct Client* source, const char* nick, const char* channel,
917             const char* text, int is_notice)
918 {
919   struct Client*     dest;
920   struct Channel*    chptr;
921   struct Membership* membership;
922
923   assert(0 != source);
924   assert(0 != nick);
925   assert(0 != channel);
926   assert(MyUser(source));
927
928   if (!(dest = FindUser(nick))) {
929     return send_reply(source, ERR_NOSUCHNICK, nick);
930   }
931   if (!(chptr = FindChannel(channel))) {
932     return send_reply(source, ERR_NOSUCHCHANNEL, channel);
933   }
934   /*
935    * compare both users channel lists, instead of the channels user list
936    * since the link is the same, this should be a little faster for channels
937    * with a lot of users
938    */
939   for (membership = cli_user(source)->channel; membership; membership = membership->next_channel) {
940     if (chptr == membership->channel)
941       break;
942   }
943   if (0 == membership) {
944     return send_reply(source, ERR_NOTONCHANNEL, chptr->chname);
945   }
946   if (!IsVoicedOrOpped(membership)) {
947     return send_reply(source, ERR_VOICENEEDED, chptr->chname);
948   }
949   /*
950    * lookup channel in destination
951    */
952   assert(0 != cli_user(dest));
953   for (membership = cli_user(dest)->channel; membership; membership = membership->next_channel) {
954     if (chptr == membership->channel)
955       break;
956   }
957   if (0 == membership || IsZombie(membership)) {
958     return send_reply(source, ERR_USERNOTINCHANNEL, cli_name(dest), chptr->chname);
959   }
960   if (is_silenced(source, dest))
961     return 0;
962           
963   if (cli_user(dest)->away)
964     send_reply(source, RPL_AWAY, cli_name(dest), cli_user(dest)->away);
965   if (is_notice)
966     sendcmdto_one(source, CMD_NOTICE, dest, "%C :%s", dest, text);
967   else
968     sendcmdto_one(source, CMD_PRIVATE, dest, "%C :%s", dest, text);
969   return 0;
970 }
971
972
973 /*
974  * added Sat Jul 25 07:30:42 EST 1992
975  */
976 void send_umode_out(struct Client *cptr, struct Client *sptr, int old,
977                     int prop)
978 {
979   int i;
980   struct Client *acptr;
981
982   send_umode(NULL, sptr, old, SEND_UMODES & ~(prop ? 0 : FLAGS_OPER));
983
984   for (i = HighestFd; i >= 0; i--) {
985     if ((acptr = LocalClientArray[i]) && IsServer(acptr) &&
986         (acptr != cptr) && (acptr != sptr) && *umodeBuf)
987       sendcmdto_one(sptr, CMD_MODE, acptr, "%s :%s", cli_name(sptr), umodeBuf);
988   }
989   if (cptr && MyUser(cptr))
990     send_umode(cptr, sptr, old, ALL_UMODES);
991 }
992
993
994 /*
995  * send_user_info - send user info userip/userhost
996  * NOTE: formatter must put info into buffer and return a pointer to the end of
997  * the data it put in the buffer.
998  */
999 void send_user_info(struct Client* sptr, char* names, int rpl, InfoFormatter fmt)
1000 {
1001   char*          name;
1002   char*          p = 0;
1003   int            arg_count = 0;
1004   int            users_found = 0;
1005   struct Client* acptr;
1006   struct MsgBuf* mb;
1007
1008   assert(0 != sptr);
1009   assert(0 != names);
1010   assert(0 != fmt);
1011
1012   mb = msgq_make(sptr, rpl_str(rpl), cli_name(&me), cli_name(sptr));
1013
1014   for (name = ircd_strtok(&p, names, " "); name; name = ircd_strtok(&p, 0, " ")) {
1015     if ((acptr = FindUser(name))) {
1016       if (users_found++)
1017         msgq_append(0, mb, " ");
1018       (*fmt)(acptr, mb);
1019     }
1020     if (5 == ++arg_count)
1021       break;
1022   }
1023   send_buffer(sptr, mb, 0);
1024   msgq_clean(mb);
1025 }
1026
1027
1028 /*
1029  * set_user_mode() added 15/10/91 By Darren Reed.
1030  *
1031  * parv[0] - sender
1032  * parv[1] - username to change mode for
1033  * parv[2] - modes to change
1034  */
1035 int set_user_mode(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
1036 {
1037   char** p;
1038   char*  m;
1039   struct Client *acptr;
1040   int what;
1041   int i;
1042   int setflags;
1043   unsigned int tmpmask = 0;
1044   int snomask_given = 0;
1045   char buf[BUFSIZE];
1046   int prop = 0;
1047
1048   what = MODE_ADD;
1049
1050   if (parc < 2)
1051     return need_more_params(sptr, "MODE");
1052
1053   if (!(acptr = FindUser(parv[1])))
1054   {
1055     if (MyConnect(sptr))
1056       send_reply(sptr, ERR_NOSUCHCHANNEL, parv[1]);
1057     return 0;
1058   }
1059
1060   if (IsServer(sptr) || sptr != acptr)
1061   {
1062     if (IsServer(cptr))
1063       sendcmdto_flag_butone(&me, CMD_WALLOPS, 0, FLAGS_WALLOP,
1064                             ":MODE for User %s from %s!%s", parv[1],
1065                             cli_name(cptr), cli_name(sptr));
1066     else
1067       send_reply(sptr, ERR_USERSDONTMATCH);
1068     return 0;
1069   }
1070
1071   if (parc < 3)
1072   {
1073     m = buf;
1074     *m++ = '+';
1075     for (i = 0; i < USERMODELIST_SIZE; ++i) {
1076       if ( (userModeList[i].flag & cli_flags(sptr)))
1077         *m++ = userModeList[i].c;
1078     }
1079     *m = '\0';
1080     send_reply(sptr, RPL_UMODEIS, buf);
1081     if ((cli_flags(sptr) & FLAGS_SERVNOTICE) && MyConnect(sptr)
1082         && cli_snomask(sptr) !=
1083         (unsigned int)(IsOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT))
1084       send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1085     return 0;
1086   }
1087
1088   /*
1089    * find flags already set for user
1090    * why not just copy them?
1091    */
1092   setflags = cli_flags(sptr);
1093
1094   if (MyConnect(sptr))
1095     tmpmask = cli_snomask(sptr);
1096
1097   /*
1098    * parse mode change string(s)
1099    */
1100   for (p = &parv[2]; *p; p++) {       /* p is changed in loop too */
1101     for (m = *p; *m; m++) {
1102       switch (*m) {
1103       case '+':
1104         what = MODE_ADD;
1105         break;
1106       case '-':
1107         what = MODE_DEL;
1108         break;
1109       case 's':
1110         if (*(p + 1) && is_snomask(*(p + 1))) {
1111           snomask_given = 1;
1112           tmpmask = umode_make_snomask(tmpmask, *++p, what);
1113           tmpmask &= (IsAnOper(sptr) ? SNO_ALL : SNO_USER);
1114         }
1115         else
1116           tmpmask = (what == MODE_ADD) ?
1117               (IsAnOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT) : 0;
1118         if (tmpmask)
1119           SetServNotice(sptr);
1120         else
1121           ClearServNotice(sptr);
1122         break;
1123       case 'w':
1124         if (what == MODE_ADD)
1125           SetWallops(sptr);
1126         else
1127           ClearWallops(sptr);
1128         break;
1129       case 'o':
1130         if (what == MODE_ADD)
1131           SetOper(sptr);
1132         else {
1133           cli_flags(sptr) &= ~(FLAGS_OPER | FLAGS_LOCOP);
1134           if (MyConnect(sptr)) {
1135             tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1136             cli_handler(sptr) = CLIENT_HANDLER;
1137           }
1138         }
1139         break;
1140       case 'O':
1141         if (what == MODE_ADD)
1142           SetLocOp(sptr);
1143         else { 
1144           cli_flags(sptr) &= ~(FLAGS_OPER | FLAGS_LOCOP);
1145           if (MyConnect(sptr)) {
1146             tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1147             cli_handler(sptr) = CLIENT_HANDLER;
1148           }
1149         }
1150         break;
1151       case 'i':
1152         if (what == MODE_ADD)
1153           SetInvisible(sptr);
1154         else
1155           ClearInvisible(sptr);
1156         break;
1157       case 'd':
1158         if (what == MODE_ADD)
1159           SetDeaf(sptr);
1160         else
1161           ClearDeaf(sptr);
1162         break;
1163       case 'k':
1164         if (what == MODE_ADD)
1165           SetChannelService(sptr);
1166         else
1167           ClearChannelService(sptr);
1168         break;
1169       case 'g':
1170         if (what == MODE_ADD)
1171           SetDebug(sptr);
1172         else
1173           ClearDebug(sptr);
1174         break;
1175       default:
1176         break;
1177       }
1178     }
1179   }
1180   /*
1181    * Evaluate rules for new user mode
1182    * Stop users making themselves operators too easily:
1183    */
1184   if (!IsServer(cptr)) {
1185     if (!(setflags & FLAGS_OPER) && IsOper(sptr))
1186       ClearOper(sptr);
1187     if (!(setflags & FLAGS_LOCOP) && IsLocOp(sptr))
1188       ClearLocOp(sptr);
1189     /*
1190      * new umode; servers can set it, local users cannot;
1191      * prevents users from /kick'ing or /mode -o'ing
1192      */
1193     if (!(setflags & FLAGS_CHSERV))
1194       ClearChannelService(sptr);
1195     /*
1196      * only send wallops to opers
1197      */
1198     if (feature_bool(FEAT_WALLOPS_OPER_ONLY) && !IsAnOper(sptr) &&
1199         !(setflags & FLAGS_WALLOP))
1200       ClearWallops(sptr);
1201 #ifdef SERVNOTICE_OPER_ONLY
1202     if (MyConnect(sptr) && !IsAnOper(sptr) && !(setflags & FLAGS_SERVNOTICE)) {
1203       ClearServNotice(sptr);
1204       set_snomask(sptr, 0, SNO_SET);
1205     }
1206 #endif
1207 #ifdef DEBUG_OPER_ONLY
1208     if (!IsAnOper(sptr) && !(setflags & FLAGS_DEBUG))
1209       ClearDebug(sptr);
1210 #endif
1211   }
1212   if (MyConnect(sptr)) {
1213     if ((setflags & (FLAGS_OPER | FLAGS_LOCOP)) && !IsAnOper(sptr))
1214       det_confs_butmask(sptr, CONF_CLIENT & ~CONF_OPS);
1215
1216     if (SendServNotice(sptr)) {
1217       if (tmpmask != cli_snomask(sptr))
1218         set_snomask(sptr, tmpmask, SNO_SET);
1219       if (cli_snomask(sptr) && snomask_given)
1220         send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1221     }
1222   }
1223   /*
1224    * Compare new flags with old flags and send string which
1225    * will cause servers to update correctly.
1226    */
1227   if (!(setflags & FLAGS_OPER) && IsOper(sptr)) { /* user now oper */
1228     ++UserStats.opers;
1229     client_set_privs(sptr); /* may set propagate privilege */
1230   }
1231   if (HasPriv(sptr, PRIV_PROPAGATE)) /* remember propagate privilege setting */
1232     prop = 1;
1233   if ((setflags & FLAGS_OPER) && !IsOper(sptr)) { /* user no longer oper */
1234     --UserStats.opers;
1235     client_set_privs(sptr); /* will clear propagate privilege */
1236   }
1237   if ((setflags & FLAGS_INVISIBLE) && !IsInvisible(sptr))
1238     --UserStats.inv_clients;
1239   if (!(setflags & FLAGS_INVISIBLE) && IsInvisible(sptr))
1240     ++UserStats.inv_clients;
1241   send_umode_out(cptr, sptr, setflags, prop);
1242
1243   return 0;
1244 }
1245
1246 /*
1247  * Build umode string for BURST command
1248  * --Run
1249  */
1250 char *umode_str(struct Client *cptr)
1251 {
1252   char* m = umodeBuf;                /* Maximum string size: "owidg\0" */
1253   int   i;
1254   int   c_flags;
1255
1256   c_flags = cli_flags(cptr) & SEND_UMODES; /* cleaning up the original code */
1257   if (HasPriv(cptr, PRIV_PROPAGATE))
1258     c_flags |= FLAGS_OPER;
1259   else
1260     c_flags &= ~FLAGS_OPER;
1261
1262   for (i = 0; i < USERMODELIST_SIZE; ++i) {
1263     if ( (c_flags & userModeList[i].flag))
1264       *m++ = userModeList[i].c;
1265   }
1266   *m = '\0';
1267
1268   return umodeBuf;                /* Note: static buffer, gets
1269                                    overwritten by send_umode() */
1270 }
1271
1272 /*
1273  * Send the MODE string for user (user) to connection cptr
1274  * -avalon
1275  */
1276 void send_umode(struct Client *cptr, struct Client *sptr, int old, int sendmask)
1277 {
1278   int i;
1279   int flag;
1280   char *m;
1281   int what = MODE_NULL;
1282
1283   /*
1284    * Build a string in umodeBuf to represent the change in the user's
1285    * mode between the new (sptr->flag) and 'old'.
1286    */
1287   m = umodeBuf;
1288   *m = '\0';
1289   for (i = 0; i < USERMODELIST_SIZE; ++i) {
1290     flag = userModeList[i].flag;
1291     if (MyUser(sptr) && !(flag & sendmask))
1292       continue;
1293     if ( (flag & old) && !(cli_flags(sptr) & flag))
1294     {
1295       if (what == MODE_DEL)
1296         *m++ = userModeList[i].c;
1297       else
1298       {
1299         what = MODE_DEL;
1300         *m++ = '-';
1301         *m++ = userModeList[i].c;
1302       }
1303     }
1304     else if (!(flag & old) && (cli_flags(sptr) & flag))
1305     {
1306       if (what == MODE_ADD)
1307         *m++ = userModeList[i].c;
1308       else
1309       {
1310         what = MODE_ADD;
1311         *m++ = '+';
1312         *m++ = userModeList[i].c;
1313       }
1314     }
1315   }
1316   *m = '\0';
1317   if (*umodeBuf && cptr)
1318     sendcmdto_one(sptr, CMD_MODE, cptr, "%s :%s", cli_name(sptr), umodeBuf);
1319 }
1320
1321 /*
1322  * Check to see if this resembles a sno_mask.  It is if 1) there is
1323  * at least one digit and 2) The first digit occurs before the first
1324  * alphabetic character.
1325  */
1326 int is_snomask(char *word)
1327 {
1328   if (word)
1329   {
1330     for (; *word; word++)
1331       if (IsDigit(*word))
1332         return 1;
1333       else if (IsAlpha(*word))
1334         return 0;
1335   }
1336   return 0;
1337 }
1338
1339 /*
1340  * If it begins with a +, count this as an additive mask instead of just
1341  * a replacement.  If what == MODE_DEL, "+" has no special effect.
1342  */
1343 unsigned int umode_make_snomask(unsigned int oldmask, char *arg, int what)
1344 {
1345   unsigned int sno_what;
1346   unsigned int newmask;
1347   if (*arg == '+')
1348   {
1349     arg++;
1350     if (what == MODE_ADD)
1351       sno_what = SNO_ADD;
1352     else
1353       sno_what = SNO_DEL;
1354   }
1355   else if (*arg == '-')
1356   {
1357     arg++;
1358     if (what == MODE_ADD)
1359       sno_what = SNO_DEL;
1360     else
1361       sno_what = SNO_ADD;
1362   }
1363   else
1364     sno_what = (what == MODE_ADD) ? SNO_SET : SNO_DEL;
1365   /* pity we don't have strtoul everywhere */
1366   newmask = (unsigned int)atoi(arg);
1367   if (sno_what == SNO_DEL)
1368     newmask = oldmask & ~newmask;
1369   else if (sno_what == SNO_ADD)
1370     newmask |= oldmask;
1371   return newmask;
1372 }
1373
1374 static void delfrom_list(struct Client *cptr, struct SLink **list)
1375 {
1376   struct SLink* tmp;
1377   struct SLink* prv = NULL;
1378
1379   for (tmp = *list; tmp; tmp = tmp->next) {
1380     if (tmp->value.cptr == cptr) {
1381       if (prv)
1382         prv->next = tmp->next;
1383       else
1384         *list = tmp->next;
1385       free_link(tmp);
1386       break;
1387     }
1388     prv = tmp;
1389   }
1390 }
1391
1392 /*
1393  * This function sets a Client's server notices mask, according to
1394  * the parameter 'what'.  This could be even faster, but the code
1395  * gets mighty hard to read :)
1396  */
1397 void set_snomask(struct Client *cptr, unsigned int newmask, int what)
1398 {
1399   unsigned int oldmask, diffmask;        /* unsigned please */
1400   int i;
1401   struct SLink *tmp;
1402
1403   oldmask = cli_snomask(cptr);
1404
1405   if (what == SNO_ADD)
1406     newmask |= oldmask;
1407   else if (what == SNO_DEL)
1408     newmask = oldmask & ~newmask;
1409   else if (what != SNO_SET)        /* absolute set, no math needed */
1410     sendto_opmask_butone(0, SNO_OLDSNO, "setsnomask called with %d ?!", what);
1411
1412   newmask &= (IsAnOper(cptr) ? SNO_ALL : SNO_USER);
1413
1414   diffmask = oldmask ^ newmask;
1415
1416   for (i = 0; diffmask >> i; i++) {
1417     if (((diffmask >> i) & 1))
1418     {
1419       if (((newmask >> i) & 1))
1420       {
1421         tmp = make_link();
1422         tmp->next = opsarray[i];
1423         tmp->value.cptr = cptr;
1424         opsarray[i] = tmp;
1425       }
1426       else
1427         /* not real portable :( */
1428         delfrom_list(cptr, &opsarray[i]);
1429     }
1430   }
1431   cli_snomask(cptr) = newmask;
1432 }
1433
1434 /*
1435  * is_silenced : Does the actual check wether sptr is allowed
1436  *               to send a message to acptr.
1437  *               Both must be registered persons.
1438  * If sptr is silenced by acptr, his message should not be propagated,
1439  * but more over, if this is detected on a server not local to sptr
1440  * the SILENCE mask is sent upstream.
1441  */
1442 int is_silenced(struct Client *sptr, struct Client *acptr)
1443 {
1444   struct SLink *lp;
1445   struct User *user;
1446   static char sender[HOSTLEN + NICKLEN + USERLEN + 5];
1447   static char senderip[16 + NICKLEN + USERLEN + 5];
1448
1449   if (!cli_user(acptr) || !(lp = cli_user(acptr)->silence) || !(user = cli_user(sptr)))
1450     return 0;
1451   ircd_snprintf(0, sender, sizeof(sender), "%s!%s@%s", cli_name(sptr),
1452                 user->username, user->host);
1453   ircd_snprintf(0, senderip, sizeof(senderip), "%s!%s@%s", cli_name(sptr),
1454                 user->username, ircd_ntoa((const char*) &(cli_ip(sptr))));
1455   for (; lp; lp = lp->next)
1456   {
1457     if ((!(lp->flags & CHFL_SILENCE_IPMASK) && !match(lp->value.cp, sender)) ||
1458         ((lp->flags & CHFL_SILENCE_IPMASK) && !match(lp->value.cp, senderip)))
1459     {
1460       if (!MyConnect(sptr))
1461       {
1462         sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr,
1463                       lp->value.cp);
1464       }
1465       return 1;
1466     }
1467   }
1468   return 0;
1469 }
1470
1471 /*
1472  * del_silence
1473  *
1474  * Removes all silence masks from the list of sptr that fall within `mask'
1475  * Returns -1 if none where found, 0 otherwise.
1476  */
1477 int del_silence(struct Client *sptr, char *mask)
1478 {
1479   struct SLink **lp;
1480   struct SLink *tmp;
1481   int ret = -1;
1482
1483   for (lp = &(cli_user(sptr))->silence; *lp;) {
1484     if (!mmatch(mask, (*lp)->value.cp))
1485     {
1486       tmp = *lp;
1487       *lp = tmp->next;
1488       MyFree(tmp->value.cp);
1489       free_link(tmp);
1490       ret = 0;
1491     }
1492     else
1493       lp = &(*lp)->next;
1494   }
1495   return ret;
1496 }
1497
1498 int add_silence(struct Client* sptr, const char* mask)
1499 {
1500   struct SLink *lp, **lpp;
1501   int cnt = 0, len = strlen(mask);
1502   char *ip_start;
1503
1504   for (lpp = &(cli_user(sptr))->silence, lp = *lpp; lp;)
1505   {
1506     if (0 == ircd_strcmp(mask, lp->value.cp))
1507       return -1;
1508     if (!mmatch(mask, lp->value.cp))
1509     {
1510       struct SLink *tmp = lp;
1511       *lpp = lp = lp->next;
1512       MyFree(tmp->value.cp);
1513       free_link(tmp);
1514       continue;
1515     }
1516     if (MyUser(sptr))
1517     {
1518       len += strlen(lp->value.cp);
1519       if ((len > (feature_int(FEAT_AVBANLEN) * feature_int(FEAT_MAXSILES))) ||
1520           (++cnt >= feature_int(FEAT_MAXSILES)))
1521       {
1522         send_reply(sptr, ERR_SILELISTFULL, mask);
1523         return -1;
1524       }
1525       else if (!mmatch(lp->value.cp, mask))
1526         return -1;
1527     }
1528     lpp = &lp->next;
1529     lp = *lpp;
1530   }
1531   lp = make_link();
1532   memset(lp, 0, sizeof(struct SLink));
1533   lp->next = cli_user(sptr)->silence;
1534   lp->value.cp = (char*) MyMalloc(strlen(mask) + 1);
1535   assert(0 != lp->value.cp);
1536   strcpy(lp->value.cp, mask);
1537   if ((ip_start = strrchr(mask, '@')) && check_if_ipmask(ip_start + 1))
1538     lp->flags = CHFL_SILENCE_IPMASK;
1539   cli_user(sptr)->silence = lp;
1540   return 0;
1541 }
1542