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