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