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