Correctly implement AsLL pong.
[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 static int parse_oplevel(char *str);
300
301 /* Numerics can be XYY, XYYY, or XXYYY; with X's identifying the
302  * server and Y's indentifying the client on that server. */
303 struct server*
304 GetServerN(const char *numeric)
305 {
306     switch (strlen(numeric)) {
307     default:
308         return servers_num[base64toint(numeric, 2)];
309     case 4:
310     case 3:
311     case 1:
312         return servers_num[base64toint(numeric, 1)];
313     case 0:
314         return NULL;
315     }
316 }
317
318 struct userNode*
319 GetUserN(const char *numeric) /* using numeric */
320 {
321     struct userNode *un;
322     struct server *s;
323     int n, slen, ulen;
324
325     switch (strlen(numeric)) {
326     default:
327         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): numeric too long!", numeric);
328         return NULL;
329     case 5: slen = 2; ulen = 3; break;
330     case 4: slen = 1; ulen = 3; break;
331     case 3: slen = 1; ulen = 2; break;
332     case 2: case 1: case 0:
333         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): numeric too short!", numeric);
334         return NULL;
335     }
336     if (!(s = servers_num[base64toint(numeric, slen)])) {
337         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s): couldn't find server (len=%d)!", numeric, slen);
338         return NULL;
339     }
340     n = base64toint(numeric+slen, ulen) & s->num_mask;
341     if (!(un = s->users[n])) {
342         log_module(MAIN_LOG, LOG_WARNING, "GetUserN(%s) couldn't find user!", numeric);
343     }
344     return un;
345 }
346
347 static void
348 privmsg_user_helper(struct userNode *un, void *data)
349 {
350     struct privmsg_desc *pd = data;
351     unsigned int num = un->num_local;
352     if (!pd->is_notice) {
353         if ((num < num_privmsg_funcs) && privmsg_funcs[num]) {
354             privmsg_funcs[num](pd->user, un, pd->text, pd->is_qualified);
355         }
356     } else {
357         if ((num < num_notice_funcs) && notice_funcs[num]) {
358             notice_funcs[num](pd->user, un, pd->text, pd->is_qualified);
359         }
360     }
361 }
362
363 void
364 irc_server(struct server *srv)
365 {
366     char extranum[COMBO_NUMERIC_LEN+1];
367
368     inttobase64(extranum, srv->num_mask, (srv->numeric[1] || (srv->num_mask >= 64*64)) ? 3 : 2);
369     if (srv == self) {
370         /* The +s, ignored by Run's ircu, means "service" to Undernet's ircu */
371         putsock(P10_SERVER " %s %d %li %li J10 %s%s +s6 :%s",
372                 srv->name, srv->hops+1, srv->boot, srv->link, srv->numeric, extranum, srv->description);
373     } else {
374         putsock("%s " P10_SERVER " %s %d %li %li %c10 %s%s +s6 :%s",
375                 self->numeric, srv->name, srv->hops+1, srv->boot, srv->link, (srv->self_burst ? 'J' : 'P'), srv->numeric, extranum, srv->description);
376     }
377 }
378
379 static void
380 irc_p10_pton(irc_in_addr_t *ip, const char *input)
381 {
382     if (strlen(input) == 6) {
383         unsigned int value;
384         memset(ip, 0, 6 * sizeof(ip->in6[0]));
385         value = base64toint(input, 6);
386         ip->in6[6] = htons(value >> 16);
387         ip->in6[7] = htons(value & 65535);
388     } else {
389         unsigned int pos = 0;
390         do {
391             if (*input == '_') {
392                 unsigned int left;
393                 for (left = (25 - strlen(input)) / 3; left; left--)
394                     ip->in6[pos++] = 0;
395                 input++;
396             } else {
397                 ip->in6[pos++] = ntohs(base64toint(input, 3));
398                 input += 3;
399             }
400         } while (pos < 8);
401     }
402 }
403
404 static void
405 irc_p10_ntop(char *output, const irc_in_addr_t *ip)
406 {
407     if (irc_in_addr_is_ipv4(*ip)) {
408         unsigned int in4;
409         in4 = (ntohs(ip->in6[6]) << 16) | ntohs(ip->in6[7]);
410         inttobase64(output, in4, 6);
411         output[6] = '\0';
412     } else if (irc_in_addr_is_ipv6(*ip)) {
413         unsigned int max_start, max_zeros, curr_zeros, zero, ii;
414         /* Can start by printing out the leading non-zero parts. */
415         for (ii = 0; (ip->in6[ii]) && (ii < 8); ++ii) {
416             inttobase64(output, ntohs(ip->in6[ii]), 3);
417             output += 3;
418         }
419         /* Find the longest run of zeros. */
420         for (max_start = zero = ii, max_zeros = curr_zeros = 0; ii < 8; ++ii) {
421             if (!ip->in6[ii])
422                 curr_zeros++;
423             else if (curr_zeros > max_zeros) {
424                 max_start = ii - curr_zeros;
425                 max_zeros = curr_zeros;
426                 curr_zeros = 0;
427             }
428         }
429         if (curr_zeros > max_zeros) {
430             max_start = ii - curr_zeros;
431             max_zeros = curr_zeros;
432             curr_zeros = 0;
433         }
434         /* Print the rest of the address */
435         for (ii = zero; ii < 8; ) {
436             if ((ii == max_start) && max_zeros) {
437                 *output++ = '_';
438                 ii += max_zeros;
439             } else {
440                 inttobase64(output, ntohs(ip->in6[ii]), 3);
441                 output += 3;
442             }
443         }
444         *output = '\0';
445     } else {
446         strcpy(output, "???");
447     }
448 }
449
450 void
451 irc_user(struct userNode *user)
452 {
453     char b64ip[25];
454     if (!user)
455         return;
456     irc_p10_ntop(b64ip, &user->ip);
457     if (user->modes) {
458         int modelen;
459         char modes[32];
460
461         modelen = 0;
462         if (IsOper(user))
463             modes[modelen++] = 'o';
464         if (IsInvisible(user))
465             modes[modelen++] = 'i';
466         if (IsWallOp(user))
467             modes[modelen++] = 'w';
468         if (IsService(user))
469             modes[modelen++] = 'k';
470         if (IsServNotice(user))
471             modes[modelen++] = 's';
472         if (IsDeaf(user))
473             modes[modelen++] = 'd';
474         if (IsGlobal(user))
475             modes[modelen++] = 'g';
476         if (IsHelperIrcu(user))
477             modes[modelen++] = 'h';
478         if (IsHiddenHost(user))
479             modes[modelen++] = 'x';
480         modes[modelen] = 0;
481
482         /* we don't need to put the + in modes because it's in the format string. */
483         putsock("%s " P10_NICK " %s %d %li %s %s +%s %s %s :%s",
484                 user->uplink->numeric, user->nick, user->uplink->hops+1, user->timestamp, user->ident, user->hostname, modes, b64ip, user->numeric, user->info);
485     } else {
486         putsock("%s " P10_NICK " %s %d %li %s %s %s %s :%s",
487                 user->uplink->numeric, user->nick, user->uplink->hops+1, user->timestamp, user->ident, user->hostname, b64ip, user->numeric, user->info);
488     }
489 }
490
491 void
492 irc_account(struct userNode *user, const char *stamp)
493 {
494     putsock("%s " P10_ACCOUNT " %s %s", self->numeric, user->numeric, stamp);
495 }
496
497 void
498 irc_fakehost(struct userNode *user, const char *host)
499 {
500     putsock("%s " P10_FAKEHOST " %s %s", self->numeric, user->numeric, host);
501 }
502
503 void
504 irc_regnick(UNUSED_ARG(struct userNode *user))
505 {
506     /* no operation here */
507 }
508
509 void
510 irc_nick(struct userNode *user, UNUSED_ARG(const char *old_nick))
511 {
512     putsock("%s " P10_NICK " %s "FMT_TIME_T, user->numeric, user->nick, now);
513 }
514
515 void
516 irc_fetchtopic(struct userNode *from, const char *to)
517 {
518     if (!from || !to)
519         return;
520     putsock("%s " P10_TOPIC " %s", from->numeric, to);
521 }
522
523 void
524 irc_squit(struct server *srv, const char *message, const char *service_message)
525 {
526     if (!service_message)
527         service_message = message;
528
529     /* Are we leaving the network? */
530     if (srv == self && cManager.uplink->state == CONNECTED) {
531         unsigned int i;
532
533         /* Quit all clients linked to me. */
534         for (i = 0; i <= self->num_mask; i++) {
535             if (!self->users[i])
536                 continue;
537             irc_quit(self->users[i], service_message);
538         }
539     }
540
541     putsock("%s " P10_SQUIT " %s %d :%s", self->numeric, srv->name, 0, message);
542
543     if (srv == self) {
544         /* Force a reconnect to the currently selected server. */
545         cManager.uplink->tries = 0;
546         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", message);
547         close_socket();
548     }
549 }
550
551 void
552 irc_wallchops(struct userNode *from, const char *to, const char *message)
553 {
554     putsock("%s " P10_WALLCHOPS " %s :%s", from->numeric, to, message);
555 }
556
557 void
558 irc_notice(struct userNode *from, const char *to, const char *message)
559 {
560     putsock("%s " P10_NOTICE " %s :%s", from->numeric, to, message);
561 }
562
563 void
564 irc_notice_user(struct userNode *from, struct userNode *to, const char *message)
565 {
566     putsock("%s " P10_NOTICE " %s :%s", from->numeric, to->numeric, message);
567 }
568
569 void
570 irc_privmsg(struct userNode *from, const char *to, const char *message)
571 {
572     putsock("%s " P10_PRIVMSG " %s :%s", from->numeric, to, message);
573 }
574
575 void
576 irc_eob(void)
577 {
578     putsock("%s " P10_EOB, self->numeric);
579 }
580
581 void
582 irc_eob_ack(void)
583 {
584     putsock("%s " P10_EOB_ACK, self->numeric);
585 }
586
587 void
588 irc_ping(const char *payload)
589 {
590     putsock("%s " P10_PING " :%s", self->numeric, payload);
591 }
592
593 void
594 irc_pong(const char *who, const char *data)
595 {
596     putsock("%s " P10_PONG " %s :%s", self->numeric, who, data);
597 }
598
599 void
600 irc_pong_asll(const char *who, const char *orig_ts)
601 {
602     char *delim;
603     struct timeval orig;
604     struct timeval now;
605     int diff;
606
607     orig.tv_sec = strtoul(orig_ts, &delim, 10);
608     orig.tv_usec = (*delim == '.') ? strtoul(delim + 1, NULL, 10) : 0;
609     gettimeofday(&now, NULL);
610     diff = (now.tv_sec - orig.tv_sec) * 1000 + (now.tv_usec - orig.tv_usec) / 1000;
611     putsock("%s " P10_PONG " %s %s %d " FMT_TIME_T ".%06u", self->numeric, who, orig_ts, diff, now.tv_sec, (unsigned)now.tv_usec);
612 }
613
614 void
615 irc_pass(const char *passwd)
616 {
617     putsock(P10_PASS " :%s", passwd);
618 }
619
620 void
621 irc_introduce(const char *passwd)
622 {
623     void timed_send_ping(void *data);
624
625     self->self_burst = self->burst = 1;
626     irc_pass(passwd);
627     irc_server(self);
628     burst_length = 0;
629     timeq_add(now + ping_freq, timed_send_ping, 0);
630 }
631
632 void
633 irc_gline(struct server *srv, struct gline *gline)
634 {
635     putsock("%s " P10_GLINE " %s +%s %ld :%s",
636             self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires-now, gline->reason);
637 }
638
639 void
640 irc_settime(const char *srv_name_mask, time_t new_time)
641 {
642     ioset_set_time(new_time);
643     if (!strcmp(srv_name_mask, "*"))
644         srv_name_mask = "";
645     putsock("%s " P10_SETTIME " " FMT_TIME_T " %s", self->numeric, new_time, srv_name_mask);
646 }
647
648 void
649 irc_ungline(const char *mask)
650 {
651     putsock("%s " P10_GLINE " * -%s", self->numeric, mask);
652 }
653
654 static void
655 irc_burst(struct chanNode *chan)
656 {
657     char burst_line[512];
658     int pos, base_len, len;
659     struct modeNode *mn;
660     struct banNode *bn;
661     long last_mode=-1;
662     unsigned int n;
663
664     base_len = sprintf(burst_line, "%s " P10_BURST " %s " FMT_TIME_T " ",
665                        self->numeric, chan->name, chan->timestamp);
666     len = irc_make_chanmode(chan, burst_line+base_len);
667     pos = base_len + len;
668     if (len)
669         burst_line[pos++] = ' ';
670
671     /* dump the users */
672     for (n=0; n<chan->members.used; n++) {
673         mn = chan->members.list[n];
674         if (pos > 500) {
675             burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
676             putsock("%s", burst_line);
677             pos = base_len;
678             last_mode = -1;
679         }
680         memcpy(burst_line+pos, mn->user->numeric, strlen(mn->user->numeric));
681         pos += strlen(mn->user->numeric);
682         if (mn->modes && (mn->modes != last_mode)) {
683             last_mode = mn->modes;
684             burst_line[pos++] = ':';
685             if (last_mode & MODE_CHANOP)
686                 burst_line[pos++] = 'o';
687             if (last_mode & MODE_VOICE)
688                 burst_line[pos++] = 'v';
689         }
690         if ((n+1)<chan->members.used)
691             burst_line[pos++] = ',';
692     }
693     if (chan->banlist.used) {
694         /* dump the bans */
695         if (pos+2+strlen(chan->banlist.list[0]->ban) > 505) {
696             burst_line[pos-1] = 0;
697             putsock("%s", burst_line);
698             pos = base_len;
699         } else {
700             burst_line[pos++] = ' ';
701         }
702
703         burst_line[pos++] = ':';
704         burst_line[pos++] = '%';
705         base_len = pos;
706         for (n=0; n<chan->banlist.used; n++) {
707             bn = chan->banlist.list[n];
708             len = strlen(bn->ban);
709             if (pos+len+1 > 510) {
710                 burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
711                 putsock("%s", burst_line);
712                 pos = base_len;
713             }
714             memcpy(burst_line+pos, bn->ban, len);
715             pos += len;
716             burst_line[pos++] = ' ';
717         }
718     }
719     /* print the last line */
720     burst_line[pos] = 0;
721     putsock("%s", burst_line);
722 }
723
724 void
725 irc_quit(struct userNode *user, const char *message)
726 {
727     putsock("%s " P10_QUIT " :%s", user->numeric, message);
728 }
729
730 void
731 irc_error(const char *to, const char *message)
732 {
733     if (to) {
734         putsock("%s " P10_ERROR " :%s", to, message);
735     } else {
736         putsock(":%s " P10_ERROR " :%s", self->name, message);
737     }
738 }
739
740 void
741 irc_kill(struct userNode *from, struct userNode *target, const char *message)
742 {
743     if (from) {
744         putsock("%s " P10_KILL " %s :%s!%s (%s)",
745                 from->numeric, target->numeric, self->name, from->nick, message);
746     } else {
747         putsock("%s " P10_KILL " %s :%s (%s)",
748                 self->numeric, target->numeric, self->name, message);
749     }
750 }
751
752 void
753 irc_mode(struct userNode *from, struct chanNode *target, const char *modes)
754 {
755     putsock("%s " P10_MODE " %s %s "FMT_TIME_T,
756             (from ? from->numeric : self->numeric),
757             target->name, modes, target->timestamp);
758 }
759
760 void
761 irc_invite(struct userNode *from, struct userNode *who, struct chanNode *to)
762 {
763     putsock("%s " P10_INVITE " %s %s", from->numeric, who->nick, to->name);
764 }
765
766 void
767 irc_join(struct userNode *who, struct chanNode *what)
768 {
769     if (what->members.used == 1) {
770         putsock("%s " P10_CREATE " %s %lu",
771                 who->numeric, what->name, what->timestamp);
772     } else {
773         putsock("%s " P10_JOIN " %s %lu", who->numeric, what->name, what->timestamp);
774     }
775 }
776
777 void
778 irc_kick(struct userNode *who, struct userNode *target, struct chanNode *channel, const char *msg)
779 {
780     const char *numeric;
781     struct modeNode *mn = GetUserMode(channel, who);
782     numeric = ((mn && (mn->modes & MODE_CHANOP)) || off_channel) ? who->numeric : self->numeric;
783     putsock("%s " P10_KICK " %s %s :%s",
784             numeric, channel->name, target->numeric, msg);
785 }
786
787 void
788 irc_stats(struct userNode *from, struct server *target, char type)
789 {
790     putsock("%s " P10_STATS " %c :%s", from->numeric, type, target->numeric);
791 }
792
793 void
794 irc_svsnick(struct userNode *from, struct userNode *target, const char *newnick)
795 {
796     putsock("%s " P10_SVSNICK " %s %s "FMT_TIME_T, from->uplink->numeric, target->numeric, newnick, now);
797 }
798
799 void
800 irc_part(struct userNode *who, struct chanNode *what, const char *reason)
801 {
802     if (reason) {
803         putsock("%s " P10_PART " %s :%s", who->numeric, what->name, reason);
804     } else {
805         putsock("%s " P10_PART " %s", who->numeric, what->name);
806     }
807 }
808
809 void
810 irc_topic(struct userNode *who, struct chanNode *what, const char *topic)
811 {
812     putsock("%s " P10_TOPIC " %s :%s", who->numeric, what->name, topic);
813 }
814
815 void
816 irc_raw(const char *what)
817 {
818     putsock("%s", what);
819 }
820
821 void
822 irc_numeric(struct userNode *user, unsigned int num, const char *format, ...)
823 {
824     va_list arg_list;
825     char buffer[MAXLEN];
826     va_start(arg_list, format);
827     vsnprintf(buffer, MAXLEN-2, format, arg_list);
828     buffer[MAXLEN-1] = 0;
829     putsock(":%s %03d %s %s", self->name, num, user->nick, buffer);
830 }
831
832 static void send_burst(void);
833
834 static void
835 change_nicklen(int new_nicklen)
836 {
837     unsigned int nn;
838     char new_nick[NICKLEN+1];
839     struct userNode *user;
840
841     nicklen = new_nicklen;
842     /* fix up any users we have here */
843     for (nn=0; nn<=self->num_mask; nn++) {
844         if (!(user = self->users[nn]))
845             continue;
846         safestrncpy(new_nick, user->nick, sizeof(new_nick));
847         new_nick[nicklen] = 0;
848         NickChange(user, new_nick, 1);
849     }
850 }
851
852 static CMD_FUNC(cmd_whois)
853 {
854     struct userNode *from;
855     struct userNode *who;
856
857     if (argc < 3)
858         return 0;
859     if (!(from = GetUserH(origin))) {
860         log_module(MAIN_LOG, LOG_ERROR, "Could not find WHOIS origin user %s", origin);
861         return 0;
862     }
863     if(!(who = GetUserH(argv[2]))) {
864         irc_numeric(from, ERR_NOSUCHNICK, "%s@%s :No such nick", argv[2], self->name);
865         return 1;
866     }
867     if (IsHiddenHost(who) && !IsOper(from)) {
868         /* Just stay quiet. */
869         return 1;
870     }
871     irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->ident, who->hostname, who->info);
872     if (his_servername && his_servercomment)
873         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, his_servername, his_servercomment);
874     else
875         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, who->uplink->name, who->uplink->description);
876     if (IsOper(who))
877         irc_numeric(from, RPL_WHOISOPERATOR, "%s :is a megalomaniacal power hungry tyrant", who->nick);
878     irc_numeric(from, RPL_ENDOFWHOIS, "%s :End of /WHOIS list", who->nick);
879     return 1;
880 }
881
882 static CMD_FUNC(cmd_server)
883 {
884     struct server *srv;
885     const char *str;
886
887     if (argc < 8)
888         return 0;
889     if (self->uplink) {
890         /* another server introduced us */
891         srv = AddServer(GetServerH(origin), argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
892         if (!srv)
893             return 0;
894         srv->self_burst = argv[5][0] == 'J';
895         srv->burst = 1;
896     } else {
897         /* this must be our uplink */
898         srv = self->uplink = AddServer(self, argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
899         if (!srv)
900             return 0;
901         srv->self_burst = argv[5][0] == 'J';
902         srv->burst = 1;
903         if ((argv[7][0] == '+') && !force_n2k) {
904             log_module(MAIN_LOG, LOG_WARNING, "Got Undernet-style SERVER message but \"force_n2k\" not on.");
905         }
906         send_burst();
907     }
908
909     /* Fix up our timestamps if necessary. */
910     if (srv->boot <= PREHISTORY) {
911         /* Server from the mists of time.. */
912         if (srv->hops == 1) {
913             log_module(MAIN_LOG, LOG_ERROR, "Server %s claims to have booted at time "FMT_TIME_T".  This is absurd.", srv->name, srv->boot);
914         }
915     } else if ((str = conf_get_data("server/reliable_clock", RECDB_QSTRING))
916                && enabled_string(str)) {
917         /* If we have a reliable clock, we just keep our current time. */
918     } else {
919         if (srv->boot <= self->boot) {
920             /* The other server is older than us.  Accept their timestamp.
921              * Alternately, we are same age, but we accept their time
922              * since we are linking to them. */
923             self->boot = srv->boot;
924             ioset_set_time(srv->link);
925         }
926     }
927     if (srv == self->uplink) {
928         extern time_t burst_begin;
929         burst_begin = now;
930     }
931     return 1;
932 }
933
934 static CMD_FUNC(cmd_eob)
935 {
936     struct server *sender;
937     dict_iterator_t it;
938     unsigned int ii;
939
940     if (!(sender = GetServerH(origin)))
941         return 0;
942     if (sender == self->uplink) {
943         cManager.uplink->state = CONNECTED;
944         for (it = dict_first(unbursted_channels); it; it = iter_next(it))
945             irc_burst(iter_data(it));
946         dict_delete(unbursted_channels);
947         unbursted_channels = NULL;
948         irc_eob();
949         irc_eob_ack();
950     }
951     sender->self_burst = 0;
952     recalc_bursts(sender);
953     for (ii=0; ii<slf_used; ii++)
954         slf_list[ii](sender);
955     return 1;
956 }
957
958 static CMD_FUNC(cmd_eob_ack)
959 {
960     extern time_t burst_begin;
961
962     if (GetServerH(origin) == self->uplink) {
963         burst_length = now - burst_begin;
964         self->self_burst = self->burst = 0;
965     }
966     cManager.uplink->state = CONNECTED;
967     return 1;
968 }
969
970 static CMD_FUNC(cmd_ping)
971 {
972     struct server *srv;
973     struct userNode *un;
974
975     if (argc > 3)
976         irc_pong_asll(argv[2], argv[3]);
977     else if ((srv = GetServerH(origin)))
978         irc_pong(self->name, srv->numeric);
979     else if ((un = GetUserH(origin)))
980         irc_pong(self->name, un->numeric);
981     else
982         irc_pong(self->name, origin);
983
984     timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
985     timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
986     timeq_add(now + ping_freq, timed_send_ping, 0);
987     received_ping();
988     return 1;
989 }
990
991 static CMD_FUNC(cmd_error_nick)
992 {
993     /* Go back to original IRC length .. and try to reconnect :/ */
994     change_nicklen(9);
995     irc_squit(self, "Got erroneous nickname, truncating nicks.", NULL);
996     return 1;
997 }
998
999 struct create_desc {
1000     struct userNode *user;
1001     time_t when;
1002 };
1003
1004 static void
1005 join_helper(struct chanNode *chan, void *data)
1006 {
1007     struct create_desc *cd = data;
1008     AddChannelUser(cd->user, chan);
1009 }
1010
1011 static void
1012 create_helper(char *name, void *data)
1013 {
1014     struct create_desc *cd = data;
1015
1016     if (!strcmp(name, "0")) {
1017         while (cd->user->channels.used > 0)
1018             DelChannelUser(cd->user, cd->user->channels.list[0]->channel, 0, 0);
1019         return;
1020     }
1021
1022     AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL));
1023 }
1024
1025 static CMD_FUNC(cmd_create)
1026 {
1027     struct create_desc cd;
1028     struct userNode *user;
1029
1030     if ((argc < 3) || !(user = GetUserH(origin)))
1031         return 0;
1032     cd.user = user;
1033     cd.when = atoi(argv[2]);
1034     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1035     return 1;
1036 }
1037
1038 static CMD_FUNC(cmd_join)
1039 {
1040     struct create_desc cd;
1041
1042     if (!(cd.user = GetUserH(origin)))
1043         return 0;
1044     if (argc < 2)
1045         return 0;
1046     else if (argc < 3)
1047         cd.when = now;
1048     else
1049         cd.when = atoi(argv[2]);
1050     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1051     return 1;
1052 }
1053
1054 static CMD_FUNC(cmd_pong)
1055 {
1056     if (argc < 3)
1057         return 0;
1058     if (!strcmp(argv[2], self->name)) {
1059         timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1060         timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1061         timeq_add(now + ping_freq, timed_send_ping, 0);
1062         received_ping();
1063     }
1064     return 1;
1065 }
1066
1067 static CMD_FUNC(cmd_nick)
1068 {
1069     struct userNode *user;
1070     if ((user = GetUserH(origin))) {
1071         /* nick change (since the source is a user numeric) */
1072         if (argc < 2)
1073             return 0;
1074         NickChange(user, argv[1], 1);
1075     } else {
1076         struct server *serv;
1077         char modes[MAXLEN];
1078         /* new nick */
1079         if (argc < 9)
1080             return 0;
1081         serv = GetServerH(origin);
1082         if (argc > 9)
1083             unsplit_string(argv+6, argc-9, modes);
1084         else
1085             strcpy(modes, "+");
1086         AddUser(serv, argv[1], argv[4], argv[5], modes, argv[argc-2], argv[argc-1], atoi(argv[3]), argv[argc-3]);
1087     }
1088     return 1;
1089 }
1090
1091 static CMD_FUNC(cmd_account)
1092 {
1093     struct userNode *user;
1094
1095     if ((argc < 3) || !origin || !GetServerH(origin))
1096         return 0; /* Origin must be server. */
1097     user = GetUserN(argv[1]);
1098     if (!user)
1099         return 1; /* A QUIT probably passed the ACCOUNT. */
1100     call_account_func(user, argv[2]);
1101     return 1;
1102 }
1103
1104 static CMD_FUNC(cmd_fakehost)
1105 {
1106     struct userNode *user;
1107
1108     if ((argc < 3) || !origin || !GetServerH(origin))
1109         return 0;
1110     if (!(user = GetUserN(argv[1])))
1111         return 1;
1112     assign_fakehost(user, argv[2], 0);
1113     return 1;
1114 }
1115
1116 static CMD_FUNC(cmd_burst)
1117 {
1118     extern int rel_age;
1119     char modes[MAXLEN], *members = "", *banlist = NULL;
1120     unsigned int next = 3, res = 1;
1121     struct chanNode *cNode;
1122     struct userNode *un;
1123     struct modeNode *mNode;
1124     long mode;
1125     int oplevel = -1;
1126     char *user, *end, sep;
1127     time_t in_timestamp;
1128
1129     if (argc < 3)
1130         return 0;
1131     modes[0] = 0;
1132     while (next < argc) {
1133         switch (argv[next][0]) {
1134         case '+': {
1135             const char *pos;
1136             int n_modes;
1137             for (pos=argv[next], n_modes = 1; *pos; pos++)
1138                 if ((*pos == 'k') || (*pos == 'l') || (*pos == 'A')
1139                     || (*pos == 'U'))
1140                     n_modes++;
1141             unsplit_string(argv+next, n_modes, modes);
1142             next += n_modes;
1143             break;
1144         }
1145         case '%': banlist = argv[next++]+1; break;
1146         default: members = argv[next++]; break;
1147         }
1148     }
1149
1150     in_timestamp = atoi(argv[2]);
1151     if ((cNode = dict_find(unbursted_channels, argv[1], NULL))) {
1152         cNode->timestamp = in_timestamp;
1153         dict_remove(unbursted_channels, cNode->name);
1154         irc_burst(cNode);
1155     }
1156     cNode = AddChannel(argv[1], in_timestamp, modes, banlist);
1157
1158     /* Burst channel members in now. */
1159     for (user = members, sep = *members, mode = 0; sep; user = end) {
1160         for (end = user + 3; isalnum(*end) || *end == '[' || *end == ']'; end++) ;
1161         sep = *end++; end[-1] = 0;
1162         if (sep == ':') {
1163             mode = 0;
1164             while ((sep = *end++)) {
1165                 if (sep == 'o') {
1166                     mode |= MODE_CHANOP;
1167                     oplevel = -1;
1168                 } else if (sep == 'v') {
1169                     mode |= MODE_VOICE;
1170                     oplevel = -1;
1171                 } else if (isdigit(sep)) {
1172                     mode |= MODE_CHANOP;
1173                     if (oplevel >= 0)
1174                         oplevel += parse_oplevel(end);
1175                     else
1176                         oplevel = parse_oplevel(end);
1177                     while (isdigit(*end)) end++;
1178                 } else
1179                     break;
1180             }
1181             if (rel_age < 0)
1182                 mode = 0;
1183         }
1184         if (!(un = GetUserN(user))) {
1185             res = 0;
1186             continue;
1187         }
1188         if ((mNode = AddChannelUser(un, cNode))) {
1189             mNode->modes = mode;
1190             mNode->oplevel = oplevel;
1191         }
1192     }
1193
1194     return res;
1195 }
1196
1197 static CMD_FUNC(cmd_mode)
1198 {
1199     struct chanNode *cn;
1200     struct userNode *un;
1201
1202     if (argc < 3)
1203         return 0;
1204     if (!IsChannelName(argv[1])) {
1205         un = GetUserH(argv[1]);
1206         if (!un) {
1207             log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s whose mode is changing.", argv[1]);
1208             return 0;
1209         }
1210         mod_usermode(un, argv[2]);
1211         return 1;
1212     }
1213
1214     if (!(cn = GetChannel(argv[1]))) {
1215         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1216         return 0;
1217     }
1218     if ((un = GetUserH(origin))) {
1219         struct modeNode *mn;
1220         /* Update idle time for person setting the mode */
1221         if ((mn = GetUserMode(cn, un)))
1222             mn->idle_since = now;
1223     } else {
1224         /* If it came from a server, reset timestamp to re-sync. */
1225         cn->timestamp = atoi(argv[argc-1]);
1226     }
1227
1228     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER|(un ? MC_NOTIFY : 0));
1229 }
1230
1231 static CMD_FUNC(cmd_opmode)
1232 {
1233     struct chanNode *cn;
1234     struct userNode *un;
1235
1236     if (argc < 3)
1237         return 0;
1238
1239     if (!(cn = GetChannel(argv[1]))) {
1240         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1241         return 0;
1242     }
1243     if (!(un = GetUserH(origin))) {
1244         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting OPMODE.", origin);
1245         return 0;
1246     }
1247     if (!IsOper(un)) {
1248         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using OPMODE.", un->nick);
1249         return 0;
1250     }
1251
1252     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER); /* do NOT announce opmode locally */
1253 }
1254
1255 static int clear_chanmode(struct chanNode *channel, const char *modes);
1256
1257 static CMD_FUNC(cmd_clearmode)
1258 {
1259     struct chanNode *cn;
1260     struct userNode *un;
1261
1262     if (argc < 3)
1263         return 0;
1264
1265     if (!(cn = GetChannel(argv[1]))) {
1266         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1267         return 0;
1268     }
1269     if (!(un = GetUserH(origin))) {
1270         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting CLEARMODE.", origin);
1271         return 0;
1272     }
1273     if (!IsOper(un)) {
1274         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using CLEARMODE.", un->nick);
1275         return 0;
1276     }
1277
1278     return clear_chanmode(cn, argv[2]);
1279 }
1280
1281 static CMD_FUNC(cmd_topic)
1282 {
1283     struct chanNode *cn;
1284     time_t chan_ts, topic_ts;
1285
1286     if (argc < 3)
1287         return 0;
1288     if (!(cn = GetChannel(argv[1]))) {
1289         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose topic is being set", argv[1]);
1290         return 0;
1291     }
1292     if (argc >= 5) {
1293         /* Looks like an Asuka style topic burst. */
1294         chan_ts = atoi(argv[2]);
1295         topic_ts = atoi(argv[3]);
1296     } else {
1297         chan_ts = cn->timestamp;
1298         topic_ts = now;
1299     }
1300     SetChannelTopic(cn, GetUserH(origin), argv[argc-1], 0);
1301     cn->topic_time = topic_ts;
1302     return 1;
1303 }
1304
1305 static CMD_FUNC(cmd_num_topic)
1306 {
1307     struct chanNode *cn;
1308
1309     if (!argv[0])
1310         return 0; /* huh? */
1311     if (argv[2]) {
1312         cn = GetChannel(argv[2]);
1313         if (!cn) {
1314             log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s in topic reply", argv[2]);
1315             return 0;
1316         }
1317     } else
1318         return 0;
1319
1320     switch (atoi(argv[0])) {
1321     case 331:
1322         cn->topic_time = 0;
1323         break;  /* no topic */
1324     case 332:
1325         if (argc < 4)
1326             return 0;
1327         safestrncpy(cn->topic, unsplit_string(argv+3, argc-3, NULL), sizeof(cn->topic));
1328         break;
1329     case 333:
1330         if (argc < 5)
1331             return 0;
1332         safestrncpy(cn->topic_nick, argv[3], sizeof(cn->topic_nick));
1333         cn->topic_time = atoi(argv[4]);
1334         break;
1335     default:
1336         return 0; /* should never happen */
1337     }
1338     return 1;
1339 }
1340
1341 static CMD_FUNC(cmd_num_gline)
1342 {
1343     if (argc < 6)
1344         return 0;
1345     gline_add(origin, argv[3], atoi(argv[4])-now, argv[5], now, 0);
1346     return 1;
1347 }
1348
1349 static CMD_FUNC(cmd_quit)
1350 {
1351     struct userNode *user;
1352     if (argc < 2)
1353         return 0;
1354     /* Sometimes we get a KILL then a QUIT or the like, so we don't want to
1355      * call DelUser unless we have the user in our grasp. */
1356     if ((user = GetUserH(origin)))
1357         DelUser(user, NULL, false, argv[1]);
1358     return 1;
1359 }
1360
1361 static CMD_FUNC(cmd_kill)
1362 {
1363     struct userNode *user;
1364     if (argc < 2)
1365         return 0;
1366     user = GetUserN(argv[1]);
1367     if (!user) {
1368         /* If we get a KILL for a non-existent user, it could be a
1369          * Ghost response to a KILL we sent out earlier.  So we only
1370          * whine if the target is local.
1371          */
1372         if (!strncmp(argv[1], self->numeric, strlen(self->numeric)))
1373             log_module(MAIN_LOG, LOG_ERROR, "Unable to find kill victim %s", argv[1]);
1374         return 0;
1375     }
1376
1377     if (IsLocal(user) && IsService(user)) {
1378         /* TODO: rate limit this so silly things don't happen. */
1379         ReintroduceUser(user);
1380         return 1;
1381     }
1382
1383     DelUser(user, NULL, false, argv[2]);
1384     return 1;
1385 }
1386
1387 static CMD_FUNC(cmd_part)
1388 {
1389     struct userNode *user;
1390
1391     if (argc < 2)
1392         return 0;
1393     user = GetUserH(origin);
1394     if (!user)
1395         return 0;
1396     parse_foreach(argv[1], part_helper, NULL, NULL, NULL, user);
1397     return 1;
1398 }
1399
1400 static CMD_FUNC(cmd_kick)
1401 {
1402     if (argc < 3)
1403         return 0;
1404     ChannelUserKicked(GetUserH(origin), GetUserN(argv[2]), GetChannel(argv[1]));
1405     return 1;
1406 }
1407
1408 static CMD_FUNC(cmd_squit)
1409 {
1410     struct server *server;
1411
1412     if (argc < 4)
1413         return 0;
1414     if (!(server = GetServerH(argv[1])))
1415         return 0;
1416
1417     if (server == self->uplink) {
1418         /* Force a reconnect to the currently selected server. */
1419         cManager.uplink->tries = 0;
1420         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", argv[3]);
1421         close_socket();
1422         return 1;
1423     }
1424
1425     DelServer(server, 0, argv[3]);
1426     return 1;
1427 }
1428
1429 static CMD_FUNC(cmd_privmsg)
1430 {
1431     struct privmsg_desc pd;
1432     if (argc != 3)
1433         return 0;
1434     pd.user = GetUserH(origin);
1435     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1436         return 1;
1437     pd.is_notice = 0;
1438     pd.text = argv[2];
1439     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1440     return 1;
1441 }
1442
1443 static CMD_FUNC(cmd_notice)
1444 {
1445     struct privmsg_desc pd;
1446     if (argc != 3)
1447         return 0;
1448     pd.user = GetUserH(origin);
1449     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1450         return 1;
1451     pd.is_notice = 1;
1452     pd.text = argv[2];
1453     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1454     return 1;
1455 }
1456
1457 static CMD_FUNC(cmd_away)
1458 {
1459     struct userNode *uNode;
1460
1461     uNode = GetUserH(origin);
1462     if (!uNode)
1463         return 1;
1464     if (argc < 2)
1465         uNode->modes &= ~FLAGS_AWAY;
1466     else
1467         uNode->modes |= FLAGS_AWAY;
1468     return 1;
1469 }
1470
1471 static CMD_FUNC(cmd_gline)
1472 {
1473     if (argc < 3)
1474         return 0;
1475     if (argv[2][0] == '+') {
1476         if (argc < 5)
1477             return 0;
1478         gline_add(origin, argv[2]+1, strtoul(argv[3], NULL, 0), argv[argc-1], now, 0);
1479         return 1;
1480     } else if (argv[2][0] == '-') {
1481         gline_remove(argv[2]+1, 0);
1482         return 1;
1483     } else
1484         return 0;
1485 }
1486
1487 static CMD_FUNC(cmd_svsnick)
1488 {
1489     struct userNode *target, *dest;
1490     if ((argc < 4)
1491         || !(target = GetUserN(argv[1]))
1492         || !IsLocal(target)
1493         || (dest = GetUserH(argv[2])))
1494         return 0;
1495     NickChange(target, argv[2], 0);
1496     return 1;
1497 }
1498
1499 static oper_func_t *of_list;
1500 static unsigned int of_size = 0, of_used = 0;
1501
1502 void
1503 free_user(struct userNode *user)
1504 {
1505     free(user->nick);
1506     free(user);
1507 }
1508
1509 static void
1510 parse_cleanup(void)
1511 {
1512     unsigned int nn;
1513     free(of_list);
1514     free(privmsg_funcs);
1515     free(notice_funcs);
1516     free(mcf_list);
1517     dict_delete(irc_func_dict);
1518     for (nn=0; nn<dead_users.used; nn++)
1519         free_user(dead_users.list[nn]);
1520     userList_clean(&dead_users);
1521 }
1522
1523 static void
1524 p10_conf_reload(void) {
1525     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1526 }
1527
1528 static void
1529 remove_unbursted_channel(struct chanNode *cNode) {
1530     if (unbursted_channels)
1531         dict_remove(unbursted_channels, cNode->name);
1532 }
1533
1534 void
1535 init_parse(void)
1536 {
1537     const char *str, *desc;
1538     int numnick, usermask, max_users;
1539     char numer[COMBO_NUMERIC_LEN+1];
1540
1541     /* read config items */
1542     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1543     ping_freq = str ? ParseInterval(str) : 120;
1544     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1545     ping_timeout = str ? ParseInterval(str) : 30;
1546     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1547     force_n2k = str ? enabled_string(str) : 1;
1548     str = conf_get_data("server/numeric", RECDB_QSTRING);
1549     if (!str) {
1550         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1551         exit(1);
1552     }
1553     numnick = atoi(str);
1554     str = conf_get_data("server/max_users", RECDB_QSTRING);
1555     max_users = str ? atoi(str) : 4096;
1556     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1557     usermask--;
1558     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1559         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1560     else
1561         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1562
1563     str = conf_get_data("server/his_servername", RECDB_QSTRING);
1564     his_servername = str ? strdup(str) : NULL;
1565     str = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1566     his_servercomment = str ? strdup(str) : NULL;
1567
1568     str = conf_get_data("server/hostname", RECDB_QSTRING);
1569     desc = conf_get_data("server/description", RECDB_QSTRING);
1570     if (!str || !desc) {
1571         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1572         exit(1);
1573     }
1574     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1575     conf_register_reload(p10_conf_reload);
1576
1577     irc_func_dict = dict_new();
1578     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1579     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1580     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1581     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1582     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1583     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1584     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1585     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1586     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1587     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1588     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1589     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1590     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1591     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1592     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1593     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1594     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1595     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1596     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1597     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1598     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1599     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1600     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1601     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1602     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1603     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1604     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1605     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1606     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1607     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1608     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1609     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1610     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1611     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1612     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1613     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1614     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1615     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1616     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1617     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1618     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1619     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1620     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1621     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1622     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1623     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1624     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1625     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1626     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1627     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1628     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1629     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1630     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1631     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1632     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1633     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1634     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1635     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1636     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1637     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1638     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1639     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1640     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1641     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1642
1643     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1644      * Apparently to obliterate channels from any servers that think they
1645      * exist?
1646      */
1647     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1648     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1649     /* Ignore invites */
1650     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1651     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1652     /* DESYNCH is just informational, so ignore it */
1653     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1654     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1655     /* Ignore channel operator notices. */
1656     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1657     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1658     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1659     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1660     /* Ignore opers being silly. */
1661     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1662     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1663     /* We have reliable clock!  Always!  Wraaa! */
1664     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1665     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1666     /* handle topics */
1667     dict_insert(irc_func_dict, "331", cmd_num_topic);
1668     dict_insert(irc_func_dict, "332", cmd_num_topic);
1669     dict_insert(irc_func_dict, "333", cmd_num_topic);
1670     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1671     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1672     /* ban list resetting */
1673     /* "stats g" responses */
1674     dict_insert(irc_func_dict, "247", cmd_num_gline);
1675     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
1676     /* other numeric responses we might get */
1677     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
1678     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
1679     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
1680     dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */
1681     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
1682     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
1683     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
1684     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
1685     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
1686
1687     num_privmsg_funcs = 16;
1688     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
1689     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
1690
1691     num_notice_funcs = 16;
1692     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
1693     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
1694
1695     userList_init(&dead_users);
1696     reg_del_channel_func(remove_unbursted_channel);
1697     reg_exit_func(parse_cleanup);
1698 }
1699
1700 int
1701 parse_line(char *line, int recursive)
1702 {
1703     char *argv[MAXNUMPARAMS], *origin;
1704     int argc, cmd, res=0;
1705     cmd_func_t *func;
1706
1707     argc = split_line(line, true, MAXNUMPARAMS, argv);
1708     cmd = self->uplink || !argv[0][1] || !argv[0][2];
1709     if (argc > cmd) {
1710         if (cmd) {
1711             if (argv[0][0] == ':') {
1712                 origin = argv[0]+1;
1713             } else if (!argv[0][1] || !argv[0][2]) {
1714                 struct server *sNode = GetServerN(argv[0]);
1715                 origin = sNode ? sNode->name : 0;
1716             } else {
1717                 struct userNode *uNode = GetUserN(argv[0]);
1718                 origin = uNode ? uNode->nick : 0;
1719             }
1720         } else
1721             origin = 0;
1722         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
1723             res = func(origin, argc-cmd, argv+cmd);
1724     }
1725     if (!res) {
1726         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
1727     } else if (!recursive) {
1728         unsigned int i;
1729         for (i=0; i<dead_users.used; i++)
1730             free_user(dead_users.list[i]);
1731         dead_users.used = 0;
1732     }
1733     return res;
1734 }
1735
1736 static void
1737 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
1738 {
1739     char *j, old;
1740
1741     do {
1742         j = target_list;
1743         while (*j != 0 && *j != ',')
1744             j++;
1745         old = *j;
1746         *j = 0;
1747
1748         if (IsChannelName(target_list)
1749             || (target_list[0] == '0' && target_list[1] == '\0')) {
1750             struct chanNode *chan = GetChannel(target_list);
1751
1752             if (chan) {
1753                 if (cf)
1754                     cf(chan, data);
1755             } else {
1756                 if (nc)
1757                     nc(target_list, data);
1758             }
1759         } else {
1760             struct userNode *user;
1761             struct privmsg_desc *pd = data;
1762
1763             pd->is_qualified = 0;
1764             if (*target_list == '@') {
1765                 user = NULL;
1766             } else if (strchr(target_list, '@')) {
1767                 struct server *server;
1768
1769                 pd->is_qualified = 1;
1770                 user = GetUserH(strtok(target_list, "@"));
1771                 server = GetServerH(strtok(NULL, "@"));
1772
1773                 if (user && (user->uplink != server)) {
1774                     /* Don't attempt to index into any arrays
1775                        using a user's numeric on another server. */
1776                     user = NULL;
1777                 }
1778             } else {
1779                 user = GetUserN(target_list);
1780             }
1781
1782             if (user) {
1783                 if (uf)
1784                     uf(user, data);
1785             } else {
1786                 if (nu)
1787                     nu(target_list, data);
1788             }
1789         }
1790         target_list = j+1;
1791     } while (old == ',');
1792 }
1793
1794 static int
1795 get_local_numeric(void)
1796 {
1797     static unsigned int next_numeric = 0;
1798     if (self->clients > self->num_mask)
1799         return -1;
1800     while (self->users[next_numeric])
1801         if (++next_numeric > self->num_mask)
1802             next_numeric = 0;
1803     return next_numeric;
1804 }
1805
1806 static void
1807 make_numeric(struct server *svr, int local_num, char *outbuf)
1808 {
1809     int slen, llen;
1810
1811     if (force_n2k || svr->numeric[1]) {
1812         slen = 2;
1813         llen = 3;
1814     } else {
1815         slen = 1;
1816         llen = (local_num < 64*64) ? 2 : 3;
1817     }
1818     strncpy(outbuf, svr->numeric, slen);
1819     inttobase64(outbuf+slen, local_num, llen);
1820     outbuf[slen+llen] = 0;
1821 }
1822
1823 struct server *
1824 AddServer(struct server *uplink, const char *name, int hops, time_t boot, time_t link, const char *numeric, const char *description)
1825 {
1826     struct server* sNode;
1827     int slen, mlen;
1828
1829     if ((sNode = GetServerN(numeric))) {
1830         /* This means we're trying to re-add an existant server.
1831          * To be safe, we should forget the previous incarnation.
1832          * (And all its linked servers.)
1833          *
1834          * It usually only happens in replays when the original
1835          * had a ping timeout and the replay didn't (because
1836          * replaying a ping timeout invariably gets things wrong).
1837          */
1838         DelServer(sNode, 0, NULL);
1839     }
1840
1841     switch (strlen(numeric)) {
1842     case 5: slen = 2; mlen = 3; break;
1843     case 4: slen = 1; mlen = 3; break;
1844     case 3: slen = 1; mlen = 2; break;
1845     default:
1846         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
1847         return NULL;
1848     }
1849
1850     sNode = calloc(1, sizeof(*sNode));
1851     sNode->uplink = uplink;
1852     safestrncpy(sNode->name, name, sizeof(sNode->name));
1853     sNode->num_mask = base64toint(numeric+slen, mlen);
1854     sNode->hops = hops;
1855     sNode->boot = boot;
1856     sNode->link = link;
1857     strncpy(sNode->numeric, numeric, slen);
1858     safestrncpy(sNode->description, description, sizeof(sNode->description));
1859     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
1860     serverList_init(&sNode->children);
1861     if (sNode->uplink) {
1862         /* uplink may be NULL if we're just building ourself */
1863         serverList_append(&sNode->uplink->children, sNode);
1864     }
1865     servers_num[base64toint(numeric, slen)] = sNode;
1866     dict_insert(servers, sNode->name, sNode);
1867     return sNode;
1868 }
1869
1870 void DelServer(struct server* serv, int announce, const char *message)
1871 {
1872     unsigned int i;
1873
1874     /* If we receive an ERROR command before the SERVER
1875      * command a NULL server can be passed */
1876     if (!serv)
1877         return;
1878
1879     /* Hrm, what's the right way to SQUIT some other server?
1880      * (This code is only to handle killing juped servers.) */
1881     if (announce && (serv->uplink == self) && (serv != self->uplink))
1882         irc_squit(serv, message, NULL);
1883
1884     /* must recursively remove servers linked to this one first */
1885     for (i=serv->children.used;i>0;)
1886         if (serv->children.list[--i] != self)
1887             DelServer(serv->children.list[i], false, NULL);
1888
1889     /* clean up server's user hash tables */
1890     for (i=0;i<=serv->num_mask;i++)
1891         if (serv->users[i])
1892             DelUser(serv->users[i], NULL, false, "server delinked");
1893
1894     /* delete server */
1895     if (serv->uplink)
1896         serverList_remove(&serv->uplink->children, serv);
1897     if (serv == self->uplink)
1898         self->uplink = NULL;
1899     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
1900     dict_remove(servers, serv->name);
1901     serverList_clean(&serv->children);
1902     free(serv->users);
1903     free(serv);
1904 }
1905
1906 struct userNode *
1907 AddService(const char *nick, const char *modes, const char *desc, const char *hostname)
1908 {
1909     char numeric[COMBO_NUMERIC_LEN+1];
1910     int local_num = get_local_numeric();
1911     time_t timestamp = now;
1912     struct userNode *old_user = GetUserH(nick);
1913
1914     if (old_user) {
1915         if (IsLocal(old_user))
1916             return old_user;
1917         timestamp = old_user->timestamp - 1;
1918     }
1919     if (local_num == -1) {
1920         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
1921         return 0;
1922     }
1923     if (!hostname)
1924         hostname = self->name;
1925     make_numeric(self, local_num, numeric);
1926     return AddUser(self, nick, nick, hostname, modes ? modes : "+oik", numeric, desc, now, "AAAAAA");
1927 }
1928
1929 struct userNode *
1930 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
1931 {
1932     char numeric[COMBO_NUMERIC_LEN+1];
1933     int local_num = get_local_numeric();
1934     time_t timestamp = now;
1935     struct userNode *old_user = GetUserH(nick);
1936
1937     if (old_user) {
1938         if (IsLocal(old_user))
1939             return old_user;
1940         timestamp = old_user->timestamp - 1;
1941     }
1942     if (local_num == -1) {
1943         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
1944         return 0;
1945     }
1946     make_numeric(self, local_num, numeric);
1947     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
1948 }
1949
1950 int
1951 is_valid_nick(const char *nick) {
1952     unsigned int ii;
1953     /* IRC has some of The Most Fucked-Up ideas about character sets
1954      * in the world.. */
1955     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
1956         return 0;
1957     for (ii = 0; nick[ii]; ++ii)
1958         if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii]))
1959             return 0;
1960     if (strlen(nick) > nicklen)
1961         return 0;
1962     return 1;
1963 }
1964
1965 static struct userNode*
1966 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)
1967 {
1968     struct userNode *oldUser, *uNode;
1969     unsigned int n, ignore_user;
1970
1971     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
1972         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", uplink, nick, numeric);
1973         return NULL;
1974     }
1975
1976     if (!uplink) {
1977         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", uplink, nick, numeric);
1978         return NULL;
1979     }
1980
1981     if (uplink != GetServerN(numeric)) {
1982         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", uplink, nick, numeric, uplink->name);
1983         return NULL;
1984     }
1985
1986     if (!is_valid_nick(nick)) {
1987         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", uplink, nick);
1988         return NULL;
1989     }
1990
1991     ignore_user = 0;
1992     if ((oldUser = GetUserH(nick))) {
1993         if (IsLocal(oldUser) && (IsService(oldUser) || IsPersistent(oldUser))) {
1994             /* The service should collide the new user off. */
1995             oldUser->timestamp = timestamp - 1;
1996             irc_user(oldUser);
1997         }
1998         if (oldUser->timestamp > timestamp) {
1999             /* "Old" user is really newer; remove them */
2000             DelUser(oldUser, 0, 1, "Overruled by older nick");
2001         } else {
2002             /* User being added is too new; do not add them to
2003              * clients, but do add them to the server's list, since it
2004              * will send a KILL and QUIT soon. */
2005             ignore_user = 1;
2006         }
2007     }
2008
2009     /* create new usernode and set all values */
2010     uNode = calloc(1, sizeof(*uNode));
2011     uNode->nick = strdup(nick);
2012     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
2013     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
2014     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
2015     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
2016     irc_p10_pton(&uNode->ip, realip);
2017     uNode->timestamp = timestamp;
2018     modeList_init(&uNode->channels);
2019     uNode->uplink = uplink;
2020     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
2021         uNode->uplink->max_clients = uNode->uplink->clients;
2022     }
2023     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
2024     uNode->uplink->users[uNode->num_local] = uNode;
2025     mod_usermode(uNode, modes);
2026     if (ignore_user)
2027         return uNode;
2028
2029     dict_insert(clients, uNode->nick, uNode);
2030     if (dict_size(clients) > max_clients) {
2031         max_clients = dict_size(clients);
2032         max_clients_time = now;
2033     }
2034     if (IsLocal(uNode))
2035         irc_user(uNode);
2036     for (n=0; n<nuf_used; n++)
2037         if (nuf_list[n](uNode))
2038             break;
2039     return uNode;
2040 }
2041
2042 /* removes user from it's server's hash table and nick hash table */
2043 void
2044 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
2045 {
2046     unsigned int n;
2047
2048     verify(user);
2049
2050     /* mark them as dead, in case anybody cares */
2051     user->dead = 1;
2052
2053     /* remove user from all channels */
2054     while (user->channels.used > 0)
2055         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, false, 0);
2056
2057     /* Call these in reverse order so ChanServ can update presence
2058        information before NickServ nukes the handle_info. */
2059     for (n = duf_used; n > 0; )
2060         duf_list[--n](user, killer, why);
2061
2062     user->uplink->clients--;
2063     user->uplink->users[user->num_local] = NULL;
2064     if (IsOper(user))
2065         userList_remove(&curr_opers, user);
2066     /* remove from global dictionary, but not if after a collide */
2067     if (user == dict_find(clients, user->nick, NULL))
2068         dict_remove(clients, user->nick);
2069
2070     if (IsInvisible(user))
2071         invis_clients--;
2072
2073     if (announce) {
2074         if (IsLocal(user))
2075             irc_quit(user, why);
2076         else
2077             irc_kill(killer, user, why);
2078     }
2079
2080     modeList_clean(&user->channels);
2081     /* We don't free them, in case we try to privmsg them or something
2082      * (like when a stupid oper kills themself).  We just put them onto
2083      * a list of clients that get freed after processing each line.
2084      */
2085     if (dead_users.size)
2086         userList_append(&dead_users, user);
2087     else
2088         free_user(user);
2089 }
2090
2091 static void call_oper_funcs(struct userNode *user);
2092
2093 void mod_usermode(struct userNode *user, const char *mode_change) {
2094     int add = 1;
2095     const char *word = mode_change;
2096
2097     if (!user || !mode_change)
2098         return;
2099     while (*word != ' ' && *word) word++;
2100     while (*word == ' ') word++;
2101     while (1) {
2102 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
2103         switch (*mode_change++) {
2104         case 0: case ' ': return;
2105         case '+': add = 1; break;
2106         case '-': add = 0; break;
2107         case 'o':
2108             do_user_mode(FLAGS_OPER);
2109             if (add) {
2110                 userList_append(&curr_opers, user);
2111                 call_oper_funcs(user);
2112             } else {
2113                 userList_remove(&curr_opers, user);
2114             }
2115             break;
2116         case 'O': do_user_mode(FLAGS_LOCOP); break;
2117         case 'i': do_user_mode(FLAGS_INVISIBLE);
2118             if (add)
2119                 invis_clients++;
2120             else
2121                 invis_clients--;
2122             break;
2123         case 'w': do_user_mode(FLAGS_WALLOP); break;
2124         case 's': do_user_mode(FLAGS_SERVNOTICE); break;
2125         case 'd': do_user_mode(FLAGS_DEAF); break;
2126         case 'k': do_user_mode(FLAGS_SERVICE); break;
2127         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2128         case 'h': do_user_mode(FLAGS_HELPER); break;
2129         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2130         case 'r':
2131             if (*word) {
2132                 char tag[MAXLEN];
2133                 unsigned int ii;
2134                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2135                     tag[ii++] = *word++;
2136                 tag[ii] = 0;
2137                 while (*word == ' ')
2138                     word++;
2139                 call_account_func(user, tag);
2140             }
2141             break;
2142         case 'f':
2143             if (*word) {
2144                 char host[MAXLEN];
2145                 unsigned int ii;
2146                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2147                     host[ii++] = *word++;
2148                 host[ii] = 0;
2149                 while (*word == ' ')
2150                     word++;
2151                 assign_fakehost(user, host, 0);
2152             }
2153             break;
2154         }
2155 #undef do_user_mode
2156     }
2157 }
2158
2159 struct mod_chanmode *
2160 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags, short base_oplevel)
2161 {
2162     struct mod_chanmode *change;
2163     unsigned int ii, in_arg, ch_arg, add;
2164
2165     if (argc == 0)
2166         return NULL;
2167     if (!(change = mod_chanmode_alloc(argc - 1)))
2168         return NULL;
2169
2170     for (ii = ch_arg = 0, in_arg = add = 1;
2171          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2172          ++ii) {
2173         switch (modes[0][ii]) {
2174         case '+':
2175             add = 1;
2176             break;
2177         case '-':
2178             add = 0;
2179             break;
2180 #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)
2181         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2182         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2183         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2184         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2185         case 'm': do_chan_mode(MODE_MODERATED); break;
2186         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2187         case 'p': do_chan_mode(MODE_PRIVATE); break;
2188         case 'r': do_chan_mode(MODE_REGONLY); break;
2189         case 's': do_chan_mode(MODE_SECRET); break;
2190         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2191         case 'z':
2192           if (!(flags & MCP_REGISTERED)) {
2193            do_chan_mode(MODE_REGISTERED);
2194           } else {
2195            mod_chanmode_free(change);
2196            return NULL;
2197           }
2198           break;
2199 #undef do_chan_mode
2200         case 'l':
2201             if (add) {
2202                 if (in_arg >= argc)
2203                     goto error;
2204                 change->modes_set |= MODE_LIMIT;
2205                 change->new_limit = atoi(modes[in_arg++]);
2206             } else {
2207                 change->modes_set &= ~MODE_LIMIT;
2208                 change->modes_clear |= MODE_LIMIT;
2209             }
2210             break;
2211         case 'k':
2212             if (add) {
2213                 if (in_arg >= argc)
2214                     goto error;
2215                 change->modes_set |= MODE_KEY;
2216                 safestrncpy(change->new_key, modes[in_arg++], sizeof(change->new_key));
2217             } else {
2218                 change->modes_clear |= MODE_KEY;
2219                 if (!(flags & MCP_KEY_FREE)) {
2220                     if (in_arg >= argc)
2221                         goto error;
2222                     in_arg++;
2223                 }
2224             }
2225             break;
2226         case 'U':
2227             if (add)
2228             {
2229               if (in_arg >= argc)
2230                   goto error;
2231               change->modes_set |= MODE_UPASS;
2232               safestrncpy(change->new_upass, modes[in_arg++], sizeof(change->new_upass));
2233             } else {
2234                 change->modes_clear |= MODE_UPASS;
2235                 if (!(flags & MCP_UPASS_FREE)) {
2236                     if (in_arg >= argc)
2237                         goto error;
2238                     in_arg++;
2239                 }
2240             }
2241             break;
2242         case 'A':
2243             if (add) {
2244                 if (in_arg >= argc)
2245                     goto error;
2246                 change->modes_set |= MODE_APASS;
2247                 safestrncpy(change->new_apass, modes[in_arg++], sizeof(change->new_apass));
2248             } else {
2249                 change->modes_clear |= MODE_APASS;
2250                 if (!(flags & MCP_APASS_FREE)) {
2251                     if (in_arg >= argc)
2252                       goto error;
2253                     in_arg++;
2254                 }
2255             }
2256             break;
2257         case 'b':
2258             if (!(flags & MCP_ALLOW_OVB))
2259                 goto error;
2260             if (in_arg >= argc)
2261                 goto error;
2262             change->args[ch_arg].mode = MODE_BAN;
2263             if (!add)
2264                 change->args[ch_arg].mode |= MODE_REMOVE;
2265             change->args[ch_arg++].u.hostmask = modes[in_arg++];
2266             break;
2267         case 'o': case 'v':
2268         {
2269             struct userNode *victim;
2270             char *oplevel_str;
2271             int oplevel;
2272
2273             oplevel_str = strchr(modes[in_arg], ':');
2274             if (oplevel_str)
2275             {
2276                 /* XXYYY M #channel +o XXYYY:<oplevel> */
2277                 *oplevel_str++ = '\0';
2278                 oplevel = parse_oplevel(oplevel_str);
2279                 if (oplevel <= base_oplevel && !(flags & MCP_FROM_SERVER))
2280                     oplevel = base_oplevel + 1;
2281             }
2282             else if (channel->modes & MODE_UPASS)
2283                 oplevel = base_oplevel + 1;
2284             else
2285                 oplevel = -1;
2286
2287             /* Check that oplevel is within bounds. */
2288             if (oplevel > MAXOPLEVEL)
2289                 oplevel = MAXOPLEVEL;
2290
2291             if (!(flags & MCP_ALLOW_OVB))
2292                 goto error;
2293             if (in_arg >= argc)
2294                 goto error;
2295             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2296             if (!add)
2297                 change->args[ch_arg].mode |= MODE_REMOVE;
2298             if (flags & MCP_FROM_SERVER)
2299                 victim = GetUserN(modes[in_arg++]);
2300             else
2301                 victim = GetUserH(modes[in_arg++]);
2302             if (!victim)
2303                 continue;
2304             if ((change->args[ch_arg].u.member = GetUserMode(channel, victim)))
2305             {
2306                 /* Apply the oplevel change */
2307                 change->args[ch_arg].u.member->oplevel = oplevel;
2308                 ch_arg++;
2309             }
2310             break;
2311         }
2312         default:
2313             if (!(flags & MCP_FROM_SERVER))
2314                 goto error;
2315             break;
2316         }
2317     }
2318     change->argc = ch_arg; /* in case any turned out to be ignored */
2319     if (change->modes_set & MODE_SECRET) {
2320         change->modes_set &= ~(MODE_PRIVATE);
2321         change->modes_clear |= MODE_PRIVATE;
2322     } else if (change->modes_set & MODE_PRIVATE) {
2323         change->modes_set &= ~(MODE_SECRET);
2324         change->modes_clear |= MODE_SECRET;
2325     }
2326     return change;
2327   error:
2328     mod_chanmode_free(change);
2329     return NULL;
2330 }
2331
2332 struct chanmode_buffer {
2333     char modes[MAXLEN];
2334     char args[MAXLEN];
2335     struct chanNode *channel;
2336     struct userNode *actor;
2337     unsigned int modes_used;
2338     unsigned int args_used;
2339     size_t chname_len;
2340     unsigned int is_add : 1;
2341     unsigned int is_chanop : 1;
2342 };
2343
2344 static void
2345 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2346 {
2347     size_t arg_len = strlen(arg);
2348     if (buf->modes_used > (MAXMODEPARAMS) ||
2349         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2350         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2351         buf->modes[buf->modes_used + buf->args_used] = '\0';
2352         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2353         buf->modes[0] = buf->is_add ? '+' : '-';
2354         buf->modes_used = 1;
2355         buf->args_used = 0;
2356     }
2357     buf->modes[buf->modes_used++] = ch;
2358     buf->args[buf->args_used++] = ' ';
2359     memcpy(buf->args + buf->args_used, arg, arg_len);
2360     buf->args_used += arg_len;
2361 }
2362
2363 void
2364 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2365 {
2366     struct chanmode_buffer chbuf;
2367     unsigned int arg;
2368     struct modeNode *mn;
2369     char int_buff[32], mode = '\0';
2370
2371     assert(change->argc <= change->alloc_argc);
2372     memset(&chbuf, 0, sizeof(chbuf));
2373     chbuf.channel = channel;
2374     chbuf.actor = who;
2375     chbuf.chname_len = strlen(channel->name);
2376
2377     mn = GetUserMode(channel, who);
2378     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2379         chbuf.is_chanop = 1;
2380
2381     /* First remove modes */
2382     chbuf.is_add = 0;
2383     if (change->modes_clear) {
2384         if (mode != '-')
2385             chbuf.modes[chbuf.modes_used++] = mode = '-';
2386 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2387         DO_MODE_CHAR(PRIVATE, 'p');
2388         DO_MODE_CHAR(SECRET, 's');
2389         DO_MODE_CHAR(MODERATED, 'm');
2390         DO_MODE_CHAR(TOPICLIMIT, 't');
2391         DO_MODE_CHAR(INVITEONLY, 'i');
2392         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2393         DO_MODE_CHAR(LIMIT, 'l');
2394         DO_MODE_CHAR(DELAYJOINS, 'D');
2395         DO_MODE_CHAR(REGONLY, 'r');
2396         DO_MODE_CHAR(NOCOLORS, 'c');
2397         DO_MODE_CHAR(NOCTCPS, 'C');
2398         DO_MODE_CHAR(REGISTERED, 'z');
2399 #undef DO_MODE_CHAR
2400         if (change->modes_clear & channel->modes & MODE_KEY)
2401             mod_chanmode_append(&chbuf, 'k', channel->key);
2402         if (change->modes_clear & channel->modes & MODE_UPASS)
2403             mod_chanmode_append(&chbuf, 'U', channel->upass);
2404         if (change->modes_clear * channel->modes & MODE_APASS)
2405             mod_chanmode_append(&chbuf, 'A', channel->apass);
2406     }
2407     for (arg = 0; arg < change->argc; ++arg) {
2408         if (!(change->args[arg].mode & MODE_REMOVE))
2409             continue;
2410         if (mode != '-')
2411             chbuf.modes[chbuf.modes_used++] = mode = '-';
2412         switch (change->args[arg].mode & ~MODE_REMOVE) {
2413         case MODE_BAN:
2414             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2415             break;
2416         default:
2417             if (change->args[arg].mode & MODE_CHANOP)
2418                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2419             if (change->args[arg].mode & MODE_VOICE)
2420                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2421             break;
2422         }
2423     }
2424
2425     /* Then set them */
2426     chbuf.is_add = 1;
2427     if (change->modes_set) {
2428         if (mode != '+')
2429             chbuf.modes[chbuf.modes_used++] = mode = '+';
2430 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2431         DO_MODE_CHAR(PRIVATE, 'p');
2432         DO_MODE_CHAR(SECRET, 's');
2433         DO_MODE_CHAR(MODERATED, 'm');
2434         DO_MODE_CHAR(TOPICLIMIT, 't');
2435         DO_MODE_CHAR(INVITEONLY, 'i');
2436         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2437         DO_MODE_CHAR(DELAYJOINS, 'D');
2438         DO_MODE_CHAR(REGONLY, 'r');
2439         DO_MODE_CHAR(NOCOLORS, 'c');
2440         DO_MODE_CHAR(NOCTCPS, 'C');
2441         DO_MODE_CHAR(REGISTERED, 'z');
2442 #undef DO_MODE_CHAR
2443         if(change->modes_set & MODE_KEY)
2444             mod_chanmode_append(&chbuf, 'k', change->new_key);
2445         if (change->modes_set & MODE_UPASS)
2446             mod_chanmode_append(&chbuf, 'U', change->new_upass);
2447         if (change->modes_set & MODE_APASS)
2448             mod_chanmode_append(&chbuf, 'A', change->new_apass);
2449         if(change->modes_set & MODE_LIMIT) {
2450             sprintf(int_buff, "%d", change->new_limit);
2451             mod_chanmode_append(&chbuf, 'l', int_buff);
2452         }
2453     }
2454     for (arg = 0; arg < change->argc; ++arg) {
2455         if (change->args[arg].mode & MODE_REMOVE)
2456             continue;
2457         if (mode != '+')
2458             chbuf.modes[chbuf.modes_used++] = mode = '+';
2459         switch (change->args[arg].mode) {
2460         case MODE_BAN:
2461             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2462             break;
2463         default:
2464             if (change->args[arg].mode & MODE_CHANOP)
2465                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2466             if (change->args[arg].mode & MODE_VOICE)
2467                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2468             break;
2469         }
2470     }
2471
2472     /* Flush the buffer and apply changes locally */
2473     if (chbuf.modes_used > 0) {
2474         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2475         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2476         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2477     }
2478     mod_chanmode_apply(who, channel, change);
2479 }
2480
2481 char *
2482 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2483 {
2484     unsigned int used = 0;
2485     assert(change->argc <= change->alloc_argc);
2486     if (change->modes_clear) {
2487         outbuff[used++] = '-';
2488 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2489         DO_MODE_CHAR(PRIVATE, 'p');
2490         DO_MODE_CHAR(SECRET, 's');
2491         DO_MODE_CHAR(MODERATED, 'm');
2492         DO_MODE_CHAR(TOPICLIMIT, 't');
2493         DO_MODE_CHAR(INVITEONLY, 'i');
2494         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2495         DO_MODE_CHAR(LIMIT, 'l');
2496         DO_MODE_CHAR(KEY, 'k');
2497         DO_MODE_CHAR(UPASS, 'U');
2498         DO_MODE_CHAR(APASS, 'A');
2499         DO_MODE_CHAR(DELAYJOINS, 'D');
2500         DO_MODE_CHAR(REGONLY, 'r');
2501         DO_MODE_CHAR(NOCOLORS, 'c');
2502         DO_MODE_CHAR(NOCTCPS, 'C');
2503         DO_MODE_CHAR(REGISTERED, 'z');
2504 #undef DO_MODE_CHAR
2505     }
2506     if (change->modes_set) {
2507         outbuff[used++] = '+';
2508 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
2509         DO_MODE_CHAR(PRIVATE, 'p');
2510         DO_MODE_CHAR(SECRET, 's');
2511         DO_MODE_CHAR(MODERATED, 'm');
2512         DO_MODE_CHAR(TOPICLIMIT, 't');
2513         DO_MODE_CHAR(INVITEONLY, 'i');
2514         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2515         DO_MODE_CHAR(DELAYJOINS, 'D');
2516         DO_MODE_CHAR(REGONLY, 'r');
2517         DO_MODE_CHAR(NOCOLORS, 'c');
2518         DO_MODE_CHAR(NOCTCPS, 'C');
2519         DO_MODE_CHAR(REGISTERED, 'z');
2520 #undef DO_MODE_CHAR
2521         switch (change->modes_set & (MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS)) {
2522         /* Doing this implementation has been a pain in the arse, I hope I didn't forget a possible combination */
2523         case MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS:
2524             used += sprintf(outbuff+used, "lkAU %d %s %s %s", change->new_limit, change->new_key, change->new_apass, change->new_upass);
2525             break;
2526
2527         case MODE_KEY|MODE_LIMIT|MODE_APASS:
2528             used += sprintf(outbuff+used, "lkA %d %s %s", change->new_limit, change->new_key, change->new_apass);
2529             break;
2530         case MODE_KEY|MODE_LIMIT|MODE_UPASS:
2531             used += sprintf(outbuff+used, "lkU %d %s %s", change->new_limit, change->new_key, change->new_upass);
2532             break;
2533         case MODE_KEY|MODE_APASS|MODE_UPASS:
2534             used += sprintf(outbuff+used, "kAU %s %s %s", change->new_key, change->new_apass, change->new_upass);
2535             break;
2536
2537         case MODE_KEY|MODE_APASS:
2538             used += sprintf(outbuff+used, "kA %s %s", change->new_key, change->new_apass);
2539             break;
2540         case MODE_KEY|MODE_UPASS:
2541             used += sprintf(outbuff+used, "kU %s %s", change->new_key, change->new_upass);
2542             break;
2543         case MODE_KEY|MODE_LIMIT:
2544             used += sprintf(outbuff+used, "lk %d %s", change->new_limit, change->new_key);
2545             break;
2546         case MODE_LIMIT|MODE_UPASS:
2547             used += sprintf(outbuff+used, "lU %d %s", change->new_limit, change->new_upass);
2548             break;
2549         case MODE_LIMIT|MODE_APASS:
2550             used += sprintf(outbuff+used, "lA %d %s", change->new_limit, change->new_apass);
2551             break;
2552         case MODE_APASS|MODE_UPASS:
2553             used += sprintf(outbuff+used, "AU %s %s", change->new_apass, change->new_upass);
2554             break;
2555
2556         case MODE_LIMIT|MODE_APASS|MODE_UPASS:
2557             used += sprintf(outbuff+used, "lAU %d %s %s", change->new_limit, change->new_apass, change->new_upass);
2558             break;
2559
2560         case MODE_APASS:
2561             used += sprintf(outbuff+used, "A %s", change->new_apass);
2562             break;
2563         case MODE_UPASS:
2564             used += sprintf(outbuff+used, "U %s", change->new_upass);
2565             break;
2566         case MODE_KEY:
2567             used += sprintf(outbuff+used, "k %s", change->new_key);
2568             break;
2569         case MODE_LIMIT:
2570             used += sprintf(outbuff+used, "l %d", change->new_limit);
2571             break;
2572         }
2573     }
2574     outbuff[used] = 0;
2575     return outbuff;
2576 }
2577
2578 static int
2579 clear_chanmode(struct chanNode *channel, const char *modes)
2580 {
2581     unsigned int remove;
2582
2583     for (remove = 0; *modes; modes++) {
2584         switch (*modes) {
2585         case 'o': remove |= MODE_CHANOP; break;
2586         case 'v': remove |= MODE_VOICE; break;
2587         case 'p': remove |= MODE_PRIVATE; break;
2588         case 's': remove |= MODE_SECRET; break;
2589         case 'm': remove |= MODE_MODERATED; break;
2590         case 't': remove |= MODE_TOPICLIMIT; break;
2591         case 'i': remove |= MODE_INVITEONLY; break;
2592         case 'n': remove |= MODE_NOPRIVMSGS; break;
2593         case 'k':
2594             remove |= MODE_KEY;
2595             channel->key[0] = '\0';
2596             break;
2597         case 'A':
2598             remove |= MODE_APASS;
2599             channel->apass[0] = '\0';
2600             break;
2601         case 'U':
2602             remove |= MODE_UPASS;
2603             channel->upass[0] = '\0';
2604             break;
2605         case 'l':
2606             remove |= MODE_LIMIT;
2607             channel->limit = 0;
2608             break;
2609         case 'b': remove |= MODE_BAN; break;
2610         case 'D': remove |= MODE_DELAYJOINS; break;
2611         case 'r': remove |= MODE_REGONLY; break;
2612         case 'c': remove |= MODE_NOCOLORS; break;
2613         case 'C': remove |= MODE_NOCTCPS; break;
2614         case 'z': remove |= MODE_REGISTERED; break;
2615         }
2616     }
2617
2618     if (!remove)
2619         return 1;
2620
2621     /* Remove simple modes. */
2622     channel->modes &= ~remove;
2623
2624     /* If removing bans, kill 'em all. */
2625     if ((remove & MODE_BAN) && channel->banlist.used) {
2626         unsigned int i;
2627         for (i=0; i<channel->banlist.used; i++)
2628             free(channel->banlist.list[i]);
2629         channel->banlist.used = 0;
2630     }
2631
2632     /* Remove member modes. */
2633     if ((remove & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
2634         int mask = ~(remove & (MODE_CHANOP | MODE_VOICE));
2635         unsigned int i;
2636
2637         for (i = 0; i < channel->members.used; i++)
2638             channel->members.list[i]->modes &= mask;
2639     }
2640
2641     return 1;
2642 }
2643
2644 void
2645 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2646 {
2647     unsigned int numeric = user->num_local;
2648     if (numeric >= num_privmsg_funcs) {
2649         int newnum = numeric + 8;
2650         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
2651         memset(privmsg_funcs+num_privmsg_funcs, 0, (newnum-num_privmsg_funcs)*sizeof(privmsg_func_t));
2652         num_privmsg_funcs = newnum;
2653     }
2654     if (privmsg_funcs[numeric])
2655         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
2656     privmsg_funcs[numeric] = handler;
2657 }
2658
2659 void
2660 unreg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2661 {
2662     unsigned int x;
2663
2664     if (!user || handler)
2665       return; /* this really only works with users */
2666
2667     memset(privmsg_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2668
2669     for (x = user->num_local+1; x < num_privmsg_funcs; x++) 
2670        memmove(privmsg_funcs+x-1, privmsg_funcs+x, sizeof(privmsg_func_t));
2671     
2672     privmsg_funcs = realloc(privmsg_funcs, num_privmsg_funcs*sizeof(privmsg_func_t)); 
2673     num_privmsg_funcs--;
2674 }
2675
2676
2677 void
2678 reg_notice_func(struct userNode *user, privmsg_func_t handler)
2679 {
2680     unsigned int numeric = user->num_local;
2681     if (numeric >= num_notice_funcs) {
2682         int newnum = numeric + 8;
2683         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
2684         memset(notice_funcs+num_notice_funcs, 0, (newnum-num_notice_funcs)*sizeof(privmsg_func_t));
2685         num_notice_funcs = newnum;
2686     }
2687     if (notice_funcs[numeric])
2688         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
2689     notice_funcs[numeric] = handler;
2690 }
2691
2692 void
2693 unreg_notice_func(struct userNode *user, privmsg_func_t handler)
2694 {
2695     unsigned int x;
2696
2697     if (!user || handler)
2698           return; /* this really only works with users */
2699
2700     memset(notice_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2701
2702     for (x = user->num_local+1; x < num_notice_funcs; x++)
2703        memmove(notice_funcs+x-1, notice_funcs+x, sizeof(privmsg_func_t));
2704
2705     memset(notice_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2706     notice_funcs = realloc(notice_funcs, num_notice_funcs*sizeof(privmsg_func_t));
2707     num_notice_funcs--;
2708 }
2709
2710 void
2711 reg_oper_func(oper_func_t handler)
2712 {
2713     if (of_used == of_size) {
2714         if (of_size) {
2715             of_size <<= 1;
2716             of_list = realloc(of_list, of_size*sizeof(oper_func_t));
2717         } else {
2718             of_size = 8;
2719             of_list = malloc(of_size*sizeof(oper_func_t));
2720         }
2721     }
2722     of_list[of_used++] = handler;
2723 }
2724
2725 static void
2726 call_oper_funcs(struct userNode *user)
2727 {
2728     unsigned int n;
2729     if (IsLocal(user))
2730         return;
2731     for (n=0; n<of_used; n++)
2732         of_list[n](user);
2733 }
2734
2735 static void
2736 send_burst(void)
2737 {
2738     unsigned int i, hop, max_hop=1;
2739     dict_iterator_t it;
2740
2741     /* burst (juped) servers, closest first (except self, which is sent already) */
2742     for (i=0; i<ArrayLength(servers_num); i++)
2743         if (servers_num[i] && servers_num[i]->hops > max_hop)
2744             max_hop = servers_num[i]->hops;
2745     for (hop=1; hop<=max_hop; hop++) {
2746         for (i=0;i<ArrayLength(servers_num);i++) {
2747             if (servers_num[i]
2748                 && (servers_num[i]->hops == hop)
2749                 && (servers_num[i] != self->uplink))
2750                 irc_server(servers_num[i]);
2751         }
2752     }
2753
2754     /* burst local nicks */
2755     for (i=0; i<=self->num_mask; i++)
2756         if (self->users[i])
2757             irc_user(self->users[i]);
2758
2759     /* build dict of unbursted channel names (just copy existing channels) */
2760     unbursted_channels = dict_new();
2761     for (it = dict_first(channels); it; it = iter_next(it))
2762         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
2763 }
2764
2765 /*
2766  * Oplevel parsing
2767  */
2768 static int
2769 parse_oplevel(char *str)
2770 {
2771     int oplevel = 0;
2772     while (isdigit(*str))
2773         oplevel = oplevel * 10 + *str++ - '0';
2774     return oplevel;
2775 }