include MASK check to LOC Authentication
[srvx.git] / src / proto-p10.c
1 /* proto-p10.c - IRC protocol output
2  * Copyright 2000-2008 srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with srvx; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
19  */
20
21 #include "proto-common.c"
22
23 /* Full commands. */
24 #define CMD_ACCOUNT             "ACCOUNT"
25 #define CMD_ADMIN               "ADMIN"
26 #define CMD_ASLL                "ASLL"
27 #define CMD_AWAY                "AWAY"
28 #define CMD_BURST               "BURST"
29 #define CMD_CLEARMODE           "CLEARMODE"
30 #define CMD_CLOSE               "CLOSE"
31 #define CMD_CNOTICE             "CNOTICE"
32 #define CMD_CONNECT             "CONNECT"
33 #define CMD_CPRIVMSG            "CPRIVMSG"
34 #define CMD_CREATE              "CREATE"
35 #define CMD_DESTRUCT            "DESTRUCT"
36 #define CMD_DESYNCH             "DESYNCH"
37 #define CMD_DIE                 "DIE"
38 #define CMD_DNS                 "DNS"
39 #define CMD_EOB                 "END_OF_BURST"
40 #define CMD_EOB_ACK             "EOB_ACK"
41 #define CMD_ERROR               "ERROR"
42 #define CMD_FAKEHOST            "FAKE"
43 #define CMD_FAKEHOST2           "FAKE2"
44 #define CMD_GET                 "GET"
45 #define CMD_GLINE               "GLINE"
46 #define CMD_HASH                "HASH"
47 #define CMD_HELP                "HELP"
48 #define CMD_INFO                "INFO"
49 #define CMD_INVITE              "INVITE"
50 #define CMD_ISON                "ISON"
51 #define CMD_JOIN                "JOIN"
52 #define CMD_JUPE                "JUPE"
53 #define CMD_KICK                "KICK"
54 #define CMD_KILL                "KILL"
55 #define CMD_LINKS               "LINKS"
56 #define CMD_LIST                "LIST"
57 #define CMD_LUSERS              "LUSERS"
58 #define CMD_MAP                 "MAP"
59 #define CMD_MODE                "MODE"
60 #define CMD_MOTD                "MOTD"
61 #define CMD_NAMES               "NAMES"
62 #define CMD_NICK                "NICK"
63 #define CMD_NOTICE              "NOTICE"
64 #define CMD_OPER                "OPER"
65 #define CMD_OPMODE              "OPMODE"
66 #define CMD_PART                "PART"
67 #define CMD_PASS                "PASS"
68 #define CMD_PING                "PING"
69 #define CMD_PONG                "PONG"
70 #define CMD_POST                "POST"
71 #define CMD_PRIVMSG             "PRIVMSG"
72 #define CMD_PRIVS               "PRIVS"
73 #define CMD_PROTO               "PROTO"
74 #define CMD_QUIT                "QUIT"
75 #define CMD_REHASH              "REHASH"
76 #define CMD_RELAY               "RELAY"
77 #define CMD_RESET               "RESET"
78 #define CMD_RESTART             "RESTART"
79 #define CMD_RPING               "RPING"
80 #define CMD_RPONG               "RPONG"
81 #define CMD_SERVER              "SERVER"
82 #define CMD_SERVLIST            "SERVLIST"
83 #define CMD_SERVSET             "SERVSET"
84 #define CMD_SET                 "SET"
85 #define CMD_SETTIME             "SETTIME"
86 #define CMD_SILENCE             "SILENCE"
87 #define CMD_SQUERY              "SQUERY"
88 #define CMD_SQUIT               "SQUIT"
89 #define CMD_STATS               "STATS"
90 #define CMD_SVSNICK             "SVSNICK"
91 #define CMD_SVSMODE             "SVSMODE"
92 #define CMD_SVSJOIN             "SVSJOIN"
93 #define CMD_TIME                "TIME"
94 #define CMD_TOPIC               "TOPIC"
95 #define CMD_TRACE               "TRACE"
96 #define CMD_UPING               "UPING"
97 #define CMD_USER                "USER"
98 #define CMD_USERHOST            "USERHOST"
99 #define CMD_USERIP              "USERIP"
100 #define CMD_VERSION             "VERSION"
101 #define CMD_WALLCHOPS           "WALLCHOPS"
102 #define CMD_WALLOPS             "WALLOPS"
103 #define CMD_WALLUSERS           "WALLUSERS"
104 #define CMD_WALLVOICES          "WALLVOICES"
105 #define CMD_WHO                 "WHO"
106 #define CMD_WHOIS               "WHOIS"
107 #define CMD_WHOWAS              "WHOWAS"
108
109 /* Tokenized commands. */
110 #define TOK_ACCOUNT             "AC"
111 #define TOK_ADMIN               "AD"
112 #define TOK_ASLL                "LL"
113 #define TOK_AWAY                "A"
114 #define TOK_BURST               "B"
115 #define TOK_CLEARMODE           "CM"
116 #define TOK_CLOSE               "CLOSE"
117 #define TOK_CNOTICE             "CN"
118 #define TOK_CONNECT             "CO"
119 #define TOK_CPRIVMSG            "CP"
120 #define TOK_CREATE              "C"
121 #define TOK_DESTRUCT            "DE"
122 #define TOK_DESYNCH             "DS"
123 #define TOK_DIE                 "DIE"
124 #define TOK_DNS                 "DNS"
125 #define TOK_EOB                 "EB"
126 #define TOK_EOB_ACK             "EA"
127 #define TOK_ERROR               "Y"
128 #define TOK_FAKEHOST            "FA"
129 #define TOK_FAKEHOST2           "FA2"
130 #define TOK_GET                 "GET"
131 #define TOK_GLINE               "GL"
132 #define TOK_HASH                "HASH"
133 #define TOK_HELP                "HELP"
134 #define TOK_INFO                "F"
135 #define TOK_INVITE              "I"
136 #define TOK_ISON                "ISON"
137 #define TOK_JOIN                "J"
138 #define TOK_JUPE                "JU"
139 #define TOK_KICK                "K"
140 #define TOK_KILL                "D"
141 #define TOK_LINKS               "LI"
142 #define TOK_LIST                "LIST"
143 #define TOK_LUSERS              "LU"
144 #define TOK_MAP                 "MAP"
145 #define TOK_MODE                "M"
146 #define TOK_MOTD                "MO"
147 #define TOK_NAMES               "E"
148 #define TOK_NICK                "N"
149 #define TOK_NOTICE              "O"
150 #define TOK_OPER                "OPER"
151 #define TOK_OPMODE              "OM"
152 #define TOK_PART                "L"
153 #define TOK_PASS                "PA"
154 #define TOK_PING                "G"
155 #define TOK_PONG                "Z"
156 #define TOK_POST                "POST"
157 #define TOK_PRIVMSG             "P"
158 #define TOK_PRIVS               "PRIVS"
159 #define TOK_PROTO               "PROTO"
160 #define TOK_QUIT                "Q"
161 #define TOK_REHASH              "REHASH"
162 #define TOK_RELAY               "RL"
163 #define TOK_RESET               "RESET"
164 #define TOK_RESTART             "RESTART"
165 #define TOK_RPING               "RI"
166 #define TOK_RPONG               "RO"
167 #define TOK_SERVER              "S"
168 #define TOK_SERVLIST            "SERVSET"
169 #define TOK_SERVSET             "SERVSET"
170 #define TOK_SET                 "SET"
171 #define TOK_SETTIME             "SE"
172 #define TOK_SILENCE             "U"
173 #define TOK_SQUERY              "SQUERY"
174 #define TOK_SQUIT               "SQ"
175 #define TOK_STATS               "R"
176 #define TOK_SVSNICK             "SN"
177 #define TOK_SVSMODE             "SM"
178 #define TOK_SVSJOIN             "SJ"
179 #define TOK_TIME                "TI"
180 #define TOK_TOPIC               "T"
181 #define TOK_TRACE               "TR"
182 #define TOK_UPING               "UP"
183 #define TOK_USER                "USER"
184 #define TOK_USERHOST            "USERHOST"
185 #define TOK_USERIP              "USERIP"
186 #define TOK_VERSION             "V"
187 #define TOK_WALLCHOPS           "WC"
188 #define TOK_WALLOPS             "WA"
189 #define TOK_WALLUSERS           "WU"
190 #define TOK_WALLVOICES          "WV"
191 #define TOK_WHO                 "H"
192 #define TOK_WHOIS               "W"
193 #define TOK_WHOWAS              "X"
194
195 /* Protocol messages; aliased to full commands or tokens depending
196    on compile-time configuration. ircu prefers tokens WITH THE
197    EXCEPTION OF THE SERVER AND PASS COMMANDS, which cannot be
198    tokenized, because clients' (ie. a linking server) commands are
199    only checked against the full command list.
200 */
201 #if defined(ENABLE_TOKENS)
202 #define TYPE(NAME)              TOK_ ## NAME
203 #else /* !ENABLE_TOKENS */
204 #define TYPE(NAME)              CMD_ ## NAME
205 #endif /* ENABLE_TOKENS */
206
207 #define P10_ACCOUNT             TYPE(ACCOUNT)
208 #define P10_ADMIN               TYPE(ADMIN)
209 #define P10_ASLL                TYPE(ASLL)
210 #define P10_AWAY                TYPE(AWAY)
211 #define P10_BURST               TYPE(BURST)
212 #define P10_CLEARMODE           TYPE(CLEARMODE)
213 #define P10_CLOSE               TYPE(CLOSE)
214 #define P10_CNOTICE             TYPE(CNOTICE)
215 #define P10_CONNECT             TYPE(CONNECT)
216 #define P10_CPRIVMSG            TYPE(CPRIVMSG)
217 #define P10_CREATE              TYPE(CREATE)
218 #define P10_DESTRUCT            TYPE(DESTRUCT)
219 #define P10_DESYNCH             TYPE(DESYNCH)
220 #define P10_DIE                 TYPE(DIE)
221 #define P10_DNS                 TYPE(DNS)
222 #define P10_EOB                 TYPE(EOB)
223 #define P10_EOB_ACK             TYPE(EOB_ACK)
224 #define P10_ERROR               TYPE(ERROR)
225 #define P10_FAKEHOST            TYPE(FAKEHOST)
226 #define P10_FAKEHOST2           TYPE(FAKEHOST2)
227 #define P10_GET                 TYPE(GET)
228 #define P10_GLINE               TYPE(GLINE)
229 #define P10_HASH                TYPE(HASH)
230 #define P10_HELP                TYPE(HELP)
231 #define P10_INFO                TYPE(INFO)
232 #define P10_INVITE              TYPE(INVITE)
233 #define P10_ISON                TYPE(ISON)
234 #define P10_JOIN                TYPE(JOIN)
235 #define P10_JUPE                TYPE(JUPE)
236 #define P10_KICK                TYPE(KICK)
237 #define P10_KILL                TYPE(KILL)
238 #define P10_LINKS               TYPE(LINKS)
239 #define P10_LIST                TYPE(LIST)
240 #define P10_LUSERS              TYPE(LUSERS)
241 #define P10_MAP                 TYPE(MAP)
242 #define P10_MODE                TYPE(MODE)
243 #define P10_MOTD                TYPE(MOTD)
244 #define P10_NAMES               TYPE(NAMES)
245 #define P10_NICK                TYPE(NICK)
246 #define P10_NOTICE              TYPE(NOTICE)
247 #define P10_OPER                TYPE(OPER)
248 #define P10_OPMODE              TYPE(OPMODE)
249 #define P10_PART                TYPE(PART)
250 #define P10_PASS                CMD_PASS
251 #define P10_PING                TYPE(PING)
252 #define P10_PONG                TYPE(PONG)
253 #define P10_POST                TYPE(POST)
254 #define P10_PRIVMSG             TYPE(PRIVMSG)
255 #define P10_PRIVS               TYPE(PRIVS)
256 #define P10_PROTO               TYPE(PROTO)
257 #define P10_QUIT                TYPE(QUIT)
258 #define P10_REHASH              TYPE(REHASH)
259 #define P10_RELAY               TYPE(RELAY)
260 #define P10_RESET               TYPE(RESET)
261 #define P10_RESTART             TYPE(RESTART)
262 #define P10_RPING               TYPE(RPING)
263 #define P10_RPONG               TYPE(RPONG)
264 #define P10_SERVER              CMD_SERVER
265 #define P10_SERVLIST            TYPE(SERVLIST)
266 #define P10_SERVSET             TYPE(SERVSET)
267 #define P10_SET                 TYPE(SET)
268 #define P10_SETTIME             TYPE(SETTIME)
269 #define P10_SILENCE             TYPE(SILENCE)
270 #define P10_SQUERY              TYPE(SQUERY)
271 #define P10_SQUIT               TYPE(SQUIT)
272 #define P10_STATS               TYPE(STATS)
273 #define P10_SVSNICK             TYPE(SVSNICK)
274 #define P10_SVSMODE             TYPE(SVSMODE)
275 #define P10_SVSJOIN             TYPE(SVSJOIN)
276 #define P10_TIME                TYPE(TIME)
277 #define P10_TOPIC               TYPE(TOPIC)
278 #define P10_TRACE               TYPE(TRACE)
279 #define P10_UPING               TYPE(UPING)
280 #define P10_USER                TYPE(USER)
281 #define P10_USERHOST            TYPE(USERHOST)
282 #define P10_USERIP              TYPE(USERIP)
283 #define P10_VERSION             TYPE(VERSION)
284 #define P10_WALLCHOPS           TYPE(WALLCHOPS)
285 #define P10_WALLOPS             TYPE(WALLOPS)
286 #define P10_WALLUSERS           TYPE(WALLUSERS)
287 #define P10_WALLVOICES          TYPE(WALLVOICES)
288 #define P10_WHO                 TYPE(WHO)
289 #define P10_WHOIS               TYPE(WHOIS)
290 #define P10_WHOWAS              TYPE(WHOWAS)
291
292 /* Servers claiming to have a boot or link time before PREHISTORY
293  * trigger errors to the log.  We hope no server has been running
294  * constantly since September 1994.  :)
295  */
296 #define PREHISTORY 780000000
297
298 static struct server *servers_num[64*64];
299 static privmsg_func_t *privmsg_funcs;
300 static unsigned int num_privmsg_funcs;
301 static privmsg_func_t *notice_funcs;
302 static unsigned int num_notice_funcs;
303 static struct dict *unbursted_channels;
304 static const char *his_servername;
305 static const char *his_servercomment;
306 static struct channelList dead_channels;
307
308 /* These correspond to 1 << X:      012345678901234567890123 */
309 const char irc_user_mode_chars[] = "o iw dkgn    x   ISDXHst";
310
311 static struct userNode *AddUser(struct server* uplink, const char *nick, const char *ident, const char *hostname, const char *modes, const char *numeric, const char *userinfo, unsigned long timestamp, const char *realip);
312
313 extern int off_channel;
314
315 /*
316  * Oplevel parsing
317  */
318 static int
319 parse_oplevel(char *str)
320 {
321     int oplevel = 0;
322     while (isdigit(*str))
323         oplevel = oplevel * 10 + *str++ - '0';
324     return oplevel;
325 }
326
327 /* Numerics can be XYY, XYYY, or XXYYY; with X's identifying the
328  * server and Y's indentifying the client on that server. */
329 struct server*
330 GetServerN(const char *numeric)
331 {
332     switch (strlen(numeric)) {
333     default:
334         return servers_num[base64toint(numeric, 2)];
335     case 4:
336     case 3:
337     case 1:
338         return servers_num[base64toint(numeric, 1)];
339     case 0:
340         return NULL;
341     }
342 }
343
344 struct userNode*
345 GetUserN(const char *numeric) /* using numeric */
346 {
347     struct userNode *un;
348     struct server *s;
349     int n, slen, ulen;
350
351     switch (strlen(numeric)) {
352     default:
353         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): numeric too long!", numeric);
354         return NULL;
355     case 5: slen = 2; ulen = 3; break;
356     case 4: slen = 1; ulen = 3; break;
357     case 3: slen = 1; ulen = 2; break;
358     case 2: case 1: case 0:
359         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): numeric too short!", numeric);
360         return NULL;
361     }
362     if (!(s = servers_num[base64toint(numeric, slen)])) {
363         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): couldn't find server (len=%d)!", numeric, slen);
364         return NULL;
365     }
366     n = base64toint(numeric+slen, ulen) & s->num_mask;
367     if (!(un = s->users[n])) {
368         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s) couldn't find user!", numeric);
369     }
370     return un;
371 }
372
373 static void
374 privmsg_user_helper(struct userNode *un, void *data)
375 {
376     struct privmsg_desc *pd = data;
377     unsigned int num = un->num_local;
378     if (!pd->is_notice) {
379         if ((num < num_privmsg_funcs) && privmsg_funcs[num]) {
380             privmsg_funcs[num](pd->user, un, pd->text, pd->is_qualified);
381         }
382     } else {
383         if ((num < num_notice_funcs) && notice_funcs[num]) {
384             notice_funcs[num](pd->user, un, pd->text, pd->is_qualified);
385         }
386     }
387 }
388
389 void
390 irc_server(struct server *srv)
391 {
392     char extranum[COMBO_NUMERIC_LEN+1];
393
394     inttobase64(extranum, srv->num_mask, (srv->numeric[1] || (srv->num_mask >= 64*64)) ? 3 : 2);
395     if (srv == self) {
396         /* The +s, ignored by Run's ircu, means "service" to Undernet's ircu */
397         putsock(P10_SERVER " %s %d %lu %lu J10 %s%s +s6 :%s",
398                 srv->name, srv->hops+1, srv->boot, srv->link_time, srv->numeric, extranum, srv->description);
399     } else {
400         putsock("%s " P10_SERVER " %s %d %lu %lu %c10 %s%s +s6 :%s",
401                 self->numeric, srv->name, srv->hops+1, srv->boot, srv->link_time, (srv->self_burst ? 'J' : 'P'), srv->numeric, extranum, srv->description);
402     }
403 }
404
405 static void
406 irc_p10_pton(irc_in_addr_t *ip, const char *input)
407 {
408     if (strlen(input) == 6) {
409         unsigned int value;
410         memset(ip, 0, 6 * sizeof(ip->in6[0]));
411         value = base64toint(input, 6);
412         if (value)
413             ip->in6[5] = htons(65535);
414         ip->in6[6] = htons(value >> 16);
415         ip->in6[7] = htons(value & 65535);
416     } else {
417         unsigned int pos = 0;
418         do {
419             if (*input == '_') {
420                 unsigned int left;
421                 for (left = (25 - strlen(input)) / 3 - pos; left; left--)
422                     ip->in6[pos++] = 0;
423                 input++;
424             } else {
425                 ip->in6[pos++] = ntohs(base64toint(input, 3));
426                 input += 3;
427             }
428         } while (pos < 8);
429     }
430 }
431
432 static void
433 irc_p10_ntop(char *output, const irc_in_addr_t *ip)
434 {
435     if (!irc_in_addr_is_valid(*ip)) {
436         strcpy(output, "AAAAAA");
437     } else if (irc_in_addr_is_ipv4(*ip)) {
438         unsigned int in4;
439         in4 = (ntohs(ip->in6[6]) << 16) | ntohs(ip->in6[7]);
440         inttobase64(output, in4, 6);
441         output[6] = '\0';
442     } else if (irc_in_addr_is_ipv6(*ip)) {
443         unsigned int max_start, max_zeros, curr_zeros, zero, ii;
444         /* Can start by printing out the leading non-zero parts. */
445         for (ii = 0; (ip->in6[ii]) && (ii < 8); ++ii) {
446             inttobase64(output, ntohs(ip->in6[ii]), 3);
447             output += 3;
448         }
449         /* Find the longest run of zeros. */
450         for (max_start = zero = ii, max_zeros = curr_zeros = 0; ii < 8; ++ii) {
451             if (!ip->in6[ii])
452                 curr_zeros++;
453             else if (curr_zeros > max_zeros) {
454                 max_start = ii - curr_zeros;
455                 max_zeros = curr_zeros;
456                 curr_zeros = 0;
457             }
458         }
459         if (curr_zeros > max_zeros) {
460             max_start = ii - curr_zeros;
461             max_zeros = curr_zeros;
462             curr_zeros = 0;
463         }
464         /* Print the rest of the address */
465         for (ii = zero; ii < 8; ) {
466             if ((ii == max_start) && max_zeros) {
467                 *output++ = '_';
468                 ii += max_zeros;
469             } else {
470                 inttobase64(output, ntohs(ip->in6[ii]), 3);
471                 output += 3;
472                 ii += 1;
473             }
474         }
475         *output = '\0';
476     } else {
477         strcpy(output, "???");
478     }
479 }
480
481 void
482 irc_user(struct userNode *user)
483 {
484     char b64ip[25];
485     if (!user || IsDummy(user))
486         return;
487     irc_p10_ntop(b64ip, &user->ip);
488     if (user->modes) {
489         char modes[32];
490         irc_user_modes(user, modes, sizeof(modes));
491         putsock("%s " P10_NICK " %s %d %lu %s %s +%s %s %s :%s",
492                 user->uplink->numeric, user->nick, user->uplink->hops+1, (unsigned long)user->timestamp, user->ident, user->hostname, modes, b64ip, user->numeric, user->info);
493     } else {
494         putsock("%s " P10_NICK " %s %d %lu %s %s %s %s :%s",
495                 user->uplink->numeric, user->nick, user->uplink->hops+1, (unsigned long)user->timestamp, user->ident, user->hostname, b64ip, user->numeric, user->info);
496     }
497 }
498
499 void
500 irc_account(struct userNode *user, const char *stamp, unsigned long timestamp, unsigned long serial)
501 {
502     putsock("%s " P10_ACCOUNT " %s %s %lu %lu", self->numeric, user->numeric, stamp, timestamp, serial);
503 }
504
505 void
506 irc_fakehost(struct userNode *user, const char *host, const char *ident, int force)
507 {
508     /* SRVX added the possibility for FAKE IDENTS
509      * but this is currently *NOT* supported by our IRCu
510      */
511     int useNewFakehost = 0;
512      
513     if(useNewFakehost) putsock("%s " P10_FAKEHOST2 " %s %s %s%s", self->numeric, user->numeric, ident, host, force ? " FORCE" : "");
514     else putsock("%s " P10_FAKEHOST " %s %s", self->numeric, user->numeric, host);
515 }
516
517 void 
518 irc_relay(char *message)
519 {
520     putsock("%s " P10_RELAY " %s", self->numeric, message);
521     fprintf(stderr,"%s " P10_RELAY " %s", self->numeric, message);
522 }
523
524 void 
525 irc_simul(struct userNode *target, char *command)
526 {
527     putsock("%s " P10_RELAY " %s SI %s :%s", self->numeric, target->numeric, target->numeric, command);
528 }
529
530 void
531 irc_regnick(UNUSED_ARG(struct userNode *user))
532 {
533     /* no operation here */
534 }
535
536 void
537 irc_nick(struct userNode *user, UNUSED_ARG(const char *old_nick))
538 {
539     putsock("%s " P10_NICK " %s %lu", user->numeric, user->nick, (unsigned long)now);
540 }
541
542 void
543 irc_fetchtopic(struct userNode *from, const char *to)
544 {
545     if (!from || !to)
546         return;
547     putsock("%s " P10_TOPIC " %s", from->numeric, to);
548 }
549
550 void
551 irc_squit(struct server *srv, const char *message, const char *service_message)
552 {
553     if (!service_message)
554         service_message = message;
555
556     /* Are we leaving the network? */
557     if (srv == self && cManager.uplink->state == CONNECTED) {
558         unsigned int i;
559
560         /* Quit all clients linked to me. */
561         for (i = 0; i <= self->num_mask; i++) {
562             if (!self->users[i])
563                 continue;
564             irc_quit(self->users[i], service_message);
565         }
566     }
567
568     putsock("%s " P10_SQUIT " %s %d :%s", self->numeric, srv->name, 0, message);
569
570     if (srv == self) {
571         /* Force a reconnect to the currently selected server. */
572         cManager.uplink->tries = 0;
573         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", message);
574         close_socket();
575     }
576 }
577
578 void
579 irc_wallchops(struct userNode *from, const char *to, const char *message)
580 {
581     putsock("%s " P10_WALLCHOPS " %s :%s", from->numeric, to, message);
582 }
583
584 static int
585 deliver_to_dummy(struct userNode *source, struct userNode *dest, const char *message, int type)
586 {
587     unsigned int num;
588
589     if (!dest || !IsDummy(dest) || !IsLocal(dest))
590         return 0;
591     num = dest->num_local;
592     switch (type) {
593     default:
594         if ((num < num_notice_funcs) && notice_funcs[num])
595             notice_funcs[num](source, dest, message, 0);
596         break;
597     case 1:
598         if ((num < num_privmsg_funcs) && privmsg_funcs[num])
599             privmsg_funcs[num](source, dest, message, 0);
600         break;
601     }
602     return 1;
603 }
604
605 void
606 irc_notice(struct userNode *from, const char *to, const char *message)
607 {
608     if (to[0] == '#' || to[0] == '$'
609         || !deliver_to_dummy(from, GetUserN(to), message, 0))
610         putsock("%s " P10_NOTICE " %s :%s", from->numeric, to, message);
611 }
612
613 void
614 irc_notice_user(struct userNode *from, struct userNode *to, const char *message)
615 {
616     if (!deliver_to_dummy(from, to, message, 0))
617         putsock("%s " P10_NOTICE " %s :%s", from->numeric, to->numeric, message);
618 }
619
620 void
621 irc_privmsg(struct userNode *from, const char *to, const char *message)
622 {
623     if (to[0] == '#' || to[0] == '$'
624         || !deliver_to_dummy(from, GetUserN(to), message, 1))
625         putsock("%s " P10_PRIVMSG " %s :%s", from->numeric, to, message);
626 }
627
628 void
629 irc_svsmode(struct userNode *from, struct userNode *user, const char *modes)
630 {
631 putsock("%s " P10_SVSMODE " %s %s", from->numeric, user->numeric, modes);
632 }
633
634 void
635 irc_svsjoin(struct userNode *from, struct userNode *user, struct chanNode *chan)
636 {
637 putsock("%s " P10_SVSJOIN " %s %s", from->numeric, user->numeric, chan->name);
638 }
639
640 void
641 irc_svsjoinchan(struct userNode *from, struct userNode *user, const char *chan)
642 {
643 putsock("%s " P10_SVSJOIN " %s %s", from->numeric, user->numeric, chan);
644 }
645
646 void
647 irc_eob(void)
648 {
649     putsock("%s " P10_EOB, self->numeric);
650 }
651
652 void
653 irc_eob_ack(void)
654 {
655     putsock("%s " P10_EOB_ACK, self->numeric);
656 }
657
658 void
659 irc_ping(const char *payload)
660 {
661     putsock("%s " P10_PING " :%s", self->numeric, payload);
662 }
663
664 void
665 irc_pong(const char *who, const char *data)
666 {
667     putsock("%s " P10_PONG " %s :%s", self->numeric, who, data);
668 }
669
670 void
671 irc_pong_asll(const char *who, const char *orig_ts)
672 {
673     char *delim;
674     struct timeval orig;
675     struct timeval sys_now;
676     int diff;
677
678     orig.tv_sec = strtoul(orig_ts, &delim, 10);
679     orig.tv_usec = (*delim == '.') ? strtoul(delim + 1, NULL, 10) : 0;
680     gettimeofday(&sys_now, NULL);
681     diff = (sys_now.tv_sec - orig.tv_sec) * 1000 + (sys_now.tv_usec - orig.tv_usec) / 1000;
682     putsock("%s " P10_PONG " %s %s %d %lu.%06lu", self->numeric, who, orig_ts, diff, (unsigned long)sys_now.tv_sec, (unsigned long)sys_now.tv_usec);
683 }
684
685 void
686 irc_pass(const char *passwd)
687 {
688     putsock(P10_PASS " :%s", passwd);
689 }
690
691 void
692 irc_introduce(const char *passwd)
693 {
694     void timed_send_ping(void *data);
695
696     self->self_burst = self->burst = 1;
697     irc_pass(passwd);
698     irc_server(self);
699     burst_length = 0;
700     timeq_add(now + ping_freq, timed_send_ping, 0);
701 }
702
703 void
704 irc_gline(struct server *srv, struct gline *gline)
705 {
706     if (gline->lastmod)
707         putsock("%s " P10_GLINE " %s +%s %lu %lu %lu :%s",
708                 self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires, gline->lastmod, gline->lifetime, gline->reason);
709     else
710         putsock("%s " P10_GLINE " %s +%s %lu :%s",
711                 self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires, gline->reason);
712 }
713
714 void
715 irc_settime(const char *srv_name_mask, unsigned long new_time)
716 {
717     ioset_set_time(new_time);
718     if (!strcmp(srv_name_mask, "*"))
719         srv_name_mask = "";
720     putsock("%s " P10_SETTIME " %lu %s", self->numeric, new_time, srv_name_mask);
721 }
722
723 void
724 irc_ungline(const char *mask)
725 {
726     putsock("%s " P10_GLINE " * -%s %lu", self->numeric, mask, now);
727     //putsock("%s " P10_GLINE " * %s * %lu", self->numeric, mask, now);
728 }
729
730 /* Return negative if *(struct modeNode**)pa is "less than" pb,
731  * positive if pa is "larger than" pb.  Comparison is based on sorting
732  * so that non-voiced/non-opped users are first, voiced-only users are
733  * next, and the "strongest" oplevels are before "weaker" oplevels.
734  * Within those sets, ordering is arbitrary.
735  */
736 static int
737 modeNode_sort_p10(const void *pa, const void *pb)
738 {
739         struct modeNode *a = *(struct modeNode**)pa;
740         struct modeNode *b = *(struct modeNode**)pb;
741
742         if (a->modes & MODE_CHANOP) {
743             if (!(b->modes & MODE_CHANOP))
744                 return 1;
745             else if ((a->modes & MODE_VOICE) != (b->modes & MODE_VOICE))
746                 return (a->modes & MODE_VOICE) - (b->modes & MODE_VOICE);
747             else if (a->oplevel != b->oplevel)
748                 return a->oplevel - b->oplevel;
749         } else if (b->modes & MODE_CHANOP)
750             return -1;
751         else if ((a->modes & MODE_VOICE) != (b->modes & MODE_VOICE))
752             return (a->modes & MODE_VOICE) - (b->modes & MODE_VOICE);
753         return (a < b) ? -1 : 1;
754 }
755
756 static void
757 irc_burst(struct chanNode *chan)
758 {
759     char burst_line[512];
760     int pos, base_len, len;
761     struct modeNode *mn;
762     struct banNode *bn;
763     int last_oplevel = 0;
764     int last_mode = 0;
765     int new_modes;
766     unsigned int first_ban;
767     unsigned int n;
768
769     base_len = sprintf(burst_line, "%s " P10_BURST " %s %lu ",
770                        self->numeric, chan->name,
771                        (unsigned long)chan->timestamp);
772     len = irc_make_chanmode(chan, burst_line+base_len);
773     pos = base_len + len;
774     if (len > 0 && chan->members.used > 0)
775         burst_line[pos++] = ' ';
776
777     /* sort the users for oplevel-sending purposes */
778     qsort(chan->members.list, chan->members.used, sizeof(chan->members.list[0]), modeNode_sort_p10);
779
780     /* dump the users */
781     for (n=0; n<chan->members.used; n++) {
782         mn = chan->members.list[n];
783         if (pos > 500) {
784             burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
785             putsock("%s", burst_line);
786             pos = base_len;
787             last_mode = 0;
788             last_oplevel = 0;
789         }
790         memcpy(burst_line+pos, mn->user->numeric, strlen(mn->user->numeric));
791         pos += strlen(mn->user->numeric);
792         new_modes = mn->modes & (MODE_CHANOP | MODE_VOICE);
793         if (new_modes != last_mode) {
794             last_mode = new_modes;
795             burst_line[pos++] = ':';
796             if (new_modes & MODE_VOICE)
797                 burst_line[pos++] = 'v';
798             /* Note: :vNNN (oplevel NNN with voice) resets the
799              * implicit oplevel back to zero, so we always use the raw
800              * oplevel value here.  Read ircu's m_burst.c for more
801              * examples.
802              */
803             if (new_modes & MODE_CHANOP) {
804                 last_oplevel = mn->oplevel;
805                 if (mn->oplevel < MAXOPLEVEL)
806                     pos += sprintf(burst_line + pos, "%u", mn->oplevel);
807                 else
808                     burst_line[pos++] = 'o';
809             }
810         } else if ((last_mode & MODE_CHANOP) && (mn->oplevel != last_oplevel)) {
811             pos += sprintf(burst_line + pos, ":%u", mn->oplevel - last_oplevel);
812             last_oplevel = mn->oplevel;
813         }
814         if ((n+1)<chan->members.used)
815             burst_line[pos++] = ',';
816     }
817
818     /* dump the bans */
819     if (chan->banlist.used) {
820         first_ban = 1;
821
822         if (chan->members.used > 0)
823             burst_line[pos++] = ' ';
824
825         for (n=0; n<chan->banlist.used; ) {
826             if (first_ban && (pos < 500)) {
827                 burst_line[pos++] = ':';
828                 burst_line[pos++] = '%';
829             }
830             bn = chan->banlist.list[n];
831             len = strlen(bn->ban);
832             if (pos + 2 + len < 505) {
833                 memcpy(burst_line + pos, bn->ban, len);
834                 pos += len;
835                 burst_line[pos++] = ' ';
836                 first_ban = 0;
837                 n++;
838             } else {
839                 burst_line[pos-1] = 0;
840                 putsock("%s", burst_line);
841                 pos = base_len;
842                 first_ban = 1;
843             }
844         }
845     }
846
847     /* print the last line */
848     burst_line[pos] = 0;
849     putsock("%s", burst_line);
850 }
851
852 void
853 irc_quit(struct userNode *user, const char *message)
854 {
855     putsock("%s " P10_QUIT " :%s", user->numeric, message);
856 }
857
858 void
859 irc_error(const char *to, const char *message)
860 {
861     if (to) {
862         putsock("%s " P10_ERROR " :%s", to, message);
863     } else {
864         putsock(":%s " P10_ERROR " :%s", self->name, message);
865     }
866 }
867
868 void
869 irc_kill(struct userNode *from, struct userNode *target, const char *message)
870 {
871     if (from) {
872         putsock("%s " P10_KILL " %s :%s (%s)",
873                 from->numeric, target->numeric, from->nick, message);
874     } else {
875         putsock("%s " P10_KILL " %s :%s (%s)",
876                 self->numeric, target->numeric, self->name, message);
877     }
878 }
879
880 void
881 irc_mode(struct userNode *from, struct chanNode *target, const char *modes)
882 {
883     putsock("%s " P10_MODE " %s %s %lu",
884             (from ? from->numeric : self->numeric),
885             target->name, modes, (unsigned long)target->timestamp);
886 }
887
888 void
889 irc_invite(struct userNode *from, struct userNode *who, struct chanNode *to)
890 {
891     putsock("%s " P10_INVITE " %s %s", from->numeric, who->nick, to->name);
892 }
893
894 void
895 irc_join(struct userNode *who, struct chanNode *what)
896 {
897     if (what->members.used == 1) {
898         putsock("%s " P10_CREATE " %s %lu",
899                 who->numeric, what->name, (unsigned long)what->timestamp);
900     } else {
901         putsock("%s " P10_JOIN " %s %lu", who->numeric, what->name,
902                 (unsigned long)what->timestamp);
903     }
904 }
905
906 void
907 irc_kick(struct userNode *who, struct userNode *target, struct chanNode *channel, const char *msg)
908 {
909     const char *numeric;
910     struct modeNode *mn = GetUserMode(channel, who);
911     numeric = ((mn && (mn->modes & MODE_CHANOP)) || off_channel) ? who->numeric : self->numeric;
912     putsock("%s " P10_KICK " %s %s :%s",
913             numeric, channel->name, target->numeric, msg);
914 }
915
916 void
917 irc_stats(struct userNode *from, struct server *target, char type)
918 {
919     putsock("%s " P10_STATS " %c :%s", from->numeric, type, target->numeric);
920 }
921
922 void
923 irc_svsnick(struct userNode *from, struct userNode *target, const char *newnick)
924 {
925     putsock("%s " P10_SVSNICK " %s %s %lu", from->uplink->numeric, target->numeric, newnick, (unsigned long)now);
926 }
927
928 void
929 irc_part(struct userNode *who, struct chanNode *what, const char *reason)
930 {
931     if (reason) {
932         putsock("%s " P10_PART " %s :%s", who->numeric, what->name, reason);
933     } else {
934         putsock("%s " P10_PART " %s", who->numeric, what->name);
935     }
936 }
937
938 void
939 irc_topic(struct userNode *who, struct chanNode *what, const char *topic)
940 {
941     putsock("%s " P10_TOPIC " %s :%s", who->numeric, what->name, topic);
942 }
943
944 void
945 irc_raw(const char *what)
946 {
947     putsock("%s", what);
948 }
949
950 void
951 irc_numeric(struct userNode *user, unsigned int num, const char *format, ...)
952 {
953     va_list arg_list;
954     char buffer[MAXLEN];
955     va_start(arg_list, format);
956     vsnprintf(buffer, MAXLEN-2, format, arg_list);
957     buffer[MAXLEN-1] = 0;
958     putsock(":%s %03d %s %s", self->name, num, user->nick, buffer);
959 }
960
961 static void send_burst(void);
962
963 static void
964 change_nicklen(int new_nicklen)
965 {
966     unsigned int nn;
967     char new_nick[NICKLEN+1];
968     struct userNode *user;
969
970     nicklen = new_nicklen;
971     /* fix up any users we have here */
972     for (nn=0; nn<=self->num_mask; nn++) {
973         if (!(user = self->users[nn]))
974             continue;
975         safestrncpy(new_nick, user->nick, sizeof(new_nick));
976         new_nick[nicklen] = 0;
977         NickChange(user, new_nick, 1);
978     }
979 }
980
981 static CMD_FUNC(cmd_whois)
982 {
983     struct userNode *from;
984     struct userNode *who;
985     char buf[MAXLEN];
986     unsigned int i, mlen, len;
987
988     if (argc < 3)
989         return 0;
990     if (!(from = GetUserH(origin))) {
991         log_module(MAIN_LOG, LOG_ERROR, "Could not find WHOIS origin user %s", origin);
992         return 0;
993     }
994     if (!(who = GetUserH(argv[2]))) {
995         irc_numeric(from, ERR_NOSUCHNICK, "%s@%s :No such nick", argv[2], self->name);
996         return 1;
997     }
998
999     if (IsFakeHost(who) && IsFakeIdent(who) && IsHiddenHost(who))
1000         irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->fakeident, who->fakehost, who->info);
1001     else if (IsFakeIdent(who) && IsHiddenHost(who))
1002         irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->fakeident, who->hostname, who->info);
1003     else if (IsFakeHost(who) && IsHiddenHost(who))
1004         irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->ident, who->fakehost, who->info);
1005     else if (IsHiddenHost(who) && who->handle_info && hidden_host_suffix)
1006         irc_numeric(from, RPL_WHOISUSER, "%s %s %s.%s * :%s", who->nick, who->ident, who->handle_info->handle, hidden_host_suffix, who->info);
1007     else
1008         irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->ident, who->hostname, who->info);
1009
1010     if ((!IsService(who) && !IsNoChan(who)) || (from == who)) {
1011         struct modeNode *mn;
1012         mlen = strlen(self->name) + strlen(from->nick) + 12 + strlen(who->nick);
1013         len = 0;
1014         *buf = '\0';
1015         for (i = who->channels.used; i > 0; )
1016         {
1017             mn = who->channels.list[--i];
1018
1019             if (!IsOper(from) && (mn->channel->modes & (MODE_PRIVATE | MODE_SECRET)) && !GetUserMode(mn->channel, from))
1020                 continue;
1021
1022             if (len + strlen(mn->channel->name) + mlen > MAXLEN - 5)
1023             {
1024                 irc_numeric(from, RPL_WHOISCHANNELS, "%s :%s", who->nick, buf);
1025                 *buf = '\0';
1026                 len = 0;
1027             }
1028
1029             if (IsDeaf(who))
1030                 *(buf + len++) = '-';
1031             if ((mn->channel->modes & (MODE_PRIVATE | MODE_SECRET)) && !GetUserMode(mn->channel, from))
1032                 *(buf + len++) = '*';
1033             if (mn->modes & MODE_CHANOP)
1034                 *(buf + len++) = '@';
1035             else if (mn->modes & MODE_VOICE)
1036                 *(buf + len++) = '+';
1037
1038             if (len)
1039                 *(buf + len) = '\0';
1040             strcpy(buf + len, mn->channel->name);
1041             len += strlen(mn->channel->name);
1042             strcat(buf + len, " ");
1043             len++;
1044         }
1045         if (buf[0] != '\0')
1046             irc_numeric(from, RPL_WHOISCHANNELS, "%s :%s", who->nick, buf);
1047     }
1048
1049     if (his_servername && his_servercomment && !IsOper(from) && from != who)
1050         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, his_servername, his_servercomment);
1051     else
1052         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, who->uplink->name, who->uplink->description);
1053
1054     if (IsAway(who))
1055         irc_numeric(from, RPL_AWAY, "%s :Away", who->nick);
1056     if (IsOper(who))
1057         irc_numeric(from, RPL_WHOISOPERATOR, "%s :%s", who->nick, IsLocal(who) ? "is a megalomaniacal power hungry tyrant" : "is an IRC Operator");
1058     if (who->handle_info)
1059         irc_numeric(from, RPL_WHOISACCOUNT, "%s %s :is logged in as", who->nick, who->handle_info->handle);
1060     if (IsHiddenHost(who) && who->handle_info && (IsOper(from) || from == who))
1061         irc_numeric(from, RPL_WHOISACTUALLY, "%s %s@%s %s :Actual user@host, Actual IP", who->nick, who->ident, who->hostname, irc_ntoa(&who->ip));
1062     if (IsLocal(who) && !IsService(who) && (!IsNoIdle(who) || IsOper(from) || from == who))
1063         irc_numeric(from, RPL_WHOISIDLE, "%s %ld %ld :seconds idle, signon time", who->nick, now - who->idle_since, who->timestamp);
1064
1065     irc_numeric(from, RPL_ENDOFWHOIS, "%s :End of /WHOIS list", who->nick);
1066     return 1;
1067 }
1068
1069 static CMD_FUNC(cmd_server)
1070 {
1071     struct server *srv;
1072     const char *str;
1073
1074     if (argc < 8)
1075         return 0;
1076     if (self->uplink) {
1077         /* another server introduced us */
1078         srv = AddServer(GetServerH(origin), argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
1079         if (!srv)
1080             return 0;
1081         srv->self_burst = argv[5][0] == 'J';
1082         srv->burst = 1;
1083     } else {
1084         /* this must be our uplink */
1085         srv = self->uplink = AddServer(self, argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
1086         if (!srv)
1087             return 0;
1088         srv->self_burst = argv[5][0] == 'J';
1089         srv->burst = 1;
1090         if ((argv[7][0] == '+') && !force_n2k) {
1091             log_module(MAIN_LOG, LOG_WARNING, "Got Undernet-style SERVER message but \"force_n2k\" not on.");
1092         }
1093         send_burst();
1094     }
1095
1096     /* Fix up our timestamps if necessary. */
1097     if (srv->boot <= PREHISTORY) {
1098         /* Server from the mists of time.. */
1099         if (srv->hops == 1) {
1100             log_module(MAIN_LOG, LOG_ERROR, "Server %s claims to have booted at time %lu.  This is absurd.", srv->name, (unsigned long)srv->boot);
1101         }
1102     } else if ((str = conf_get_data("server/reliable_clock", RECDB_QSTRING))
1103                && enabled_string(str)) {
1104         /* If we have a reliable clock, we just keep our current time. */
1105     } else {
1106         if (srv->boot <= self->boot) {
1107             /* The other server is older than us.  Accept their timestamp.
1108              * Alternately, we are same age, but we accept their time
1109              * since we are linking to them. */
1110             self->boot = srv->boot;
1111             ioset_set_time(srv->link_time);
1112         }
1113     }
1114     if (srv == self->uplink) {
1115         extern unsigned long burst_begin;
1116         burst_begin = now;
1117     }
1118     return 1;
1119 }
1120
1121 static CMD_FUNC(cmd_eob)
1122 {
1123     struct server *sender;
1124     dict_iterator_t it;
1125     unsigned int ii;
1126
1127     if (!(sender = GetServerH(origin)))
1128         return 0;
1129     if (sender == self->uplink) {
1130         cManager.uplink->state = CONNECTED;
1131         for (it = dict_first(unbursted_channels); it; it = iter_next(it))
1132             irc_burst(iter_data(it));
1133         dict_delete(unbursted_channels);
1134         unbursted_channels = NULL;
1135         irc_eob();
1136         irc_eob_ack();
1137     }
1138     sender->self_burst = 0;
1139     recalc_bursts(sender);
1140     for (ii=0; ii<slf_used; ii++)
1141         slf_list[ii](sender);
1142     return 1;
1143 }
1144
1145 static CMD_FUNC(cmd_eob_ack)
1146 {
1147     extern unsigned long burst_begin;
1148
1149     if (GetServerH(origin) == self->uplink) {
1150         burst_length = now - burst_begin;
1151         self->self_burst = self->burst = 0;
1152     }
1153     cManager.uplink->state = CONNECTED;
1154     return 1;
1155 }
1156
1157 static CMD_FUNC(cmd_ping)
1158 {
1159     struct server *srv;
1160     struct userNode *un;
1161
1162     if (argc > 3)
1163         irc_pong_asll(argv[2], argv[3]);
1164     else if ((srv = GetServerH(origin)))
1165         irc_pong(self->name, srv->numeric);
1166     else if ((un = GetUserH(origin)))
1167         irc_pong(self->name, un->numeric);
1168     else
1169         irc_pong(self->name, origin);
1170
1171     timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1172     timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1173     timeq_add(now + ping_freq, timed_send_ping, 0);
1174     received_ping();
1175     return 1;
1176 }
1177
1178 static CMD_FUNC(cmd_error_nick)
1179 {
1180     /* Go back to original IRC length .. and try to reconnect :/ */
1181     change_nicklen(9);
1182     irc_squit(self, "Got erroneous nickname, truncating nicks.", NULL);
1183     return 1;
1184 }
1185
1186 struct create_desc {
1187     struct userNode *user;
1188     unsigned long when;
1189 };
1190
1191 static void
1192 join_helper(struct chanNode *chan, void *data)
1193 {
1194     struct create_desc *cd = data;
1195     AddChannelUser(cd->user, chan);
1196 }
1197
1198 static void
1199 create_helper(char *name, void *data)
1200 {
1201     struct create_desc *cd = data;
1202
1203     if (!strcmp(name, "0")) {
1204         while (cd->user->channels.used > 0)
1205             DelChannelUser(cd->user, cd->user->channels.list[0]->channel, 0, 0);
1206         return;
1207     }
1208
1209     handle_new_channel_created(name, cd->user);
1210
1211     AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL));
1212 }
1213
1214 static CMD_FUNC(cmd_create)
1215 {
1216     struct create_desc cd;
1217     struct userNode *user;
1218
1219     if ((argc < 3) || !(user = GetUserH(origin)))
1220         return 0;
1221     cd.user = user;
1222     cd.when = atoi(argv[2]);
1223     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1224     return 1;
1225 }
1226
1227 static CMD_FUNC(cmd_join)
1228 {
1229     struct create_desc cd;
1230
1231     if (!(cd.user = GetUserH(origin)))
1232         return 0;
1233     if (argc < 2)
1234         return 0;
1235     else if (argc < 3)
1236         cd.when = now;
1237     else
1238         cd.when = atoi(argv[2]);
1239     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1240     return 1;
1241 }
1242
1243 static CMD_FUNC(cmd_pong)
1244 {
1245     if (argc < 3)
1246         return 0;
1247     if (!strcmp(argv[2], self->name)) {
1248         timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1249         timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1250         timeq_add(now + ping_freq, timed_send_ping, 0);
1251         received_ping();
1252     }
1253     return 1;
1254 }
1255
1256 static CMD_FUNC(cmd_nick)
1257 {
1258     struct userNode *user;
1259     if ((user = GetUserH(origin))) {
1260         /* nick change (since the source is a user numeric) */
1261         if (argc < 2)
1262             return 0;
1263         NickChange(user, argv[1], 1);
1264     } else {
1265         struct server *serv;
1266         char modes[MAXLEN];
1267         /* new nick */
1268         if (argc < 9)
1269             return 0;
1270         serv = GetServerH(origin);
1271         if (argc > 9)
1272             unsplit_string(argv+6, argc-9, modes);
1273         else
1274             strcpy(modes, "+");
1275         AddUser(serv, argv[1], argv[4], argv[5], modes, argv[argc-2], argv[argc-1], atoi(argv[3]), argv[argc-3]);
1276     }
1277     return 1;
1278 }
1279
1280 static CMD_FUNC(cmd_account)
1281 {
1282     struct userNode *user;
1283     unsigned long timestamp = 0;
1284     unsigned long serial = 0;
1285
1286     if ((argc < 3) || !origin || !GetServerH(origin))
1287         return 0; /* Origin must be server. */
1288     user = GetUserN(argv[1]);
1289     if (!user)
1290         return 1; /* A QUIT probably passed the ACCOUNT. */
1291     if (argc > 3)
1292         timestamp = strtoul(argv[3], NULL, 10);
1293     if (argc > 4)
1294         serial = strtoul(argv[4], NULL, 10);
1295     call_account_func(user, argv[2], timestamp, serial);
1296     return 1;
1297 }
1298
1299 static CMD_FUNC(cmd_fakehost)
1300 {
1301     struct userNode *user;
1302     const char *host, *ident;
1303
1304     if ((argc < 3) || !origin || !GetServerH(origin))
1305         return 0;
1306     if (!(user = GetUserN(argv[1])))
1307         return 1;
1308
1309     if (argc > 3) {
1310         ident = argv[2];
1311         host = argv[3];
1312     } else {
1313         ident = NULL;
1314         host = argv[2];
1315     }
1316
1317     assign_fakehost(user, host, ident, 0, 0);
1318     return 1;
1319 }
1320
1321 static CMD_FUNC(cmd_burst)
1322 {
1323     extern int rel_age;
1324     char modes[MAXLEN], *members = "", *banlist = NULL;
1325     unsigned int next = 3, res = 1;
1326     struct chanNode *cNode;
1327     struct userNode *un;
1328     struct modeNode *mNode;
1329     long mode;
1330     int oplevel = 0;
1331     char *user, *end, sep;
1332     unsigned long in_timestamp;
1333
1334     if (argc < 3)
1335         return 0;
1336     modes[0] = 0;
1337     while (next < argc) {
1338         switch (argv[next][0]) {
1339         case '+': {
1340             const char *pos;
1341             int n_modes;
1342             for (pos=argv[next], n_modes = 1; *pos; pos++)
1343                 if ((*pos == 'k') || (*pos == 'l') || (*pos == 'A')
1344                     || (*pos == 'U') || (*pos == 'a') || (*pos == 'F'))
1345                     n_modes++;
1346             if (next + n_modes > argc)
1347                 n_modes = argc - next;
1348             unsplit_string(argv+next, n_modes, modes);
1349             next += n_modes;
1350             break;
1351         }
1352         case '%': banlist = argv[next++]+1; break;
1353         default: members = argv[next++]; break;
1354         }
1355     }
1356
1357     in_timestamp = atoi(argv[2]);
1358     if ((cNode = dict_find(unbursted_channels, argv[1], NULL))) {
1359         cNode->timestamp = in_timestamp;
1360         dict_remove(unbursted_channels, cNode->name);
1361         irc_burst(cNode);
1362     }
1363     cNode = AddChannel(argv[1], in_timestamp, modes, banlist);
1364
1365     /* Burst channel members in now. */
1366     for (user = members, sep = *members, mode = 0; sep; user = end) {
1367         for (end = user + 3; isalnum(*end) || *end == '[' || *end == ']'; end++) ;
1368         sep = *end++; end[-1] = 0;
1369         if (sep == ':') {
1370             mode = 0;
1371             while ((sep = *end++)) {
1372                 if (sep == 'o') {
1373                     mode |= MODE_CHANOP;
1374                     oplevel = MAXOPLEVEL;
1375                 } else if (sep == 'v') {
1376                     mode |= MODE_VOICE;
1377                     oplevel = 0;
1378                 } else if (isdigit(sep)) {
1379                     mode |= MODE_CHANOP;
1380                     oplevel += parse_oplevel(end - 1);
1381                     while (isdigit(*end)) end++;
1382                 } else
1383                     break;
1384             }
1385             if (rel_age < 0)
1386                 mode = 0;
1387         }
1388         if (!(un = GetUserN(user))) {
1389             res = 0;
1390             continue;
1391         }
1392         if ((mNode = AddChannelUser(un, cNode))) {
1393             mNode->modes = mode;
1394             mNode->oplevel = oplevel;
1395         }
1396     }
1397
1398     return res;
1399 }
1400
1401 static CMD_FUNC(cmd_mode)
1402 {
1403     struct chanNode *cn;
1404     struct userNode *un;
1405
1406     if (argc < 3)
1407         return 0;
1408     if (!IsChannelName(argv[1])) {
1409         un = GetUserH(argv[1]);
1410         if (!un) {
1411             log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s whose mode is changing.", argv[1]);
1412             return 0;
1413         }
1414         argv[2] = unsplit_string(argv + 2, argc - 2, NULL);
1415         mod_usermode(un, argv[2]);
1416         return 1;
1417     }
1418
1419     if (!(cn = GetChannel(argv[1]))) {
1420         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1421         return 0;
1422     }
1423     if ((un = GetUserH(origin))) {
1424         struct modeNode *mn;
1425         /* Update idle time for person setting the mode */
1426         if ((mn = GetUserMode(cn, un)))
1427             mn->idle_since = now;
1428     } else {
1429         /* If it came from a server, reset timestamp to re-sync. */
1430         cn->timestamp = atoi(argv[argc-1]);
1431     }
1432
1433     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER|(un ? MC_NOTIFY : 0));
1434 }
1435
1436 static CMD_FUNC(cmd_opmode)
1437 {
1438     struct chanNode *cn;
1439     struct userNode *un;
1440
1441     if (argc < 3)
1442         return 0;
1443
1444     if (!(cn = GetChannel(argv[1]))) {
1445         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1446         return 0;
1447     }
1448     if (!(un = GetUserH(origin))) {
1449         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting OPMODE.", origin);
1450         return 0;
1451     }
1452     if (!IsOper(un)) {
1453         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using OPMODE.", un->nick);
1454         return 0;
1455     }
1456
1457     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER); /* do NOT announce opmode locally */
1458 }
1459
1460 static int clear_chanmode(struct chanNode *channel, const char *modes);
1461
1462 static CMD_FUNC(cmd_clearmode)
1463 {
1464     struct chanNode *cn;
1465     struct userNode *un;
1466
1467     if (argc < 3)
1468         return 0;
1469
1470     if (!(cn = GetChannel(argv[1]))) {
1471         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1472         return 0;
1473     }
1474     if (!(un = GetUserH(origin))) {
1475         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting CLEARMODE.", origin);
1476         return 0;
1477     }
1478     if (!IsOper(un)) {
1479         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using CLEARMODE.", un->nick);
1480         return 0;
1481     }
1482
1483     return clear_chanmode(cn, argv[2]);
1484 }
1485
1486 static CMD_FUNC(cmd_topic)
1487 {
1488     struct chanNode *cn;
1489     unsigned long chan_ts, topic_ts;
1490
1491     if (argc < 3)
1492         return 0;
1493     if (!(cn = GetChannel(argv[1]))) {
1494         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose topic is being set", argv[1]);
1495         return 0;
1496     }
1497     if (argc >= 5) {
1498         /* Looks like an Asuka style topic burst. */
1499         chan_ts = atoi(argv[2]);
1500         topic_ts = atoi(argv[3]);
1501     } else {
1502         chan_ts = cn->timestamp;
1503         topic_ts = now;
1504     }
1505     SetChannelTopic(cn, GetUserH(origin), argv[argc-1], 0);
1506     cn->topic_time = topic_ts;
1507     return 1;
1508 }
1509
1510 static CMD_FUNC(cmd_num_topic)
1511 {
1512     struct chanNode *cn;
1513
1514     if (!argv[0])
1515         return 0; /* huh? */
1516     if (argv[2]) {
1517         cn = GetChannel(argv[2]);
1518         if (!cn) {
1519             log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s in topic reply", argv[2]);
1520             return 0;
1521         }
1522     } else
1523         return 0;
1524
1525     switch (atoi(argv[0])) {
1526     case 331:
1527         cn->topic_time = 0;
1528         break;  /* no topic */
1529     case 332:
1530         if (argc < 4)
1531             return 0;
1532         safestrncpy(cn->topic, unsplit_string(argv+3, argc-3, NULL), sizeof(cn->topic));
1533         break;
1534     case 333:
1535         if (argc < 5)
1536             return 0;
1537         safestrncpy(cn->topic_nick, argv[3], sizeof(cn->topic_nick));
1538         cn->topic_time = atoi(argv[4]);
1539         break;
1540     default:
1541         return 0; /* should never happen */
1542     }
1543     return 1;
1544 }
1545
1546 static CMD_FUNC(cmd_num_gline)
1547 {
1548     unsigned long lastmod;
1549     unsigned long lifetime;
1550
1551     if (argc < 6)
1552         return 0;
1553     lastmod = (argc > 5) ? strtoul(argv[5], NULL, 0) : 0;
1554     lifetime = (argc > 6) ? strtoul(argv[6], NULL, 0) : 0;
1555     gline_add(origin, argv[3], atoi(argv[4])-now, argv[argc - 1], now, lastmod, lifetime, 0);
1556     return 1;
1557 }
1558
1559 static CMD_FUNC(cmd_quit)
1560 {
1561     struct userNode *user;
1562     if (argc < 2)
1563         return 0;
1564     /* Sometimes we get a KILL then a QUIT or the like, so we don't want to
1565      * call DelUser unless we have the user in our grasp. */
1566     if ((user = GetUserH(origin)))
1567         DelUser(user, NULL, false, argv[1]);
1568     return 1;
1569 }
1570
1571 static CMD_FUNC(cmd_kill)
1572 {
1573     struct userNode *user;
1574     if (argc < 2)
1575         return 0;
1576     user = GetUserN(argv[1]);
1577     if (!user) {
1578         /* If we get a KILL for a non-existent user, it could be a
1579          * Ghost response to a KILL we sent out earlier.  So we only
1580          * whine if the target is local.
1581          */
1582         if (!strncmp(argv[1], self->numeric, strlen(self->numeric)))
1583             log_module(MAIN_LOG, LOG_ERROR, "Unable to find kill victim %s", argv[1]);
1584         return 0;
1585     }
1586
1587     if (IsLocal(user) && IsService(user)) {
1588         /* TODO: rate limit this so silly things don't happen. */
1589         ReintroduceUser(user);
1590         return 1;
1591     }
1592
1593     DelUser(user, NULL, false, argv[2]);
1594     return 1;
1595 }
1596
1597 static CMD_FUNC(cmd_kick)
1598 {
1599     if (argc < 3)
1600         return 0;
1601     if (GetUserN(argv[2]) && IsOper(GetUserN(argv[2])))
1602         operpart(GetChannel(argv[1]), GetUserN(argv[2]));
1603     ChannelUserKicked(GetUserH(origin), GetUserN(argv[2]), GetChannel(argv[1]));
1604     return 1;
1605 }
1606
1607 static CMD_FUNC(cmd_squit)
1608 {
1609     struct server *server;
1610
1611     if (argc < 4)
1612         return 0;
1613     if (!(server = GetServerH(argv[1])))
1614         return 0;
1615
1616     if (server == self->uplink) {
1617         /* Force a reconnect to the currently selected server. */
1618         cManager.uplink->tries = 0;
1619         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", argv[3]);
1620         close_socket();
1621         return 1;
1622     }
1623
1624     DelServer(server, 0, argv[3]);
1625     return 1;
1626 }
1627
1628 static CMD_FUNC(cmd_privmsg)
1629 {
1630     struct privmsg_desc pd;
1631     if (argc < 3)
1632         return 0;
1633     pd.user = GetUserH(origin);
1634     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1635         return 1;
1636     pd.is_notice = 0;
1637     pd.text = argv[argc - 1];
1638     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1639     return 1;
1640 }
1641
1642 static CMD_FUNC(cmd_notice)
1643 {
1644     struct privmsg_desc pd;
1645     if (argc < 3)
1646         return 0;
1647     pd.user = GetUserH(origin);
1648     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1649         return 1;
1650     pd.is_notice = 1;
1651     pd.text = argv[argc - 1];
1652     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1653     return 1;
1654 }
1655
1656 static CMD_FUNC(cmd_away)
1657 {
1658     struct userNode *uNode;
1659
1660     uNode = GetUserH(origin);
1661     if (!uNode)
1662         return 1;
1663     if (argc < 2)
1664         uNode->modes &= ~FLAGS_AWAY;
1665     else
1666         uNode->modes |= FLAGS_AWAY;
1667     return 1;
1668 }
1669
1670 static CMD_FUNC(cmd_gline)
1671 {
1672 #define PASTWATCH (5*365*24*3600)
1673     unsigned long lastmod;
1674     unsigned long lifetime;
1675     unsigned long expiration;
1676
1677     if (argc < 3)
1678         return 0;
1679     if (argv[2][0] == '+') {
1680         if (argc < 5)
1681             return 0;
1682         expiration = strtoul(argv[3], NULL, 10);
1683         if (expiration < now - PASTWATCH)
1684             expiration += now;
1685         lastmod = (argc > 5) ? strtoul(argv[4], NULL, 10) : 0;
1686         lifetime = (argc > 6) ? strtoul(argv[5], NULL, 10) : 0;
1687         gline_add(origin, argv[2]+1, expiration - now, argv[argc-1], now, lastmod, lifetime, 0);
1688         return 1;
1689     } else if (argv[2][0] == '-') {
1690         gline_remove(argv[2]+1, 0);
1691         return 1;
1692     } else
1693         return 0;
1694 }
1695
1696 static CMD_FUNC(cmd_svsnick)
1697 {
1698     struct userNode *target, *dest;
1699     if ((argc < 4)
1700         || !(target = GetUserN(argv[1]))
1701         || !IsLocal(target)
1702         || (dest = GetUserH(argv[2])))
1703         return 0;
1704     NickChange(target, argv[2], 0);
1705     return 1;
1706 }
1707
1708 static CMD_FUNC(cmd_time)
1709 {
1710     extern int clock_skew;
1711     char buf[MAXLEN];
1712     struct userNode *who;
1713     time_t when;
1714
1715     who = GetUserH(origin);
1716     if (!who)
1717         return 0;
1718
1719     when = time(NULL);
1720     strftime(buf, sizeof(buf), "%a %b %d %Y -- %H:%M %z", localtime(&when));
1721     irc_numeric(who, 391, "%s %lu %d :%s", self->name, now, clock_skew, buf);
1722     return 1;
1723 }
1724
1725 static CMD_FUNC(cmd_relay)
1726 {
1727     struct server *sNode;
1728     unsigned int len;
1729     char buf[3];
1730     //<sender> RELAY <destination> <command>
1731     len = strlen(argv[1]);
1732     buf[2] = 0;
1733     switch(len) {
1734         case 2:
1735             sNode = GetServerN(argv[1]);
1736             break;
1737         case 5:
1738             buf[0] = argv[1][0];
1739             buf[1] = argv[1][1];
1740             sNode = GetServerN(buf);
1741             break;
1742         case 6:
1743             buf[0] = argv[1][1];
1744             buf[1] = argv[1][2];
1745             sNode = GetServerN(buf);
1746             break;
1747         default:
1748             /* Invalid destination. Ignore. */
1749             return 0;
1750     }
1751     if(sNode->numeric == self->numeric) {
1752         //ok  someone relayed something to us!
1753         if(strcmp("LQ", argv[2]) == 0) {
1754             //oooh thats exciting - we've got a LOC Query! :D
1755             //LQ !ABADE pk910 80.153.5.212 server.zoelle1.de ~watchcat :test
1756             //ok  let's check the login datas
1757             struct handle_info *hi;
1758             char tmp[MAXLEN], tmp2[MAXLEN];
1759             sprintf(tmp, "%s@%s",argv[7],argv[6]);
1760             sprintf(tmp2, "%s@%s",argv[7],argv[5]);
1761             if((hi = checklogin(argv[4],argv[argc-1],&argv[3][1],tmp,tmp2))) {
1762              //login ok
1763              struct devnull_class *th;
1764              char devnull[512];
1765              if(hi->devnull && (th = devnull_get(hi->devnull))) {
1766                 const char *devnull_modes = DEVNULL_MODES;
1767                 int ii, flen;
1768                 char flags[50];
1769                 for (ii=flen=0; devnull_modes[ii]; ++ii)
1770                     if (th->modes & (1 << ii))
1771                         flags[flen++] = devnull_modes[ii];
1772                 flags[flen] = 0;
1773                 sprintf(devnull, "+%s %s %lu %lu",flags,th->name,th->maxchan,th->maxsendq);
1774              } else {
1775                 devnull[0] = 0;
1776              }
1777              if(!HANDLE_FLAGGED(hi, AUTOHIDE)) {
1778                 sprintf(tmp,"%s LA %s 0 %s\n",argv[3],hi->handle,devnull);
1779              } else if(getfakehost(argv[4])) {
1780                 sprintf(tmp,"%s LA %s %s %s\n",argv[3],hi->handle,getfakehost(argv[4]),devnull);
1781              } else {
1782                 extern const char *hidden_host_suffix;
1783                 sprintf(tmp,"%s LA %s %s.%s %s\n",argv[3],hi->handle,hi->handle,hidden_host_suffix,devnull);
1784              }
1785              irc_relay(tmp);
1786             } else {
1787              //login rejected
1788              sprintf(tmp,"%s LR\n",argv[3]);
1789              irc_relay(tmp);
1790             }
1791         } else if(strcmp("UC", argv[2]) == 0) {
1792             char tmp[MAXLEN];
1793             sprintf(tmp,"%s UC %s %s",argv[3],argv[3],argv[4]);
1794             irc_relay(tmp);
1795         } else if(strcmp("JA", argv[2]) == 0) {
1796             struct userData *uData;
1797             struct chanNode *cn;
1798             struct userNode *user;
1799             char tmp[MAXLEN];
1800             cn = GetChannel(argv[4]);
1801             if (!cn) return 0;
1802             if (!(user = GetUserN(argv[3]))) return 0;
1803             if(!cn->channel_info) {
1804                 //channel not registered
1805                 sprintf(tmp,"%s JAA %s %s\n",argv[3],cn->name,argv[6]);
1806             } else if((uData = GetChannelUser(cn->channel_info, user->handle_info))) {
1807                 if(uData->access >= atoi(argv[5])) {
1808                     //we can join
1809                     sprintf(tmp,"%s JAA %s %s\n",argv[3],cn->name,argv[6]);
1810                 } else {
1811                     //access too low
1812                     sprintf(tmp,"%s JAR %s %i %i\n",argv[3],cn->name,uData->access,uData->access);
1813                 }
1814             } else {
1815                 //0 access
1816                 sprintf(tmp,"%s JAR %s %s %s\n",argv[3],cn->name,"0","0");
1817             }
1818             irc_relay(tmp);
1819         }
1820     }
1821     return 1;
1822 }
1823
1824 void
1825 free_user(struct userNode *user)
1826 {
1827     free(user->nick);
1828     free(user);
1829 }
1830
1831 static void
1832 parse_cleanup(void)
1833 {
1834     unsigned int nn;
1835     free(of_list);
1836     free(privmsg_funcs);
1837     num_privmsg_funcs = 0;
1838     free(notice_funcs);
1839     num_notice_funcs = 0;
1840     free(mcf_list);
1841     dict_delete(irc_func_dict);
1842     for (nn=0; nn<dead_users.used; nn++)
1843         free_user(dead_users.list[nn]);
1844     userList_clean(&dead_users);
1845 }
1846
1847 static void
1848 p10_conf_reload(void) {
1849     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1850     his_servername = conf_get_data("server/his_servername", RECDB_QSTRING);
1851     his_servercomment = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1852 }
1853
1854 static void
1855 remove_unbursted_channel(struct chanNode *cNode) {
1856     if (unbursted_channels)
1857         dict_remove(unbursted_channels, cNode->name);
1858 }
1859
1860 void
1861 init_parse(void)
1862 {
1863     const char *str, *desc;
1864     int numnick, usermask, max_users;
1865     char numer[COMBO_NUMERIC_LEN+1];
1866
1867     /* read config items */
1868     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1869     ping_freq = str ? ParseInterval(str) : 120;
1870     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1871     ping_timeout = str ? ParseInterval(str) : 30;
1872     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1873     force_n2k = str ? enabled_string(str) : 1;
1874     str = conf_get_data("server/numeric", RECDB_QSTRING);
1875     if (!str) {
1876         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1877         exit(1);
1878     }
1879     numnick = atoi(str);
1880     str = conf_get_data("server/max_users", RECDB_QSTRING);
1881     max_users = str ? atoi(str) : 4096;
1882     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1883     usermask--;
1884     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1885         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1886     else
1887         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1888
1889     str = conf_get_data("server/hostname", RECDB_QSTRING);
1890     desc = conf_get_data("server/description", RECDB_QSTRING);
1891     if (!str || !desc) {
1892         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1893         exit(1);
1894     }
1895     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1896     conf_register_reload(p10_conf_reload);
1897
1898     irc_func_dict = dict_new();
1899     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1900     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1901     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1902     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1903     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1904     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1905     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1906     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1907     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1908     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1909     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1910     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1911     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1912     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1913     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1914     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1915     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1916     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1917     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1918     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1919     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1920     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1921     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1922     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1923     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1924     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1925     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1926     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1927     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1928     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1929     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1930     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1931     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1932     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1933     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1934     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1935     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1936     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1937     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1938     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1939     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1940     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1941     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1942     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1943     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1944     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1945     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1946     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1947     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1948     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1949     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1950     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1951     dict_insert(irc_func_dict, CMD_RELAY, cmd_relay);
1952     dict_insert(irc_func_dict, TOK_RELAY, cmd_relay);
1953     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1954     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1955     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1956     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1957     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1958     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1959     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1960     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1961     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1962     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1963     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1964     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1965     dict_insert(irc_func_dict, CMD_TIME, cmd_time);
1966     dict_insert(irc_func_dict, TOK_TIME, cmd_time);
1967
1968     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1969      * Apparently to obliterate channels from any servers that think they
1970      * exist?
1971      */
1972     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1973     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1974     /* Ignore invites */
1975     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1976     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1977     /* DESYNCH is just informational, so ignore it */
1978     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1979     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1980     /* Ignore channel operator notices. */
1981     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1982     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1983     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1984     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1985     /* Ignore opers being silly. */
1986     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1987     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1988     /* We have reliable clock!  Always!  Wraaa! */
1989     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1990     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1991     /* handle topics */
1992     dict_insert(irc_func_dict, "331", cmd_num_topic);
1993     dict_insert(irc_func_dict, "332", cmd_num_topic);
1994     dict_insert(irc_func_dict, "333", cmd_num_topic);
1995     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1996     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1997     /* ban list resetting */
1998     /* "stats g" responses */
1999     dict_insert(irc_func_dict, "247", cmd_num_gline);
2000     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
2001     /* other numeric responses we might get */
2002     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
2003     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
2004     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
2005     dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */
2006     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
2007     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
2008     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
2009     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
2010     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
2011
2012     num_privmsg_funcs = 16;
2013     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
2014     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
2015
2016     num_notice_funcs = 16;
2017     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
2018     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
2019
2020     userList_init(&dead_users);
2021     channelList_init(&dead_channels);
2022     reg_del_channel_func(remove_unbursted_channel);
2023     reg_exit_func(parse_cleanup);
2024 }
2025
2026 int
2027 parse_line(char *line, int recursive)
2028 {
2029     char *argv[MAXNUMPARAMS], *origin;
2030     int argc, cmd, res=0;
2031     cmd_func_t *func;
2032
2033     argc = split_line(line, true, MAXNUMPARAMS, argv);
2034     cmd = self->uplink || !argv[0][1] || !argv[0][2];
2035     if (argc > cmd) {
2036         if (cmd) {
2037             if (argv[0][0] == ':') {
2038                 origin = argv[0]+1;
2039             } else if (!argv[0][1] || !argv[0][2]) {
2040                 struct server *sNode = GetServerN(argv[0]);
2041                 origin = sNode ? sNode->name : 0;
2042             } else {
2043                 struct userNode *uNode = GetUserN(argv[0]);
2044                 origin = uNode ? uNode->nick : 0;
2045             }
2046         } else
2047             origin = 0;
2048         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
2049             res = func(origin, argc-cmd, argv+cmd);
2050     }
2051     if (!res) {
2052         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
2053     } else if (!recursive) {
2054         unsigned int i;
2055         for (i=0; i<dead_users.used; i++)
2056             free_user(dead_users.list[i]);
2057         dead_users.used = 0;
2058         for (i=0; i<dead_channels.used; i++)
2059             UnlockChannel(dead_channels.list[i]);
2060         dead_channels.used = 0;
2061     }
2062     return res;
2063 }
2064
2065 static void
2066 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
2067 {
2068     char *j, old;
2069
2070     do {
2071         j = target_list;
2072         while (*j != 0 && *j != ',')
2073             j++;
2074         old = *j;
2075         *j = 0;
2076
2077         if (IsChannelName(target_list)
2078             || (target_list[0] == '0' && target_list[1] == '\0')) {
2079             struct chanNode *chan = GetChannel(target_list);
2080
2081             if (chan) {
2082                 if (cf)
2083                     cf(chan, data);
2084             } else {
2085                 if (nc)
2086                     nc(target_list, data);
2087             }
2088         } else {
2089             struct userNode *user;
2090             struct privmsg_desc *pd = data;
2091
2092             pd->is_qualified = 0;
2093             if (*target_list == '@') {
2094                 user = NULL;
2095             } else if (strchr(target_list, '@')) {
2096                 struct server *server;
2097
2098                 pd->is_qualified = 1;
2099                 user = GetUserH(strtok(target_list, "@"));
2100                 server = GetServerH(strtok(NULL, "@"));
2101
2102                 if (user && (user->uplink != server)) {
2103                     /* Don't attempt to index into any arrays
2104                        using a user's numeric on another server. */
2105                     user = NULL;
2106                 }
2107             } else {
2108                 user = GetUserN(target_list);
2109             }
2110
2111             if (user) {
2112                 if (uf)
2113                     uf(user, data);
2114             } else {
2115                 if (nu)
2116                     nu(target_list, data);
2117             }
2118         }
2119         target_list = j+1;
2120     } while (old == ',');
2121 }
2122
2123 static int
2124 get_local_numeric(void)
2125 {
2126     static unsigned int next_numeric = 0;
2127     if (self->clients > self->num_mask)
2128         return -1;
2129     while (self->users[next_numeric])
2130         if (++next_numeric > self->num_mask)
2131             next_numeric = 0;
2132     return next_numeric;
2133 }
2134
2135 static void
2136 make_numeric(struct server *svr, int local_num, char *outbuf)
2137 {
2138     int slen, llen;
2139
2140     if (force_n2k || svr->numeric[1]) {
2141         slen = 2;
2142         llen = 3;
2143     } else {
2144         slen = 1;
2145         llen = (local_num < 64*64) ? 2 : 3;
2146     }
2147     strncpy(outbuf, svr->numeric, slen);
2148     inttobase64(outbuf+slen, local_num, llen);
2149     outbuf[slen+llen] = 0;
2150 }
2151
2152 struct server *
2153 AddServer(struct server *uplink, const char *name, int hops, unsigned long boot, unsigned long link_time, const char *numeric, const char *description)
2154 {
2155     struct server* sNode;
2156     int slen, mlen;
2157
2158     if ((sNode = GetServerN(numeric))) {
2159         /* This means we're trying to re-add an existant server.
2160          * To be safe, we should forget the previous incarnation.
2161          * (And all its linked servers.)
2162          *
2163          * It usually only happens in replays when the original
2164          * had a ping timeout and the replay didn't (because
2165          * replaying a ping timeout invariably gets things wrong).
2166          */
2167         DelServer(sNode, 0, NULL);
2168     }
2169
2170     switch (strlen(numeric)) {
2171     case 5: slen = 2; mlen = 3; break;
2172     case 4: slen = 1; mlen = 3; break;
2173     case 3: slen = 1; mlen = 2; break;
2174     default:
2175         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
2176         return NULL;
2177     }
2178
2179     sNode = calloc(1, sizeof(*sNode));
2180     sNode->uplink = uplink;
2181     safestrncpy(sNode->name, name, sizeof(sNode->name));
2182     sNode->num_mask = base64toint(numeric+slen, mlen);
2183     sNode->hops = hops;
2184     sNode->boot = boot;
2185     sNode->link_time = link_time;
2186     strncpy(sNode->numeric, numeric, slen);
2187     safestrncpy(sNode->description, description, sizeof(sNode->description));
2188     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
2189     serverList_init(&sNode->children);
2190     if (sNode->uplink) {
2191         /* uplink may be NULL if we're just building ourself */
2192         serverList_append(&sNode->uplink->children, sNode);
2193     }
2194     servers_num[base64toint(numeric, slen)] = sNode;
2195     dict_insert(servers, sNode->name, sNode);
2196     return sNode;
2197 }
2198
2199 void DelServer(struct server* serv, int announce, const char *message)
2200 {
2201     unsigned int i;
2202
2203     /* If we receive an ERROR command before the SERVER
2204      * command a NULL server can be passed */
2205     if (!serv)
2206         return;
2207
2208     /* Hrm, what's the right way to SQUIT some other server?
2209      * (This code is only to handle killing juped servers.) */
2210     if (announce && (serv->uplink == self) && (serv != self->uplink))
2211         irc_squit(serv, message, NULL);
2212
2213     /* must recursively remove servers linked to this one first */
2214     for (i=serv->children.used;i>0;)
2215         if (serv->children.list[--i] != self)
2216             DelServer(serv->children.list[i], false, NULL);
2217
2218     /* clean up server's user hash tables */
2219     for (i=0;i<=serv->num_mask;i++)
2220         if (serv->users[i])
2221             DelUser(serv->users[i], NULL, false, "server delinked");
2222
2223     /* delete server */
2224     if (serv->uplink)
2225         serverList_remove(&serv->uplink->children, serv);
2226     if (serv == self->uplink)
2227         self->uplink = NULL;
2228     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
2229     dict_remove(servers, serv->name);
2230     serverList_clean(&serv->children);
2231     free(serv->users);
2232     free(serv);
2233 }
2234
2235 struct userNode *
2236 AddLocalUser(const char *nick, const char *ident, const char *hostname, const char *desc, const char *modes)
2237 {
2238     char numeric[COMBO_NUMERIC_LEN+1];
2239     int local_num = get_local_numeric();
2240     unsigned long timestamp = now;
2241     struct userNode *old_user = GetUserH(nick);
2242
2243     if (!modes)
2244         modes = "+oik";
2245     if (old_user) {
2246         if (IsLocal(old_user))
2247             return old_user;
2248         timestamp = old_user->timestamp - 1;
2249     }
2250     if (local_num == -1) {
2251         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
2252         return 0;
2253     }
2254     if (!hostname)
2255         hostname = self->name;
2256     make_numeric(self, local_num, numeric);
2257     return AddUser(self, nick, ident, hostname, modes, numeric, desc, now, "AAAAAA");
2258 }
2259
2260 struct userNode *
2261 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
2262 {
2263     char numeric[COMBO_NUMERIC_LEN+1];
2264     int local_num = get_local_numeric();
2265     unsigned long timestamp = now;
2266     struct userNode *old_user = GetUserH(nick);
2267
2268     if (old_user) {
2269         if (IsLocal(old_user))
2270             return old_user;
2271         timestamp = old_user->timestamp - 1;
2272     }
2273     if (local_num == -1) {
2274         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
2275         return 0;
2276     }
2277     make_numeric(self, local_num, numeric);
2278     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
2279 }
2280
2281 int
2282 is_valid_nick(const char *nick) {
2283     unsigned int ii;
2284     /* IRC has some of The Most Fucked-Up ideas about character sets
2285      * in the world.. */
2286     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
2287         return 0;
2288     for (ii = 0; nick[ii]; ++ii)
2289         if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii]))
2290             return 0;
2291     if (strlen(nick) > nicklen)
2292         return 0;
2293     return 1;
2294 }
2295
2296 static struct userNode*
2297 AddUser(struct server* uplink, const char *nick, const char *ident, const char *hostname, const char *modes, const char *numeric, const char *userinfo, unsigned long timestamp, const char *realip)
2298 {
2299     struct userNode *oldUser, *uNode;
2300     unsigned int n, ignore_user, dummy;
2301
2302     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
2303         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", (void*)uplink, nick, numeric);
2304         return NULL;
2305     }
2306
2307     if (!uplink) {
2308         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", (void*)uplink, nick, numeric);
2309         return NULL;
2310     }
2311
2312     if (uplink != GetServerN(numeric)) {
2313         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", (void*)uplink, nick, numeric, uplink->name);
2314         return NULL;
2315     }
2316
2317     dummy = modes && modes[0] == '*';
2318     if (dummy) {
2319         ++modes;
2320     } else if (!is_valid_nick(nick)) {
2321         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", (void*)uplink, nick);
2322         return NULL;
2323     }
2324
2325     ignore_user = 0;
2326     if ((oldUser = GetUserH(nick))) {
2327         if (IsLocal(oldUser)
2328             && (IsService(oldUser) || IsPersistent(oldUser))) {
2329             /* The service should collide the new user off - but not
2330              * if the new user is coming in during a burst.  (During a
2331              * burst, the bursting server will kill either our user --
2332              * triggering a ReintroduceUser() -- or its own.)
2333              */
2334             oldUser->timestamp = timestamp - 1;
2335             ignore_user = 1;
2336             if (!uplink->burst)
2337                 irc_user(oldUser);
2338         } else if (oldUser->timestamp > timestamp) {
2339             /* "Old" user is really newer; remove them. */
2340             DelUser(oldUser, 0, 1, "Overruled by older nick");
2341         } else {
2342             /* User being added is too new; do not add them to
2343              * clients, but do add them to the server's list, since it
2344              * will send a KILL and QUIT soon. */
2345             ignore_user = 1;
2346         }
2347     }
2348
2349     /* create new usernode and set all values */
2350     uNode = calloc(1, sizeof(*uNode));
2351     uNode->nick = strdup(nick);
2352     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
2353     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
2354     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
2355     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
2356     irc_p10_pton(&uNode->ip, realip);
2357     uNode->timestamp = timestamp;
2358     uNode->idle_since = timestamp;
2359     modeList_init(&uNode->channels);
2360     uNode->uplink = uplink;
2361     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
2362         uNode->uplink->max_clients = uNode->uplink->clients;
2363     }
2364     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
2365     uNode->uplink->users[uNode->num_local] = uNode;
2366     mod_usermode(uNode, modes);
2367     if (dummy)
2368         uNode->modes |= FLAGS_DUMMY;
2369     if (ignore_user)
2370         return uNode;
2371
2372     dict_insert(clients, uNode->nick, uNode);
2373     if (dict_size(clients) > max_clients) {
2374         max_clients = dict_size(clients);
2375         max_clients_time = now;
2376     }
2377     if (IsLocal(uNode))
2378         irc_user(uNode);
2379     for (n=0; (n<nuf_used) && !uNode->dead; n++)
2380         nuf_list[n](uNode);
2381     return uNode;
2382 }
2383
2384 /* removes user from it's server's hash table and nick hash table */
2385 void
2386 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
2387 {
2388     unsigned int n;
2389
2390     verify(user);
2391
2392     /* mark them as dead, in case anybody cares */
2393     user->dead = 1;
2394
2395     /* remove user from all channels */
2396     while (user->channels.used > 0)
2397         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, NULL, false);
2398
2399     /* Call these in reverse order so ChanServ can update presence
2400        information before NickServ nukes the handle_info. */
2401     for (n = duf_used; n > 0; )
2402         duf_list[--n](user, killer, why);
2403
2404     user->uplink->clients--;
2405     user->uplink->users[user->num_local] = NULL;
2406     if (IsOper(user))
2407         userList_remove(&curr_opers, user);
2408     /* remove from global dictionary, but not if after a collide */
2409     if (user == dict_find(clients, user->nick, NULL))
2410         dict_remove(clients, user->nick);
2411
2412     if (IsInvisible(user))
2413         invis_clients--;
2414
2415     if (announce) {
2416         if (IsLocal(user))
2417             irc_quit(user, why);
2418         else
2419             irc_kill(killer, user, why);
2420     }
2421
2422     if (IsLocal(user)) {
2423         unsigned int num = user->num_local;
2424         if (num < num_privmsg_funcs)
2425             privmsg_funcs[num] = NULL;
2426         if (num < num_notice_funcs)
2427             notice_funcs[num] = NULL;
2428     }
2429
2430     modeList_clean(&user->channels);
2431     /* We don't free them, in case we try to privmsg them or something
2432      * (like when a stupid oper kills themself).  We just put them onto
2433      * a list of clients that get freed after processing each line.
2434      */
2435     if (dead_users.size)
2436         userList_append(&dead_users, user);
2437     else
2438         free_user(user);
2439 }
2440
2441 static void call_oper_funcs(struct userNode *user);
2442
2443 void mod_usermode(struct userNode *user, const char *mode_change) {
2444     int add = 1;
2445     const char *word = mode_change;
2446
2447     if (!user || !mode_change)
2448         return;
2449     while (*word != ' ' && *word) word++;
2450     while (*word == ' ') word++;
2451     while (1) {
2452 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
2453         switch (*mode_change++) {
2454         case 0: case ' ': return;
2455         case '+': add = 1; break;
2456         case '-': add = 0; break;
2457         case 'o':
2458             do_user_mode(FLAGS_OPER);
2459             if (!add) {
2460                 operdel(user);
2461                 userList_remove(&curr_opers, user);
2462             } else if (!userList_contains(&curr_opers, user)) {
2463                 operadd(user);
2464                 userList_append(&curr_opers, user);
2465                 call_oper_funcs(user);
2466             }
2467             break;
2468         case 'i': do_user_mode(FLAGS_INVISIBLE);
2469             if (add)
2470                 invis_clients++;
2471             else
2472                 invis_clients--;
2473             break;
2474         case 'w': do_user_mode(FLAGS_WALLOP); break;
2475         case 'd': do_user_mode(FLAGS_DEAF); break;
2476         case 'k': do_user_mode(FLAGS_SERVICE); break;
2477         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2478         case 'n': do_user_mode(FLAGS_NOCHAN); break;
2479         case 'I': do_user_mode(FLAGS_NOIDLE); break;
2480         case 'S': do_user_mode(FLAGS_NETSERV); break;
2481         case 'D': do_user_mode(FLAGS_SECURITYSERV); break;
2482         case 'X': do_user_mode(FLAGS_XTRAOP); break;
2483         case 's': do_user_mode(FLAGS_SERVERNOTICE); break;
2484         case 'H': do_user_mode(FLAGS_HIDDENOPER); break;
2485         case 't': do_user_mode(FLAGS_SEENOIDLE); break;
2486         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2487         case 'r':
2488             if (*word) {
2489                 char tag[MAXLEN];
2490                 char *sep;
2491                 unsigned int ii;
2492                 unsigned long ts = 0;
2493                 unsigned long id = 0;
2494
2495                 for (ii=0; (*word != ' ') && (*word != '\0') && (*word != ':'); )
2496                     tag[ii++] = *word++;
2497                 if (*word == ':') {
2498                     ts = strtoul(word + 1, &sep, 10);
2499                     if (*sep == ':') {
2500                         id = strtoul(sep + 1, &sep, 10);
2501                     } else if (*sep != ' ' && *sep != '\0') {
2502                         ts = 0;
2503                     }
2504                     word = sep;
2505                 }
2506                 tag[ii] = '\0';
2507                 while (*word == ' ')
2508                     word++;
2509                 call_account_func(user, tag, ts, id);
2510             }
2511             break;
2512         case 'h':
2513             if (*word) {
2514                 char mask[MAXLEN];
2515                 char *host, *ident;
2516                 unsigned int ii;
2517
2518                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2519                     mask[ii++] = *word++;
2520                 mask[ii] = 0;
2521                 while (*word == ' ')
2522                     word++;
2523
2524                 if ((host = strrchr(mask, '@'))) {
2525                     ident = mask;
2526                     *host++ = '\0';
2527                 } else {
2528                     ident = NULL;
2529                     host = mask;
2530                 }
2531                 user->modes |= FLAGS_HIDDEN_HOST;
2532                 assign_fakehost(user, host, ident, 0, 0);
2533             }
2534             break;
2535         }
2536 #undef do_user_mode
2537     }
2538 }
2539
2540 static int
2541 keyncpy(char output[], char input[], size_t output_size)
2542 {
2543     size_t ii;
2544
2545     if (input[0] == ':')
2546     {
2547         output[0] = '\0';
2548         return 1;
2549     }
2550
2551     for (ii = 0; (ii + 1 < output_size) && (input[ii] != '\0'); ++ii)
2552     {
2553         output[ii] = input[ii];
2554     }
2555
2556     output[ii] = '\0';
2557     return 0;
2558 }
2559
2560 struct mod_chanmode *
2561 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags, short base_oplevel)
2562 {
2563     struct mod_chanmode *change;
2564     unsigned int ii, in_arg, ch_arg, add;
2565
2566     if (argc == 0)
2567         return NULL;
2568     if (!(change = mod_chanmode_alloc(argc - 1)))
2569         return NULL;
2570
2571     for (ii = ch_arg = 0, in_arg = add = 1;
2572          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2573          ++ii) {
2574         switch (modes[0][ii]) {
2575         case '+':
2576             add = 1;
2577             break;
2578         case '-':
2579             add = 0;
2580             break;
2581 #define do_chan_mode(FLAG) do { if (add) change->modes_set |= (FLAG), change->modes_clear &= ~(FLAG); else change->modes_clear |= (FLAG), change->modes_set &= ~(FLAG); } while(0)
2582         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2583         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2584         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2585         case 'M': do_chan_mode(MODE_NOAMSGS); break;
2586         case 'N': do_chan_mode(MODE_NONOTICES); break;
2587         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2588         case 'm': do_chan_mode(MODE_MODERATED); break;
2589         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2590         case 'p': do_chan_mode(MODE_PRIVATE); break;
2591         case 'r': do_chan_mode(MODE_REGONLY); break;
2592         case 's': do_chan_mode(MODE_SECRET); break;
2593         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2594         case 'z':
2595           if (!(flags & MCP_REGISTERED) && (!(flags & MCP_IGN_REGISTERED) || add)) {
2596             do_chan_mode(MODE_REGISTERED);
2597           } else if (flags & MCP_IGN_REGISTERED) {
2598             /* ignore the modechange but continue parsing */
2599           } else {
2600             mod_chanmode_free(change);
2601             return NULL;
2602           }
2603           break;
2604 #undef do_chan_mode
2605         case 'l':
2606             if (add) {
2607                 if (in_arg >= argc)
2608                     goto error;
2609                 change->modes_set |= MODE_LIMIT;
2610                 change->new_limit = atoi(modes[in_arg++]);
2611             } else {
2612                 change->modes_set &= ~MODE_LIMIT;
2613                 change->modes_clear |= MODE_LIMIT;
2614             }
2615             break;
2616         case 'a':
2617             if (add) {
2618                 if (in_arg >= argc)
2619                     goto error;
2620                 change->modes_set |= MODE_ACCESS;
2621                 change->new_access = atoi(modes[in_arg++]);
2622             } else {
2623                 change->modes_set &= ~MODE_ACCESS;
2624                 change->modes_clear |= MODE_ACCESS;
2625             }
2626             break;
2627         case 'k':
2628             if (add) {
2629                 if ((in_arg >= argc)
2630                     || keyncpy(change->new_key, modes[in_arg++], sizeof(change->new_key)))
2631                     goto error;
2632                 change->modes_set |= MODE_KEY;
2633             } else {
2634                 change->modes_clear |= MODE_KEY;
2635                 if (!(flags & MCP_KEY_FREE)) {
2636                     if (in_arg >= argc)
2637                         goto error;
2638                     in_arg++;
2639                 }
2640             }
2641             break;
2642         case 'f':
2643                     if (add) {
2644                             if (in_arg >= argc)
2645                     goto error;
2646                 char *mode = modes[in_arg++];
2647                 if(mode[0] == '!' && !(flags & MCP_OPERMODE)) { //noflood flag also for overriders
2648                     //only allow opers
2649                     goto error;
2650                 }
2651                 if(mode[0] == '+' || mode[0] == '@') {
2652                     mode++;
2653                 }
2654                 char *p;
2655                 int count = 0, time = 0;
2656                 for(p = mode; p[0]; p++) {
2657                     if(p[0] == ':') {
2658                         char tmpchar = p[0];
2659                         p[0] = '\0';
2660                         count = strtoul(mode,0,10);
2661                         p[0] = tmpchar;
2662                                                 p++;
2663                                                 time = strtoul(p,0,10);
2664                                                 break;
2665                                 }
2666                 }
2667                 if(count <= 0 || time <= 0 || count > 100 || time > 600) 
2668                                     goto error;
2669                                 change->modes_set |= MODE_NOFLOOD;
2670                                 safestrncpy(change->new_noflood, modes[in_arg - 1], sizeof(change->new_noflood));
2671                         } else {
2672                             change->modes_clear |= MODE_NOFLOOD;
2673                         }
2674         case 'F':
2675             if (add) {
2676                 if (in_arg >= argc)
2677                     goto error;
2678                 change->modes_set |= MODE_ALTCHAN;
2679                 safestrncpy(change->new_altchan, modes[in_arg++], sizeof(change->new_altchan));
2680             } else {
2681                 change->modes_clear |= MODE_ALTCHAN;
2682             }
2683             break;
2684         case 'U':
2685             if (flags & MCP_NO_APASS)
2686                 goto error;
2687             if (add)
2688             {
2689                 if ((in_arg >= argc)
2690                     || keyncpy(change->new_upass, modes[in_arg++], sizeof(change->new_upass)))
2691                     goto error;
2692                 change->modes_set |= MODE_UPASS;
2693             } else {
2694                 change->modes_clear |= MODE_UPASS;
2695                 if (!(flags & MCP_UPASS_FREE)) {
2696                     if (in_arg >= argc)
2697                         goto error;
2698                     in_arg++;
2699                 }
2700             }
2701             break;
2702         case 'A':
2703             if (flags & MCP_NO_APASS)
2704                 goto error;
2705             if (add) {
2706                 if ((in_arg >= argc)
2707                     || keyncpy(change->new_apass, modes[in_arg++], sizeof(change->new_apass)))
2708                     goto error;
2709                 change->modes_set |= MODE_APASS;
2710             } else {
2711                 change->modes_clear |= MODE_APASS;
2712                 if (!(flags & MCP_APASS_FREE)) {
2713                     if (in_arg >= argc)
2714                       goto error;
2715                     in_arg++;
2716                 }
2717             }
2718             break;
2719         case 'b':
2720             if (!(flags & MCP_ALLOW_OVB))
2721                 goto error;
2722             if (in_arg >= argc)
2723                 goto error;
2724             change->args[ch_arg].mode = MODE_BAN;
2725             if (!add)
2726                 change->args[ch_arg].mode |= MODE_REMOVE;
2727             change->args[ch_arg++].u.hostmask = modes[in_arg++];
2728             break;
2729         case 'o': case 'v':
2730         {
2731             struct userNode *victim;
2732             char *oplevel_str;
2733             int oplevel;
2734
2735             if (in_arg >= argc)
2736                 goto error;
2737             oplevel_str = strchr(modes[in_arg], ':');
2738             if (oplevel_str)
2739             {
2740                 /* XXYYY M #channel +o XXYYY:<oplevel> */
2741                 *oplevel_str++ = '\0';
2742                 oplevel = parse_oplevel(oplevel_str);
2743                 if (oplevel <= base_oplevel && !(flags & MCP_FROM_SERVER))
2744                     oplevel = base_oplevel + 1;
2745             }
2746             else if (channel->modes & MODE_UPASS)
2747                 oplevel = base_oplevel + 1;
2748             else
2749                 oplevel = MAXOPLEVEL;
2750
2751             /* Check that oplevel is within bounds. */
2752             if (oplevel > MAXOPLEVEL)
2753                 oplevel = MAXOPLEVEL;
2754
2755             if (!(flags & MCP_ALLOW_OVB))
2756                 goto error;
2757             if (in_arg >= argc)
2758                 goto error;
2759             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2760             if (!add)
2761                 change->args[ch_arg].mode |= MODE_REMOVE;
2762             if (flags & MCP_FROM_SERVER)
2763                 victim = GetUserN(modes[in_arg++]);
2764             else
2765                 victim = GetUserH(modes[in_arg++]);
2766             if (!victim)
2767                 continue;
2768             if ((change->args[ch_arg].u.member = GetUserMode(channel, victim)))
2769             {
2770                 /* Apply the oplevel change if the user is being (de-)opped */
2771                 if (modes[0][ii] == 'o')
2772                     change->args[ch_arg].u.member->oplevel = oplevel;
2773                 ch_arg++;
2774             }
2775             break;
2776         }
2777         default:
2778             if (!(flags & MCP_FROM_SERVER))
2779                 goto error;
2780             break;
2781         }
2782     }
2783     change->argc = ch_arg; /* in case any turned out to be ignored */
2784     if (change->modes_set & MODE_SECRET) {
2785         change->modes_set &= ~(MODE_PRIVATE);
2786         change->modes_clear |= MODE_PRIVATE;
2787     } else if (change->modes_set & MODE_PRIVATE) {
2788         change->modes_set &= ~(MODE_SECRET);
2789         change->modes_clear |= MODE_SECRET;
2790     }
2791     if (change->modes_clear & MODE_REGISTERED) {
2792         /* Horribly cheat by using the lock/unlock semantics. */
2793         LockChannel(channel);
2794         channelList_append(&dead_channels, channel);
2795     }
2796     return change;
2797   error:
2798     mod_chanmode_free(change);
2799     return NULL;
2800 }
2801
2802 struct chanmode_buffer {
2803     char modes[MAXLEN];
2804     char args[MAXLEN];
2805     struct chanNode *channel;
2806     struct userNode *actor;
2807     unsigned int modes_used;
2808     unsigned int args_used;
2809     size_t chname_len;
2810     unsigned int is_add : 1;
2811     unsigned int is_chanop : 1;
2812 };
2813
2814 static void
2815 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2816 {
2817     size_t arg_len = strlen(arg);
2818     if (buf->modes_used > (MAXMODEPARAMS) ||
2819         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2820         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2821         buf->modes[buf->modes_used + buf->args_used] = '\0';
2822         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2823         buf->modes[0] = buf->is_add ? '+' : '-';
2824         buf->modes_used = 1;
2825         buf->args_used = 0;
2826     }
2827     buf->modes[buf->modes_used++] = ch;
2828     buf->args[buf->args_used++] = ' ';
2829     memcpy(buf->args + buf->args_used, arg, arg_len);
2830     buf->args_used += arg_len;
2831 }
2832
2833 void
2834 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2835 {
2836     struct chanmode_buffer chbuf;
2837     unsigned int arg;
2838     struct modeNode *mn;
2839     char int_buff[32], mode = '\0';
2840
2841     assert(change->argc <= change->alloc_argc);
2842     memset(&chbuf, 0, sizeof(chbuf));
2843     chbuf.channel = channel;
2844     chbuf.actor = who;
2845     chbuf.chname_len = strlen(channel->name);
2846
2847     mn = GetUserMode(channel, who);
2848     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2849         chbuf.is_chanop = 1;
2850
2851     /* First remove modes */
2852     chbuf.is_add = 0;
2853     if (change->modes_clear) {
2854         if (mode != '-')
2855             chbuf.modes[chbuf.modes_used++] = mode = '-';
2856 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2857         DO_MODE_CHAR(PRIVATE, 'p');
2858         DO_MODE_CHAR(SECRET, 's');
2859         DO_MODE_CHAR(MODERATED, 'm');
2860         DO_MODE_CHAR(TOPICLIMIT, 't');
2861         DO_MODE_CHAR(INVITEONLY, 'i');
2862         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2863         DO_MODE_CHAR(LIMIT, 'l');
2864         DO_MODE_CHAR(ACCESS, 'a');
2865         DO_MODE_CHAR(ALTCHAN, 'F');
2866         DO_MODE_CHAR(NOFLOOD, 'f');
2867         DO_MODE_CHAR(DELAYJOINS, 'D');
2868         DO_MODE_CHAR(REGONLY, 'r');
2869         DO_MODE_CHAR(NOCOLORS, 'c');
2870         DO_MODE_CHAR(NOCTCPS, 'C');
2871         DO_MODE_CHAR(NONOTICES, 'N');
2872         DO_MODE_CHAR(NOAMSGS, 'M');
2873         DO_MODE_CHAR(REGISTERED, 'z');
2874 #undef DO_MODE_CHAR
2875         if (change->modes_clear & channel->modes & MODE_KEY)
2876             mod_chanmode_append(&chbuf, 'k', channel->key);
2877         if (change->modes_clear & channel->modes & MODE_UPASS)
2878             mod_chanmode_append(&chbuf, 'U', channel->upass);
2879         if (change->modes_clear & channel->modes & MODE_APASS)
2880             mod_chanmode_append(&chbuf, 'A', channel->apass);
2881     }
2882     for (arg = 0; arg < change->argc; ++arg) {
2883         if (!(change->args[arg].mode & MODE_REMOVE))
2884             continue;
2885         if (mode != '-')
2886             chbuf.modes[chbuf.modes_used++] = mode = '-';
2887         switch (change->args[arg].mode & ~MODE_REMOVE) {
2888         case MODE_BAN:
2889             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2890             break;
2891         default:
2892             if (change->args[arg].mode & MODE_CHANOP)
2893                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2894             if (change->args[arg].mode & MODE_VOICE)
2895                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2896             break;
2897         }
2898     }
2899
2900     /* Then set them */
2901     chbuf.is_add = 1;
2902     if (change->modes_set) {
2903         if (mode != '+')
2904             chbuf.modes[chbuf.modes_used++] = mode = '+';
2905 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2906         DO_MODE_CHAR(PRIVATE, 'p');
2907         DO_MODE_CHAR(SECRET, 's');
2908         DO_MODE_CHAR(MODERATED, 'm');
2909         DO_MODE_CHAR(TOPICLIMIT, 't');
2910         DO_MODE_CHAR(INVITEONLY, 'i');
2911         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2912         DO_MODE_CHAR(DELAYJOINS, 'D');
2913         DO_MODE_CHAR(REGONLY, 'r');
2914         DO_MODE_CHAR(NOCOLORS, 'c');
2915         DO_MODE_CHAR(NOCTCPS, 'C');
2916         DO_MODE_CHAR(NONOTICES, 'N');
2917         DO_MODE_CHAR(NOAMSGS, 'M');
2918         DO_MODE_CHAR(REGISTERED, 'z');
2919 #undef DO_MODE_CHAR
2920         if(change->modes_set & MODE_KEY)
2921             mod_chanmode_append(&chbuf, 'k', change->new_key);
2922         if (change->modes_set & MODE_UPASS)
2923             mod_chanmode_append(&chbuf, 'U', change->new_upass);
2924         if (change->modes_set & MODE_APASS)
2925             mod_chanmode_append(&chbuf, 'A', change->new_apass);
2926         if(change->modes_set & MODE_LIMIT) {
2927             sprintf(int_buff, "%d", change->new_limit);
2928             mod_chanmode_append(&chbuf, 'l', int_buff);
2929         }
2930         if(change->modes_set & MODE_ACCESS) {
2931             sprintf(int_buff, "%d", change->new_access);
2932             mod_chanmode_append(&chbuf, 'a', int_buff);
2933         }
2934         if (change->modes_set & MODE_ALTCHAN)
2935             mod_chanmode_append(&chbuf, 'F', change->new_altchan);
2936         if (change->modes_set & MODE_NOFLOOD)
2937             mod_chanmode_append(&chbuf, 'f', change->new_noflood);
2938     }
2939     for (arg = 0; arg < change->argc; ++arg) {
2940         if (change->args[arg].mode & MODE_REMOVE)
2941             continue;
2942         if (mode != '+')
2943             chbuf.modes[chbuf.modes_used++] = mode = '+';
2944         switch (change->args[arg].mode) {
2945         case MODE_BAN:
2946             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2947             break;
2948         default:
2949             if (change->args[arg].mode & MODE_CHANOP)
2950                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2951             if (change->args[arg].mode & MODE_VOICE)
2952                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2953             break;
2954         }
2955     }
2956
2957     /* Flush the buffer and apply changes locally */
2958     if (chbuf.modes_used > 0) {
2959         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2960         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2961         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2962     }
2963     mod_chanmode_apply(who, channel, change);
2964 }
2965
2966 char *
2967 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2968 {
2969     unsigned int used = 0;
2970     unsigned int args_used = 0;
2971     char args[MAXLEN];
2972
2973     assert(change->argc <= change->alloc_argc);
2974     if (change->modes_clear) {
2975         outbuff[used++] = '-';
2976 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2977         DO_MODE_CHAR(PRIVATE, 'p');
2978         DO_MODE_CHAR(SECRET, 's');
2979         DO_MODE_CHAR(MODERATED, 'm');
2980         DO_MODE_CHAR(TOPICLIMIT, 't');
2981         DO_MODE_CHAR(INVITEONLY, 'i');
2982         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2983         DO_MODE_CHAR(LIMIT, 'l');
2984         DO_MODE_CHAR(ACCESS, 'a');
2985         DO_MODE_CHAR(ALTCHAN, 'F');
2986         DO_MODE_CHAR(NOFLOOD, 'f');
2987         DO_MODE_CHAR(KEY, 'k');
2988         DO_MODE_CHAR(UPASS, 'U');
2989         DO_MODE_CHAR(APASS, 'A');
2990         DO_MODE_CHAR(DELAYJOINS, 'D');
2991         DO_MODE_CHAR(REGONLY, 'r');
2992         DO_MODE_CHAR(NOCOLORS, 'c');
2993         DO_MODE_CHAR(NOCTCPS, 'C');
2994         DO_MODE_CHAR(NONOTICES, 'N');
2995         DO_MODE_CHAR(NOAMSGS, 'M');
2996         DO_MODE_CHAR(REGISTERED, 'z');
2997 #undef DO_MODE_CHAR
2998     }
2999     if (change->modes_set) {
3000         outbuff[used++] = '+';
3001 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
3002         DO_MODE_CHAR(PRIVATE, 'p');
3003         DO_MODE_CHAR(SECRET, 's');
3004         DO_MODE_CHAR(MODERATED, 'm');
3005         DO_MODE_CHAR(TOPICLIMIT, 't');
3006         DO_MODE_CHAR(INVITEONLY, 'i');
3007         DO_MODE_CHAR(NOPRIVMSGS, 'n');
3008         DO_MODE_CHAR(DELAYJOINS, 'D');
3009         DO_MODE_CHAR(REGONLY, 'r');
3010         DO_MODE_CHAR(NOCOLORS, 'c');
3011         DO_MODE_CHAR(NOCTCPS, 'C');
3012         DO_MODE_CHAR(NONOTICES, 'N');
3013                 DO_MODE_CHAR(NOAMSGS, 'M');
3014         DO_MODE_CHAR(REGISTERED, 'z');
3015         DO_MODE_CHAR(LIMIT, 'l'), args_used += sprintf(args + args_used, " %d", change->new_limit);
3016         DO_MODE_CHAR(KEY, 'k'), args_used += sprintf(args + args_used, " %s", change->new_key);
3017         DO_MODE_CHAR(KEY, 'a'), args_used += sprintf(args + args_used, " %d", change->new_access);
3018         DO_MODE_CHAR(KEY, 'F'), args_used += sprintf(args + args_used, " %s", change->new_altchan);
3019         DO_MODE_CHAR(KEY, 'f'), args_used += sprintf(args + args_used, " %s", change->new_noflood);
3020         DO_MODE_CHAR(UPASS, 'U'), args_used += sprintf(args + args_used, " %s", change->new_upass);
3021         DO_MODE_CHAR(APASS, 'A'), args_used += sprintf(args + args_used, " %s", change->new_apass);
3022 #undef DO_MODE_CHAR
3023     }
3024     args[args_used] = '\0';
3025     strcpy(outbuff + used, args);
3026     return outbuff;
3027 }
3028
3029 static int
3030 clear_chanmode(struct chanNode *channel, const char *modes)
3031 {
3032     unsigned int cleared;
3033
3034     for (cleared = 0; *modes; modes++) {
3035         switch (*modes) {
3036         case 'o': cleared |= MODE_CHANOP; break;
3037         case 'v': cleared |= MODE_VOICE; break;
3038         case 'p': cleared |= MODE_PRIVATE; break;
3039         case 's': cleared |= MODE_SECRET; break;
3040         case 'm': cleared |= MODE_MODERATED; break;
3041         case 't': cleared |= MODE_TOPICLIMIT; break;
3042         case 'i': cleared |= MODE_INVITEONLY; break;
3043         case 'n': cleared |= MODE_NOPRIVMSGS; break;
3044         case 'F':
3045             cleared |= MODE_ALTCHAN;
3046             channel->altchan[0] = '\0';
3047             break;
3048         case 'f':
3049             cleared |= MODE_NOFLOOD;
3050             channel->noflood[0] = '\0';
3051             break;
3052         case 'k':
3053             cleared |= MODE_KEY;
3054             channel->key[0] = '\0';
3055             break;
3056         case 'A':
3057             cleared |= MODE_APASS;
3058             channel->apass[0] = '\0';
3059             break;
3060         case 'U':
3061             cleared |= MODE_UPASS;
3062             channel->upass[0] = '\0';
3063             break;
3064         case 'l':
3065             cleared |= MODE_LIMIT;
3066             channel->limit = 0;
3067             break;
3068         case 'a':
3069             cleared |= MODE_ACCESS;
3070             channel->access = 0;
3071             break;
3072         case 'b': cleared |= MODE_BAN; break;
3073         case 'D': cleared |= MODE_DELAYJOINS; break;
3074         case 'r': cleared |= MODE_REGONLY; break;
3075         case 'c': cleared |= MODE_NOCOLORS; break;
3076         case 'C': cleared |= MODE_NOCTCPS; break;
3077         case 'M': cleared |= MODE_NOAMSGS; break;
3078         case 'N': cleared |= MODE_NONOTICES; break;
3079         case 'z': cleared |= MODE_REGISTERED; break;
3080         }
3081     }
3082
3083     if (!cleared)
3084         return 1;
3085
3086     /* Remove simple modes. */
3087     channel->modes &= ~cleared;
3088
3089     /* If removing bans, kill 'em all. */
3090     if ((cleared & MODE_BAN) && channel->banlist.used) {
3091         unsigned int i;
3092         for (i=0; i<channel->banlist.used; i++)
3093             free(channel->banlist.list[i]);
3094         channel->banlist.used = 0;
3095     }
3096
3097     /* Remove member modes. */
3098     if ((cleared & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
3099         int mask = ~(cleared & (MODE_CHANOP | MODE_VOICE));
3100         unsigned int i;
3101
3102         for (i = 0; i < channel->members.used; i++)
3103             channel->members.list[i]->modes &= mask;
3104     }
3105
3106     return 1;
3107 }
3108
3109 void
3110 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
3111 {
3112     unsigned int numeric = user->num_local;
3113     if (numeric >= num_privmsg_funcs) {
3114         int newnum = numeric + 8, ii;
3115         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
3116         for (ii = num_privmsg_funcs; ii < newnum; ++ii)
3117             privmsg_funcs[ii] = NULL;
3118         num_privmsg_funcs = newnum;
3119     }
3120     if (privmsg_funcs[numeric])
3121         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
3122     privmsg_funcs[numeric] = handler;
3123 }
3124
3125 void
3126 unreg_privmsg_func(struct userNode *user)
3127 {
3128     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
3129         return; /* this really only works with users */
3130
3131     privmsg_funcs[user->num_local] = NULL;
3132 }
3133
3134
3135 void
3136 reg_notice_func(struct userNode *user, privmsg_func_t handler)
3137 {
3138     unsigned int numeric = user->num_local;
3139     if (numeric >= num_notice_funcs) {
3140         int newnum = numeric + 8, ii;
3141         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
3142         for (ii = num_notice_funcs; ii < newnum; ++ii)
3143             notice_funcs[ii] = NULL;
3144         num_notice_funcs = newnum;
3145     }
3146     if (notice_funcs[numeric])
3147         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
3148     notice_funcs[numeric] = handler;
3149 }
3150
3151 void
3152 unreg_notice_func(struct userNode *user)
3153 {
3154     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
3155         return; /* this really only works with users */
3156
3157     notice_funcs[user->num_local] = NULL;
3158 }
3159
3160 static void
3161 send_burst(void)
3162 {
3163     unsigned int i, hop, max_hop=1;
3164     dict_iterator_t it;
3165
3166     /* burst (juped) servers, closest first (except self, which is sent already) */
3167     for (i=0; i<ArrayLength(servers_num); i++)
3168         if (servers_num[i] && servers_num[i]->hops > max_hop)
3169             max_hop = servers_num[i]->hops;
3170     for (hop=1; hop<=max_hop; hop++) {
3171         for (i=0;i<ArrayLength(servers_num);i++) {
3172             if (servers_num[i]
3173                 && (servers_num[i]->hops == hop)
3174                 && (servers_num[i] != self->uplink))
3175                 irc_server(servers_num[i]);
3176         }
3177     }
3178
3179     /* burst local nicks */
3180     for (i=0; i<=self->num_mask; i++)
3181         if (self->users[i])
3182             irc_user(self->users[i]);
3183
3184     /* build dict of unbursted channel names (just copy existing channels) */
3185     unbursted_channels = dict_new();
3186     for (it = dict_first(channels); it; it = iter_next(it))
3187         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
3188 }