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