Fix on-connect host hiding for users with IAuth account stamps.
[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 /** @file
24  * @brief Miscellaneous user-related helper functions.
25  * @version $Id$
26  */
27 #include "config.h"
28
29 #include "s_user.h"
30 #include "IPcheck.h"
31 #include "channel.h"
32 #include "class.h"
33 #include "client.h"
34 #include "hash.h"
35 #include "ircd.h"
36 #include "ircd_alloc.h"
37 #include "ircd_chattr.h"
38 #include "ircd_features.h"
39 #include "ircd_log.h"
40 #include "ircd_reply.h"
41 #include "ircd_snprintf.h"
42 #include "ircd_string.h"
43 #include "list.h"
44 #include "match.h"
45 #include "motd.h"
46 #include "msg.h"
47 #include "msgq.h"
48 #include "numeric.h"
49 #include "numnicks.h"
50 #include "parse.h"
51 #include "querycmds.h"
52 #include "random.h"
53 #include "s_auth.h"
54 #include "s_bsd.h"
55 #include "s_conf.h"
56 #include "s_debug.h"
57 #include "s_misc.h"
58 #include "s_serv.h" /* max_client_count */
59 #include "send.h"
60 #include "struct.h"
61 #include "supported.h"
62 #include "sys.h"
63 #include "userload.h"
64 #include "version.h"
65 #include "whowas.h"
66
67 #include "handlers.h" /* m_motd and m_lusers */
68
69 /* #include <assert.h> -- Now using assert in ircd_log.h */
70 #include <fcntl.h>
71 #include <stdio.h>
72 #include <stdlib.h>
73 #include <string.h>
74 #include <sys/stat.h>
75
76 /** Count of allocated User structures. */
77 static int userCount = 0;
78
79 /** Makes sure that \a cptr has a User information block.
80  * If cli_user(cptr) != NULL, does nothing.
81  * @param[in] cptr Client to attach User struct to.
82  * @return User struct associated with \a cptr.
83  */
84 struct User *make_user(struct Client *cptr)
85 {
86   assert(0 != cptr);
87
88   if (!cli_user(cptr)) {
89     cli_user(cptr) = (struct User*) MyMalloc(sizeof(struct User));
90     assert(0 != cli_user(cptr));
91
92     /* All variables are 0 by default */
93     memset(cli_user(cptr), 0, sizeof(struct User));
94     ++userCount;
95     cli_user(cptr)->refcnt = 1;
96   }
97   return cli_user(cptr);
98 }
99
100 /** Dereference \a user.
101  * User structures are reference-counted; if the refcount of \a user
102  * becomes zero, free it.
103  * @param[in] user User to dereference.
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     --userCount;
122   }
123 }
124
125 /** Find number of User structs allocated and memory used by them.
126  * @param[out] count_out Receives number of User structs allocated.
127  * @param[out] bytes_out Receives number of bytes used by User structs.
128  */
129 void user_count_memory(size_t* count_out, size_t* bytes_out)
130 {
131   assert(0 != count_out);
132   assert(0 != bytes_out);
133   *count_out = userCount;
134   *bytes_out = userCount * sizeof(struct User);
135 }
136
137
138 /** Find the next client (starting at \a next) with a name that matches \a ch.
139  * Normal usage loop is:
140  * for (x = client; x = next_client(x,mask); x = x->next)
141  *     HandleMatchingClient;
142  *
143  * @param[in] next First client to check.
144  * @param[in] ch Name mask to check against.
145  * @return Next matching client found, or NULL if none.
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 /** Find the destination server for a command, and forward it if that is not us.
167  *
168  * \a server may be a nickname, server name, server mask (if \a from
169  * is a local user) or server numnick (if \a is a server or remote
170  * user).
171  *
172  * @param[in] from Client that sent the command to us.
173  * @param[in] cmd Long-form command text.
174  * @param[in] tok Token-form command text.
175  * @param[in] one Client that originated the command (ignored).
176  * @param[in] MustBeOper If non-zero and \a from is not an operator, return HUNTED_NOSUCH.
177  * @param[in] pattern Format string of arguments to command.
178  * @param[in] server Index of target name or mask in \a parv.
179  * @param[in] parc Number of valid elements in \a parv (must be less than 9).
180  * @param[in] parv Array of arguments to command.
181  * @return One of HUNTED_ISME, HUNTED_NOSUCH or HUNTED_PASS.
182  */
183 int hunt_server_cmd(struct Client *from, const char *cmd, const char *tok,
184                     struct Client *one, int MustBeOper, const char *pattern,
185                     int server, int parc, char *parv[])
186 {
187   struct Client *acptr;
188   char *to;
189
190   /* Assume it's me, if no server or an unregistered client */
191   if (parc <= server || EmptyString((to = parv[server])) || IsUnknown(from))
192     return (HUNTED_ISME);
193
194   if (MustBeOper && !IsPrivileged(from))
195   {
196     send_reply(from, ERR_NOPRIVILEGES);
197     return HUNTED_NOSUCH;
198   }
199
200   /* Make sure it's a server */
201   if (MyUser(from)) {
202     /* Make sure it's a server */
203     if (!strchr(to, '*')) {
204       if (0 == (acptr = FindClient(to))) {
205         send_reply(from, ERR_NOSUCHSERVER, to);
206         return HUNTED_NOSUCH;
207       }
208
209       if (cli_user(acptr))
210         acptr = cli_user(acptr)->server;
211     } else if (!(acptr = find_match_server(to))) {
212       send_reply(from, ERR_NOSUCHSERVER, to);
213       return (HUNTED_NOSUCH);
214     }
215   } else if (!(acptr = FindNServer(to))) {
216     send_reply(from, SND_EXPLICIT | ERR_NOSUCHSERVER, "* :Server has disconnected");
217     return (HUNTED_NOSUCH);        /* Server broke off in the meantime */
218   }
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 /** Find the destination server for a command, and forward it (as a
239  * high-priority command) if that is not us.
240  *
241  * \a server may be a nickname, server name, server mask (if \a from
242  * is a local user) or server numnick (if \a is a server or remote
243  * user).
244  * Unlike hunt_server_cmd(), this appends the message to the
245  * high-priority message queue for the destination server.
246  *
247  * @param[in] from Client that sent the command to us.
248  * @param[in] cmd Long-form command text.
249  * @param[in] tok Token-form command text.
250  * @param[in] one Client that originated the command (ignored).
251  * @param[in] MustBeOper If non-zero and \a from is not an operator, return HUNTED_NOSUCH.
252  * @param[in] pattern Format string of arguments to command.
253  * @param[in] server Index of target name or mask in \a parv.
254  * @param[in] parc Number of valid elements in \a parv (must be less than 9).
255  * @param[in] parv Array of arguments to command.
256  * @return One of HUNTED_ISME, HUNTED_NOSUCH or HUNTED_PASS.
257  */
258 int hunt_server_prio_cmd(struct Client *from, const char *cmd, const char *tok,
259                          struct Client *one, int MustBeOper,
260                          const char *pattern, int server, int parc,
261                          char *parv[])
262 {
263   struct Client *acptr;
264   char *to;
265
266   /* Assume it's me, if no server or an unregistered client */
267   if (parc <= server || EmptyString((to = parv[server])) || IsUnknown(from))
268     return (HUNTED_ISME);
269
270   /* Make sure it's a server */
271   if (MyUser(from)) {
272     /* Make sure it's a server */
273     if (!strchr(to, '*')) {
274       if (0 == (acptr = FindClient(to))) {
275         send_reply(from, ERR_NOSUCHSERVER, to);
276         return HUNTED_NOSUCH;
277       }
278
279       if (cli_user(acptr))
280         acptr = cli_user(acptr)->server;
281     } else if (!(acptr = find_match_server(to))) {
282       send_reply(from, ERR_NOSUCHSERVER, to);
283       return (HUNTED_NOSUCH);
284     }
285   } else if (!(acptr = FindNServer(to)))
286     return (HUNTED_NOSUCH);        /* Server broke off in the meantime */
287
288   if (IsMe(acptr))
289     return (HUNTED_ISME);
290
291   if (MustBeOper && !IsPrivileged(from)) {
292     send_reply(from, ERR_NOPRIVILEGES);
293     return HUNTED_NOSUCH;
294   }
295
296   /* assert(!IsServer(from)); SETTIME to particular destinations permitted */
297
298   parv[server] = (char *) acptr; /* HACK! HACK! HACK! ARGH! */
299
300   sendcmdto_prio_one(from, cmd, tok, acptr, pattern, parv[1], parv[2], parv[3],
301                      parv[4], parv[5], parv[6], parv[7], parv[8]);
302
303   return (HUNTED_PASS);
304 }
305
306
307 /*
308  * register_user
309  *
310  * This function is called when both NICK and USER messages
311  * have been accepted for the client, in whatever order. Only
312  * after this the USER message is propagated.
313  *
314  * NICK's must be propagated at once when received, although
315  * it would be better to delay them too until full info is
316  * available. Doing it is not so simple though, would have
317  * to implement the following:
318  *
319  * 1) user telnets in and gives only "NICK foobar" and waits
320  * 2) another user far away logs in normally with the nick
321  *    "foobar" (quite legal, as this server didn't propagate it).
322  * 3) now this server gets nick "foobar" from outside, but
323  *    has already the same defined locally. Current server
324  *    would just issue "KILL foobar" to clean out dups. But,
325  *    this is not fair. It should actually request another
326  *    nick from local user or kill him/her...
327  */
328 /** Finish registering a user who has sent both NICK and USER.
329  * For local connections, possibly check IAuth; make sure there is a
330  * matching Client config block; clean the username field; check
331  * K/k-lines; check for "hacked" looking usernames; assign a numnick;
332  * and send greeting (WELCOME, ISUPPORT, MOTD, etc).
333  * For all connections, update the invisible user and operator counts;
334  * run IPcheck against their address; and forward the NICK.
335  *
336  * @param[in] cptr Client who introduced the user.
337  * @param[in,out] sptr Client who has been fully introduced.
338  * @return Zero or CPTR_KILLED.
339  */
340 int register_user(struct Client *cptr, struct Client *sptr)
341 {
342   char*            parv[4];
343   char*            tmpstr;
344   struct User*     user = cli_user(sptr);
345   char             ip_base64[25];
346
347   user->last = CurrentTime;
348   parv[0] = cli_name(sptr);
349   parv[1] = parv[2] = NULL;
350
351   if (MyConnect(sptr))
352   {
353     assert(cptr == sptr);
354
355     Count_unknownbecomesclient(sptr, UserStats);
356
357     SetUser(sptr);
358     cli_handler(sptr) = CLIENT_HANDLER;
359     SetLocalNumNick(sptr);
360     send_reply(sptr,
361                RPL_WELCOME,
362                feature_str(FEAT_NETWORK),
363                feature_str(FEAT_PROVIDER) ? " via " : "",
364                feature_str(FEAT_PROVIDER) ? feature_str(FEAT_PROVIDER) : "",
365                cli_name(sptr));
366     /*
367      * This is a duplicate of the NOTICE but see below...
368      */
369     send_reply(sptr, RPL_YOURHOST, cli_name(&me), version);
370     send_reply(sptr, RPL_CREATED, creation);
371     send_reply(sptr, RPL_MYINFO, cli_name(&me), version, infousermodes,
372                infochanmodes, infochanmodeswithparams);
373     send_supported(sptr);
374     m_lusers(sptr, sptr, 1, parv);
375     update_load();
376     motd_signon(sptr);
377     if (cli_snomask(sptr) & SNO_NOISY)
378       set_snomask(sptr, cli_snomask(sptr) & SNO_NOISY, SNO_ADD);
379     if (feature_bool(FEAT_CONNEXIT_NOTICES))
380       sendto_opmask_butone(0, SNO_CONNEXIT,
381                            "Client connecting: %s (%s@%s) [%s] {%s} [%s] <%s%s>",
382                            cli_name(sptr), user->username, user->host,
383                            cli_sock_ip(sptr), get_client_class(sptr),
384                            cli_info(sptr), NumNick(cptr) /* two %s's */);
385
386     IPcheck_connect_succeeded(sptr);
387     /*
388      * Set user's initial modes
389      */
390     tmpstr = (char*)client_get_default_umode(sptr);
391     if (tmpstr) for (; *tmpstr; ++tmpstr) {
392       switch (*tmpstr) {
393       case 's':
394         if (!feature_bool(FEAT_HIS_SNOTICES_OPER_ONLY)) {
395           SetServNotice(sptr);
396           set_snomask(sptr, SNO_DEFAULT, SNO_SET);
397         }
398         break;
399       case 'w':
400         if (!feature_bool(FEAT_WALLOPS_OPER_ONLY))
401           SetWallops(sptr);
402         break;
403       case 'i':
404         SetInvisible(sptr);
405         break;
406       case 'd':
407         SetDeaf(sptr);
408         break;
409       case 'g':
410         if (!feature_bool(FEAT_HIS_DEBUG_OPER_ONLY))
411           SetDebug(sptr);
412         break;
413       }
414     }
415   }
416   else {
417     struct Client *acptr = user->server;
418
419     Count_newremoteclient(UserStats, acptr);
420
421     if (cli_from(acptr) != cli_from(sptr))
422     {
423       sendcmdto_one(&me, CMD_KILL, cptr, "%C :%s (%s != %s[%s])",
424                     sptr, cli_name(&me), cli_name(user->server), cli_name(cli_from(acptr)),
425                     cli_sockhost(cli_from(acptr)));
426       SetFlag(sptr, FLAG_KILLED);
427       return exit_client(cptr, sptr, &me, "NICK server wrong direction");
428     }
429     else if (HasFlag(acptr, FLAG_TS8))
430       SetFlag(sptr, FLAG_TS8);
431
432     /*
433      * Check to see if this user is being propagated
434      * as part of a net.burst, or is using protocol 9.
435      * FIXME: This can be sped up - its stupid to check it for
436      * every NICK message in a burst again  --Run.
437      */
438     for (; acptr != &me; acptr = cli_serv(acptr)->up)
439     {
440       if (IsBurst(acptr) || Protocol(acptr) < 10)
441         break;
442     }
443     if (!IPcheck_remote_connect(sptr, (acptr != &me)))
444     {
445       /*
446        * We ran out of bits to count this
447        */
448       sendcmdto_one(&me, CMD_KILL, sptr, "%C :%s (Too many connections from your host -- Ghost)",
449                     sptr, cli_name(&me));
450       return exit_client(cptr, sptr, &me,"Too many connections from your host -- throttled");
451     }
452     SetUser(sptr);
453   }
454
455   if (IsInvisible(sptr))
456     ++UserStats.inv_clients;
457   if (IsOper(sptr))
458     ++UserStats.opers;
459   /* If they get both +x and an account during registration, hide
460    * their hostmask here.  Calling hide_hostmask() from IAuth's
461    * account assignment causes a numeric reply during registration.
462    */
463   if (HasHiddenHost(sptr))
464     hide_hostmask(sptr, FLAG_HIDDENHOST);
465
466   tmpstr = umode_str(sptr);
467   /* Send full IP address to IPv6-grokking servers. */
468   sendcmdto_flag_serv_butone(user->server, CMD_NICK, cptr,
469                              FLAG_IPV6, FLAG_LAST_FLAG,
470                              "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
471                              cli_name(sptr), cli_hopcount(sptr) + 1,
472                              cli_lastnick(sptr),
473                              user->username, user->realhost,
474                              *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
475                              iptobase64(ip_base64, &cli_ip(sptr), sizeof(ip_base64), 1),
476                              NumNick(sptr), cli_info(sptr));
477   /* Send fake IPv6 addresses to pre-IPv6 servers. */
478   sendcmdto_flag_serv_butone(user->server, CMD_NICK, cptr,
479                              FLAG_LAST_FLAG, FLAG_IPV6,
480                              "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
481                              cli_name(sptr), cli_hopcount(sptr) + 1,
482                              cli_lastnick(sptr),
483                              user->username, user->realhost,
484                              *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
485                              iptobase64(ip_base64, &cli_ip(sptr), sizeof(ip_base64), 0),
486                              NumNick(sptr), cli_info(sptr));
487
488   /* Send user mode to client */
489   if (MyUser(sptr))
490   {
491     static struct Flags flags; /* automatically initialized to zeros */
492     /* To avoid sending +r to the client due to auth-on-connect, set
493      * the "old" FLAG_ACCOUNT bit to match the client's value.
494      */
495     if (IsAccount(cptr))
496       FlagSet(&flags, FLAG_ACCOUNT);
497     else
498       FlagClr(&flags, FLAG_ACCOUNT);
499     send_umode(cptr, sptr, &flags, ALL_UMODES);
500     if ((cli_snomask(sptr) != SNO_DEFAULT) && HasFlag(sptr, FLAG_SERVNOTICE))
501       send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
502   }
503   return 0;
504 }
505
506 /** List of user mode characters. */
507 static const struct UserMode {
508   unsigned int flag; /**< User mode constant. */
509   char         c;    /**< Character corresponding to the mode. */
510 } userModeList[] = {
511   { FLAG_OPER,        'o' },
512   { FLAG_LOCOP,       'O' },
513   { FLAG_INVISIBLE,   'i' },
514   { FLAG_WALLOP,      'w' },
515   { FLAG_SERVNOTICE,  's' },
516   { FLAG_DEAF,        'd' },
517   { FLAG_CHSERV,      'k' },
518   { FLAG_DEBUG,       'g' },
519   { FLAG_ACCOUNT,     'r' },
520   { FLAG_HIDDENHOST,  'x' }
521 };
522
523 /** Length of #userModeList. */
524 #define USERMODELIST_SIZE sizeof(userModeList) / sizeof(struct UserMode)
525
526 /*
527  * XXX - find a way to get rid of this
528  */
529 /** Nasty global buffer used for communications with umode_str() and others. */
530 static char umodeBuf[BUFSIZE];
531
532 /** Try to set a user's nickname.
533  * If \a sptr is a server, the client is being introduced for the first time.
534  * @param[in] cptr Client to set nickname.
535  * @param[in] sptr Client sending the NICK.
536  * @param[in] nick New nickname.
537  * @param[in] parc Number of arguments to NICK.
538  * @param[in] parv Argument list to NICK.
539  * @return CPTR_KILLED if \a cptr was killed, else 0.
540  */
541 int set_nick_name(struct Client* cptr, struct Client* sptr,
542                   const char* nick, int parc, char* parv[])
543 {
544   if (IsServer(sptr)) {
545     int   i;
546     const char* account = 0;
547     const char* p;
548
549     /*
550      * A server introducing a new client, change source
551      */
552     struct Client* new_client = make_client(cptr, STAT_UNKNOWN);
553     assert(0 != new_client);
554
555     cli_hopcount(new_client) = atoi(parv[2]);
556     cli_lastnick(new_client) = atoi(parv[3]);
557     if (Protocol(cptr) > 9 && parc > 7 && *parv[6] == '+')
558     {
559       for (p = parv[6] + 1; *p; p++)
560       {
561         for (i = 0; i < USERMODELIST_SIZE; ++i)
562         {
563           if (userModeList[i].c == *p)
564           {
565             SetFlag(new_client, userModeList[i].flag);
566             if (userModeList[i].flag == FLAG_ACCOUNT)
567               account = parv[7];
568             break;
569           }
570         }
571       }
572     }
573     client_set_privs(new_client, NULL); /* set privs on user */
574     /*
575      * Set new nick name.
576      */
577     strcpy(cli_name(new_client), nick);
578     cli_user(new_client) = make_user(new_client);
579     cli_user(new_client)->server = sptr;
580     SetRemoteNumNick(new_client, parv[parc - 2]);
581     /*
582      * IP# of remote client
583      */
584     base64toip(parv[parc - 3], &cli_ip(new_client));
585
586     add_client_to_list(new_client);
587     hAddClient(new_client);
588
589     cli_serv(sptr)->ghost = 0;        /* :server NICK means end of net.burst */
590     ircd_strncpy(cli_username(new_client), parv[4], USERLEN);
591     ircd_strncpy(cli_user(new_client)->username, parv[4], USERLEN);
592     ircd_strncpy(cli_user(new_client)->host, parv[5], HOSTLEN);
593     ircd_strncpy(cli_user(new_client)->realhost, parv[5], HOSTLEN);
594     ircd_strncpy(cli_info(new_client), parv[parc - 1], REALLEN);
595     if (account) {
596       int len = ACCOUNTLEN;
597       if ((p = strchr(account, ':'))) {
598         len = (p++) - account;
599         cli_user(new_client)->acc_create = atoi(p);
600         Debug((DEBUG_DEBUG, "Received timestamped account in user mode; "
601                "account \"%s\", timestamp %Tu", account,
602                cli_user(new_client)->acc_create));
603       }
604       ircd_strncpy(cli_user(new_client)->account, account, len);
605     }
606     if (HasHiddenHost(new_client))
607       ircd_snprintf(0, cli_user(new_client)->host, HOSTLEN, "%s.%s",
608                     cli_user(new_client)->account,
609                     feature_str(FEAT_HIDDEN_HOST));
610
611     return register_user(cptr, new_client);
612   }
613   else if ((cli_name(sptr))[0]) {
614     /*
615      * Client changing its nick
616      *
617      * If the client belongs to me, then check to see
618      * if client is on any channels where it is currently
619      * banned.  If so, do not allow the nick change to occur.
620      */
621     if (MyUser(sptr)) {
622       const char* channel_name;
623       struct Membership *member;
624       if ((channel_name = find_no_nickchange_channel(sptr))) {
625         return send_reply(cptr, ERR_BANNICKCHANGE, channel_name);
626       }
627       /*
628        * Refuse nick change if the last nick change was less
629        * then 30 seconds ago. This is intended to get rid of
630        * clone bots doing NICK FLOOD. -SeKs
631        * If someone didn't change their nick for more then 60 seconds
632        * however, allow to do two nick changes immediately after another
633        * before limiting the nick flood. -Run
634        */
635       if (CurrentTime < cli_nextnick(cptr))
636       {
637         cli_nextnick(cptr) += 2;
638         send_reply(cptr, ERR_NICKTOOFAST, parv[1],
639                    cli_nextnick(cptr) - CurrentTime);
640         /* Send error message */
641         sendcmdto_one(cptr, CMD_NICK, cptr, "%s", cli_name(cptr));
642         /* bounce NICK to user */
643         return 0;                /* ignore nick change! */
644       }
645       else {
646         /* Limit total to 1 change per NICK_DELAY seconds: */
647         cli_nextnick(cptr) += NICK_DELAY;
648         /* However allow _maximal_ 1 extra consecutive nick change: */
649         if (cli_nextnick(cptr) < CurrentTime)
650           cli_nextnick(cptr) = CurrentTime;
651       }
652       /* Invalidate all bans against the user so we check them again */
653       for (member = (cli_user(cptr))->channel; member;
654            member = member->next_channel)
655         ClearBanValid(member);
656     }
657     /*
658      * Also set 'lastnick' to current time, if changed.
659      */
660     if (0 != ircd_strcmp(parv[0], nick))
661       cli_lastnick(sptr) = (sptr == cptr) ? TStime() : atoi(parv[2]);
662
663     /*
664      * Client just changing his/her nick. If he/she is
665      * on a channel, send note of change to all clients
666      * on that channel. Propagate notice to other servers.
667      */
668     if (IsUser(sptr)) {
669       sendcmdto_common_channels_butone(sptr, CMD_NICK, NULL, ":%s", nick);
670       add_history(sptr, 1);
671       sendcmdto_serv_butone(sptr, CMD_NICK, cptr, "%s %Tu", nick,
672                             cli_lastnick(sptr));
673     }
674     else
675       sendcmdto_one(sptr, CMD_NICK, sptr, ":%s", nick);
676
677     if ((cli_name(sptr))[0])
678       hRemClient(sptr);
679     strcpy(cli_name(sptr), nick);
680     hAddClient(sptr);
681   }
682   else {
683     /* Local client setting NICK the first time */
684     strcpy(cli_name(sptr), nick);
685     hAddClient(sptr);
686     return auth_set_nick(cli_auth(sptr), nick);
687   }
688   return 0;
689 }
690
691 /** Calculate the hash value for a target.
692  * @param[in] target Pointer to target, cast to unsigned int.
693  * @return Hash value constructed from the pointer.
694  */
695 static unsigned char hash_target(unsigned int target)
696 {
697   return (unsigned char) (target >> 16) ^ (target >> 8);
698 }
699
700 /** Records \a target as a recent target for \a sptr.
701  * @param[in] sptr User who has sent to a new target.
702  * @param[in] target Target to add.
703  */
704 void
705 add_target(struct Client *sptr, void *target)
706 {
707   /* Ok, this shouldn't work esp on alpha
708   */
709   unsigned char  hash = hash_target((unsigned long) target);
710   unsigned char* targets;
711   int            i;
712   assert(0 != sptr);
713   assert(cli_local(sptr));
714
715   targets = cli_targets(sptr);
716
717   /* 
718    * Already in table?
719    */
720   for (i = 0; i < MAXTARGETS; ++i) {
721     if (targets[i] == hash)
722       return;
723   }
724   /*
725    * New target
726    */
727   memmove(&targets[RESERVEDTARGETS + 1],
728           &targets[RESERVEDTARGETS], MAXTARGETS - RESERVEDTARGETS - 1);
729   targets[RESERVEDTARGETS] = hash;
730 }
731
732 /** Check whether \a sptr can send to or join \a target yet.
733  * @param[in] sptr User trying to join a channel or send a message.
734  * @param[in] target Target of the join or message.
735  * @param[in] name Name of the target.
736  * @param[in] created If non-zero, trying to join a new channel.
737  * @return Non-zero if too many target changes; zero if okay to send.
738  */
739 int check_target_limit(struct Client *sptr, void *target, const char *name,
740     int created)
741 {
742   unsigned char hash = hash_target((unsigned long) target);
743   int            i;
744   unsigned char* targets;
745
746   assert(0 != sptr);
747   assert(cli_local(sptr));
748   targets = cli_targets(sptr);
749
750   /* If user is invited to channel, give him/her a free target */
751   if (IsChannelName(name) && IsInvited(sptr, target))
752     return 0;
753
754   /*
755    * Same target as last time?
756    */
757   if (targets[0] == hash)
758     return 0;
759   for (i = 1; i < MAXTARGETS; ++i) {
760     if (targets[i] == hash) {
761       memmove(&targets[1], &targets[0], i);
762       targets[0] = hash;
763       return 0;
764     }
765   }
766   /*
767    * New target
768    */
769   if (!created) {
770     if (CurrentTime < cli_nexttarget(sptr)) {
771       if (cli_nexttarget(sptr) - CurrentTime < TARGET_DELAY + 8) {
772         /*
773          * No server flooding
774          */
775         cli_nexttarget(sptr) += 2;
776         send_reply(sptr, ERR_TARGETTOOFAST, name,
777                    cli_nexttarget(sptr) - CurrentTime);
778       }
779       return 1;
780     }
781     else {
782       cli_nexttarget(sptr) += TARGET_DELAY;
783       if (cli_nexttarget(sptr) < CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1)))
784         cli_nexttarget(sptr) = CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1));
785     }
786   }
787   memmove(&targets[1], &targets[0], MAXTARGETS - 1);
788   targets[0] = hash;
789   return 0;
790 }
791
792 /** Allows a channel operator to avoid target change checks when
793  * sending messages to users on their channel.
794  * @param[in] source User sending the message.
795  * @param[in] nick Destination of the message.
796  * @param[in] channel Name of channel being sent to.
797  * @param[in] text Message to send.
798  * @param[in] is_notice If non-zero, use CNOTICE instead of CPRIVMSG.
799  */
800 /* Added 971023 by Run. */
801 int whisper(struct Client* source, const char* nick, const char* channel,
802             const char* text, int is_notice)
803 {
804   struct Client*     dest;
805   struct Channel*    chptr;
806   struct Membership* membership;
807
808   assert(0 != source);
809   assert(0 != nick);
810   assert(0 != channel);
811   assert(MyUser(source));
812
813   if (!(dest = FindUser(nick))) {
814     return send_reply(source, ERR_NOSUCHNICK, nick);
815   }
816   if (!(chptr = FindChannel(channel))) {
817     return send_reply(source, ERR_NOSUCHCHANNEL, channel);
818   }
819   /*
820    * compare both users channel lists, instead of the channels user list
821    * since the link is the same, this should be a little faster for channels
822    * with a lot of users
823    */
824   for (membership = cli_user(source)->channel; membership; membership = membership->next_channel) {
825     if (chptr == membership->channel)
826       break;
827   }
828   if (0 == membership) {
829     return send_reply(source, ERR_NOTONCHANNEL, chptr->chname);
830   }
831   if (!IsVoicedOrOpped(membership)) {
832     return send_reply(source, ERR_VOICENEEDED, chptr->chname);
833   }
834   /*
835    * lookup channel in destination
836    */
837   assert(0 != cli_user(dest));
838   for (membership = cli_user(dest)->channel; membership; membership = membership->next_channel) {
839     if (chptr == membership->channel)
840       break;
841   }
842   if (0 == membership || IsZombie(membership)) {
843     return send_reply(source, ERR_USERNOTINCHANNEL, cli_name(dest), chptr->chname);
844   }
845   if (is_silenced(source, dest))
846     return 0;
847           
848   if (cli_user(dest)->away)
849     send_reply(source, RPL_AWAY, cli_name(dest), cli_user(dest)->away);
850   if (is_notice)
851     sendcmdto_one(source, CMD_NOTICE, dest, "%C :%s", dest, text);
852   else
853     sendcmdto_one(source, CMD_PRIVATE, dest, "%C :%s", dest, text);
854   return 0;
855 }
856
857
858 /** Send a user mode change for \a cptr to neighboring servers.
859  * @param[in] cptr User whose mode is changing.
860  * @param[in] sptr Client who sent us the mode change message.
861  * @param[in] old Prior set of user flags.
862  * @param[in] prop If non-zero, also include FLAG_OPER.
863  */
864 void send_umode_out(struct Client *cptr, struct Client *sptr,
865                     struct Flags *old, int prop)
866 {
867   int i;
868   struct Client *acptr;
869
870   send_umode(NULL, sptr, old, prop ? SEND_UMODES : SEND_UMODES_BUT_OPER);
871
872   for (i = HighestFd; i >= 0; i--)
873   {
874     if ((acptr = LocalClientArray[i]) && IsServer(acptr) &&
875         (acptr != cptr) && (acptr != sptr) && *umodeBuf)
876       sendcmdto_one(sptr, CMD_MODE, acptr, "%s :%s", cli_name(sptr), umodeBuf);
877   }
878   if (cptr && MyUser(cptr))
879     send_umode(cptr, sptr, old, ALL_UMODES);
880 }
881
882
883 /** Call \a fmt for each Client named in \a names.
884  * @param[in] sptr Client requesting information.
885  * @param[in] names Space-delimited list of nicknames.
886  * @param[in] rpl Base reply string for messages.
887  * @param[in] fmt Formatting callback function.
888  */
889 void send_user_info(struct Client* sptr, char* names, int rpl, InfoFormatter fmt)
890 {
891   char*          name;
892   char*          p = 0;
893   int            arg_count = 0;
894   int            users_found = 0;
895   struct Client* acptr;
896   struct MsgBuf* mb;
897
898   assert(0 != sptr);
899   assert(0 != names);
900   assert(0 != fmt);
901
902   mb = msgq_make(sptr, rpl_str(rpl), cli_name(&me), cli_name(sptr));
903
904   for (name = ircd_strtok(&p, names, " "); name; name = ircd_strtok(&p, 0, " ")) {
905     if ((acptr = FindUser(name))) {
906       if (users_found++)
907         msgq_append(0, mb, " ");
908       (*fmt)(acptr, sptr, mb);
909     }
910     if (5 == ++arg_count)
911       break;
912   }
913   send_buffer(sptr, mb, 0);
914   msgq_clean(mb);
915 }
916
917 /** Set \a flag on \a cptr and possibly hide the client's hostmask.
918  * @param[in,out] cptr User who is getting a new flag.
919  * @param[in] flag Some flag that affects host-hiding (FLAG_HIDDENHOST, FLAG_ACCOUNT).
920  * @return Zero.
921  */
922 int
923 hide_hostmask(struct Client *cptr, unsigned int flag)
924 {
925   struct Membership *chan;
926
927   switch (flag) {
928   case FLAG_HIDDENHOST:
929     /* Local users cannot set +x unless FEAT_HOST_HIDING is true. */
930     if (MyConnect(cptr) && !feature_bool(FEAT_HOST_HIDING))
931       return 0;
932     break;
933   case FLAG_ACCOUNT:
934     /* Invalidate all bans against the user so we check them again */
935     for (chan = (cli_user(cptr))->channel; chan;
936          chan = chan->next_channel)
937       ClearBanValid(chan);
938     break;
939   default:
940     return 0;
941   }
942
943   SetFlag(cptr, flag);
944   if (!HasFlag(cptr, FLAG_HIDDENHOST) || !HasFlag(cptr, FLAG_ACCOUNT))
945     return 0;
946
947   sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":Registered");
948   ircd_snprintf(0, cli_user(cptr)->host, HOSTLEN, "%s.%s",
949                 cli_user(cptr)->account, feature_str(FEAT_HIDDEN_HOST));
950
951   /* ok, the client is now fully hidden, so let them know -- hikari */
952   if (MyConnect(cptr))
953    send_reply(cptr, RPL_HOSTHIDDEN, cli_user(cptr)->host);
954
955   /*
956    * Go through all channels the client was on, rejoin him
957    * and set the modes, if any
958    */
959   for (chan = cli_user(cptr)->channel; chan; chan = chan->next_channel)
960   {
961     if (IsZombie(chan))
962       continue;
963     /* Send a JOIN unless the user's join has been delayed. */
964     if (!IsDelayedJoin(chan))
965       sendcmdto_channel_butserv_butone(cptr, CMD_JOIN, chan->channel, cptr, 0,
966                                          "%H", chan->channel);
967     if (IsChanOp(chan) && HasVoice(chan))
968       sendcmdto_channel_butserv_butone(&his, CMD_MODE, chan->channel, cptr, 0,
969                                        "%H +ov %C %C", chan->channel, cptr,
970                                        cptr);
971     else if (IsChanOp(chan) || HasVoice(chan))
972       sendcmdto_channel_butserv_butone(&his, CMD_MODE, chan->channel, cptr, 0,
973         "%H +%c %C", chan->channel, IsChanOp(chan) ? 'o' : 'v', cptr);
974   }
975   return 0;
976 }
977
978 /** Set a user's mode.  This function checks that \a cptr is trying to
979  * set his own mode, prevents local users from setting inappropriate
980  * modes through this function, and applies any other side effects of
981  * a successful mode change.
982  *
983  * @param[in,out] cptr User setting someone's mode.
984  * @param[in] sptr Client who sent the mode change message.
985  * @param[in] parc Number of parameters in \a parv.
986  * @param[in] parv Parameters to MODE.
987  * @return Zero.
988  */
989 int set_user_mode(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
990 {
991   char** p;
992   char*  m;
993   int what;
994   int i;
995   struct Flags setflags;
996   unsigned int tmpmask = 0;
997   int snomask_given = 0;
998   char buf[BUFSIZE];
999   int prop = 0;
1000   int do_host_hiding = 0;
1001
1002   what = MODE_ADD;
1003
1004   if (parc < 3)
1005   {
1006     m = buf;
1007     *m++ = '+';
1008     for (i = 0; i < USERMODELIST_SIZE; i++)
1009     {
1010       if (HasFlag(sptr, userModeList[i].flag) &&
1011           userModeList[i].flag != FLAG_ACCOUNT)
1012         *m++ = userModeList[i].c;
1013     }
1014     *m = '\0';
1015     send_reply(sptr, RPL_UMODEIS, buf);
1016     if (HasFlag(sptr, FLAG_SERVNOTICE) && MyConnect(sptr)
1017         && cli_snomask(sptr) !=
1018         (unsigned int)(IsOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT))
1019       send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1020     return 0;
1021   }
1022
1023   /*
1024    * find flags already set for user
1025    * why not just copy them?
1026    */
1027   setflags = cli_flags(sptr);
1028
1029   if (MyConnect(sptr))
1030     tmpmask = cli_snomask(sptr);
1031
1032   /*
1033    * parse mode change string(s)
1034    */
1035   for (p = &parv[2]; *p; p++) {       /* p is changed in loop too */
1036     for (m = *p; *m; m++) {
1037       switch (*m) {
1038       case '+':
1039         what = MODE_ADD;
1040         break;
1041       case '-':
1042         what = MODE_DEL;
1043         break;
1044       case 's':
1045         if (*(p + 1) && is_snomask(*(p + 1))) {
1046           snomask_given = 1;
1047           tmpmask = umode_make_snomask(tmpmask, *++p, what);
1048           tmpmask &= (IsAnOper(sptr) ? SNO_ALL : SNO_USER);
1049         }
1050         else
1051           tmpmask = (what == MODE_ADD) ?
1052               (IsAnOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT) : 0;
1053         if (tmpmask)
1054           SetServNotice(sptr);
1055         else
1056           ClearServNotice(sptr);
1057         break;
1058       case 'w':
1059         if (what == MODE_ADD)
1060           SetWallops(sptr);
1061         else
1062           ClearWallops(sptr);
1063         break;
1064       case 'o':
1065         if (what == MODE_ADD)
1066           SetOper(sptr);
1067         else {
1068           ClrFlag(sptr, FLAG_OPER);
1069           ClrFlag(sptr, FLAG_LOCOP);
1070           if (MyConnect(sptr))
1071           {
1072             tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1073             cli_handler(sptr) = CLIENT_HANDLER;
1074           }
1075         }
1076         break;
1077       case 'O':
1078         if (what == MODE_ADD)
1079           SetLocOp(sptr);
1080         else
1081         { 
1082           ClrFlag(sptr, FLAG_OPER);
1083           ClrFlag(sptr, FLAG_LOCOP);
1084           if (MyConnect(sptr))
1085           {
1086             tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1087             cli_handler(sptr) = CLIENT_HANDLER;
1088           }
1089         }
1090         break;
1091       case 'i':
1092         if (what == MODE_ADD)
1093           SetInvisible(sptr);
1094         else
1095           ClearInvisible(sptr);
1096         break;
1097       case 'd':
1098         if (what == MODE_ADD)
1099           SetDeaf(sptr);
1100         else
1101           ClearDeaf(sptr);
1102         break;
1103       case 'k':
1104         if (what == MODE_ADD)
1105           SetChannelService(sptr);
1106         else
1107           ClearChannelService(sptr);
1108         break;
1109       case 'g':
1110         if (what == MODE_ADD)
1111           SetDebug(sptr);
1112         else
1113           ClearDebug(sptr);
1114         break;
1115       case 'x':
1116         if (what == MODE_ADD)
1117           do_host_hiding = 1;
1118         break;
1119       default:
1120         send_reply(sptr, ERR_UMODEUNKNOWNFLAG, *m);
1121         break;
1122       }
1123     }
1124   }
1125   /*
1126    * Evaluate rules for new user mode
1127    * Stop users making themselves operators too easily:
1128    */
1129   if (!IsServer(cptr))
1130   {
1131     if (!FlagHas(&setflags, FLAG_OPER) && IsOper(sptr))
1132       ClearOper(sptr);
1133     if (!FlagHas(&setflags, FLAG_LOCOP) && IsLocOp(sptr))
1134       ClearLocOp(sptr);
1135     /*
1136      * new umode; servers can set it, local users cannot;
1137      * prevents users from /kick'ing or /mode -o'ing
1138      */
1139     if (!FlagHas(&setflags, FLAG_CHSERV))
1140       ClearChannelService(sptr);
1141     /*
1142      * only send wallops to opers
1143      */
1144     if (feature_bool(FEAT_WALLOPS_OPER_ONLY) && !IsAnOper(sptr) &&
1145         !FlagHas(&setflags, FLAG_WALLOP))
1146       ClearWallops(sptr);
1147     if (feature_bool(FEAT_HIS_SNOTICES_OPER_ONLY) && MyConnect(sptr) &&
1148         !IsAnOper(sptr) && !FlagHas(&setflags, FLAG_SERVNOTICE))
1149     {
1150       ClearServNotice(sptr);
1151       set_snomask(sptr, 0, SNO_SET);
1152     }
1153     if (feature_bool(FEAT_HIS_DEBUG_OPER_ONLY) &&
1154         !IsAnOper(sptr) && !FlagHas(&setflags, FLAG_DEBUG))
1155       ClearDebug(sptr);
1156   }
1157   if (MyConnect(sptr))
1158   {
1159     if ((FlagHas(&setflags, FLAG_OPER) || FlagHas(&setflags, FLAG_LOCOP)) &&
1160         !IsAnOper(sptr))
1161       det_confs_butmask(sptr, CONF_CLIENT & ~CONF_OPERATOR);
1162
1163     if (SendServNotice(sptr))
1164     {
1165       if (tmpmask != cli_snomask(sptr))
1166         set_snomask(sptr, tmpmask, SNO_SET);
1167       if (cli_snomask(sptr) && snomask_given)
1168         send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1169     }
1170     else
1171       set_snomask(sptr, 0, SNO_SET);
1172   }
1173   /*
1174    * Compare new flags with old flags and send string which
1175    * will cause servers to update correctly.
1176    */
1177   if (!FlagHas(&setflags, FLAG_OPER) && IsOper(sptr))
1178   {
1179     /* user now oper */
1180     ++UserStats.opers;
1181     client_set_privs(sptr, NULL); /* may set propagate privilege */
1182   }
1183   /* remember propagate privilege setting */
1184   if (HasPriv(sptr, PRIV_PROPAGATE))
1185     prop = 1;
1186   if (FlagHas(&setflags, FLAG_OPER) && !IsOper(sptr))
1187   {
1188     /* user no longer oper */
1189     --UserStats.opers;
1190     client_set_privs(sptr, NULL); /* will clear propagate privilege */
1191   }
1192   if (FlagHas(&setflags, FLAG_INVISIBLE) && !IsInvisible(sptr))
1193     --UserStats.inv_clients;
1194   if (!FlagHas(&setflags, FLAG_INVISIBLE) && IsInvisible(sptr))
1195     ++UserStats.inv_clients;
1196   if (!FlagHas(&setflags, FLAG_HIDDENHOST) && do_host_hiding)
1197     hide_hostmask(sptr, FLAG_HIDDENHOST);
1198   if (IsRegistered(sptr))
1199     send_umode_out(cptr, sptr, &setflags, prop);
1200
1201   return 0;
1202 }
1203
1204 /** Build a mode string to describe modes for \a cptr.
1205  * @param[in] cptr Some user.
1206  * @return Pointer to a static buffer.
1207  */
1208 char *umode_str(struct Client *cptr)
1209 {
1210   /* Maximum string size: "owidgrx\0" */
1211   char *m = umodeBuf;
1212   int i;
1213   struct Flags c_flags = cli_flags(cptr);
1214
1215   if (!HasPriv(cptr, PRIV_PROPAGATE))
1216     FlagClr(&c_flags, FLAG_OPER);
1217
1218   for (i = 0; i < USERMODELIST_SIZE; ++i)
1219   {
1220     if (FlagHas(&c_flags, userModeList[i].flag) &&
1221         userModeList[i].flag >= FLAG_GLOBAL_UMODES)
1222       *m++ = userModeList[i].c;
1223   }
1224
1225   if (IsAccount(cptr))
1226   {
1227     char* t = cli_user(cptr)->account;
1228
1229     *m++ = ' ';
1230     while ((*m++ = *t++))
1231       ; /* Empty loop */
1232
1233     if (cli_user(cptr)->acc_create) {
1234       char nbuf[20];
1235       Debug((DEBUG_DEBUG, "Sending timestamped account in user mode for "
1236              "account \"%s\"; timestamp %Tu", cli_user(cptr)->account,
1237              cli_user(cptr)->acc_create));
1238       ircd_snprintf(0, t = nbuf, sizeof(nbuf), ":%Tu",
1239                     cli_user(cptr)->acc_create);
1240       m--; /* back up over previous nul-termination */
1241       while ((*m++ = *t++))
1242         ; /* Empty loop */
1243     }
1244   }
1245
1246   *m = '\0';
1247
1248   return umodeBuf;                /* Note: static buffer, gets
1249                                    overwritten by send_umode() */
1250 }
1251
1252 /** Send a mode change string for \a sptr to \a cptr.
1253  * @param[in] cptr Destination of mode change message.
1254  * @param[in] sptr User whose mode has changed.
1255  * @param[in] old Pre-change set of modes for \a sptr.
1256  * @param[in] sendset One of ALL_UMODES, SEND_UMODES_BUT_OPER,
1257  * SEND_UMODES, to select which changed user modes to send.
1258  */
1259 void send_umode(struct Client *cptr, struct Client *sptr, struct Flags *old,
1260                 int sendset)
1261 {
1262   int i;
1263   int flag;
1264   char *m;
1265   int what = MODE_NULL;
1266
1267   /*
1268    * Build a string in umodeBuf to represent the change in the user's
1269    * mode between the new (cli_flags(sptr)) and 'old', but skipping
1270    * the modes indicated by sendset.
1271    */
1272   m = umodeBuf;
1273   *m = '\0';
1274   for (i = 0; i < USERMODELIST_SIZE; ++i)
1275   {
1276     flag = userModeList[i].flag;
1277     if (FlagHas(old, flag)
1278         == HasFlag(sptr, flag))
1279       continue;
1280     switch (sendset)
1281     {
1282     case ALL_UMODES:
1283       break;
1284     case SEND_UMODES_BUT_OPER:
1285       if (flag == FLAG_OPER)
1286         continue;
1287       /* and fall through */
1288     case SEND_UMODES:
1289       if (flag < FLAG_GLOBAL_UMODES)
1290         continue;
1291       break;      
1292     }
1293     if (FlagHas(old, flag))
1294     {
1295       if (what == MODE_DEL)
1296         *m++ = userModeList[i].c;
1297       else
1298       {
1299         what = MODE_DEL;
1300         *m++ = '-';
1301         *m++ = userModeList[i].c;
1302       }
1303     }
1304     else /* !FlagHas(old, flag) */
1305     {
1306       if (what == MODE_ADD)
1307         *m++ = userModeList[i].c;
1308       else
1309       {
1310         what = MODE_ADD;
1311         *m++ = '+';
1312         *m++ = userModeList[i].c;
1313       }
1314     }
1315   }
1316   *m = '\0';
1317   if (*umodeBuf && cptr)
1318     sendcmdto_one(sptr, CMD_MODE, cptr, "%s :%s", cli_name(sptr), umodeBuf);
1319 }
1320
1321 /**
1322  * Check to see if this resembles a sno_mask.  It is if 1) there is
1323  * at least one digit and 2) The first digit occurs before the first
1324  * alphabetic character.
1325  * @param[in] word Word to check for sno_mask-ness.
1326  * @return Non-zero if \a word looks like a server notice mask; zero if not.
1327  */
1328 int is_snomask(char *word)
1329 {
1330   if (word)
1331   {
1332     for (; *word; word++)
1333       if (IsDigit(*word))
1334         return 1;
1335       else if (IsAlpha(*word))
1336         return 0;
1337   }
1338   return 0;
1339 }
1340
1341 /** Update snomask \a oldmask according to \a arg and \a what.
1342  * @param[in] oldmask Original user mask.
1343  * @param[in] arg Update string (either a number or '+'/'-' followed by a number).
1344  * @param[in] what MODE_ADD if adding the mask.
1345  * @return New value of service notice mask.
1346  */
1347 unsigned int umode_make_snomask(unsigned int oldmask, char *arg, int what)
1348 {
1349   unsigned int sno_what;
1350   unsigned int newmask;
1351   if (*arg == '+')
1352   {
1353     arg++;
1354     if (what == MODE_ADD)
1355       sno_what = SNO_ADD;
1356     else
1357       sno_what = SNO_DEL;
1358   }
1359   else if (*arg == '-')
1360   {
1361     arg++;
1362     if (what == MODE_ADD)
1363       sno_what = SNO_DEL;
1364     else
1365       sno_what = SNO_ADD;
1366   }
1367   else
1368     sno_what = (what == MODE_ADD) ? SNO_SET : SNO_DEL;
1369   /* pity we don't have strtoul everywhere */
1370   newmask = (unsigned int)atoi(arg);
1371   if (sno_what == SNO_DEL)
1372     newmask = oldmask & ~newmask;
1373   else if (sno_what == SNO_ADD)
1374     newmask |= oldmask;
1375   return newmask;
1376 }
1377
1378 /** Remove \a cptr from the singly linked list \a list.
1379  * @param[in] cptr Client to remove from list.
1380  * @param[in,out] list Pointer to head of list containing \a cptr.
1381  */
1382 static void delfrom_list(struct Client *cptr, struct SLink **list)
1383 {
1384   struct SLink* tmp;
1385   struct SLink* prv = NULL;
1386
1387   for (tmp = *list; tmp; tmp = tmp->next) {
1388     if (tmp->value.cptr == cptr) {
1389       if (prv)
1390         prv->next = tmp->next;
1391       else
1392         *list = tmp->next;
1393       free_link(tmp);
1394       break;
1395     }
1396     prv = tmp;
1397   }
1398 }
1399
1400 /** Set \a cptr's server notice mask, according to \a what.
1401  * @param[in,out] cptr Client whose snomask is updating.
1402  * @param[in] newmask Base value for new snomask.
1403  * @param[in] what One of SNO_ADD, SNO_DEL, SNO_SET, to choose operation.
1404  */
1405 void set_snomask(struct Client *cptr, unsigned int newmask, int what)
1406 {
1407   unsigned int oldmask, diffmask;        /* unsigned please */
1408   int i;
1409   struct SLink *tmp;
1410
1411   oldmask = cli_snomask(cptr);
1412
1413   if (what == SNO_ADD)
1414     newmask |= oldmask;
1415   else if (what == SNO_DEL)
1416     newmask = oldmask & ~newmask;
1417   else if (what != SNO_SET)        /* absolute set, no math needed */
1418     sendto_opmask_butone(0, SNO_OLDSNO, "setsnomask called with %d ?!", what);
1419
1420   newmask &= (IsAnOper(cptr) ? SNO_ALL : SNO_USER);
1421
1422   diffmask = oldmask ^ newmask;
1423
1424   for (i = 0; diffmask >> i; i++) {
1425     if (((diffmask >> i) & 1))
1426     {
1427       if (((newmask >> i) & 1))
1428       {
1429         tmp = make_link();
1430         tmp->next = opsarray[i];
1431         tmp->value.cptr = cptr;
1432         opsarray[i] = tmp;
1433       }
1434       else
1435         /* not real portable :( */
1436         delfrom_list(cptr, &opsarray[i]);
1437     }
1438   }
1439   cli_snomask(cptr) = newmask;
1440 }
1441
1442 /** Check whether \a sptr is allowed to send a message to \a acptr.
1443  * If \a sptr is a remote user, it means some server has an outdated
1444  * SILENCE list for \a acptr, so send the missing SILENCE mask(s) back
1445  * in the direction of \a sptr.  Skip the check if \a sptr is a server.
1446  * @param[in] sptr Client trying to send a message.
1447  * @param[in] acptr Destination of message.
1448  * @return Non-zero if \a sptr is SILENCEd by \a acptr, zero if not.
1449  */
1450 int is_silenced(struct Client *sptr, struct Client *acptr)
1451 {
1452   struct Ban *found;
1453   struct User *user;
1454   size_t buf_used, slen;
1455   char buf[BUFSIZE];
1456
1457   if (IsServer(sptr) || !(user = cli_user(acptr))
1458       || !(found = find_ban(sptr, user->silence)))
1459     return 0;
1460   assert(!(found->flags & BAN_EXCEPTION));
1461   if (!MyConnect(sptr)) {
1462     /* Buffer positive silence to send back. */
1463     buf_used = strlen(found->banstr);
1464     memcpy(buf, found->banstr, buf_used);
1465     /* Add exceptions to buffer. */
1466     for (found = user->silence; found; found = found->next) {
1467       if (!(found->flags & BAN_EXCEPTION))
1468         continue;
1469       slen = strlen(found->banstr);
1470       if (buf_used + slen + 4 > 400) {
1471         buf[buf_used] = '\0';
1472         sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr, buf);
1473         buf_used = 0;
1474       }
1475       if (buf_used)
1476         buf[buf_used++] = ',';
1477       buf[buf_used++] = '+';
1478       buf[buf_used++] = '~';
1479       memcpy(buf + buf_used, found->banstr, slen);
1480       buf_used += slen;
1481     }
1482     /* Flush silence buffer. */
1483     if (buf_used) {
1484       buf[buf_used] = '\0';
1485       sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr, buf);
1486       buf_used = 0;
1487     }
1488   }
1489   return 1;
1490 }
1491
1492 /** Send RPL_ISUPPORT lines to \a cptr.
1493  * @param[in] cptr Client to send ISUPPORT to.
1494  * @return Zero.
1495  */
1496 int
1497 send_supported(struct Client *cptr)
1498 {
1499   char featurebuf[512];
1500
1501   ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES1, FEATURESVALUES1);
1502   send_reply(cptr, RPL_ISUPPORT, featurebuf);
1503   ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES2, FEATURESVALUES2);
1504   send_reply(cptr, RPL_ISUPPORT, featurebuf);
1505
1506   return 0; /* convenience return, if it's ever needed */
1507 }