Move whisper()'s away message checking to the cprivmsg path.
[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, 1, umodev, ALLOWMODES_ANY);
396     }
397
398   }
399   else {
400     struct Client *acptr = user->server;
401
402     if (cli_from(acptr) != cli_from(sptr))
403     {
404       sendcmdto_one(&me, CMD_KILL, cptr, "%C :%s (%s != %s[%s])",
405                     sptr, cli_name(&me), cli_name(user->server), cli_name(cli_from(acptr)),
406                     cli_sockhost(cli_from(acptr)));
407       SetFlag(sptr, FLAG_KILLED);
408       return exit_client(cptr, sptr, &me, "NICK server wrong direction");
409     }
410     else if (HasFlag(acptr, FLAG_TS8))
411       SetFlag(sptr, FLAG_TS8);
412
413     /*
414      * Check to see if this user is being propagated
415      * as part of a net.burst, or is using protocol 9.
416      * FIXME: This can be sped up - its stupid to check it for
417      * every NICK message in a burst again  --Run.
418      */
419     for (; acptr != &me; acptr = cli_serv(acptr)->up)
420     {
421       if (IsBurst(acptr) || Protocol(acptr) < 10)
422         break;
423     }
424     if (!IPcheck_remote_connect(sptr, (acptr != &me)))
425     {
426       /*
427        * We ran out of bits to count this
428        */
429       sendcmdto_one(&me, CMD_KILL, sptr, "%C :%s (Too many connections from your host -- Ghost)",
430                     sptr, cli_name(&me));
431       return exit_client(cptr, sptr, &me,"Too many connections from your host -- throttled");
432     }
433     SetUser(sptr);
434   }
435
436   /* If they get both +x and an account during registration, hide
437    * their hostmask here.  Calling hide_hostmask() from IAuth's
438    * account assignment causes a numeric reply during registration.
439    */
440   if (HasHiddenHost(sptr))
441     hide_hostmask(sptr, FLAG_HIDDENHOST);
442
443   tmpstr = umode_str(sptr);
444   /* Send full IP address to IPv6-grokking servers. */
445   sendcmdto_flag_serv_butone(user->server, CMD_NICK, cptr,
446                              FLAG_IPV6, FLAG_LAST_FLAG,
447                              "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
448                              cli_name(sptr), cli_hopcount(sptr) + 1,
449                              cli_lastnick(sptr),
450                              user->username, user->realhost,
451                              *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
452                              iptobase64(ip_base64, &cli_ip(sptr), sizeof(ip_base64), 1),
453                              NumNick(sptr), cli_info(sptr));
454   /* Send fake IPv6 addresses to pre-IPv6 servers. */
455   sendcmdto_flag_serv_butone(user->server, CMD_NICK, cptr,
456                              FLAG_LAST_FLAG, FLAG_IPV6,
457                              "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
458                              cli_name(sptr), cli_hopcount(sptr) + 1,
459                              cli_lastnick(sptr),
460                              user->username, user->realhost,
461                              *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
462                              iptobase64(ip_base64, &cli_ip(sptr), sizeof(ip_base64), 0),
463                              NumNick(sptr), cli_info(sptr));
464
465   /* Send user mode to client */
466   if (MyUser(sptr))
467   {
468     static struct Flags flags; /* automatically initialized to zeros */
469     /* To avoid sending +r to the client due to auth-on-connect, set
470      * the "old" FLAG_ACCOUNT bit to match the client's value.
471      */
472     if (IsAccount(cptr))
473       FlagSet(&flags, FLAG_ACCOUNT);
474     else
475       FlagClr(&flags, FLAG_ACCOUNT);
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     client_set_privs(new_client, NULL); /* set privs on user */
533     /*
534      * Set new nick name.
535      */
536     strcpy(cli_name(new_client), nick);
537     cli_user(new_client) = make_user(new_client);
538     cli_user(new_client)->server = sptr;
539     SetRemoteNumNick(new_client, parv[parc - 2]);
540     /*
541      * IP# of remote client
542      */
543     base64toip(parv[parc - 3], &cli_ip(new_client));
544
545     add_client_to_list(new_client);
546     hAddClient(new_client);
547
548     cli_serv(sptr)->ghost = 0;        /* :server NICK means end of net.burst */
549     ircd_strncpy(cli_username(new_client), parv[4], USERLEN);
550     ircd_strncpy(cli_user(new_client)->username, parv[4], USERLEN);
551     ircd_strncpy(cli_user(new_client)->host, parv[5], HOSTLEN);
552     ircd_strncpy(cli_user(new_client)->realhost, parv[5], HOSTLEN);
553     ircd_strncpy(cli_info(new_client), parv[parc - 1], REALLEN);
554
555     Count_newremoteclient(UserStats, sptr);
556
557     if (parc > 7 && *parv[6] == '+') {
558       /* (parc-4) -3 for the ip, numeric nick, realname */
559       set_user_mode(cptr, new_client, parc-7, parv+4, ALLOWMODES_ANY);
560     }
561
562     return register_user(cptr, new_client);
563   }
564   else if ((cli_name(sptr))[0]) {
565     /*
566      * Client changing its nick
567      *
568      * If the client belongs to me, then check to see
569      * if client is on any channels where it is currently
570      * banned.  If so, do not allow the nick change to occur.
571      */
572     if (MyUser(sptr)) {
573       const char* channel_name;
574       struct Membership *member;
575       if ((channel_name = find_no_nickchange_channel(sptr))) {
576         return send_reply(cptr, ERR_BANNICKCHANGE, channel_name);
577       }
578       /*
579        * Refuse nick change if the last nick change was less
580        * then 30 seconds ago. This is intended to get rid of
581        * clone bots doing NICK FLOOD. -SeKs
582        * If someone didn't change their nick for more then 60 seconds
583        * however, allow to do two nick changes immediately after another
584        * before limiting the nick flood. -Run
585        */
586       if (CurrentTime < cli_nextnick(cptr))
587       {
588         cli_nextnick(cptr) += 2;
589         send_reply(cptr, ERR_NICKTOOFAST, parv[1],
590                    cli_nextnick(cptr) - CurrentTime);
591         /* Send error message */
592         sendcmdto_one(cptr, CMD_NICK, cptr, "%s", cli_name(cptr));
593         /* bounce NICK to user */
594         return 0;                /* ignore nick change! */
595       }
596       else {
597         /* Limit total to 1 change per NICK_DELAY seconds: */
598         cli_nextnick(cptr) += NICK_DELAY;
599         /* However allow _maximal_ 1 extra consecutive nick change: */
600         if (cli_nextnick(cptr) < CurrentTime)
601           cli_nextnick(cptr) = CurrentTime;
602       }
603       /* Invalidate all bans against the user so we check them again */
604       for (member = (cli_user(cptr))->channel; member;
605            member = member->next_channel)
606         ClearBanValid(member);
607     }
608     /*
609      * Also set 'lastnick' to current time, if changed.
610      */
611     if (0 != ircd_strcmp(parv[0], nick))
612       cli_lastnick(sptr) = (sptr == cptr) ? TStime() : atoi(parv[2]);
613
614     /*
615      * Client just changing his/her nick. If he/she is
616      * on a channel, send note of change to all clients
617      * on that channel. Propagate notice to other servers.
618      */
619     if (IsUser(sptr)) {
620       sendcmdto_common_channels_butone(sptr, CMD_NICK, NULL, ":%s", nick);
621       add_history(sptr, 1);
622       sendcmdto_serv_butone(sptr, CMD_NICK, cptr, "%s %Tu", nick,
623                             cli_lastnick(sptr));
624     }
625     else
626       sendcmdto_one(sptr, CMD_NICK, sptr, ":%s", nick);
627
628     if ((cli_name(sptr))[0])
629       hRemClient(sptr);
630     strcpy(cli_name(sptr), nick);
631     hAddClient(sptr);
632   }
633   else {
634     /* Local client setting NICK the first time */
635     strcpy(cli_name(sptr), nick);
636     hAddClient(sptr);
637     return auth_set_nick(cli_auth(sptr), nick);
638   }
639   return 0;
640 }
641
642 /** Calculate the hash value for a target.
643  * @param[in] target Pointer to target, cast to unsigned int.
644  * @return Hash value constructed from the pointer.
645  */
646 static unsigned char hash_target(unsigned int target)
647 {
648   return (unsigned char) (target >> 16) ^ (target >> 8);
649 }
650
651 /** Records \a target as a recent target for \a sptr.
652  * @param[in] sptr User who has sent to a new target.
653  * @param[in] target Target to add.
654  */
655 void
656 add_target(struct Client *sptr, void *target)
657 {
658   /* Ok, this shouldn't work esp on alpha
659   */
660   unsigned char  hash = hash_target((unsigned long) target);
661   unsigned char* targets;
662   int            i;
663   assert(0 != sptr);
664   assert(cli_local(sptr));
665
666   targets = cli_targets(sptr);
667
668   /* 
669    * Already in table?
670    */
671   for (i = 0; i < MAXTARGETS; ++i) {
672     if (targets[i] == hash)
673       return;
674   }
675   /*
676    * New target
677    */
678   memmove(&targets[RESERVEDTARGETS + 1],
679           &targets[RESERVEDTARGETS], MAXTARGETS - RESERVEDTARGETS - 1);
680   targets[RESERVEDTARGETS] = hash;
681 }
682
683 /** Check whether \a sptr can send to or join \a target yet.
684  * @param[in] sptr User trying to join a channel or send a message.
685  * @param[in] target Target of the join or message.
686  * @param[in] name Name of the target.
687  * @param[in] created If non-zero, trying to join a new channel.
688  * @return Non-zero if too many target changes; zero if okay to send.
689  */
690 int check_target_limit(struct Client *sptr, void *target, const char *name,
691     int created)
692 {
693   unsigned char hash = hash_target((unsigned long) target);
694   int            i;
695   unsigned char* targets;
696
697   assert(0 != sptr);
698   assert(cli_local(sptr));
699   targets = cli_targets(sptr);
700
701   /* If user is invited to channel, give him/her a free target */
702   if (IsChannelName(name) && IsInvited(sptr, target))
703     return 0;
704
705   /*
706    * Same target as last time?
707    */
708   if (targets[0] == hash)
709     return 0;
710   for (i = 1; i < MAXTARGETS; ++i) {
711     if (targets[i] == hash) {
712       memmove(&targets[1], &targets[0], i);
713       targets[0] = hash;
714       return 0;
715     }
716   }
717   /*
718    * New target
719    */
720   if (!created) {
721     if (CurrentTime < cli_nexttarget(sptr)) {
722       if (cli_nexttarget(sptr) - CurrentTime < TARGET_DELAY + 8) {
723         /*
724          * No server flooding
725          */
726         cli_nexttarget(sptr) += 2;
727         send_reply(sptr, ERR_TARGETTOOFAST, name,
728                    cli_nexttarget(sptr) - CurrentTime);
729       }
730       return 1;
731     }
732     else {
733       cli_nexttarget(sptr) += TARGET_DELAY;
734       if (cli_nexttarget(sptr) < CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1)))
735         cli_nexttarget(sptr) = CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1));
736     }
737   }
738   memmove(&targets[1], &targets[0], MAXTARGETS - 1);
739   targets[0] = hash;
740   return 0;
741 }
742
743 /** Allows a channel operator to avoid target change checks when
744  * sending messages to users on their channel.
745  * @param[in] source User sending the message.
746  * @param[in] nick Destination of the message.
747  * @param[in] channel Name of channel being sent to.
748  * @param[in] text Message to send.
749  * @param[in] is_notice If non-zero, use CNOTICE instead of CPRIVMSG.
750  */
751 /* Added 971023 by Run. */
752 int whisper(struct Client* source, const char* nick, const char* channel,
753             const char* text, int is_notice)
754 {
755   struct Client*     dest;
756   struct Channel*    chptr;
757   struct Membership* membership;
758
759   assert(0 != source);
760   assert(0 != nick);
761   assert(0 != channel);
762   assert(MyUser(source));
763
764   if (!(dest = FindUser(nick))) {
765     return send_reply(source, ERR_NOSUCHNICK, nick);
766   }
767   if (!(chptr = FindChannel(channel))) {
768     return send_reply(source, ERR_NOSUCHCHANNEL, channel);
769   }
770   /*
771    * compare both users channel lists, instead of the channels user list
772    * since the link is the same, this should be a little faster for channels
773    * with a lot of users
774    */
775   for (membership = cli_user(source)->channel; membership; membership = membership->next_channel) {
776     if (chptr == membership->channel)
777       break;
778   }
779   if (0 == membership) {
780     return send_reply(source, ERR_NOTONCHANNEL, chptr->chname);
781   }
782   if (!IsVoicedOrOpped(membership)) {
783     return send_reply(source, ERR_VOICENEEDED, chptr->chname);
784   }
785   /*
786    * lookup channel in destination
787    */
788   assert(0 != cli_user(dest));
789   for (membership = cli_user(dest)->channel; membership; membership = membership->next_channel) {
790     if (chptr == membership->channel)
791       break;
792   }
793   if (0 == membership || IsZombie(membership)) {
794     return send_reply(source, ERR_USERNOTINCHANNEL, cli_name(dest), chptr->chname);
795   }
796   if (is_silenced(source, dest))
797     return 0;
798           
799   if (is_notice)
800     sendcmdto_one(source, CMD_NOTICE, dest, "%C :%s", dest, text);
801   else
802   {
803     if (cli_user(dest)->away)
804       send_reply(source, RPL_AWAY, cli_name(dest), cli_user(dest)->away);
805     sendcmdto_one(source, CMD_PRIVATE, dest, "%C :%s", dest, text);
806   }
807   return 0;
808 }
809
810
811 /** Send a user mode change for \a cptr to neighboring servers.
812  * @param[in] cptr User whose mode is changing.
813  * @param[in] sptr Client who sent us the mode change message.
814  * @param[in] old Prior set of user flags.
815  * @param[in] prop If non-zero, also include FLAG_OPER.
816  */
817 void send_umode_out(struct Client *cptr, struct Client *sptr,
818                     struct Flags *old, int prop)
819 {
820   int i;
821   struct Client *acptr;
822
823   send_umode(NULL, sptr, old, prop ? SEND_UMODES : SEND_UMODES_BUT_OPER);
824
825   for (i = HighestFd; i >= 0; i--)
826   {
827     if ((acptr = LocalClientArray[i]) && IsServer(acptr) &&
828         (acptr != cptr) && (acptr != sptr) && *umodeBuf)
829       sendcmdto_one(sptr, CMD_MODE, acptr, "%s :%s", cli_name(sptr), umodeBuf);
830   }
831   if (cptr && MyUser(cptr))
832     send_umode(cptr, sptr, old, ALL_UMODES);
833 }
834
835
836 /** Call \a fmt for each Client named in \a names.
837  * @param[in] sptr Client requesting information.
838  * @param[in] names Space-delimited list of nicknames.
839  * @param[in] rpl Base reply string for messages.
840  * @param[in] fmt Formatting callback function.
841  */
842 void send_user_info(struct Client* sptr, char* names, int rpl, InfoFormatter fmt)
843 {
844   char*          name;
845   char*          p = 0;
846   int            arg_count = 0;
847   int            users_found = 0;
848   struct Client* acptr;
849   struct MsgBuf* mb;
850
851   assert(0 != sptr);
852   assert(0 != names);
853   assert(0 != fmt);
854
855   mb = msgq_make(sptr, rpl_str(rpl), cli_name(&me), cli_name(sptr));
856
857   for (name = ircd_strtok(&p, names, " "); name; name = ircd_strtok(&p, 0, " ")) {
858     if ((acptr = FindUser(name))) {
859       if (users_found++)
860         msgq_append(0, mb, " ");
861       (*fmt)(acptr, sptr, mb);
862     }
863     if (5 == ++arg_count)
864       break;
865   }
866   send_buffer(sptr, mb, 0);
867   msgq_clean(mb);
868 }
869
870 /** Set \a flag on \a cptr and possibly hide the client's hostmask.
871  * @param[in,out] cptr User who is getting a new flag.
872  * @param[in] flag Some flag that affects host-hiding (FLAG_HIDDENHOST, FLAG_ACCOUNT).
873  * @return Zero.
874  */
875 int
876 hide_hostmask(struct Client *cptr, unsigned int flag)
877 {
878   struct Membership *chan;
879
880   switch (flag) {
881   case FLAG_HIDDENHOST:
882     /* Local users cannot set +x unless FEAT_HOST_HIDING is true. */
883     if (MyConnect(cptr) && !feature_bool(FEAT_HOST_HIDING))
884       return 0;
885     break;
886   case FLAG_ACCOUNT:
887     /* Invalidate all bans against the user so we check them again */
888     for (chan = (cli_user(cptr))->channel; chan;
889          chan = chan->next_channel)
890       ClearBanValid(chan);
891     break;
892   default:
893     return 0;
894   }
895
896   SetFlag(cptr, flag);
897   if (!HasFlag(cptr, FLAG_HIDDENHOST) || !HasFlag(cptr, FLAG_ACCOUNT))
898     return 0;
899
900   sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":Registered");
901   ircd_snprintf(0, cli_user(cptr)->host, HOSTLEN, "%s.%s",
902                 cli_user(cptr)->account, feature_str(FEAT_HIDDEN_HOST));
903
904   /* ok, the client is now fully hidden, so let them know -- hikari */
905   if (MyConnect(cptr))
906    send_reply(cptr, RPL_HOSTHIDDEN, cli_user(cptr)->host);
907
908   /*
909    * Go through all channels the client was on, rejoin him
910    * and set the modes, if any
911    */
912   for (chan = cli_user(cptr)->channel; chan; chan = chan->next_channel)
913   {
914     if (IsZombie(chan))
915       continue;
916     /* Send a JOIN unless the user's join has been delayed. */
917     if (!IsDelayedJoin(chan))
918       sendcmdto_channel_butserv_butone(cptr, CMD_JOIN, chan->channel, cptr, 0,
919                                          "%H", chan->channel);
920     if (IsChanOp(chan) && HasVoice(chan))
921       sendcmdto_channel_butserv_butone(&his, CMD_MODE, chan->channel, cptr, 0,
922                                        "%H +ov %C %C", chan->channel, cptr,
923                                        cptr);
924     else if (IsChanOp(chan) || HasVoice(chan))
925       sendcmdto_channel_butserv_butone(&his, CMD_MODE, chan->channel, cptr, 0,
926         "%H +%c %C", chan->channel, IsChanOp(chan) ? 'o' : 'v', cptr);
927   }
928   return 0;
929 }
930
931 /** Set a user's mode.  This function checks that \a cptr is trying to
932  * set his own mode, prevents local users from setting inappropriate
933  * modes through this function, and applies any other side effects of
934  * a successful mode change.
935  *
936  * @param[in,out] cptr User setting someone's mode.
937  * @param[in] sptr Client who sent the mode change message.
938  * @param[in] parc Number of parameters in \a parv.
939  * @param[in] parv Parameters to MODE.
940  * @param[in] allow_modes ALLOWMODES_ANY for any mode, ALLOWMODES_DEFAULT for 
941  *                        only permitting legitimate default user modes.
942  * @return Zero.
943  */
944 int set_user_mode(struct Client *cptr, struct Client *sptr, int parc, 
945                 char *parv[], int allow_modes)
946 {
947   char** p;
948   char*  m;
949   int what;
950   int i;
951   struct Flags setflags;
952   unsigned int tmpmask = 0;
953   int snomask_given = 0;
954   char buf[BUFSIZE];
955   int prop = 0;
956   int do_host_hiding = 0;
957   char* account = NULL;
958
959   what = MODE_ADD;
960
961   if (parc < 3)
962   {
963     m = buf;
964     *m++ = '+';
965     for (i = 0; i < USERMODELIST_SIZE; i++)
966     {
967       if (HasFlag(sptr, userModeList[i].flag) &&
968           userModeList[i].flag != FLAG_ACCOUNT)
969         *m++ = userModeList[i].c;
970     }
971     *m = '\0';
972     send_reply(sptr, RPL_UMODEIS, buf);
973     if (HasFlag(sptr, FLAG_SERVNOTICE) && MyConnect(sptr)
974         && cli_snomask(sptr) !=
975         (unsigned int)(IsOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT))
976       send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
977     return 0;
978   }
979
980   /*
981    * find flags already set for user
982    * why not just copy them?
983    */
984   setflags = cli_flags(sptr);
985
986   if (MyConnect(sptr))
987     tmpmask = cli_snomask(sptr);
988
989   /*
990    * parse mode change string(s)
991    */
992   for (p = &parv[2]; *p && p<&parv[parc]; p++) {       /* p is changed in loop too */
993     for (m = *p; *m; m++) {
994       switch (*m) {
995       case '+':
996         what = MODE_ADD;
997         break;
998       case '-':
999         what = MODE_DEL;
1000         break;
1001       case 's':
1002         if (*(p + 1) && is_snomask(*(p + 1))) {
1003           snomask_given = 1;
1004           tmpmask = umode_make_snomask(tmpmask, *++p, what);
1005           tmpmask &= (IsAnOper(sptr) ? SNO_ALL : SNO_USER);
1006         }
1007         else
1008           tmpmask = (what == MODE_ADD) ?
1009               (IsAnOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT) : 0;
1010         if (tmpmask)
1011           SetServNotice(sptr);
1012         else
1013           ClearServNotice(sptr);
1014         break;
1015       case 'w':
1016         if (what == MODE_ADD)
1017           SetWallops(sptr);
1018         else
1019           ClearWallops(sptr);
1020         break;
1021       case 'o':
1022         if (what == MODE_ADD)
1023           SetOper(sptr);
1024         else {
1025           ClrFlag(sptr, FLAG_OPER);
1026           ClrFlag(sptr, FLAG_LOCOP);
1027           if (MyConnect(sptr))
1028           {
1029             tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1030             cli_handler(sptr) = CLIENT_HANDLER;
1031           }
1032         }
1033         break;
1034       case 'O':
1035         if (what == MODE_ADD)
1036           SetLocOp(sptr);
1037         else
1038         { 
1039           ClrFlag(sptr, FLAG_OPER);
1040           ClrFlag(sptr, FLAG_LOCOP);
1041           if (MyConnect(sptr))
1042           {
1043             tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1044             cli_handler(sptr) = CLIENT_HANDLER;
1045           }
1046         }
1047         break;
1048       case 'i':
1049         if (what == MODE_ADD)
1050           SetInvisible(sptr);
1051         else
1052           ClearInvisible(sptr);
1053         break;
1054       case 'd':
1055         if (what == MODE_ADD)
1056           SetDeaf(sptr);
1057         else
1058           ClearDeaf(sptr);
1059         break;
1060       case 'k':
1061         if (what == MODE_ADD)
1062           SetChannelService(sptr);
1063         else
1064           ClearChannelService(sptr);
1065         break;
1066       case 'g':
1067         if (what == MODE_ADD)
1068           SetDebug(sptr);
1069         else
1070           ClearDebug(sptr);
1071         break;
1072       case 'x':
1073         if (what == MODE_ADD)
1074           do_host_hiding = 1;
1075         break;
1076       case 'r':
1077         if (what == MODE_ADD) {
1078           account = *(++p);
1079           SetAccount(sptr);
1080         }
1081         /* There is no -r */
1082         break;
1083       default:
1084         send_reply(sptr, ERR_UMODEUNKNOWNFLAG, *m);
1085         break;
1086       }
1087     }
1088   }
1089   /*
1090    * Evaluate rules for new user mode
1091    * Stop users making themselves operators too easily:
1092    */
1093   if (!IsServer(cptr))
1094   {
1095     if (!FlagHas(&setflags, FLAG_OPER) && IsOper(sptr))
1096       ClearOper(sptr);
1097     if (!FlagHas(&setflags, FLAG_LOCOP) && IsLocOp(sptr))
1098       ClearLocOp(sptr);
1099     if (!FlagHas(&setflags, FLAG_ACCOUNT) && IsAccount(sptr))
1100       ClrFlag(sptr, FLAG_ACCOUNT);
1101     /*
1102      * new umode; servers can set it, local users cannot;
1103      * prevents users from /kick'ing or /mode -o'ing
1104      */
1105     if (!FlagHas(&setflags, FLAG_CHSERV))
1106       ClearChannelService(sptr);
1107     /*
1108      * only send wallops to opers
1109      */
1110     if (feature_bool(FEAT_WALLOPS_OPER_ONLY) && !IsAnOper(sptr) &&
1111         !FlagHas(&setflags, FLAG_WALLOP))
1112       ClearWallops(sptr);
1113     if (feature_bool(FEAT_HIS_SNOTICES_OPER_ONLY) && MyConnect(sptr) &&
1114         !IsAnOper(sptr) && !FlagHas(&setflags, FLAG_SERVNOTICE))
1115     {
1116       ClearServNotice(sptr);
1117       set_snomask(sptr, 0, SNO_SET);
1118     }
1119     if (feature_bool(FEAT_HIS_DEBUG_OPER_ONLY) &&
1120         !IsAnOper(sptr) && !FlagHas(&setflags, FLAG_DEBUG))
1121       ClearDebug(sptr);
1122   }
1123   if (MyConnect(sptr))
1124   {
1125     if ((FlagHas(&setflags, FLAG_OPER) || FlagHas(&setflags, FLAG_LOCOP)) &&
1126         !IsAnOper(sptr))
1127       det_confs_butmask(sptr, CONF_CLIENT & ~CONF_OPERATOR);
1128
1129     if (SendServNotice(sptr))
1130     {
1131       if (tmpmask != cli_snomask(sptr))
1132         set_snomask(sptr, tmpmask, SNO_SET);
1133       if (cli_snomask(sptr) && snomask_given)
1134         send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1135     }
1136     else
1137       set_snomask(sptr, 0, SNO_SET);
1138   }
1139   /*
1140    * Compare new flags with old flags and send string which
1141    * will cause servers to update correctly.
1142    */
1143   if (!FlagHas(&setflags, FLAG_OPER) && IsOper(sptr))
1144   {
1145     /* user now oper */
1146     ++UserStats.opers;
1147     client_set_privs(sptr, NULL); /* may set propagate privilege */
1148   }
1149   /* remember propagate privilege setting */
1150   if (HasPriv(sptr, PRIV_PROPAGATE))
1151     prop = 1;
1152   if (FlagHas(&setflags, FLAG_OPER) && !IsOper(sptr))
1153   {
1154     /* user no longer oper */
1155     assert(UserStats.opers > 0);
1156     --UserStats.opers;
1157     client_set_privs(sptr, NULL); /* will clear propagate privilege */
1158   }
1159   if (FlagHas(&setflags, FLAG_INVISIBLE) && !IsInvisible(sptr)) {
1160     assert(UserStats.inv_clients > 0);
1161     --UserStats.inv_clients;
1162   }
1163   if (!FlagHas(&setflags, FLAG_INVISIBLE) && IsInvisible(sptr))
1164     ++UserStats.inv_clients;
1165   if (!FlagHas(&setflags, FLAG_ACCOUNT) && IsAccount(sptr)) {
1166       int len = ACCOUNTLEN;
1167       char *ts;
1168       if ((ts = strchr(account, ':'))) {
1169         len = (ts++) - account;
1170         cli_user(sptr)->acc_create = atoi(ts);
1171         Debug((DEBUG_DEBUG, "Received timestamped account in user mode; "
1172               "account \"%s\", timestamp %Tu", account,
1173               cli_user(sptr)->acc_create));
1174       }
1175       ircd_strncpy(cli_user(sptr)->account, account, len);
1176   }
1177   if (!FlagHas(&setflags, FLAG_HIDDENHOST) && do_host_hiding && allow_modes != ALLOWMODES_DEFAULT)
1178     hide_hostmask(sptr, FLAG_HIDDENHOST);
1179   if (IsRegistered(sptr))
1180     send_umode_out(cptr, sptr, &setflags, prop);
1181
1182   assert(UserStats.opers <= UserStats.clients + UserStats.unknowns);
1183   assert(UserStats.inv_clients <= UserStats.clients + UserStats.unknowns);
1184   return 0;
1185 }
1186
1187 /** Build a mode string to describe modes for \a cptr.
1188  * @param[in] cptr Some user.
1189  * @return Pointer to a static buffer.
1190  */
1191 char *umode_str(struct Client *cptr)
1192 {
1193   /* Maximum string size: "owidgrx\0" */
1194   char *m = umodeBuf;
1195   int i;
1196   struct Flags c_flags = cli_flags(cptr);
1197
1198   if (!HasPriv(cptr, PRIV_PROPAGATE))
1199     FlagClr(&c_flags, FLAG_OPER);
1200
1201   for (i = 0; i < USERMODELIST_SIZE; ++i)
1202   {
1203     if (FlagHas(&c_flags, userModeList[i].flag) &&
1204         userModeList[i].flag >= FLAG_GLOBAL_UMODES)
1205       *m++ = userModeList[i].c;
1206   }
1207
1208   if (IsAccount(cptr))
1209   {
1210     char* t = cli_user(cptr)->account;
1211
1212     *m++ = ' ';
1213     while ((*m++ = *t++))
1214       ; /* Empty loop */
1215
1216     if (cli_user(cptr)->acc_create) {
1217       char nbuf[20];
1218       Debug((DEBUG_DEBUG, "Sending timestamped account in user mode for "
1219              "account \"%s\"; timestamp %Tu", cli_user(cptr)->account,
1220              cli_user(cptr)->acc_create));
1221       ircd_snprintf(0, t = nbuf, sizeof(nbuf), ":%Tu",
1222                     cli_user(cptr)->acc_create);
1223       m--; /* back up over previous nul-termination */
1224       while ((*m++ = *t++))
1225         ; /* Empty loop */
1226     }
1227   }
1228
1229   *m = '\0';
1230
1231   return umodeBuf;                /* Note: static buffer, gets
1232                                    overwritten by send_umode() */
1233 }
1234
1235 /** Send a mode change string for \a sptr to \a cptr.
1236  * @param[in] cptr Destination of mode change message.
1237  * @param[in] sptr User whose mode has changed.
1238  * @param[in] old Pre-change set of modes for \a sptr.
1239  * @param[in] sendset One of ALL_UMODES, SEND_UMODES_BUT_OPER,
1240  * SEND_UMODES, to select which changed user modes to send.
1241  */
1242 void send_umode(struct Client *cptr, struct Client *sptr, struct Flags *old,
1243                 int sendset)
1244 {
1245   int i;
1246   int flag;
1247   char *m;
1248   int what = MODE_NULL;
1249
1250   /*
1251    * Build a string in umodeBuf to represent the change in the user's
1252    * mode between the new (cli_flags(sptr)) and 'old', but skipping
1253    * the modes indicated by sendset.
1254    */
1255   m = umodeBuf;
1256   *m = '\0';
1257   for (i = 0; i < USERMODELIST_SIZE; ++i)
1258   {
1259     flag = userModeList[i].flag;
1260     if (FlagHas(old, flag)
1261         == HasFlag(sptr, flag))
1262       continue;
1263     switch (sendset)
1264     {
1265     case ALL_UMODES:
1266       break;
1267     case SEND_UMODES_BUT_OPER:
1268       if (flag == FLAG_OPER)
1269         continue;
1270       /* and fall through */
1271     case SEND_UMODES:
1272       if (flag < FLAG_GLOBAL_UMODES)
1273         continue;
1274       break;      
1275     }
1276     if (FlagHas(old, flag))
1277     {
1278       if (what == MODE_DEL)
1279         *m++ = userModeList[i].c;
1280       else
1281       {
1282         what = MODE_DEL;
1283         *m++ = '-';
1284         *m++ = userModeList[i].c;
1285       }
1286     }
1287     else /* !FlagHas(old, flag) */
1288     {
1289       if (what == MODE_ADD)
1290         *m++ = userModeList[i].c;
1291       else
1292       {
1293         what = MODE_ADD;
1294         *m++ = '+';
1295         *m++ = userModeList[i].c;
1296       }
1297     }
1298   }
1299   *m = '\0';
1300   if (*umodeBuf && cptr)
1301     sendcmdto_one(sptr, CMD_MODE, cptr, "%s :%s", cli_name(sptr), umodeBuf);
1302 }
1303
1304 /**
1305  * Check to see if this resembles a sno_mask.  It is if 1) there is
1306  * at least one digit and 2) The first digit occurs before the first
1307  * alphabetic character.
1308  * @param[in] word Word to check for sno_mask-ness.
1309  * @return Non-zero if \a word looks like a server notice mask; zero if not.
1310  */
1311 int is_snomask(char *word)
1312 {
1313   if (word)
1314   {
1315     for (; *word; word++)
1316       if (IsDigit(*word))
1317         return 1;
1318       else if (IsAlpha(*word))
1319         return 0;
1320   }
1321   return 0;
1322 }
1323
1324 /** Update snomask \a oldmask according to \a arg and \a what.
1325  * @param[in] oldmask Original user mask.
1326  * @param[in] arg Update string (either a number or '+'/'-' followed by a number).
1327  * @param[in] what MODE_ADD if adding the mask.
1328  * @return New value of service notice mask.
1329  */
1330 unsigned int umode_make_snomask(unsigned int oldmask, char *arg, int what)
1331 {
1332   unsigned int sno_what;
1333   unsigned int newmask;
1334   if (*arg == '+')
1335   {
1336     arg++;
1337     if (what == MODE_ADD)
1338       sno_what = SNO_ADD;
1339     else
1340       sno_what = SNO_DEL;
1341   }
1342   else if (*arg == '-')
1343   {
1344     arg++;
1345     if (what == MODE_ADD)
1346       sno_what = SNO_DEL;
1347     else
1348       sno_what = SNO_ADD;
1349   }
1350   else
1351     sno_what = (what == MODE_ADD) ? SNO_SET : SNO_DEL;
1352   /* pity we don't have strtoul everywhere */
1353   newmask = (unsigned int)atoi(arg);
1354   if (sno_what == SNO_DEL)
1355     newmask = oldmask & ~newmask;
1356   else if (sno_what == SNO_ADD)
1357     newmask |= oldmask;
1358   return newmask;
1359 }
1360
1361 /** Remove \a cptr from the singly linked list \a list.
1362  * @param[in] cptr Client to remove from list.
1363  * @param[in,out] list Pointer to head of list containing \a cptr.
1364  */
1365 static void delfrom_list(struct Client *cptr, struct SLink **list)
1366 {
1367   struct SLink* tmp;
1368   struct SLink* prv = NULL;
1369
1370   for (tmp = *list; tmp; tmp = tmp->next) {
1371     if (tmp->value.cptr == cptr) {
1372       if (prv)
1373         prv->next = tmp->next;
1374       else
1375         *list = tmp->next;
1376       free_link(tmp);
1377       break;
1378     }
1379     prv = tmp;
1380   }
1381 }
1382
1383 /** Set \a cptr's server notice mask, according to \a what.
1384  * @param[in,out] cptr Client whose snomask is updating.
1385  * @param[in] newmask Base value for new snomask.
1386  * @param[in] what One of SNO_ADD, SNO_DEL, SNO_SET, to choose operation.
1387  */
1388 void set_snomask(struct Client *cptr, unsigned int newmask, int what)
1389 {
1390   unsigned int oldmask, diffmask;        /* unsigned please */
1391   int i;
1392   struct SLink *tmp;
1393
1394   oldmask = cli_snomask(cptr);
1395
1396   if (what == SNO_ADD)
1397     newmask |= oldmask;
1398   else if (what == SNO_DEL)
1399     newmask = oldmask & ~newmask;
1400   else if (what != SNO_SET)        /* absolute set, no math needed */
1401     sendto_opmask_butone(0, SNO_OLDSNO, "setsnomask called with %d ?!", what);
1402
1403   newmask &= (IsAnOper(cptr) ? SNO_ALL : SNO_USER);
1404
1405   diffmask = oldmask ^ newmask;
1406
1407   for (i = 0; diffmask >> i; i++) {
1408     if (((diffmask >> i) & 1))
1409     {
1410       if (((newmask >> i) & 1))
1411       {
1412         tmp = make_link();
1413         tmp->next = opsarray[i];
1414         tmp->value.cptr = cptr;
1415         opsarray[i] = tmp;
1416       }
1417       else
1418         /* not real portable :( */
1419         delfrom_list(cptr, &opsarray[i]);
1420     }
1421   }
1422   cli_snomask(cptr) = newmask;
1423 }
1424
1425 /** Check whether \a sptr is allowed to send a message to \a acptr.
1426  * If \a sptr is a remote user, it means some server has an outdated
1427  * SILENCE list for \a acptr, so send the missing SILENCE mask(s) back
1428  * in the direction of \a sptr.  Skip the check if \a sptr is a server.
1429  * @param[in] sptr Client trying to send a message.
1430  * @param[in] acptr Destination of message.
1431  * @return Non-zero if \a sptr is SILENCEd by \a acptr, zero if not.
1432  */
1433 int is_silenced(struct Client *sptr, struct Client *acptr)
1434 {
1435   struct Ban *found;
1436   struct User *user;
1437   size_t buf_used, slen;
1438   char buf[BUFSIZE];
1439
1440   if (IsServer(sptr) || !(user = cli_user(acptr))
1441       || !(found = find_ban(sptr, user->silence)))
1442     return 0;
1443   assert(!(found->flags & BAN_EXCEPTION));
1444   if (!MyConnect(sptr)) {
1445     /* Buffer positive silence to send back. */
1446     buf_used = strlen(found->banstr);
1447     memcpy(buf, found->banstr, buf_used);
1448     /* Add exceptions to buffer. */
1449     for (found = user->silence; found; found = found->next) {
1450       if (!(found->flags & BAN_EXCEPTION))
1451         continue;
1452       slen = strlen(found->banstr);
1453       if (buf_used + slen + 4 > 400) {
1454         buf[buf_used] = '\0';
1455         sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr, buf);
1456         buf_used = 0;
1457       }
1458       if (buf_used)
1459         buf[buf_used++] = ',';
1460       buf[buf_used++] = '+';
1461       buf[buf_used++] = '~';
1462       memcpy(buf + buf_used, found->banstr, slen);
1463       buf_used += slen;
1464     }
1465     /* Flush silence buffer. */
1466     if (buf_used) {
1467       buf[buf_used] = '\0';
1468       sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr, buf);
1469       buf_used = 0;
1470     }
1471   }
1472   return 1;
1473 }
1474
1475 /** Send RPL_ISUPPORT lines to \a cptr.
1476  * @param[in] cptr Client to send ISUPPORT to.
1477  * @return Zero.
1478  */
1479 int
1480 send_supported(struct Client *cptr)
1481 {
1482   char featurebuf[512];
1483
1484   ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES1, FEATURESVALUES1);
1485   send_reply(cptr, RPL_ISUPPORT, featurebuf);
1486   ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES2, FEATURESVALUES2);
1487   send_reply(cptr, RPL_ISUPPORT, featurebuf);
1488
1489   return 0; /* convenience return, if it's ever needed */
1490 }
1491
1492 /* vim: shiftwidth=2 
1493  */