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