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