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