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