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