miscellaneous bugfixes and indentation fixes
[srvx.git] / src / proto-p10.c
1 /* proto-p10.c - IRC protocol output
2  * Copyright 2000-2004 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_GET                 "GET"
44 #define CMD_GLINE               "GLINE"
45 #define CMD_HASH                "HASH"
46 #define CMD_HELP                "HELP"
47 #define CMD_INFO                "INFO"
48 #define CMD_INVITE              "INVITE"
49 #define CMD_ISON                "ISON"
50 #define CMD_JOIN                "JOIN"
51 #define CMD_JUPE                "JUPE"
52 #define CMD_KICK                "KICK"
53 #define CMD_KILL                "KILL"
54 #define CMD_LINKS               "LINKS"
55 #define CMD_LIST                "LIST"
56 #define CMD_LUSERS              "LUSERS"
57 #define CMD_MAP                 "MAP"
58 #define CMD_MODE                "MODE"
59 #define CMD_MOTD                "MOTD"
60 #define CMD_NAMES               "NAMES"
61 #define CMD_NICK                "NICK"
62 #define CMD_NOTICE              "NOTICE"
63 #define CMD_OPER                "OPER"
64 #define CMD_OPMODE              "OPMODE"
65 #define CMD_PART                "PART"
66 #define CMD_PASS                "PASS"
67 #define CMD_PING                "PING"
68 #define CMD_PONG                "PONG"
69 #define CMD_POST                "POST"
70 #define CMD_PRIVMSG             "PRIVMSG"
71 #define CMD_PRIVS               "PRIVS"
72 #define CMD_PROTO               "PROTO"
73 #define CMD_QUIT                "QUIT"
74 #define CMD_REHASH              "REHASH"
75 #define CMD_RESET               "RESET"
76 #define CMD_RESTART             "RESTART"
77 #define CMD_RPING               "RPING"
78 #define CMD_RPONG               "RPONG"
79 #define CMD_SERVER              "SERVER"
80 #define CMD_SERVLIST            "SERVLIST"
81 #define CMD_SERVSET             "SERVSET"
82 #define CMD_SET                 "SET"
83 #define CMD_SETTIME             "SETTIME"
84 #define CMD_SILENCE             "SILENCE"
85 #define CMD_SQUERY              "SQUERY"
86 #define CMD_SQUIT               "SQUIT"
87 #define CMD_STATS               "STATS"
88 #define CMD_SVSNICK             "SVSNICK"
89 #define CMD_TIME                "TIME"
90 #define CMD_TOPIC               "TOPIC"
91 #define CMD_TRACE               "TRACE"
92 #define CMD_UPING               "UPING"
93 #define CMD_USER                "USER"
94 #define CMD_USERHOST            "USERHOST"
95 #define CMD_USERIP              "USERIP"
96 #define CMD_VERSION             "VERSION"
97 #define CMD_WALLCHOPS           "WALLCHOPS"
98 #define CMD_WALLOPS             "WALLOPS"
99 #define CMD_WALLUSERS           "WALLUSERS"
100 #define CMD_WALLVOICES          "WALLVOICES"
101 #define CMD_WHO                 "WHO"
102 #define CMD_WHOIS               "WHOIS"
103 #define CMD_WHOWAS              "WHOWAS"
104
105 /* Tokenized commands. */
106 #define TOK_ACCOUNT             "AC"
107 #define TOK_ADMIN               "AD"
108 #define TOK_ASLL                "LL"
109 #define TOK_AWAY                "A"
110 #define TOK_BURST               "B"
111 #define TOK_CLEARMODE           "CM"
112 #define TOK_CLOSE               "CLOSE"
113 #define TOK_CNOTICE             "CN"
114 #define TOK_CONNECT             "CO"
115 #define TOK_CPRIVMSG            "CP"
116 #define TOK_CREATE              "C"
117 #define TOK_DESTRUCT            "DE"
118 #define TOK_DESYNCH             "DS"
119 #define TOK_DIE                 "DIE"
120 #define TOK_DNS                 "DNS"
121 #define TOK_EOB                 "EB"
122 #define TOK_EOB_ACK             "EA"
123 #define TOK_ERROR               "Y"
124 #define TOK_FAKEHOST            "FA"
125 #define TOK_GET                 "GET"
126 #define TOK_GLINE               "GL"
127 #define TOK_HASH                "HASH"
128 #define TOK_HELP                "HELP"
129 #define TOK_INFO                "F"
130 #define TOK_INVITE              "I"
131 #define TOK_ISON                "ISON"
132 #define TOK_JOIN                "J"
133 #define TOK_JUPE                "JU"
134 #define TOK_KICK                "K"
135 #define TOK_KILL                "D"
136 #define TOK_LINKS               "LI"
137 #define TOK_LIST                "LIST"
138 #define TOK_LUSERS              "LU"
139 #define TOK_MAP                 "MAP"
140 #define TOK_MODE                "M"
141 #define TOK_MOTD                "MO"
142 #define TOK_NAMES               "E"
143 #define TOK_NICK                "N"
144 #define TOK_NOTICE              "O"
145 #define TOK_OPER                "OPER"
146 #define TOK_OPMODE              "OM"
147 #define TOK_PART                "L"
148 #define TOK_PASS                "PA"
149 #define TOK_PING                "G"
150 #define TOK_PONG                "Z"
151 #define TOK_POST                "POST"
152 #define TOK_PRIVMSG             "P"
153 #define TOK_PRIVS               "PRIVS"
154 #define TOK_PROTO               "PROTO"
155 #define TOK_QUIT                "Q"
156 #define TOK_REHASH              "REHASH"
157 #define TOK_RESET               "RESET"
158 #define TOK_RESTART             "RESTART"
159 #define TOK_RPING               "RI"
160 #define TOK_RPONG               "RO"
161 #define TOK_SERVER              "S"
162 #define TOK_SERVLIST            "SERVSET"
163 #define TOK_SERVSET             "SERVSET"
164 #define TOK_SET                 "SET"
165 #define TOK_SETTIME             "SE"
166 #define TOK_SILENCE             "U"
167 #define TOK_SQUERY              "SQUERY"
168 #define TOK_SQUIT               "SQ"
169 #define TOK_STATS               "R"
170 #define TOK_SVSNICK             "SN"
171 #define TOK_TIME                "TI"
172 #define TOK_TOPIC               "T"
173 #define TOK_TRACE               "TR"
174 #define TOK_UPING               "UP"
175 #define TOK_USER                "USER"
176 #define TOK_USERHOST            "USERHOST"
177 #define TOK_USERIP              "USERIP"
178 #define TOK_VERSION             "V"
179 #define TOK_WALLCHOPS           "WC"
180 #define TOK_WALLOPS             "WA"
181 #define TOK_WALLUSERS           "WU"
182 #define TOK_WALLVOICES          "WV"
183 #define TOK_WHO                 "H"
184 #define TOK_WHOIS               "W"
185 #define TOK_WHOWAS              "X"
186
187 /* Protocol messages; aliased to full commands or tokens depending
188    on compile-time configuration. ircu prefers tokens WITH THE
189    EXCEPTION OF THE SERVER AND PASS COMMANDS, which cannot be
190    tokenized, because clients' (ie. a linking server) commands are
191    only checked against the full command list.
192 */
193 #if defined(ENABLE_TOKENS)
194 #define TYPE(NAME)              TOK_ ## NAME
195 #else /* !ENABLE_TOKENS */
196 #define TYPE(NAME)              CMD_ ## NAME
197 #endif /* ENABLE_TOKENS */
198
199 #define P10_ACCOUNT             TYPE(ACCOUNT)
200 #define P10_ADMIN               TYPE(ADMIN)
201 #define P10_ASLL                TYPE(ASLL)
202 #define P10_AWAY                TYPE(AWAY)
203 #define P10_BURST               TYPE(BURST)
204 #define P10_CLEARMODE           TYPE(CLEARMODE)
205 #define P10_CLOSE               TYPE(CLOSE)
206 #define P10_CNOTICE             TYPE(CNOTICE)
207 #define P10_CONNECT             TYPE(CONNECT)
208 #define P10_CPRIVMSG            TYPE(CPRIVMSG)
209 #define P10_CREATE              TYPE(CREATE)
210 #define P10_DESTRUCT            TYPE(DESTRUCT)
211 #define P10_DESYNCH             TYPE(DESYNCH)
212 #define P10_DIE                 TYPE(DIE)
213 #define P10_DNS                 TYPE(DNS)
214 #define P10_EOB                 TYPE(EOB)
215 #define P10_EOB_ACK             TYPE(EOB_ACK)
216 #define P10_ERROR               TYPE(ERROR)
217 #define P10_FAKEHOST            TYPE(FAKEHOST)
218 #define P10_GET                 TYPE(GET)
219 #define P10_GLINE               TYPE(GLINE)
220 #define P10_HASH                TYPE(HASH)
221 #define P10_HELP                TYPE(HELP)
222 #define P10_INFO                TYPE(INFO)
223 #define P10_INVITE              TYPE(INVITE)
224 #define P10_ISON                TYPE(ISON)
225 #define P10_JOIN                TYPE(JOIN)
226 #define P10_JUPE                TYPE(JUPE)
227 #define P10_KICK                TYPE(KICK)
228 #define P10_KILL                TYPE(KILL)
229 #define P10_LINKS               TYPE(LINKS)
230 #define P10_LIST                TYPE(LIST)
231 #define P10_LUSERS              TYPE(LUSERS)
232 #define P10_MAP                 TYPE(MAP)
233 #define P10_MODE                TYPE(MODE)
234 #define P10_MOTD                TYPE(MOTD)
235 #define P10_NAMES               TYPE(NAMES)
236 #define P10_NICK                TYPE(NICK)
237 #define P10_NOTICE              TYPE(NOTICE)
238 #define P10_OPER                TYPE(OPER)
239 #define P10_OPMODE              TYPE(OPMODE)
240 #define P10_PART                TYPE(PART)
241 #define P10_PASS                CMD_PASS
242 #define P10_PING                TYPE(PING)
243 #define P10_PONG                TYPE(PONG)
244 #define P10_POST                TYPE(POST)
245 #define P10_PRIVMSG             TYPE(PRIVMSG)
246 #define P10_PRIVS               TYPE(PRIVS)
247 #define P10_PROTO               TYPE(PROTO)
248 #define P10_QUIT                TYPE(QUIT)
249 #define P10_REHASH              TYPE(REHASH)
250 #define P10_RESET               TYPE(RESET)
251 #define P10_RESTART             TYPE(RESTART)
252 #define P10_RPING               TYPE(RPING)
253 #define P10_RPONG               TYPE(RPONG)
254 #define P10_SERVER              CMD_SERVER
255 #define P10_SERVLIST            TYPE(SERVLIST)
256 #define P10_SERVSET             TYPE(SERVSET)
257 #define P10_SET                 TYPE(SET)
258 #define P10_SETTIME             TYPE(SETTIME)
259 #define P10_SILENCE             TYPE(SILENCE)
260 #define P10_SQUERY              TYPE(SQUERY)
261 #define P10_SQUIT               TYPE(SQUIT)
262 #define P10_STATS               TYPE(STATS)
263 #define P10_SVSNICK             TYPE(SVSNICK)
264 #define P10_TIME                TYPE(TIME)
265 #define P10_TOPIC               TYPE(TOPIC)
266 #define P10_TRACE               TYPE(TRACE)
267 #define P10_UPING               TYPE(UPING)
268 #define P10_USER                TYPE(USER)
269 #define P10_USERHOST            TYPE(USERHOST)
270 #define P10_USERIP              TYPE(USERIP)
271 #define P10_VERSION             TYPE(VERSION)
272 #define P10_WALLCHOPS           TYPE(WALLCHOPS)
273 #define P10_WALLOPS             TYPE(WALLOPS)
274 #define P10_WALLUSERS           TYPE(WALLUSERS)
275 #define P10_WALLVOICES          TYPE(WALLVOICES)
276 #define P10_WHO                 TYPE(WHO)
277 #define P10_WHOIS               TYPE(WHOIS)
278 #define P10_WHOWAS              TYPE(WHOWAS)
279
280 /* Servers claiming to have a boot or link time before PREHISTORY
281  * trigger errors to the log.  We hope no server has been running
282  * constantly since September 1994.  :)
283  */
284 #define PREHISTORY 780000000
285
286 static struct server *servers_num[64*64];
287 static privmsg_func_t *privmsg_funcs;
288 static unsigned int num_privmsg_funcs;
289 static privmsg_func_t *notice_funcs;
290 static unsigned int num_notice_funcs;
291 static struct dict *unbursted_channels;
292 static char *his_servername;
293 static char *his_servercomment;
294
295 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, time_t timestamp, const char *realip);
296
297 extern int off_channel;
298
299 /* Numerics can be XYY, XYYY, or XXYYY; with X's identifying the
300  * server and Y's indentifying the client on that server. */
301 struct server*
302 GetServerN(const char *numeric)
303 {
304     switch (strlen(numeric)) {
305     default:
306         return servers_num[base64toint(numeric, 2)];
307     case 4:
308     case 3:
309     case 1:
310         return servers_num[base64toint(numeric, 1)];
311     case 0:
312         return NULL;
313     }
314 }
315
316 struct userNode*
317 GetUserN(const char *numeric) /* using numeric */
318 {
319     struct userNode *un;
320     struct server *s;
321     int n, slen, ulen;
322
323     switch (strlen(numeric)) {
324     default:
325         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): numeric too long!", numeric);
326         return NULL;
327     case 5: slen = 2; ulen = 3; break;
328     case 4: slen = 1; ulen = 3; break;
329     case 3: slen = 1; ulen = 2; break;
330     case 2: case 1: case 0:
331         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): numeric too short!", numeric);
332         return NULL;
333     }
334     if (!(s = servers_num[base64toint(numeric, slen)])) {
335         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): couldn't find server (len=%d)!", numeric, slen);
336         return NULL;
337     }
338     n = base64toint(numeric+slen, ulen) & s->num_mask;
339     if (!(un = s->users[n])) {
340         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s) couldn't find user!", numeric);
341     }
342     return un;
343 }
344
345 static void
346 privmsg_user_helper(struct userNode *un, void *data)
347 {
348     struct privmsg_desc *pd = data;
349     unsigned int num = un->num_local;
350     if (!pd->is_notice) {
351         if ((num < num_privmsg_funcs) && privmsg_funcs[num]) {
352             privmsg_funcs[num](pd->user, un, pd->text, pd->is_qualified);
353         }
354     } else {
355         if ((num < num_notice_funcs) && notice_funcs[num]) {
356             notice_funcs[num](pd->user, un, pd->text, pd->is_qualified);
357         }
358     }
359 }
360
361 void
362 irc_server(struct server *srv)
363 {
364     char extranum[COMBO_NUMERIC_LEN+1];
365
366     inttobase64(extranum, srv->num_mask, (srv->numeric[1] || (srv->num_mask >= 64*64)) ? 3 : 2);
367     if (srv == self) {
368         /* The +s, ignored by Run's ircu, means "service" to Undernet's ircu */
369         putsock(P10_SERVER " %s %d %li %li J10 %s%s +s :%s",
370                 srv->name, srv->hops+1, srv->boot, srv->link, srv->numeric, extranum, srv->description);
371     } else {
372         putsock("%s " P10_SERVER " %s %d %li %li %c10 %s%s +s :%s",
373                 self->numeric, srv->name, srv->hops+1, srv->boot, srv->link, (srv->self_burst ? 'J' : 'P'), srv->numeric, extranum, srv->description);
374     }
375 }
376
377 void
378 irc_user(struct userNode *user)
379 {
380     char b64ip[7];
381     if (!user)
382         return;
383     inttobase64(b64ip, ntohl(user->ip.s_addr), 6);
384     if (user->modes) {
385         int modelen;
386         char modes[32];
387
388         modelen = 0;
389         if (IsOper(user))
390             modes[modelen++] = 'o';
391         if (IsInvisible(user))
392             modes[modelen++] = 'i';
393         if (IsWallOp(user))
394             modes[modelen++] = 'w';
395         if (IsService(user))
396             modes[modelen++] = 'k';
397         if (IsServNotice(user))
398             modes[modelen++] = 's';
399         if (IsDeaf(user))
400             modes[modelen++] = 'd';
401         if (IsGlobal(user))
402             modes[modelen++] = 'g';
403         if (IsHelperIrcu(user))
404             modes[modelen++] = 'h';
405         if (IsHiddenHost(user))
406             modes[modelen++] = 'x';
407         modes[modelen] = 0;
408
409         /* we don't need to put the + in modes because it's in the format string. */
410         putsock("%s " P10_NICK " %s %d %li %s %s +%s %s %s :%s",
411                 user->uplink->numeric, user->nick, user->uplink->hops+1, user->timestamp, user->ident, user->hostname, modes, b64ip, user->numeric, user->info);
412     } else {
413         putsock("%s " P10_NICK " %s %d %li %s %s %s %s :%s",
414                 user->uplink->numeric, user->nick, user->uplink->hops+1, user->timestamp, user->ident, user->hostname, b64ip, user->numeric, user->info);
415     }
416 }
417
418 void
419 irc_account(struct userNode *user, const char *stamp)
420 {
421     putsock("%s " P10_ACCOUNT " %s %s", self->numeric, user->numeric, stamp);
422 }
423
424 void
425 irc_fakehost(struct userNode *user, const char *host)
426 {
427     putsock("%s " P10_FAKEHOST " %s %s", self->numeric, user->numeric, host);
428 }
429
430 void
431 irc_regnick(UNUSED_ARG(struct userNode *user))
432 {
433     /* no operation here */
434 }
435
436 void
437 irc_nick(struct userNode *user, UNUSED_ARG(const char *old_nick))
438 {
439     putsock("%s " P10_NICK " %s "FMT_TIME_T, user->numeric, user->nick, now);
440 }
441
442 void
443 irc_fetchtopic(struct userNode *from, const char *to)
444 {
445     if (!from || !to)
446         return;
447     putsock("%s " P10_TOPIC " %s", from->numeric, to);
448 }
449
450 void
451 irc_squit(struct server *srv, const char *message, const char *service_message)
452 {
453     if (!service_message)
454         service_message = message;
455
456     /* Are we leaving the network? */
457     if (srv == self && cManager.uplink->state == CONNECTED) {
458         unsigned int i;
459
460         /* Quit all clients linked to me. */
461         for (i = 0; i <= self->num_mask; i++) {
462             if (!self->users[i])
463                 continue;
464             irc_quit(self->users[i], service_message);
465         }
466     }
467
468     putsock("%s " P10_SQUIT " %s %d :%s", self->numeric, srv->name, 0, message);
469
470     if (srv == self) {
471         /* Force a reconnect to the currently selected server. */
472         cManager.uplink->tries = 0;
473         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", message);
474         close_socket();
475     }
476 }
477
478 void
479 irc_wallchops(struct userNode *from, const char *to, const char *message)
480 {
481     putsock("%s " P10_WALLCHOPS " %s :%s", from->numeric, to, message);
482 }
483
484 void
485 irc_notice(struct userNode *from, const char *to, const char *message)
486 {
487     putsock("%s " P10_NOTICE " %s :%s", from->numeric, to, message);
488 }
489
490 void
491 irc_notice_user(struct userNode *from, struct userNode *to, const char *message)
492 {
493     putsock("%s " P10_NOTICE " %s :%s", from->numeric, to->numeric, message);
494 }
495
496 void
497 irc_privmsg(struct userNode *from, const char *to, const char *message)
498 {
499     putsock("%s " P10_PRIVMSG " %s :%s", from->numeric, to, message);
500 }
501
502 void
503 irc_eob(void)
504 {
505     putsock("%s " P10_EOB, self->numeric);
506 }
507
508 void
509 irc_eob_ack(void)
510 {
511     putsock("%s " P10_EOB_ACK, self->numeric);
512 }
513
514 void
515 irc_ping(const char *payload)
516 {
517     putsock("%s " P10_PING " :%s", self->numeric, payload);
518 }
519
520 void
521 irc_pong(const char *who, const char *data)
522 {
523     putsock("%s " P10_PONG " %s :%s", self->numeric, who, data);
524 }
525
526 void
527 irc_pass(const char *passwd)
528 {
529     putsock(P10_PASS " :%s", passwd);
530 }
531
532 void
533 irc_introduce(const char *passwd)
534 {
535     void timed_send_ping(void *data);
536
537     self->self_burst = self->burst = 1;
538     irc_pass(passwd);
539     irc_server(self);
540     burst_length = 0;
541     timeq_add(now + ping_freq, timed_send_ping, 0);
542 }
543
544 void
545 irc_gline(struct server *srv, struct gline *gline)
546 {
547     putsock("%s " P10_GLINE " %s +%s %ld :%s",
548             self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires-now, gline->reason);
549 }
550
551 void
552 irc_settime(const char *srv_name_mask, time_t new_time)
553 {
554     ioset_set_time(new_time);
555     if (!strcmp(srv_name_mask, "*"))
556         srv_name_mask = "";
557     putsock("%s " P10_SETTIME " " FMT_TIME_T " %s", self->numeric, new_time, srv_name_mask);
558 }
559
560 void
561 irc_ungline(const char *mask)
562 {
563     putsock("%s " P10_GLINE " * -%s", self->numeric, mask);
564 }
565
566 static void
567 irc_burst(struct chanNode *chan)
568 {
569     char burst_line[512];
570     int pos, base_len, len;
571     struct modeNode *mn;
572     struct banNode *bn;
573     long last_mode=-1;
574     unsigned int n;
575
576     base_len = sprintf(burst_line, "%s " P10_BURST " %s " FMT_TIME_T " ",
577                        self->numeric, chan->name, chan->timestamp);
578     len = irc_make_chanmode(chan, burst_line+base_len);
579     pos = base_len + len;
580     if (len)
581         burst_line[pos++] = ' ';
582
583     /* dump the users */
584     for (n=0; n<chan->members.used; n++) {
585         mn = chan->members.list[n];
586         if (pos > 500) {
587             burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
588             putsock("%s", burst_line);
589             pos = base_len;
590             last_mode = -1;
591         }
592         memcpy(burst_line+pos, mn->user->numeric, strlen(mn->user->numeric));
593         pos += strlen(mn->user->numeric);
594         if (mn->modes && (mn->modes != last_mode)) {
595             last_mode = mn->modes;
596             burst_line[pos++] = ':';
597             if (last_mode & MODE_CHANOP)
598                 burst_line[pos++] = 'o';
599             if (last_mode & MODE_VOICE)
600                 burst_line[pos++] = 'v';
601         }
602         if ((n+1)<chan->members.used)
603             burst_line[pos++] = ',';
604     }
605     if (chan->banlist.used) {
606         /* dump the bans */
607         if (pos+2+strlen(chan->banlist.list[0]->ban) > 505) {
608             burst_line[pos-1] = 0;
609             putsock("%s", burst_line);
610             pos = base_len;
611         } else {
612             burst_line[pos++] = ' ';
613         }
614
615         burst_line[pos++] = ':';
616         burst_line[pos++] = '%';
617         base_len = pos;
618         for (n=0; n<chan->banlist.used; n++) {
619             bn = chan->banlist.list[n];
620             len = strlen(bn->ban);
621             if (pos+len+1 > 510) {
622                 burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
623                 putsock("%s", burst_line);
624                 pos = base_len;
625             }
626             memcpy(burst_line+pos, bn->ban, len);
627             pos += len;
628             burst_line[pos++] = ' ';
629         }
630     }
631     /* print the last line */
632     burst_line[pos] = 0;
633     putsock("%s", burst_line);
634 }
635
636 void
637 irc_quit(struct userNode *user, const char *message)
638 {
639     putsock("%s " P10_QUIT " :%s", user->numeric, message);
640 }
641
642 void
643 irc_error(const char *to, const char *message)
644 {
645     if (to) {
646         putsock("%s " P10_ERROR " :%s", to, message);
647     } else {
648         putsock(":%s " P10_ERROR " :%s", self->name, message);
649     }
650 }
651
652 void
653 irc_kill(struct userNode *from, struct userNode *target, const char *message)
654 {
655     if (from) {
656         putsock("%s " P10_KILL " %s :%s!%s (%s)",
657                 from->numeric, target->numeric, self->name, from->nick, message);
658     } else {
659         putsock("%s " P10_KILL " %s :%s (%s)",
660                 self->numeric, target->numeric, self->name, message);
661     }
662 }
663
664 void
665 irc_mode(struct userNode *from, struct chanNode *target, const char *modes)
666 {
667     putsock("%s " P10_MODE " %s %s "FMT_TIME_T,
668             (from ? from->numeric : self->numeric),
669             target->name, modes, target->timestamp);
670 }
671
672 void
673 irc_invite(struct userNode *from, struct userNode *who, struct chanNode *to)
674 {
675     putsock("%s " P10_INVITE " %s %s", from->numeric, who->nick, to->name);
676 }
677
678 void
679 irc_join(struct userNode *who, struct chanNode *what)
680 {
681     if (what->members.used == 1) {
682         putsock("%s " P10_CREATE " %s %lu",
683                 who->numeric, what->name, what->timestamp);
684     } else {
685         putsock("%s " P10_JOIN " %s %lu", who->numeric, what->name, what->timestamp);
686     }
687 }
688
689 void
690 irc_kick(struct userNode *who, struct userNode *target, struct chanNode *channel, const char *msg)
691 {
692     const char *numeric;
693     struct modeNode *mn = GetUserMode(channel, who);
694     numeric = ((mn && (mn->modes & MODE_CHANOP)) || off_channel) ? who->numeric : self->numeric;
695     putsock("%s " P10_KICK " %s %s :%s",
696             numeric, channel->name, target->numeric, msg);
697 }
698
699 void
700 irc_stats(struct userNode *from, struct server *target, char type)
701 {
702     putsock("%s " P10_STATS " %c :%s", from->numeric, type, target->numeric);
703 }
704
705 void
706 irc_svsnick(struct userNode *from, struct userNode *target, const char *newnick)
707 {
708     putsock("%s " P10_SVSNICK " %s %s "FMT_TIME_T, from->uplink->numeric, target->numeric, newnick, now);
709 }
710
711 void
712 irc_part(struct userNode *who, struct chanNode *what, const char *reason)
713 {
714     if (reason) {
715         putsock("%s " P10_PART " %s :%s", who->numeric, what->name, reason);
716     } else {
717         putsock("%s " P10_PART " %s", who->numeric, what->name);
718     }
719 }
720
721 void
722 irc_topic(struct userNode *who, struct chanNode *what, const char *topic)
723 {
724     putsock("%s " P10_TOPIC " %s :%s", who->numeric, what->name, topic);
725 }
726
727 void
728 irc_raw(const char *what)
729 {
730     putsock("%s", what);
731 }
732
733 void
734 irc_numeric(struct userNode *user, unsigned int num, const char *format, ...)
735 {
736     va_list arg_list;
737     char buffer[MAXLEN];
738     va_start(arg_list, format);
739     vsnprintf(buffer, MAXLEN-2, format, arg_list);
740     buffer[MAXLEN-1] = 0;
741     putsock(":%s %03d %s %s", self->name, num, user->nick, buffer);
742 }
743
744 static void send_burst(void);
745
746 static void
747 change_nicklen(int new_nicklen)
748 {
749     unsigned int nn;
750     char new_nick[NICKLEN+1];
751     struct userNode *user;
752
753     nicklen = new_nicklen;
754     /* fix up any users we have here */
755     for (nn=0; nn<=self->num_mask; nn++) {
756         if (!(user = self->users[nn]))
757             continue;
758         safestrncpy(new_nick, user->nick, sizeof(new_nick));
759         new_nick[nicklen] = 0;
760         NickChange(user, new_nick, 1);
761     }
762 }
763
764 static CMD_FUNC(cmd_whois)
765 {
766     struct userNode *from;
767     struct userNode *who;
768
769     if (argc < 3)
770         return 0;
771     if (!(from = GetUserH(origin))) {
772         log_module(MAIN_LOG, LOG_ERROR, "Could not find WHOIS origin user %s", origin);
773         return 0;
774     }
775     if(!(who = GetUserH(argv[2]))) {
776         irc_numeric(from, ERR_NOSUCHNICK, "%s@%s :No such nick", argv[2], self->name);
777         return 1;
778     }
779     if (IsHiddenHost(who) && !IsOper(from)) {
780         /* Just stay quiet. */
781         return 1;
782     }
783     irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->ident, who->hostname, who->info);
784     if (his_servername && his_servercomment)
785         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, his_servername, his_servercomment);
786     else
787         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, who->uplink->name, who->uplink->description);
788     if (IsOper(who))
789         irc_numeric(from, RPL_WHOISOPERATOR, "%s :is a megalomaniacal power hungry tyrant", who->nick);
790     irc_numeric(from, RPL_ENDOFWHOIS, "%s :End of /WHOIS list", who->nick);
791     return 1;
792 }
793
794 static CMD_FUNC(cmd_server)
795 {
796     struct server *srv;
797     const char *str;
798
799     if (argc < 8)
800         return 0;
801     if (self->uplink) {
802         /* another server introduced us */
803         srv = AddServer(GetServerH(origin), argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
804         if (!srv)
805             return 0;
806         srv->self_burst = argv[5][0] == 'J';
807         srv->burst = 1;
808     } else {
809         /* this must be our uplink */
810         srv = self->uplink = AddServer(self, argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
811         if (!srv)
812             return 0;
813         srv->self_burst = argv[5][0] == 'J';
814         srv->burst = 1;
815         if ((argv[7][0] == '+') && !force_n2k) {
816             log_module(MAIN_LOG, LOG_WARNING, "Got Undernet-style SERVER message but \"force_n2k\" not on.");
817         }
818         send_burst();
819     }
820
821     /* Fix up our timestamps if necessary. */
822     if (srv->boot <= PREHISTORY) {
823         /* Server from the mists of time.. */
824         if (srv->hops == 1) {
825             log_module(MAIN_LOG, LOG_ERROR, "Server %s claims to have booted at time "FMT_TIME_T".  This is absurd.", srv->name, srv->boot);
826         }
827     } else if ((str = conf_get_data("server/reliable_clock", RECDB_QSTRING))
828                && enabled_string(str)) {
829         /* If we have a reliable clock, we just keep our current time. */
830     } else {
831         if (srv->boot <= self->boot) {
832             /* The other server is older than us.  Accept their timestamp.
833              * Alternately, we are same age, but we accept their time
834              * since we are linking to them. */
835             self->boot = srv->boot;
836             ioset_set_time(srv->link);
837         }
838     }
839     if (srv == self->uplink) {
840         extern time_t burst_begin;
841         burst_begin = now;
842     }
843     return 1;
844 }
845
846 static CMD_FUNC(cmd_eob)
847 {
848     struct server *sender;
849     dict_iterator_t it;
850     unsigned int ii;
851
852     if (!(sender = GetServerH(origin)))
853         return 0;
854     if (sender == self->uplink) {
855         cManager.uplink->state = CONNECTED;
856         for (it = dict_first(unbursted_channels); it; it = iter_next(it))
857             irc_burst(iter_data(it));
858         dict_delete(unbursted_channels);
859         unbursted_channels = NULL;
860         irc_eob();
861         irc_eob_ack();
862     }
863     sender->self_burst = 0;
864     recalc_bursts(sender);
865     for (ii=0; ii<slf_used; ii++)
866         slf_list[ii](sender);
867     return 1;
868 }
869
870 static CMD_FUNC(cmd_eob_ack)
871 {
872     extern time_t burst_begin;
873
874     if (GetServerH(origin) == self->uplink) {
875         burst_length = now - burst_begin;
876         self->self_burst = self->burst = 0;
877     }
878     cManager.uplink->state = CONNECTED;
879     return 1;
880 }
881
882 static CMD_FUNC(cmd_ping)
883 {
884     struct server *srv;
885     struct userNode *un;
886
887     if(argc > 3)
888         irc_pong(argv[2], argv[1]);
889     else if ((srv = GetServerH(origin)))
890         irc_pong(self->name, srv->numeric);
891     else if ((un = GetUserH(origin)))
892         irc_pong(self->name, un->numeric);
893     else
894         irc_pong(self->name, origin);
895
896     timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
897     timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
898     timeq_add(now + ping_freq, timed_send_ping, 0);
899     received_ping();
900     return 1;
901 }
902
903 static CMD_FUNC(cmd_error_nick)
904 {
905     /* Go back to original IRC length .. and try to reconnect :/ */
906     change_nicklen(9);
907     irc_squit(self, "Got erroneous nickname, truncating nicks.", NULL);
908     return 1;
909 }
910
911 struct create_desc {
912     struct userNode *user;
913     time_t when;
914 };
915
916 static void
917 join_helper(struct chanNode *chan, void *data)
918 {
919     struct create_desc *cd = data;
920     AddChannelUser(cd->user, chan);
921 }
922
923 static void
924 create_helper(char *name, void *data)
925 {
926     struct create_desc *cd = data;
927
928     if (!strcmp(name, "0")) {
929         while (cd->user->channels.used > 0)
930             DelChannelUser(cd->user, cd->user->channels.list[0]->channel, 0, 0);
931         return;
932     }
933
934     AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL));
935 }
936
937 static CMD_FUNC(cmd_create)
938 {
939     struct create_desc cd;
940     struct userNode *user;
941
942     if ((argc < 3) || !(user = GetUserH(origin)))
943         return 0;
944     cd.user = user;
945     cd.when = atoi(argv[2]);
946     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
947     return 1;
948 }
949
950 static CMD_FUNC(cmd_join)
951 {
952     struct create_desc cd;
953
954     if (!(cd.user = GetUserH(origin)))
955         return 0;
956     if (argc < 2)
957         return 0;
958     else if (argc < 3)
959         cd.when = now;
960     else
961         cd.when = atoi(argv[2]);
962     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
963     return 1;
964 }
965
966 static CMD_FUNC(cmd_pong)
967 {
968     if (argc < 3)
969         return 0;
970     if (!strcmp(argv[2], self->name)) {
971         timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
972         timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
973         timeq_add(now + ping_freq, timed_send_ping, 0);
974         received_ping();
975     }
976     return 1;
977 }
978
979 static CMD_FUNC(cmd_nick)
980 {
981     struct userNode *user;
982     if ((user = GetUserH(origin))) {
983         /* nick change (since the source is a user numeric) */
984         if (argc < 2)
985             return 0;
986         NickChange(user, argv[1], 1);
987     } else {
988         struct server *serv;
989         char modes[MAXLEN];
990         /* new nick */
991         if (argc < 9)
992             return 0;
993         serv = GetServerH(origin);
994         if (argc > 9)
995             unsplit_string(argv+6, argc-9, modes);
996         else
997             strcpy(modes, "+");
998         AddUser(serv, argv[1], argv[4], argv[5], modes, argv[argc-2], argv[argc-1], atoi(argv[3]), argv[argc-3]);
999     }
1000     return 1;
1001 }
1002
1003 static CMD_FUNC(cmd_account)
1004 {
1005     struct userNode *user;
1006
1007     if ((argc < 3) || !origin || !GetServerH(origin))
1008         return 0; /* Origin must be server. */
1009     user = GetUserN(argv[1]);
1010     if (!user)
1011         return 1; /* A QUIT probably passed the ACCOUNT. */
1012     call_account_func(user, argv[2]);
1013     return 1;
1014 }
1015
1016 static CMD_FUNC(cmd_fakehost)
1017 {
1018     struct userNode *user;
1019
1020     if ((argc < 3) || !origin || !GetServerH(origin))
1021         return 0;
1022     if (!(user = GetUserN(argv[1])))
1023         return 1;
1024     assign_fakehost(user, argv[2], 0);
1025     return 1;
1026 }
1027
1028 static CMD_FUNC(cmd_burst)
1029 {
1030     extern int rel_age;
1031     char modes[MAXLEN], *members = "", *banlist = NULL;
1032     unsigned int next = 3, res = 1;
1033     struct chanNode *cNode;
1034     struct userNode *un;
1035     struct modeNode *mNode;
1036     long mode;
1037     char *user, *end, sep;
1038     time_t in_timestamp;
1039
1040     if (argc < 3)
1041         return 0;
1042     modes[0] = 0;
1043     while (next < argc) {
1044         switch (argv[next][0]) {
1045         case '+': {
1046             const char *pos;
1047             int n_modes;
1048             for (pos=argv[next], n_modes = 1; *pos; pos++)
1049                 if ((*pos == 'k') || (*pos == 'l'))
1050                     n_modes++;
1051             unsplit_string(argv+next, n_modes, modes);
1052             next += n_modes;
1053             break;
1054         }
1055         case '%': banlist = argv[next++]+1; break;
1056         default: members = argv[next++]; break;
1057         }
1058     }
1059
1060     in_timestamp = atoi(argv[2]);
1061     if ((cNode = dict_find(unbursted_channels, argv[1], NULL))) {
1062         cNode->timestamp = in_timestamp;
1063         dict_remove(unbursted_channels, cNode->name);
1064         irc_burst(cNode);
1065     }
1066     cNode = AddChannel(argv[1], in_timestamp, modes, banlist);
1067
1068     /* Burst channel members in now. */
1069     for (user = members, sep = *members, mode = 0; sep; user = end) {
1070         for (end = user + 3; isalnum(*end) || *end == '[' || *end == ']'; end++) ;
1071         sep = *end++; end[-1] = 0;
1072         if (sep == ':') {
1073             mode = 0;
1074             while ((sep = *end++)) {
1075                 if (sep == 'o')
1076                     mode |= MODE_CHANOP;
1077                 else if (sep == 'v')
1078                     mode |= MODE_VOICE;
1079                 else
1080                     break;
1081             }
1082             if (rel_age < 0)
1083                 mode = 0;
1084         }
1085         if (!(un = GetUserN(user))) {
1086             res = 0;
1087             continue;
1088         }
1089         if ((mNode = AddChannelUser(un, cNode)))
1090             mNode->modes = mode;
1091     }
1092
1093     return res;
1094 }
1095
1096 static CMD_FUNC(cmd_mode)
1097 {
1098     struct chanNode *cn;
1099     struct userNode *un;
1100
1101     if (argc < 3)
1102         return 0;
1103     if (!IsChannelName(argv[1])) {
1104         un = GetUserH(argv[1]);
1105         if (!un) {
1106             log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s whose mode is changing.", argv[1]);
1107             return 0;
1108         }
1109         mod_usermode(un, argv[2]);
1110         return 1;
1111     }
1112
1113     if (!(cn = GetChannel(argv[1]))) {
1114         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1115         return 0;
1116     }
1117     if ((un = GetUserH(origin))) {
1118         struct modeNode *mn;
1119         /* Update idle time for person setting the mode */
1120         if ((mn = GetUserMode(cn, un)))
1121             mn->idle_since = now;
1122     } else {
1123         /* If it came from a server, reset timestamp to re-sync. */
1124         cn->timestamp = atoi(argv[argc-1]);
1125     }
1126
1127     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER|(un ? MC_NOTIFY : 0));
1128 }
1129
1130 static CMD_FUNC(cmd_opmode)
1131 {
1132     struct chanNode *cn;
1133     struct userNode *un;
1134
1135     if (argc < 3)
1136         return 0;
1137
1138     if (!(cn = GetChannel(argv[1]))) {
1139         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1140         return 0;
1141     }
1142     if (!(un = GetUserH(origin))) {
1143         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting OPMODE.", origin);
1144         return 0;
1145     }
1146     if (!IsOper(un)) {
1147         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using OPMODE.", un->nick);
1148         return 0;
1149     }
1150
1151     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER); /* do NOT announce opmode locally */
1152 }
1153
1154 static int clear_chanmode(struct chanNode *channel, const char *modes);
1155
1156 static CMD_FUNC(cmd_clearmode)
1157 {
1158     struct chanNode *cn;
1159     struct userNode *un;
1160
1161     if (argc < 3)
1162         return 0;
1163
1164     if (!(cn = GetChannel(argv[1]))) {
1165         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1166         return 0;
1167     }
1168     if (!(un = GetUserH(origin))) {
1169         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting CLEARMODE.", origin);
1170         return 0;
1171     }
1172     if (!IsOper(un)) {
1173         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using CLEARMODE.", un->nick);
1174         return 0;
1175     }
1176
1177     return clear_chanmode(cn, argv[2]);
1178 }
1179
1180 static CMD_FUNC(cmd_topic)
1181 {
1182     struct chanNode *cn;
1183     time_t chan_ts, topic_ts;
1184
1185     if (argc < 3)
1186         return 0;
1187     if (!(cn = GetChannel(argv[1]))) {
1188         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose topic is being set", argv[1]);
1189         return 0;
1190     }
1191     if (argc >= 5) {
1192         /* Looks like an Asuka style topic burst. */
1193         chan_ts = atoi(argv[2]);
1194         topic_ts = atoi(argv[3]);
1195     } else {
1196         chan_ts = cn->timestamp;
1197         topic_ts = now;
1198     }
1199     SetChannelTopic(cn, GetUserH(origin), argv[argc-1], 0);
1200     cn->topic_time = topic_ts;
1201     return 1;
1202 }
1203
1204 static CMD_FUNC(cmd_num_topic)
1205 {
1206     struct chanNode *cn;
1207
1208     if (!argv[0])
1209         return 0; /* huh? */
1210     if (argv[2]) {
1211         cn = GetChannel(argv[2]);
1212         if (!cn) {
1213             log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s in topic reply", argv[2]);
1214             return 0;
1215         }
1216     } else
1217         return 0;
1218
1219     switch (atoi(argv[0])) {
1220     case 331:
1221         cn->topic_time = 0;
1222         break;  /* no topic */
1223     case 332:
1224         if (argc < 4)
1225             return 0;
1226         safestrncpy(cn->topic, unsplit_string(argv+3, argc-3, NULL), sizeof(cn->topic));
1227         break;
1228     case 333:
1229         if (argc < 5)
1230             return 0;
1231         safestrncpy(cn->topic_nick, argv[3], sizeof(cn->topic_nick));
1232         cn->topic_time = atoi(argv[4]);
1233         break;
1234     default:
1235         return 0; /* should never happen */
1236     }
1237     return 1;
1238 }
1239
1240 static CMD_FUNC(cmd_num_gline)
1241 {
1242     if (argc < 6)
1243         return 0;
1244     gline_add(origin, argv[3], atoi(argv[4])-now, argv[5], now, 0);
1245     return 1;
1246 }
1247
1248 static CMD_FUNC(cmd_quit)
1249 {
1250     struct userNode *user;
1251     if (argc < 2)
1252         return 0;
1253     /* Sometimes we get a KILL then a QUIT or the like, so we don't want to
1254      * call DelUser unless we have the user in our grasp. */
1255     if ((user = GetUserH(origin)))
1256         DelUser(user, NULL, false, argv[1]);
1257     return 1;
1258 }
1259
1260 static CMD_FUNC(cmd_kill)
1261 {
1262     struct userNode *user;
1263     if (argc < 2)
1264         return 0;
1265     user = GetUserN(argv[1]);
1266     if (!user) {
1267         /* If we get a KILL for a non-existent user, it could be a
1268          * Ghost response to a KILL we sent out earlier.  So we only
1269          * whine if the target is local.
1270          */
1271         if (!strncmp(argv[1], self->numeric, strlen(self->numeric)))
1272             log_module(MAIN_LOG, LOG_ERROR, "Unable to find kill victim %s", argv[1]);
1273         return 0;
1274     }
1275
1276     if (IsLocal(user) && IsService(user)) {
1277         /* TODO: rate limit this so silly things don't happen. */
1278         ReintroduceUser(user);
1279         return 1;
1280     }
1281
1282     DelUser(user, NULL, false, argv[2]);
1283     return 1;
1284 }
1285
1286 static CMD_FUNC(cmd_part)
1287 {
1288     struct userNode *user;
1289
1290     if (argc < 2)
1291         return 0;
1292     user = GetUserH(origin);
1293     if (!user)
1294         return 0;
1295     parse_foreach(argv[1], part_helper, NULL, NULL, NULL, user);
1296     return 1;
1297 }
1298
1299 static CMD_FUNC(cmd_kick)
1300 {
1301     if (argc < 3)
1302         return 0;
1303     ChannelUserKicked(GetUserH(origin), GetUserN(argv[2]), GetChannel(argv[1]));
1304     return 1;
1305 }
1306
1307 static CMD_FUNC(cmd_squit)
1308 {
1309     struct server *server;
1310
1311     if (argc < 4)
1312         return 0;
1313     if (!(server = GetServerH(argv[1])))
1314         return 0;
1315
1316     if (server == self->uplink) {
1317         /* Force a reconnect to the currently selected server. */
1318         cManager.uplink->tries = 0;
1319         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", argv[3]);
1320         close_socket();
1321         return 1;
1322     }
1323
1324     DelServer(server, 0, argv[3]);
1325     return 1;
1326 }
1327
1328 static CMD_FUNC(cmd_privmsg)
1329 {
1330     struct privmsg_desc pd;
1331     if (argc != 3)
1332         return 0;
1333     pd.user = GetUserH(origin);
1334     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1335         return 1;
1336     pd.is_notice = 0;
1337     pd.text = argv[2];
1338     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1339     return 1;
1340 }
1341
1342 static CMD_FUNC(cmd_notice)
1343 {
1344     struct privmsg_desc pd;
1345     if (argc != 3)
1346         return 0;
1347     pd.user = GetUserH(origin);
1348     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1349         return 1;
1350     pd.is_notice = 1;
1351     pd.text = argv[2];
1352     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1353     return 1;
1354 }
1355
1356 static CMD_FUNC(cmd_away)
1357 {
1358     struct userNode *uNode;
1359
1360     uNode = GetUserH(origin);
1361     if (!uNode)
1362         return 1;
1363     if (argc < 2)
1364         uNode->modes &= ~FLAGS_AWAY;
1365     else
1366         uNode->modes |= FLAGS_AWAY;
1367     return 1;
1368 }
1369
1370 static CMD_FUNC(cmd_gline)
1371 {
1372     if (argc < 3)
1373         return 0;
1374     if (argv[2][0] == '+') {
1375         if (argc < 5)
1376             return 0;
1377         gline_add(origin, argv[2]+1, strtoul(argv[3], NULL, 0), argv[argc-1], now, 0);
1378         return 1;
1379     } else if (argv[2][0] == '-') {
1380         gline_remove(argv[2]+1, 0);
1381         return 1;
1382     } else
1383         return 0;
1384 }
1385
1386 static CMD_FUNC(cmd_svsnick)
1387 {
1388     struct userNode *target, *dest;
1389     if ((argc < 4)
1390         || !(target = GetUserN(argv[1]))
1391         || !IsLocal(target)
1392         || (dest = GetUserH(argv[2])))
1393         return 0;
1394     NickChange(target, argv[2], 0);
1395     return 1;
1396 }
1397
1398 static oper_func_t *of_list;
1399 static unsigned int of_size = 0, of_used = 0;
1400
1401 void
1402 free_user(struct userNode *user)
1403 {
1404     free(user->nick);
1405     free(user);
1406 }
1407
1408 static void
1409 parse_cleanup(void)
1410 {
1411     unsigned int nn;
1412     free(of_list);
1413     free(privmsg_funcs);
1414     free(notice_funcs);
1415     free(mcf_list);
1416     dict_delete(irc_func_dict);
1417     for (nn=0; nn<dead_users.used; nn++)
1418         free_user(dead_users.list[nn]);
1419     userList_clean(&dead_users);
1420 }
1421
1422 static void
1423 p10_conf_reload(void) {
1424     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1425 }
1426
1427 static void
1428 remove_unbursted_channel(struct chanNode *cNode) {
1429     if (unbursted_channels)
1430         dict_remove(unbursted_channels, cNode->name);
1431 }
1432
1433 void
1434 init_parse(void)
1435 {
1436     const char *str, *desc;
1437     int numnick, usermask, max_users;
1438     char numer[COMBO_NUMERIC_LEN+1];
1439
1440     /* read config items */
1441     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1442     ping_freq = str ? ParseInterval(str) : 120;
1443     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1444     ping_timeout = str ? ParseInterval(str) : 30;
1445     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1446     force_n2k = str ? enabled_string(str) : 1;
1447     str = conf_get_data("server/numeric", RECDB_QSTRING);
1448     if (!str) {
1449         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1450         exit(1);
1451     }
1452     numnick = atoi(str);
1453     str = conf_get_data("server/max_users", RECDB_QSTRING);
1454     max_users = str ? atoi(str) : 4096;
1455     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1456     usermask--;
1457     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1458         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1459     else
1460         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1461
1462     str = conf_get_data("server/his_servername", RECDB_QSTRING);
1463     his_servername = str ? strdup(str) : NULL;
1464     str = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1465     his_servercomment = str ? strdup(str) : NULL;
1466
1467     str = conf_get_data("server/hostname", RECDB_QSTRING);
1468     desc = conf_get_data("server/description", RECDB_QSTRING);
1469     if (!str || !desc) {
1470         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1471         exit(1);
1472     }
1473     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1474     conf_register_reload(p10_conf_reload);
1475
1476     irc_func_dict = dict_new();
1477     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1478     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1479     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1480     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1481     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1482     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1483     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1484     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1485     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1486     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1487     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1488     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1489     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1490     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1491     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1492     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1493     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1494     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1495     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1496     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1497     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1498     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1499     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1500     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1501     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1502     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1503     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1504     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1505     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1506     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1507     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1508     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1509     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1510     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1511     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1512     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1513     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1514     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1515     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1516     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1517     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1518     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1519     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1520     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1521     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1522     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1523     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1524     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1525     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1526     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1527     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1528     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1529     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1530     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1531     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1532     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1533     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1534     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1535     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1536     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1537     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1538     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1539     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1540     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1541
1542     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1543      * Apparently to obliterate channels from any servers that think they
1544      * exist?
1545      */
1546     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1547     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1548     /* Ignore invites */
1549     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1550     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1551     /* DESYNCH is just informational, so ignore it */
1552     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1553     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1554     /* Ignore channel operator notices. */
1555     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1556     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1557     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1558     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1559     /* Ignore opers being silly. */
1560     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1561     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1562     /* We have reliable clock!  Always!  Wraaa! */
1563     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1564     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1565     /* handle topics */
1566     dict_insert(irc_func_dict, "331", cmd_num_topic);
1567     dict_insert(irc_func_dict, "332", cmd_num_topic);
1568     dict_insert(irc_func_dict, "333", cmd_num_topic);
1569     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1570     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1571     /* ban list resetting */
1572     /* "stats g" responses */
1573     dict_insert(irc_func_dict, "247", cmd_num_gline);
1574     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
1575     /* other numeric responses we might get */
1576     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
1577     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
1578     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
1579     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
1580     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
1581     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
1582     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
1583     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
1584
1585     num_privmsg_funcs = 16;
1586     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
1587     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
1588
1589     num_notice_funcs = 16;
1590     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
1591     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
1592
1593     userList_init(&dead_users);
1594     reg_del_channel_func(remove_unbursted_channel);
1595     reg_exit_func(parse_cleanup);
1596 }
1597
1598 int
1599 parse_line(char *line, int recursive)
1600 {
1601     char *argv[MAXNUMPARAMS], *origin;
1602     int argc, cmd, res=0;
1603     cmd_func_t *func;
1604
1605     argc = split_line(line, true, MAXNUMPARAMS, argv);
1606     cmd = self->uplink || !argv[0][1] || !argv[0][2];
1607     if (argc > cmd) {
1608         if (cmd) {
1609             if (argv[0][0] == ':') {
1610                 origin = argv[0]+1;
1611             } else if (!argv[0][1] || !argv[0][2]) {
1612                 struct server *sNode = GetServerN(argv[0]);
1613                 origin = sNode ? sNode->name : 0;
1614             } else {
1615                 struct userNode *uNode = GetUserN(argv[0]);
1616                 origin = uNode ? uNode->nick : 0;
1617             }
1618         } else
1619             origin = 0;
1620         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
1621             res = func(origin, argc-cmd, argv+cmd);
1622     }
1623     if (!res) {
1624         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
1625     } else if (!recursive) {
1626         unsigned int i;
1627         for (i=0; i<dead_users.used; i++)
1628             free_user(dead_users.list[i]);
1629         dead_users.used = 0;
1630     }
1631     return res;
1632 }
1633
1634 static void
1635 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
1636 {
1637     char *j, old;
1638     do {
1639         j = target_list;
1640         while (*j != 0 && *j != ',')
1641             j++;
1642         old = *j;
1643         *j = 0;
1644         if (IsChannelName(target_list)
1645             || (target_list[0] == '0' && target_list[1] == '\0')) {
1646             struct chanNode *chan = GetChannel(target_list);
1647             if (chan) {
1648                 if (cf)
1649                     cf(chan, data);
1650             } else {
1651                 if (nc)
1652                     nc(target_list, data);
1653             }
1654         } else {
1655             struct userNode *user;
1656             struct privmsg_desc *pd = data;
1657
1658             pd->is_qualified = 0;
1659             if (*target_list == '@') {
1660                 user = NULL;
1661             } else if (strchr(target_list, '@')) {
1662                 struct server *server;
1663
1664                 pd->is_qualified = 1;
1665                 user = GetUserH(strtok(target_list, "@"));
1666                 server = GetServerH(strtok(NULL, "@"));
1667
1668                 if (user && (user->uplink != server)) {
1669                     /* Don't attempt to index into any arrays
1670                        using a user's numeric on another server. */
1671                     user = NULL;
1672                 }
1673             } else {
1674                 user = GetUserN(target_list);
1675             }
1676
1677             if (user) {
1678                 if (uf)
1679                     uf(user, data);
1680             } else {
1681                 if (nu)
1682                     nu(target_list, data);
1683             }
1684         }
1685         target_list = j+1;
1686     } while (old == ',');
1687 }
1688
1689 static int
1690 get_local_numeric(void)
1691 {
1692     static unsigned int next_numeric = 0;
1693     if (self->clients > self->num_mask)
1694         return -1;
1695     while (self->users[next_numeric])
1696         if (++next_numeric > self->num_mask)
1697             next_numeric = 0;
1698     return next_numeric;
1699 }
1700
1701 static void
1702 make_numeric(struct server *svr, int local_num, char *outbuf)
1703 {
1704     int slen, llen;
1705
1706     if (force_n2k || svr->numeric[1]) {
1707         slen = 2;
1708         llen = 3;
1709     } else {
1710         slen = 1;
1711         llen = (local_num < 64*64) ? 2 : 3;
1712     }
1713     strncpy(outbuf, svr->numeric, slen);
1714     inttobase64(outbuf+slen, local_num, llen);
1715     outbuf[slen+llen] = 0;
1716 }
1717
1718 struct server *
1719 AddServer(struct server *uplink, const char *name, int hops, time_t boot, time_t link, const char *numeric, const char *description)
1720 {
1721     struct server* sNode;
1722     int slen, mlen;
1723
1724     if ((sNode = GetServerN(numeric))) {
1725         /* This means we're trying to re-add an existant server.
1726          * To be safe, we should forget the previous incarnation.
1727          * (And all its linked servers.)
1728          *
1729          * It usually only happens in replays when the original
1730          * had a ping timeout and the replay didn't (because
1731          * replaying a ping timeout invariably gets things wrong).
1732          */
1733         DelServer(sNode, 0, NULL);
1734     }
1735
1736     switch (strlen(numeric)) {
1737     case 5: slen = 2; mlen = 3; break;
1738     case 4: slen = 1; mlen = 3; break;
1739     case 3: slen = 1; mlen = 2; break;
1740     default:
1741         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
1742         return NULL;
1743     }
1744
1745     sNode = calloc(1, sizeof(*sNode));
1746     sNode->uplink = uplink;
1747     safestrncpy(sNode->name, name, sizeof(sNode->name));
1748     sNode->num_mask = base64toint(numeric+slen, mlen);
1749     sNode->hops = hops;
1750     sNode->boot = boot;
1751     sNode->link = link;
1752     strncpy(sNode->numeric, numeric, slen);
1753     safestrncpy(sNode->description, description, sizeof(sNode->description));
1754     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
1755     serverList_init(&sNode->children);
1756     if (sNode->uplink) {
1757         /* uplink may be NULL if we're just building ourself */
1758         serverList_append(&sNode->uplink->children, sNode);
1759     }
1760     servers_num[base64toint(numeric, slen)] = sNode;
1761     dict_insert(servers, sNode->name, sNode);
1762     return sNode;
1763 }
1764
1765 void DelServer(struct server* serv, int announce, const char *message)
1766 {
1767     unsigned int i;
1768
1769     /* If we receive an ERROR command before the SERVER
1770      * command a NULL server can be passed */
1771     if (!serv)
1772         return;
1773
1774     /* Hrm, what's the right way to SQUIT some other server?
1775      * (This code is only to handle killing juped servers.) */
1776     if (announce && (serv->uplink == self) && (serv != self->uplink))
1777         irc_squit(serv, message, NULL);
1778
1779     /* must recursively remove servers linked to this one first */
1780     for (i=serv->children.used;i>0;)
1781         if (serv->children.list[--i] != self)
1782             DelServer(serv->children.list[i], false, NULL);
1783
1784     /* clean up server's user hash tables */
1785     for (i=0;i<=serv->num_mask;i++)
1786         if (serv->users[i])
1787             DelUser(serv->users[i], NULL, false, "server delinked");
1788
1789     /* delete server */
1790     if (serv->uplink)
1791         serverList_remove(&serv->uplink->children, serv);
1792     if (serv == self->uplink)
1793         self->uplink = NULL;
1794     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
1795     dict_remove(servers, serv->name);
1796     serverList_clean(&serv->children);
1797     free(serv->users);
1798     free(serv);
1799 }
1800
1801 struct userNode *
1802 AddService(const char *nick, const char *modes, const char *desc, const char *hostname)
1803 {
1804     char numeric[COMBO_NUMERIC_LEN+1];
1805     int local_num = get_local_numeric();
1806     time_t timestamp = now;
1807     struct userNode *old_user = GetUserH(nick);
1808
1809     if (old_user) {
1810         if (IsLocal(old_user))
1811             return old_user;
1812         timestamp = old_user->timestamp - 1;
1813     }
1814     if (local_num == -1) {
1815         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
1816         return 0;
1817     }
1818     if (!hostname)
1819         hostname = self->name;
1820     make_numeric(self, local_num, numeric);
1821     return AddUser(self, nick, nick, hostname, modes ? modes : "+oik", numeric, desc, now, "AAAAAA");
1822 }
1823
1824 struct userNode *
1825 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
1826 {
1827     char numeric[COMBO_NUMERIC_LEN+1];
1828     int local_num = get_local_numeric();
1829     time_t timestamp = now;
1830     struct userNode *old_user = GetUserH(nick);
1831
1832     if (old_user) {
1833         if (IsLocal(old_user))
1834             return old_user;
1835         timestamp = old_user->timestamp - 1;
1836     }
1837     if (local_num == -1) {
1838         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
1839         return 0;
1840     }
1841     make_numeric(self, local_num, numeric);
1842     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
1843 }
1844
1845 int
1846 is_valid_nick(const char *nick) {
1847     /* IRC has some of The Most Fucked-Up ideas about character sets
1848      * in the world.. */
1849     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
1850         return 0;
1851     for (++nick; *nick; ++nick)
1852         if (!isalnum(*nick) && !strchr("{|}~[\\]^-_`", *nick))
1853             return 0;
1854     if (strlen(nick) > nicklen)
1855         return 0;
1856     return 1;
1857 }
1858
1859 static struct userNode*
1860 AddUser(struct server* uplink, const char *nick, const char *ident, const char *hostname, const char *modes, const char *numeric, const char *userinfo, time_t timestamp, const char *realip)
1861 {
1862     struct userNode *oldUser, *uNode;
1863     unsigned int n, ignore_user;
1864
1865     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
1866         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", uplink, nick, numeric);
1867         return NULL;
1868     }
1869
1870     if (!uplink) {
1871         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", uplink, nick, numeric);
1872         return NULL;
1873     }
1874
1875     if (uplink != GetServerN(numeric)) {
1876         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", uplink, nick, numeric, uplink->name);
1877         return NULL;
1878     }
1879
1880     if (!is_valid_nick(nick)) {
1881         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", uplink, nick);
1882         return NULL;
1883     }
1884
1885     ignore_user = 0;
1886     if ((oldUser = GetUserH(nick))) {
1887         if (IsLocal(oldUser) && (IsService(oldUser) || IsPersistent(oldUser))) {
1888             /* The service should collide the new user off. */
1889             oldUser->timestamp = timestamp - 1;
1890             irc_user(oldUser);
1891         }
1892         if (oldUser->timestamp > timestamp) {
1893             /* "Old" user is really newer; remove them */
1894             DelUser(oldUser, 0, 1, "Overruled by older nick");
1895         } else {
1896             /* User being added is too new; do not add them to
1897              * clients, but do add them to the server's list, since it
1898              * will send a KILL and QUIT soon. */
1899             ignore_user = 1;
1900         }
1901     }
1902
1903     /* create new usernode and set all values */
1904     uNode = calloc(1, sizeof(*uNode));
1905     uNode->nick = strdup(nick);
1906     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
1907     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
1908     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
1909     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
1910     uNode->ip.s_addr = htonl(base64toint(realip, 6));
1911     uNode->timestamp = timestamp;
1912     modeList_init(&uNode->channels);
1913     uNode->uplink = uplink;
1914     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
1915         uNode->uplink->max_clients = uNode->uplink->clients;
1916     }
1917     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
1918     uNode->uplink->users[uNode->num_local] = uNode;
1919     mod_usermode(uNode, modes);
1920     if (ignore_user)
1921         return uNode;
1922
1923     dict_insert(clients, uNode->nick, uNode);
1924     if (dict_size(clients) > max_clients) {
1925         max_clients = dict_size(clients);
1926         max_clients_time = now;
1927     }
1928     if (IsLocal(uNode))
1929         irc_user(uNode);
1930     for (n=0; n<nuf_used; n++)
1931         if (nuf_list[n](uNode))
1932             break;
1933     return uNode;
1934 }
1935
1936 /* removes user from it's server's hash table and nick hash table */
1937 void
1938 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
1939 {
1940     unsigned int n;
1941
1942     /* mark them as dead, in case anybody cares */
1943     user->dead = 1;
1944
1945     /* remove user from all channels */
1946     while (user->channels.used > 0)
1947         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, false, 0);
1948
1949     /* Call these in reverse order so ChanServ can update presence
1950        information before NickServ nukes the handle_info. */
1951     for (n = duf_used; n > 0; )
1952         duf_list[--n](user, killer, why);
1953
1954     user->uplink->clients--;
1955     user->uplink->users[user->num_local] = NULL;
1956     if (IsOper(user))
1957         userList_remove(&curr_opers, user);
1958     /* remove from global dictionary, but not if after a collide */
1959     if (user == dict_find(clients, user->nick, NULL))
1960         dict_remove(clients, user->nick);
1961
1962     if (IsInvisible(user))
1963         invis_clients--;
1964
1965     if (announce) {
1966         if (IsLocal(user))
1967             irc_quit(user, why);
1968         else
1969             irc_kill(killer, user, why);
1970     }
1971
1972     modeList_clean(&user->channels);
1973     /* We don't free them, in case we try to privmsg them or something
1974      * (like when a stupid oper kills themself).  We just put them onto
1975      * a list of clients that get freed after processing each line.
1976      */
1977     if (dead_users.size)
1978         userList_append(&dead_users, user);
1979     else
1980         free_user(user);
1981 }
1982
1983 void mod_usermode(struct userNode *user, const char *mode_change) {
1984     static void call_oper_funcs(struct userNode *user);
1985     int add = 1;
1986     const char *word = mode_change;
1987
1988     if (!user || !mode_change)
1989         return;
1990     while (*word != ' ' && *word) word++;
1991     while (*word == ' ') word++;
1992     while (1) {
1993 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
1994         switch (*mode_change++) {
1995         case 0: case ' ': return;
1996         case '+': add = 1; break;
1997         case '-': add = 0; break;
1998         case 'o':
1999             do_user_mode(FLAGS_OPER);
2000             if (add) {
2001                 userList_append(&curr_opers, user);
2002                 call_oper_funcs(user);
2003             } else {
2004                 userList_remove(&curr_opers, user);
2005             }
2006             break;
2007         case 'O': do_user_mode(FLAGS_LOCOP); break;
2008         case 'i': do_user_mode(FLAGS_INVISIBLE);
2009             if (add)
2010                 invis_clients++;
2011             else
2012                 invis_clients--;
2013             break;
2014         case 'w': do_user_mode(FLAGS_WALLOP); break;
2015         case 's': do_user_mode(FLAGS_SERVNOTICE); break;
2016         case 'd': do_user_mode(FLAGS_DEAF); break;
2017         case 'k': do_user_mode(FLAGS_SERVICE); break;
2018         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2019         case 'h': do_user_mode(FLAGS_HELPER); break;
2020         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2021         case 'r':
2022             if (*word) {
2023                 char tag[MAXLEN];
2024                 unsigned int ii;
2025                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2026                     tag[ii++] = *word++;
2027                 tag[ii] = 0;
2028                 while (*word == ' ')
2029                     word++;
2030                 call_account_func(user, tag);
2031             }
2032             break;
2033         case 'f':
2034             if (*word) {
2035                 char host[MAXLEN];
2036                 unsigned int ii;
2037                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2038                     host[ii++] = *word++;
2039                 host[ii] = 0;
2040                 while (*word == ' ')
2041                     word++;
2042                 assign_fakehost(user, host, 0);
2043             }
2044             break;
2045         }
2046 #undef do_user_mode
2047     }
2048 }
2049
2050 struct mod_chanmode *
2051 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags)
2052 {
2053     struct mod_chanmode *change;
2054     unsigned int ii, in_arg, ch_arg, add;
2055
2056     if (argc == 0)
2057         return NULL;
2058     if (!(change = mod_chanmode_alloc(argc - 1)))
2059         return NULL;
2060
2061     for (ii = ch_arg = 0, in_arg = add = 1;
2062          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2063          ++ii) {
2064         switch (modes[0][ii]) {
2065         case '+':
2066             add = 1;
2067             break;
2068         case '-':
2069             add = 0;
2070             break;
2071 #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)
2072         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2073         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2074         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2075         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2076         case 'm': do_chan_mode(MODE_MODERATED); break;
2077         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2078         case 'p': do_chan_mode(MODE_PRIVATE); break;
2079         case 'r': do_chan_mode(MODE_REGONLY); break;
2080         case 's': do_chan_mode(MODE_SECRET); break;
2081         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2082 #undef do_chan_mode
2083         case 'l':
2084             if (add) {
2085                 if (in_arg >= argc)
2086                     goto error;
2087                 change->modes_set |= MODE_LIMIT;
2088                 change->new_limit = atoi(modes[in_arg++]);
2089             } else {
2090                 change->modes_set &= ~MODE_LIMIT;
2091                 change->modes_clear |= MODE_LIMIT;
2092             }
2093             break;
2094         case 'k':
2095             if (add) {
2096                 if (in_arg >= argc)
2097                     goto error;
2098                 change->modes_set |= MODE_KEY;
2099                 safestrncpy(change->new_key, modes[in_arg++], sizeof(change->new_key));
2100             } else {
2101                 change->modes_clear |= MODE_KEY;
2102                 if (!(flags & MCP_KEY_FREE)) {
2103                     if (in_arg >= argc)
2104                         goto error;
2105                     in_arg++;
2106                 }
2107             }
2108             break;
2109         case 'b':
2110             if (!(flags & MCP_ALLOW_OVB))
2111                 goto error;
2112             if (in_arg >= argc)
2113                 goto error;
2114             change->args[ch_arg].mode = MODE_BAN;
2115             if (!add)
2116                 change->args[ch_arg].mode |= MODE_REMOVE;
2117             change->args[ch_arg++].hostmask = modes[in_arg++];
2118             break;
2119         case 'o': case 'v':
2120         {
2121             struct userNode *victim;
2122             if (!(flags & MCP_ALLOW_OVB))
2123                 goto error;
2124             if (in_arg >= argc)
2125                 goto error;
2126             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2127             if (!add)
2128                 change->args[ch_arg].mode |= MODE_REMOVE;
2129             if (flags & MCP_FROM_SERVER)
2130                 victim = GetUserN(modes[in_arg++]);
2131             else
2132                 victim = GetUserH(modes[in_arg++]);
2133             if (!victim)
2134                 continue;
2135             if ((change->args[ch_arg].member = GetUserMode(channel, victim)))
2136                 ch_arg++;
2137             break;
2138         }
2139         default:
2140             if (!(flags & MCP_FROM_SERVER))
2141                 goto error;
2142             break;
2143         }
2144     }
2145     change->argc = ch_arg; /* in case any turned out to be ignored */
2146     if (change->modes_set & MODE_SECRET) {
2147         change->modes_set &= ~(MODE_PRIVATE);
2148         change->modes_clear |= MODE_PRIVATE;
2149     } else if (change->modes_set & MODE_PRIVATE) {
2150         change->modes_set &= ~(MODE_SECRET);
2151         change->modes_clear |= MODE_SECRET;
2152     }
2153     return change;
2154   error:
2155     mod_chanmode_free(change);
2156     return NULL;
2157 }
2158
2159 struct chanmode_buffer {
2160     char modes[MAXLEN];
2161     char args[MAXLEN];
2162     struct chanNode *channel;
2163     struct userNode *actor;
2164     unsigned int modes_used;
2165     unsigned int args_used;
2166     size_t chname_len;
2167     unsigned int is_add : 1;
2168     unsigned int is_chanop : 1;
2169 };
2170
2171 static void
2172 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2173 {
2174     size_t arg_len = strlen(arg);
2175     if (buf->modes_used > (MAXMODEPARAMS) ||
2176         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2177         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2178         buf->modes[buf->modes_used + buf->args_used] = '\0';
2179         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2180         buf->modes[0] = buf->is_add ? '+' : '-';
2181         buf->modes_used = 1;
2182         buf->args_used = 0;
2183     }
2184     buf->modes[buf->modes_used++] = ch;
2185     buf->args[buf->args_used++] = ' ';
2186     memcpy(buf->args + buf->args_used, arg, arg_len);
2187     buf->args_used += arg_len;
2188 }
2189
2190 void
2191 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2192 {
2193     struct chanmode_buffer chbuf;
2194     unsigned int arg;
2195     struct modeNode *mn;
2196     char int_buff[32], mode = '\0';
2197
2198     assert(change->argc <= change->alloc_argc);
2199     memset(&chbuf, 0, sizeof(chbuf));
2200     chbuf.channel = channel;
2201     chbuf.actor = who;
2202     chbuf.chname_len = strlen(channel->name);
2203
2204     mn = GetUserMode(channel, who);
2205     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2206         chbuf.is_chanop = 1;
2207
2208     /* First remove modes */
2209     chbuf.is_add = 0;
2210     if (change->modes_clear) {
2211         if (mode != '-')
2212             chbuf.modes[chbuf.modes_used++] = mode = '-';
2213 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2214         DO_MODE_CHAR(PRIVATE, 'p');
2215         DO_MODE_CHAR(SECRET, 's');
2216         DO_MODE_CHAR(MODERATED, 'm');
2217         DO_MODE_CHAR(TOPICLIMIT, 't');
2218         DO_MODE_CHAR(INVITEONLY, 'i');
2219         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2220         DO_MODE_CHAR(LIMIT, 'l');
2221         DO_MODE_CHAR(DELAYJOINS, 'D');
2222         DO_MODE_CHAR(REGONLY, 'r');
2223         DO_MODE_CHAR(NOCOLORS, 'c');
2224         DO_MODE_CHAR(NOCTCPS, 'C');
2225 #undef DO_MODE_CHAR
2226         if (change->modes_clear & channel->modes & MODE_KEY)
2227             mod_chanmode_append(&chbuf, 'k', channel->key);
2228     }
2229     for (arg = 0; arg < change->argc; ++arg) {
2230         if (!(change->args[arg].mode & MODE_REMOVE))
2231             continue;
2232         if (mode != '-')
2233             chbuf.modes[chbuf.modes_used++] = mode = '-';
2234         switch (change->args[arg].mode & ~MODE_REMOVE) {
2235         case MODE_BAN:
2236             mod_chanmode_append(&chbuf, 'b', change->args[arg].hostmask);
2237             break;
2238         default:
2239             if (change->args[arg].mode & MODE_CHANOP)
2240                 mod_chanmode_append(&chbuf, 'o', change->args[arg].member->user->numeric);
2241             if (change->args[arg].mode & MODE_VOICE)
2242                 mod_chanmode_append(&chbuf, 'v', change->args[arg].member->user->numeric);
2243             break;
2244         }
2245     }
2246
2247     /* Then set them */
2248     chbuf.is_add = 1;
2249     if (change->modes_set) {
2250         if (mode != '+')
2251             chbuf.modes[chbuf.modes_used++] = mode = '+';
2252 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2253         DO_MODE_CHAR(PRIVATE, 'p');
2254         DO_MODE_CHAR(SECRET, 's');
2255         DO_MODE_CHAR(MODERATED, 'm');
2256         DO_MODE_CHAR(TOPICLIMIT, 't');
2257         DO_MODE_CHAR(INVITEONLY, 'i');
2258         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2259         DO_MODE_CHAR(DELAYJOINS, 'D');
2260         DO_MODE_CHAR(REGONLY, 'r');
2261         DO_MODE_CHAR(NOCOLORS, 'c');
2262         DO_MODE_CHAR(NOCTCPS, 'C');
2263 #undef DO_MODE_CHAR
2264         if(change->modes_set & MODE_KEY)
2265             mod_chanmode_append(&chbuf, 'k', change->new_key);
2266         if(change->modes_set & MODE_LIMIT) {
2267             sprintf(int_buff, "%d", change->new_limit);
2268             mod_chanmode_append(&chbuf, 'l', int_buff);
2269         }
2270     }
2271     for (arg = 0; arg < change->argc; ++arg) {
2272         if (change->args[arg].mode & MODE_REMOVE)
2273             continue;
2274         if (mode != '+')
2275             chbuf.modes[chbuf.modes_used++] = mode = '+';
2276         switch (change->args[arg].mode) {
2277         case MODE_BAN:
2278             mod_chanmode_append(&chbuf, 'b', change->args[arg].hostmask);
2279             break;
2280         default:
2281             if (change->args[arg].mode & MODE_CHANOP)
2282                 mod_chanmode_append(&chbuf, 'o', change->args[arg].member->user->numeric);
2283             if (change->args[arg].mode & MODE_VOICE)
2284                 mod_chanmode_append(&chbuf, 'v', change->args[arg].member->user->numeric);
2285             break;
2286         }
2287     }
2288
2289     /* Flush the buffer and apply changes locally */
2290     if (chbuf.modes_used > 0) {
2291         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2292         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2293         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2294     }
2295     mod_chanmode_apply(who, channel, change);
2296 }
2297
2298 char *
2299 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2300 {
2301     unsigned int used = 0;
2302     assert(change->argc <= change->alloc_argc);
2303     if (change->modes_clear) {
2304         outbuff[used++] = '-';
2305 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2306         DO_MODE_CHAR(PRIVATE, 'p');
2307         DO_MODE_CHAR(SECRET, 's');
2308         DO_MODE_CHAR(MODERATED, 'm');
2309         DO_MODE_CHAR(TOPICLIMIT, 't');
2310         DO_MODE_CHAR(INVITEONLY, 'i');
2311         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2312         DO_MODE_CHAR(LIMIT, 'l');
2313         DO_MODE_CHAR(KEY, 'k');
2314         DO_MODE_CHAR(DELAYJOINS, 'D');
2315         DO_MODE_CHAR(REGONLY, 'r');
2316         DO_MODE_CHAR(NOCOLORS, 'c');
2317         DO_MODE_CHAR(NOCTCPS, 'C');
2318 #undef DO_MODE_CHAR
2319     }
2320     if (change->modes_set) {
2321         outbuff[used++] = '+';
2322 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
2323         DO_MODE_CHAR(PRIVATE, 'p');
2324         DO_MODE_CHAR(SECRET, 's');
2325         DO_MODE_CHAR(MODERATED, 'm');
2326         DO_MODE_CHAR(TOPICLIMIT, 't');
2327         DO_MODE_CHAR(INVITEONLY, 'i');
2328         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2329         DO_MODE_CHAR(DELAYJOINS, 'D');
2330         DO_MODE_CHAR(REGONLY, 'r');
2331         DO_MODE_CHAR(NOCOLORS, 'c');
2332         DO_MODE_CHAR(NOCTCPS, 'C');
2333 #undef DO_MODE_CHAR
2334         switch (change->modes_set & (MODE_KEY|MODE_LIMIT)) {
2335         case MODE_KEY|MODE_LIMIT:
2336             used += sprintf(outbuff+used, "lk %d %s", change->new_limit, change->new_key);
2337             break;
2338         case MODE_KEY:
2339             used += sprintf(outbuff+used, "k %s", change->new_key);
2340             break;
2341         case MODE_LIMIT:
2342             used += sprintf(outbuff+used, "l %d", change->new_limit);
2343             break;
2344         }
2345     }
2346     outbuff[used] = 0;
2347     return outbuff;
2348 }
2349
2350 static int
2351 clear_chanmode(struct chanNode *channel, const char *modes)
2352 {
2353     unsigned int remove;
2354
2355     for (remove = 0; *modes; modes++) {
2356         switch (*modes) {
2357         case 'o': remove |= MODE_CHANOP; break;
2358         case 'v': remove |= MODE_VOICE; break;
2359         case 'p': remove |= MODE_PRIVATE; break;
2360         case 's': remove |= MODE_SECRET; break;
2361         case 'm': remove |= MODE_MODERATED; break;
2362         case 't': remove |= MODE_TOPICLIMIT; break;
2363         case 'i': remove |= MODE_INVITEONLY; break;
2364         case 'n': remove |= MODE_NOPRIVMSGS; break;
2365         case 'k':
2366             remove |= MODE_KEY;
2367             channel->key[0] = '\0';
2368             break;
2369         case 'l':
2370             remove |= MODE_LIMIT;
2371             channel->limit = 0;
2372             break;
2373         case 'b': remove |= MODE_BAN; break;
2374         case 'D': remove |= MODE_DELAYJOINS; break;
2375         case 'r': remove |= MODE_REGONLY; break;
2376         case 'c': remove |= MODE_NOCOLORS;
2377         case 'C': remove |= MODE_NOCTCPS; break;
2378         }
2379     }
2380
2381     if (!remove)
2382         return 1;
2383
2384     /* Remove simple modes. */
2385     channel->modes &= ~remove;
2386
2387     /* If removing bans, kill 'em all. */
2388     if ((remove & MODE_BAN) && channel->banlist.used) {
2389         unsigned int i;
2390         for (i=0; i<channel->banlist.used; i++)
2391             free(channel->banlist.list[i]);
2392         channel->banlist.used = 0;
2393     }
2394
2395     /* Remove member modes. */
2396     if ((remove & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
2397         int mask = ~(remove & (MODE_CHANOP | MODE_VOICE));
2398         unsigned int i;
2399
2400         for (i = 0; i < channel->members.used; i++)
2401             channel->members.list[i]->modes &= mask;
2402     }
2403
2404     return 1;
2405 }
2406
2407 void
2408 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2409 {
2410     unsigned int numeric = user->num_local;
2411     if (numeric >= num_privmsg_funcs) {
2412         int newnum = numeric + 8;
2413         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
2414         memset(privmsg_funcs+num_privmsg_funcs, 0, (newnum-num_privmsg_funcs)*sizeof(privmsg_func_t));
2415         num_privmsg_funcs = newnum;
2416     }
2417     if (privmsg_funcs[numeric])
2418         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
2419     privmsg_funcs[numeric] = handler;
2420 }
2421
2422 void
2423 unreg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2424 {
2425     unsigned int x;
2426
2427     if (!user || handler)
2428       return; /* this really only works with users */
2429
2430     memset(privmsg_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2431
2432     for (x = user->num_local+1; x < num_privmsg_funcs; x++) 
2433        memmove(privmsg_funcs+x-1, privmsg_funcs+x, sizeof(privmsg_func_t));
2434     
2435     privmsg_funcs = realloc(privmsg_funcs, num_privmsg_funcs*sizeof(privmsg_func_t)); 
2436     num_privmsg_funcs--;
2437 }
2438
2439
2440 void
2441 reg_notice_func(struct userNode *user, privmsg_func_t handler)
2442 {
2443     unsigned int numeric = user->num_local;
2444     if (numeric >= num_notice_funcs) {
2445         int newnum = numeric + 8;
2446         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
2447         memset(notice_funcs+num_notice_funcs, 0, (newnum-num_notice_funcs)*sizeof(privmsg_func_t));
2448         num_notice_funcs = newnum;
2449     }
2450     if (notice_funcs[numeric])
2451         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
2452     notice_funcs[numeric] = handler;
2453 }
2454
2455 void
2456 unreg_notice_func(struct userNode *user, privmsg_func_t handler)
2457 {
2458     unsigned int x;
2459
2460     if (!user || handler)
2461           return; /* this really only works with users */
2462
2463     memset(notice_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2464
2465     for (x = user->num_local+1; x < num_notice_funcs; x++)
2466        memmove(notice_funcs+x-1, notice_funcs+x, sizeof(privmsg_func_t));
2467
2468     memset(notice_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2469     notice_funcs = realloc(notice_funcs, num_notice_funcs*sizeof(privmsg_func_t));
2470     num_notice_funcs--;
2471 }
2472
2473 void
2474 reg_oper_func(oper_func_t handler)
2475 {
2476     if (of_used == of_size) {
2477         if (of_size) {
2478             of_size <<= 1;
2479             of_list = realloc(of_list, of_size*sizeof(oper_func_t));
2480         } else {
2481             of_size = 8;
2482             of_list = malloc(of_size*sizeof(oper_func_t));
2483         }
2484     }
2485     of_list[of_used++] = handler;
2486 }
2487
2488 static void
2489 call_oper_funcs(struct userNode *user)
2490 {
2491     unsigned int n;
2492     if (IsLocal(user))
2493         return;
2494     for (n=0; n<of_used; n++)
2495         of_list[n](user);
2496 }
2497
2498 static void
2499 send_burst(void)
2500 {
2501     unsigned int i, hop, max_hop=1;
2502     dict_iterator_t it;
2503
2504     /* burst (juped) servers, closest first (except self, which is sent already) */
2505     for (i=0; i<ArrayLength(servers_num); i++)
2506         if (servers_num[i] && servers_num[i]->hops > max_hop)
2507             max_hop = servers_num[i]->hops;
2508     for (hop=1; hop<=max_hop; hop++) {
2509         for (i=0;i<ArrayLength(servers_num);i++) {
2510             if (servers_num[i]
2511                 && (servers_num[i]->hops == hop)
2512                 && (servers_num[i] != self->uplink))
2513                 irc_server(servers_num[i]);
2514         }
2515     }
2516
2517     /* burst local nicks */
2518     for (i=0; i<=self->num_mask; i++)
2519         if (self->users[i])
2520             irc_user(self->users[i]);
2521
2522     /* build dict of unbursted channel names (just copy existing channels) */
2523     unbursted_channels = dict_new();
2524     for (it = dict_first(channels); it; it = iter_next(it))
2525         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
2526 }