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