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