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