Support G-line lifetimes.
[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 void
1655 free_user(struct userNode *user)
1656 {
1657     free(user->nick);
1658     free(user);
1659 }
1660
1661 static void
1662 parse_cleanup(void)
1663 {
1664     unsigned int nn;
1665     free(of_list);
1666     free(privmsg_funcs);
1667     num_privmsg_funcs = 0;
1668     free(notice_funcs);
1669     num_notice_funcs = 0;
1670     free(mcf_list);
1671     dict_delete(irc_func_dict);
1672     for (nn=0; nn<dead_users.used; nn++)
1673         free_user(dead_users.list[nn]);
1674     userList_clean(&dead_users);
1675 }
1676
1677 static void
1678 p10_conf_reload(void) {
1679     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1680     his_servername = conf_get_data("server/his_servername", RECDB_QSTRING);
1681     his_servercomment = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1682 }
1683
1684 static void
1685 remove_unbursted_channel(struct chanNode *cNode) {
1686     if (unbursted_channels)
1687         dict_remove(unbursted_channels, cNode->name);
1688 }
1689
1690 void
1691 init_parse(void)
1692 {
1693     const char *str, *desc;
1694     int numnick, usermask, max_users;
1695     char numer[COMBO_NUMERIC_LEN+1];
1696
1697     /* read config items */
1698     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1699     ping_freq = str ? ParseInterval(str) : 120;
1700     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1701     ping_timeout = str ? ParseInterval(str) : 30;
1702     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1703     force_n2k = str ? enabled_string(str) : 1;
1704     str = conf_get_data("server/numeric", RECDB_QSTRING);
1705     if (!str) {
1706         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1707         exit(1);
1708     }
1709     numnick = atoi(str);
1710     str = conf_get_data("server/max_users", RECDB_QSTRING);
1711     max_users = str ? atoi(str) : 4096;
1712     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1713     usermask--;
1714     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1715         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1716     else
1717         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1718
1719     str = conf_get_data("server/hostname", RECDB_QSTRING);
1720     desc = conf_get_data("server/description", RECDB_QSTRING);
1721     if (!str || !desc) {
1722         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1723         exit(1);
1724     }
1725     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1726     conf_register_reload(p10_conf_reload);
1727
1728     irc_func_dict = dict_new();
1729     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1730     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1731     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1732     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1733     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1734     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1735     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1736     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1737     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1738     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1739     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1740     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1741     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1742     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1743     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1744     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1745     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1746     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1747     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1748     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1749     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1750     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1751     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1752     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1753     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1754     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1755     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1756     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1757     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1758     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1759     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1760     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1761     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1762     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1763     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1764     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1765     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1766     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1767     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1768     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1769     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1770     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1771     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1772     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1773     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1774     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1775     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1776     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1777     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1778     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1779     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1780     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1781     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1782     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1783     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1784     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1785     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1786     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1787     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1788     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1789     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1790     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1791     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1792     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1793
1794     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1795      * Apparently to obliterate channels from any servers that think they
1796      * exist?
1797      */
1798     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1799     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1800     /* Ignore invites */
1801     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1802     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1803     /* DESYNCH is just informational, so ignore it */
1804     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1805     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1806     /* Ignore channel operator notices. */
1807     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1808     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1809     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1810     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1811     /* Ignore opers being silly. */
1812     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1813     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1814     /* We have reliable clock!  Always!  Wraaa! */
1815     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1816     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1817     /* handle topics */
1818     dict_insert(irc_func_dict, "331", cmd_num_topic);
1819     dict_insert(irc_func_dict, "332", cmd_num_topic);
1820     dict_insert(irc_func_dict, "333", cmd_num_topic);
1821     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1822     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1823     /* ban list resetting */
1824     /* "stats g" responses */
1825     dict_insert(irc_func_dict, "247", cmd_num_gline);
1826     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
1827     /* other numeric responses we might get */
1828     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
1829     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
1830     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
1831     dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */
1832     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
1833     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
1834     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
1835     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
1836     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
1837
1838     num_privmsg_funcs = 16;
1839     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
1840     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
1841
1842     num_notice_funcs = 16;
1843     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
1844     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
1845
1846     userList_init(&dead_users);
1847     channelList_init(&dead_channels);
1848     reg_del_channel_func(remove_unbursted_channel);
1849     reg_exit_func(parse_cleanup);
1850 }
1851
1852 int
1853 parse_line(char *line, int recursive)
1854 {
1855     char *argv[MAXNUMPARAMS], *origin;
1856     int argc, cmd, res=0;
1857     cmd_func_t *func;
1858
1859     argc = split_line(line, true, MAXNUMPARAMS, argv);
1860     cmd = self->uplink || !argv[0][1] || !argv[0][2];
1861     if (argc > cmd) {
1862         if (cmd) {
1863             if (argv[0][0] == ':') {
1864                 origin = argv[0]+1;
1865             } else if (!argv[0][1] || !argv[0][2]) {
1866                 struct server *sNode = GetServerN(argv[0]);
1867                 origin = sNode ? sNode->name : 0;
1868             } else {
1869                 struct userNode *uNode = GetUserN(argv[0]);
1870                 origin = uNode ? uNode->nick : 0;
1871             }
1872         } else
1873             origin = 0;
1874         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
1875             res = func(origin, argc-cmd, argv+cmd);
1876     }
1877     if (!res) {
1878         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
1879     } else if (!recursive) {
1880         unsigned int i;
1881         for (i=0; i<dead_users.used; i++)
1882             free_user(dead_users.list[i]);
1883         dead_users.used = 0;
1884         for (i=0; i<dead_channels.used; i++)
1885             UnlockChannel(dead_channels.list[i]);
1886         dead_channels.used = 0;
1887     }
1888     return res;
1889 }
1890
1891 static void
1892 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
1893 {
1894     char *j, old;
1895
1896     do {
1897         j = target_list;
1898         while (*j != 0 && *j != ',')
1899             j++;
1900         old = *j;
1901         *j = 0;
1902
1903         if (IsChannelName(target_list)
1904             || (target_list[0] == '0' && target_list[1] == '\0')) {
1905             struct chanNode *chan = GetChannel(target_list);
1906
1907             if (chan) {
1908                 if (cf)
1909                     cf(chan, data);
1910             } else {
1911                 if (nc)
1912                     nc(target_list, data);
1913             }
1914         } else {
1915             struct userNode *user;
1916             struct privmsg_desc *pd = data;
1917
1918             pd->is_qualified = 0;
1919             if (*target_list == '@') {
1920                 user = NULL;
1921             } else if (strchr(target_list, '@')) {
1922                 struct server *server;
1923
1924                 pd->is_qualified = 1;
1925                 user = GetUserH(strtok(target_list, "@"));
1926                 server = GetServerH(strtok(NULL, "@"));
1927
1928                 if (user && (user->uplink != server)) {
1929                     /* Don't attempt to index into any arrays
1930                        using a user's numeric on another server. */
1931                     user = NULL;
1932                 }
1933             } else {
1934                 user = GetUserN(target_list);
1935             }
1936
1937             if (user) {
1938                 if (uf)
1939                     uf(user, data);
1940             } else {
1941                 if (nu)
1942                     nu(target_list, data);
1943             }
1944         }
1945         target_list = j+1;
1946     } while (old == ',');
1947 }
1948
1949 static int
1950 get_local_numeric(void)
1951 {
1952     static unsigned int next_numeric = 0;
1953     if (self->clients > self->num_mask)
1954         return -1;
1955     while (self->users[next_numeric])
1956         if (++next_numeric > self->num_mask)
1957             next_numeric = 0;
1958     return next_numeric;
1959 }
1960
1961 static void
1962 make_numeric(struct server *svr, int local_num, char *outbuf)
1963 {
1964     int slen, llen;
1965
1966     if (force_n2k || svr->numeric[1]) {
1967         slen = 2;
1968         llen = 3;
1969     } else {
1970         slen = 1;
1971         llen = (local_num < 64*64) ? 2 : 3;
1972     }
1973     strncpy(outbuf, svr->numeric, slen);
1974     inttobase64(outbuf+slen, local_num, llen);
1975     outbuf[slen+llen] = 0;
1976 }
1977
1978 struct server *
1979 AddServer(struct server *uplink, const char *name, int hops, unsigned long boot, unsigned long link_time, const char *numeric, const char *description)
1980 {
1981     struct server* sNode;
1982     int slen, mlen;
1983
1984     if ((sNode = GetServerN(numeric))) {
1985         /* This means we're trying to re-add an existant server.
1986          * To be safe, we should forget the previous incarnation.
1987          * (And all its linked servers.)
1988          *
1989          * It usually only happens in replays when the original
1990          * had a ping timeout and the replay didn't (because
1991          * replaying a ping timeout invariably gets things wrong).
1992          */
1993         DelServer(sNode, 0, NULL);
1994     }
1995
1996     switch (strlen(numeric)) {
1997     case 5: slen = 2; mlen = 3; break;
1998     case 4: slen = 1; mlen = 3; break;
1999     case 3: slen = 1; mlen = 2; break;
2000     default:
2001         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
2002         return NULL;
2003     }
2004
2005     sNode = calloc(1, sizeof(*sNode));
2006     sNode->uplink = uplink;
2007     safestrncpy(sNode->name, name, sizeof(sNode->name));
2008     sNode->num_mask = base64toint(numeric+slen, mlen);
2009     sNode->hops = hops;
2010     sNode->boot = boot;
2011     sNode->link_time = link_time;
2012     strncpy(sNode->numeric, numeric, slen);
2013     safestrncpy(sNode->description, description, sizeof(sNode->description));
2014     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
2015     serverList_init(&sNode->children);
2016     if (sNode->uplink) {
2017         /* uplink may be NULL if we're just building ourself */
2018         serverList_append(&sNode->uplink->children, sNode);
2019     }
2020     servers_num[base64toint(numeric, slen)] = sNode;
2021     dict_insert(servers, sNode->name, sNode);
2022     return sNode;
2023 }
2024
2025 void DelServer(struct server* serv, int announce, const char *message)
2026 {
2027     unsigned int i;
2028
2029     /* If we receive an ERROR command before the SERVER
2030      * command a NULL server can be passed */
2031     if (!serv)
2032         return;
2033
2034     /* Hrm, what's the right way to SQUIT some other server?
2035      * (This code is only to handle killing juped servers.) */
2036     if (announce && (serv->uplink == self) && (serv != self->uplink))
2037         irc_squit(serv, message, NULL);
2038
2039     /* must recursively remove servers linked to this one first */
2040     for (i=serv->children.used;i>0;)
2041         if (serv->children.list[--i] != self)
2042             DelServer(serv->children.list[i], false, NULL);
2043
2044     /* clean up server's user hash tables */
2045     for (i=0;i<=serv->num_mask;i++)
2046         if (serv->users[i])
2047             DelUser(serv->users[i], NULL, false, "server delinked");
2048
2049     /* delete server */
2050     if (serv->uplink)
2051         serverList_remove(&serv->uplink->children, serv);
2052     if (serv == self->uplink)
2053         self->uplink = NULL;
2054     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
2055     dict_remove(servers, serv->name);
2056     serverList_clean(&serv->children);
2057     free(serv->users);
2058     free(serv);
2059 }
2060
2061 struct userNode *
2062 AddLocalUser(const char *nick, const char *ident, const char *hostname, const char *desc, const char *modes)
2063 {
2064     char numeric[COMBO_NUMERIC_LEN+1];
2065     int local_num = get_local_numeric();
2066     unsigned long timestamp = now;
2067     struct userNode *old_user = GetUserH(nick);
2068
2069     if (!modes)
2070         modes = "+oik";
2071     if (old_user) {
2072         if (IsLocal(old_user))
2073             return old_user;
2074         timestamp = old_user->timestamp - 1;
2075     }
2076     if (local_num == -1) {
2077         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
2078         return 0;
2079     }
2080     if (!hostname)
2081         hostname = self->name;
2082     make_numeric(self, local_num, numeric);
2083     return AddUser(self, nick, ident, hostname, modes, numeric, desc, now, "AAAAAA");
2084 }
2085
2086 struct userNode *
2087 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
2088 {
2089     char numeric[COMBO_NUMERIC_LEN+1];
2090     int local_num = get_local_numeric();
2091     unsigned long timestamp = now;
2092     struct userNode *old_user = GetUserH(nick);
2093
2094     if (old_user) {
2095         if (IsLocal(old_user))
2096             return old_user;
2097         timestamp = old_user->timestamp - 1;
2098     }
2099     if (local_num == -1) {
2100         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
2101         return 0;
2102     }
2103     make_numeric(self, local_num, numeric);
2104     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
2105 }
2106
2107 int
2108 is_valid_nick(const char *nick) {
2109     unsigned int ii;
2110     /* IRC has some of The Most Fucked-Up ideas about character sets
2111      * in the world.. */
2112     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
2113         return 0;
2114     for (ii = 0; nick[ii]; ++ii)
2115         if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii]))
2116             return 0;
2117     if (strlen(nick) > nicklen)
2118         return 0;
2119     return 1;
2120 }
2121
2122 static struct userNode*
2123 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)
2124 {
2125     struct userNode *oldUser, *uNode;
2126     unsigned int n, ignore_user, dummy;
2127
2128     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
2129         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", (void*)uplink, nick, numeric);
2130         return NULL;
2131     }
2132
2133     if (!uplink) {
2134         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", (void*)uplink, nick, numeric);
2135         return NULL;
2136     }
2137
2138     if (uplink != GetServerN(numeric)) {
2139         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", (void*)uplink, nick, numeric, uplink->name);
2140         return NULL;
2141     }
2142
2143     dummy = modes && modes[0] == '*';
2144     if (dummy) {
2145         ++modes;
2146     } else if (!is_valid_nick(nick)) {
2147         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", (void*)uplink, nick);
2148         return NULL;
2149     }
2150
2151     ignore_user = 0;
2152     if ((oldUser = GetUserH(nick))) {
2153         if (IsLocal(oldUser)
2154             && (IsService(oldUser) || IsPersistent(oldUser))) {
2155             /* The service should collide the new user off - but not
2156              * if the new user is coming in during a burst.  (During a
2157              * burst, the bursting server will kill either our user --
2158              * triggering a ReintroduceUser() -- or its own.)
2159              */
2160             oldUser->timestamp = timestamp - 1;
2161             ignore_user = 1;
2162             if (!uplink->burst)
2163                 irc_user(oldUser);
2164         } else if (oldUser->timestamp > timestamp) {
2165             /* "Old" user is really newer; remove them. */
2166             DelUser(oldUser, 0, 1, "Overruled by older nick");
2167         } else {
2168             /* User being added is too new; do not add them to
2169              * clients, but do add them to the server's list, since it
2170              * will send a KILL and QUIT soon. */
2171             ignore_user = 1;
2172         }
2173     }
2174
2175     /* create new usernode and set all values */
2176     uNode = calloc(1, sizeof(*uNode));
2177     uNode->nick = strdup(nick);
2178     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
2179     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
2180     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
2181     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
2182     irc_p10_pton(&uNode->ip, realip);
2183     uNode->timestamp = timestamp;
2184     uNode->idle_since = timestamp;
2185     modeList_init(&uNode->channels);
2186     uNode->uplink = uplink;
2187     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
2188         uNode->uplink->max_clients = uNode->uplink->clients;
2189     }
2190     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
2191     uNode->uplink->users[uNode->num_local] = uNode;
2192     mod_usermode(uNode, modes);
2193     if (dummy)
2194         uNode->modes |= FLAGS_DUMMY;
2195     if (ignore_user)
2196         return uNode;
2197
2198     dict_insert(clients, uNode->nick, uNode);
2199     if (dict_size(clients) > max_clients) {
2200         max_clients = dict_size(clients);
2201         max_clients_time = now;
2202     }
2203     if (IsLocal(uNode))
2204         irc_user(uNode);
2205     for (n=0; (n<nuf_used) && !uNode->dead; n++)
2206         nuf_list[n](uNode);
2207     return uNode;
2208 }
2209
2210 /* removes user from it's server's hash table and nick hash table */
2211 void
2212 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
2213 {
2214     unsigned int n;
2215
2216     verify(user);
2217
2218     /* mark them as dead, in case anybody cares */
2219     user->dead = 1;
2220
2221     /* remove user from all channels */
2222     while (user->channels.used > 0)
2223         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, NULL, false);
2224
2225     /* Call these in reverse order so ChanServ can update presence
2226        information before NickServ nukes the handle_info. */
2227     for (n = duf_used; n > 0; )
2228         duf_list[--n](user, killer, why);
2229
2230     user->uplink->clients--;
2231     user->uplink->users[user->num_local] = NULL;
2232     if (IsOper(user))
2233         userList_remove(&curr_opers, user);
2234     /* remove from global dictionary, but not if after a collide */
2235     if (user == dict_find(clients, user->nick, NULL))
2236         dict_remove(clients, user->nick);
2237
2238     if (IsInvisible(user))
2239         invis_clients--;
2240
2241     if (announce) {
2242         if (IsLocal(user))
2243             irc_quit(user, why);
2244         else
2245             irc_kill(killer, user, why);
2246     }
2247
2248     if (IsLocal(user)) {
2249         unsigned int num = user->num_local;
2250         if (num < num_privmsg_funcs)
2251             privmsg_funcs[num] = NULL;
2252         if (num < num_notice_funcs)
2253             notice_funcs[num] = NULL;
2254     }
2255
2256     modeList_clean(&user->channels);
2257     /* We don't free them, in case we try to privmsg them or something
2258      * (like when a stupid oper kills themself).  We just put them onto
2259      * a list of clients that get freed after processing each line.
2260      */
2261     if (dead_users.size)
2262         userList_append(&dead_users, user);
2263     else
2264         free_user(user);
2265 }
2266
2267 static void call_oper_funcs(struct userNode *user);
2268
2269 void mod_usermode(struct userNode *user, const char *mode_change) {
2270     int add = 1;
2271     const char *word = mode_change;
2272
2273     if (!user || !mode_change)
2274         return;
2275     while (*word != ' ' && *word) word++;
2276     while (*word == ' ') word++;
2277     while (1) {
2278 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
2279         switch (*mode_change++) {
2280         case 0: case ' ': return;
2281         case '+': add = 1; break;
2282         case '-': add = 0; break;
2283         case 'o':
2284             do_user_mode(FLAGS_OPER);
2285             if (!add) {
2286                 userList_remove(&curr_opers, user);
2287             } else if (!userList_contains(&curr_opers, user)) {
2288                 userList_append(&curr_opers, user);
2289                 call_oper_funcs(user);
2290             }
2291             break;
2292         case 'i': do_user_mode(FLAGS_INVISIBLE);
2293             if (add)
2294                 invis_clients++;
2295             else
2296                 invis_clients--;
2297             break;
2298         case 'w': do_user_mode(FLAGS_WALLOP); break;
2299         case 'd': do_user_mode(FLAGS_DEAF); break;
2300         case 'k': do_user_mode(FLAGS_SERVICE); break;
2301         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2302         case 'n': do_user_mode(FLAGS_NOCHAN); break;
2303         case 'I': do_user_mode(FLAGS_NOIDLE); break;
2304         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2305         case 'r':
2306             if (*word) {
2307                 char tag[MAXLEN];
2308                 char *sep;
2309                 unsigned int ii;
2310                 unsigned long ts = 0;
2311                 unsigned long id = 0;
2312
2313                 for (ii=0; (*word != ' ') && (*word != '\0') && (*word != ':'); )
2314                     tag[ii++] = *word++;
2315                 if (*word == ':') {
2316                     ts = strtoul(word + 1, &sep, 10);
2317                     if (*sep == ':') {
2318                         id = strtoul(sep + 1, &sep, 10);
2319                     } else if (*sep != ' ' && *sep != '\0') {
2320                         ts = 0;
2321                     }
2322                     word = sep;
2323                 }
2324                 tag[ii] = '\0';
2325                 while (*word == ' ')
2326                     word++;
2327                 call_account_func(user, tag, ts, id);
2328             }
2329             break;
2330         case 'h':
2331             if (*word) {
2332                 char mask[MAXLEN];
2333                 char *host, *ident;
2334                 unsigned int ii;
2335
2336                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2337                     mask[ii++] = *word++;
2338                 mask[ii] = 0;
2339                 while (*word == ' ')
2340                     word++;
2341
2342                 if ((host = strrchr(mask, '@'))) {
2343                     ident = mask;
2344                     *host++ = '\0';
2345                 } else {
2346                     ident = NULL;
2347                     host = mask;
2348                 }
2349                 user->modes |= FLAGS_HIDDEN_HOST;
2350                 assign_fakehost(user, host, ident, 0, 0);
2351             }
2352             break;
2353         }
2354 #undef do_user_mode
2355     }
2356 }
2357
2358 static int
2359 keyncpy(char output[], char input[], size_t output_size)
2360 {
2361     size_t ii;
2362
2363     if (input[0] == ':')
2364     {
2365         output[0] = '\0';
2366         return 1;
2367     }
2368
2369     for (ii = 0; (ii + 1 < output_size) && (input[ii] != '\0'); ++ii)
2370     {
2371         output[ii] = input[ii];
2372     }
2373
2374     output[ii] = '\0';
2375     return 0;
2376 }
2377
2378 struct mod_chanmode *
2379 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags, short base_oplevel)
2380 {
2381     struct mod_chanmode *change;
2382     unsigned int ii, in_arg, ch_arg, add;
2383
2384     if (argc == 0)
2385         return NULL;
2386     if (!(change = mod_chanmode_alloc(argc - 1)))
2387         return NULL;
2388
2389     for (ii = ch_arg = 0, in_arg = add = 1;
2390          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2391          ++ii) {
2392         switch (modes[0][ii]) {
2393         case '+':
2394             add = 1;
2395             break;
2396         case '-':
2397             add = 0;
2398             break;
2399 #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)
2400         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2401         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2402         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2403         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2404         case 'm': do_chan_mode(MODE_MODERATED); break;
2405         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2406         case 'p': do_chan_mode(MODE_PRIVATE); break;
2407         case 'r': do_chan_mode(MODE_REGONLY); break;
2408         case 's': do_chan_mode(MODE_SECRET); break;
2409         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2410         case 'z':
2411           if (!(flags & MCP_REGISTERED)) {
2412               do_chan_mode(MODE_REGISTERED);
2413           } else {
2414               mod_chanmode_free(change);
2415               return NULL;
2416           }
2417           break;
2418 #undef do_chan_mode
2419         case 'l':
2420             if (add) {
2421                 if (in_arg >= argc)
2422                     goto error;
2423                 change->modes_set |= MODE_LIMIT;
2424                 change->new_limit = atoi(modes[in_arg++]);
2425             } else {
2426                 change->modes_set &= ~MODE_LIMIT;
2427                 change->modes_clear |= MODE_LIMIT;
2428             }
2429             break;
2430         case 'k':
2431             if (add) {
2432                 if ((in_arg >= argc)
2433                     || keyncpy(change->new_key, modes[in_arg++], sizeof(change->new_key)))
2434                     goto error;
2435                 change->modes_set |= MODE_KEY;
2436             } else {
2437                 change->modes_clear |= MODE_KEY;
2438                 if (!(flags & MCP_KEY_FREE)) {
2439                     if (in_arg >= argc)
2440                         goto error;
2441                     in_arg++;
2442                 }
2443             }
2444             break;
2445         case 'U':
2446             if (flags & MCP_NO_APASS)
2447                 goto error;
2448             if (add)
2449             {
2450                 if ((in_arg >= argc)
2451                     || keyncpy(change->new_upass, modes[in_arg++], sizeof(change->new_upass)))
2452                     goto error;
2453                 change->modes_set |= MODE_UPASS;
2454             } else {
2455                 change->modes_clear |= MODE_UPASS;
2456                 if (!(flags & MCP_UPASS_FREE)) {
2457                     if (in_arg >= argc)
2458                         goto error;
2459                     in_arg++;
2460                 }
2461             }
2462             break;
2463         case 'A':
2464             if (flags & MCP_NO_APASS)
2465                 goto error;
2466             if (add) {
2467                 if ((in_arg >= argc)
2468                     || keyncpy(change->new_apass, modes[in_arg++], sizeof(change->new_apass)))
2469                     goto error;
2470                 change->modes_set |= MODE_APASS;
2471             } else {
2472                 change->modes_clear |= MODE_APASS;
2473                 if (!(flags & MCP_APASS_FREE)) {
2474                     if (in_arg >= argc)
2475                       goto error;
2476                     in_arg++;
2477                 }
2478             }
2479             break;
2480         case 'b':
2481             if (!(flags & MCP_ALLOW_OVB))
2482                 goto error;
2483             if (in_arg >= argc)
2484                 goto error;
2485             change->args[ch_arg].mode = MODE_BAN;
2486             if (!add)
2487                 change->args[ch_arg].mode |= MODE_REMOVE;
2488             change->args[ch_arg++].u.hostmask = modes[in_arg++];
2489             break;
2490         case 'o': case 'v':
2491         {
2492             struct userNode *victim;
2493             char *oplevel_str;
2494             int oplevel;
2495
2496             if (in_arg >= argc)
2497                 goto error;
2498             oplevel_str = strchr(modes[in_arg], ':');
2499             if (oplevel_str)
2500             {
2501                 /* XXYYY M #channel +o XXYYY:<oplevel> */
2502                 *oplevel_str++ = '\0';
2503                 oplevel = parse_oplevel(oplevel_str);
2504                 if (oplevel <= base_oplevel && !(flags & MCP_FROM_SERVER))
2505                     oplevel = base_oplevel + 1;
2506             }
2507             else if (channel->modes & MODE_UPASS)
2508                 oplevel = base_oplevel + 1;
2509             else
2510                 oplevel = MAXOPLEVEL;
2511
2512             /* Check that oplevel is within bounds. */
2513             if (oplevel > MAXOPLEVEL)
2514                 oplevel = MAXOPLEVEL;
2515
2516             if (!(flags & MCP_ALLOW_OVB))
2517                 goto error;
2518             if (in_arg >= argc)
2519                 goto error;
2520             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2521             if (!add)
2522                 change->args[ch_arg].mode |= MODE_REMOVE;
2523             if (flags & MCP_FROM_SERVER)
2524                 victim = GetUserN(modes[in_arg++]);
2525             else
2526                 victim = GetUserH(modes[in_arg++]);
2527             if (!victim)
2528                 continue;
2529             if ((change->args[ch_arg].u.member = GetUserMode(channel, victim)))
2530             {
2531                 /* Apply the oplevel change if the user is being (de-)opped */
2532                 if (modes[0][ii] == 'o')
2533                     change->args[ch_arg].u.member->oplevel = oplevel;
2534                 ch_arg++;
2535             }
2536             break;
2537         }
2538         default:
2539             if (!(flags & MCP_FROM_SERVER))
2540                 goto error;
2541             break;
2542         }
2543     }
2544     change->argc = ch_arg; /* in case any turned out to be ignored */
2545     if (change->modes_set & MODE_SECRET) {
2546         change->modes_set &= ~(MODE_PRIVATE);
2547         change->modes_clear |= MODE_PRIVATE;
2548     } else if (change->modes_set & MODE_PRIVATE) {
2549         change->modes_set &= ~(MODE_SECRET);
2550         change->modes_clear |= MODE_SECRET;
2551     }
2552     if (change->modes_clear & MODE_REGISTERED) {
2553         /* Horribly cheat by using the lock/unlock semantics. */
2554         LockChannel(channel);
2555         channelList_append(&dead_channels, channel);
2556     }
2557     return change;
2558   error:
2559     mod_chanmode_free(change);
2560     return NULL;
2561 }
2562
2563 struct chanmode_buffer {
2564     char modes[MAXLEN];
2565     char args[MAXLEN];
2566     struct chanNode *channel;
2567     struct userNode *actor;
2568     unsigned int modes_used;
2569     unsigned int args_used;
2570     size_t chname_len;
2571     unsigned int is_add : 1;
2572     unsigned int is_chanop : 1;
2573 };
2574
2575 static void
2576 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2577 {
2578     size_t arg_len = strlen(arg);
2579     if (buf->modes_used > (MAXMODEPARAMS) ||
2580         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2581         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2582         buf->modes[buf->modes_used + buf->args_used] = '\0';
2583         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2584         buf->modes[0] = buf->is_add ? '+' : '-';
2585         buf->modes_used = 1;
2586         buf->args_used = 0;
2587     }
2588     buf->modes[buf->modes_used++] = ch;
2589     buf->args[buf->args_used++] = ' ';
2590     memcpy(buf->args + buf->args_used, arg, arg_len);
2591     buf->args_used += arg_len;
2592 }
2593
2594 void
2595 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2596 {
2597     struct chanmode_buffer chbuf;
2598     unsigned int arg;
2599     struct modeNode *mn;
2600     char int_buff[32], mode = '\0';
2601
2602     assert(change->argc <= change->alloc_argc);
2603     memset(&chbuf, 0, sizeof(chbuf));
2604     chbuf.channel = channel;
2605     chbuf.actor = who;
2606     chbuf.chname_len = strlen(channel->name);
2607
2608     mn = GetUserMode(channel, who);
2609     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2610         chbuf.is_chanop = 1;
2611
2612     /* First remove modes */
2613     chbuf.is_add = 0;
2614     if (change->modes_clear) {
2615         if (mode != '-')
2616             chbuf.modes[chbuf.modes_used++] = mode = '-';
2617 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2618         DO_MODE_CHAR(PRIVATE, 'p');
2619         DO_MODE_CHAR(SECRET, 's');
2620         DO_MODE_CHAR(MODERATED, 'm');
2621         DO_MODE_CHAR(TOPICLIMIT, 't');
2622         DO_MODE_CHAR(INVITEONLY, 'i');
2623         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2624         DO_MODE_CHAR(LIMIT, 'l');
2625         DO_MODE_CHAR(DELAYJOINS, 'D');
2626         DO_MODE_CHAR(REGONLY, 'r');
2627         DO_MODE_CHAR(NOCOLORS, 'c');
2628         DO_MODE_CHAR(NOCTCPS, 'C');
2629         DO_MODE_CHAR(REGISTERED, 'z');
2630 #undef DO_MODE_CHAR
2631         if (change->modes_clear & channel->modes & MODE_KEY)
2632             mod_chanmode_append(&chbuf, 'k', channel->key);
2633         if (change->modes_clear & channel->modes & MODE_UPASS)
2634             mod_chanmode_append(&chbuf, 'U', channel->upass);
2635         if (change->modes_clear & channel->modes & MODE_APASS)
2636             mod_chanmode_append(&chbuf, 'A', channel->apass);
2637     }
2638     for (arg = 0; arg < change->argc; ++arg) {
2639         if (!(change->args[arg].mode & MODE_REMOVE))
2640             continue;
2641         if (mode != '-')
2642             chbuf.modes[chbuf.modes_used++] = mode = '-';
2643         switch (change->args[arg].mode & ~MODE_REMOVE) {
2644         case MODE_BAN:
2645             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2646             break;
2647         default:
2648             if (change->args[arg].mode & MODE_CHANOP)
2649                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2650             if (change->args[arg].mode & MODE_VOICE)
2651                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2652             break;
2653         }
2654     }
2655
2656     /* Then set them */
2657     chbuf.is_add = 1;
2658     if (change->modes_set) {
2659         if (mode != '+')
2660             chbuf.modes[chbuf.modes_used++] = mode = '+';
2661 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2662         DO_MODE_CHAR(PRIVATE, 'p');
2663         DO_MODE_CHAR(SECRET, 's');
2664         DO_MODE_CHAR(MODERATED, 'm');
2665         DO_MODE_CHAR(TOPICLIMIT, 't');
2666         DO_MODE_CHAR(INVITEONLY, 'i');
2667         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2668         DO_MODE_CHAR(DELAYJOINS, 'D');
2669         DO_MODE_CHAR(REGONLY, 'r');
2670         DO_MODE_CHAR(NOCOLORS, 'c');
2671         DO_MODE_CHAR(NOCTCPS, 'C');
2672         DO_MODE_CHAR(REGISTERED, 'z');
2673 #undef DO_MODE_CHAR
2674         if(change->modes_set & MODE_KEY)
2675             mod_chanmode_append(&chbuf, 'k', change->new_key);
2676         if (change->modes_set & MODE_UPASS)
2677             mod_chanmode_append(&chbuf, 'U', change->new_upass);
2678         if (change->modes_set & MODE_APASS)
2679             mod_chanmode_append(&chbuf, 'A', change->new_apass);
2680         if(change->modes_set & MODE_LIMIT) {
2681             sprintf(int_buff, "%d", change->new_limit);
2682             mod_chanmode_append(&chbuf, 'l', int_buff);
2683         }
2684     }
2685     for (arg = 0; arg < change->argc; ++arg) {
2686         if (change->args[arg].mode & MODE_REMOVE)
2687             continue;
2688         if (mode != '+')
2689             chbuf.modes[chbuf.modes_used++] = mode = '+';
2690         switch (change->args[arg].mode) {
2691         case MODE_BAN:
2692             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2693             break;
2694         default:
2695             if (change->args[arg].mode & MODE_CHANOP)
2696                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2697             if (change->args[arg].mode & MODE_VOICE)
2698                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2699             break;
2700         }
2701     }
2702
2703     /* Flush the buffer and apply changes locally */
2704     if (chbuf.modes_used > 0) {
2705         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2706         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2707         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2708     }
2709     mod_chanmode_apply(who, channel, change);
2710 }
2711
2712 char *
2713 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2714 {
2715     unsigned int used = 0;
2716     assert(change->argc <= change->alloc_argc);
2717     if (change->modes_clear) {
2718         outbuff[used++] = '-';
2719 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2720         DO_MODE_CHAR(PRIVATE, 'p');
2721         DO_MODE_CHAR(SECRET, 's');
2722         DO_MODE_CHAR(MODERATED, 'm');
2723         DO_MODE_CHAR(TOPICLIMIT, 't');
2724         DO_MODE_CHAR(INVITEONLY, 'i');
2725         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2726         DO_MODE_CHAR(LIMIT, 'l');
2727         DO_MODE_CHAR(KEY, 'k');
2728         DO_MODE_CHAR(UPASS, 'U');
2729         DO_MODE_CHAR(APASS, 'A');
2730         DO_MODE_CHAR(DELAYJOINS, 'D');
2731         DO_MODE_CHAR(REGONLY, 'r');
2732         DO_MODE_CHAR(NOCOLORS, 'c');
2733         DO_MODE_CHAR(NOCTCPS, 'C');
2734         DO_MODE_CHAR(REGISTERED, 'z');
2735 #undef DO_MODE_CHAR
2736     }
2737     if (change->modes_set) {
2738         outbuff[used++] = '+';
2739 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
2740         DO_MODE_CHAR(PRIVATE, 'p');
2741         DO_MODE_CHAR(SECRET, 's');
2742         DO_MODE_CHAR(MODERATED, 'm');
2743         DO_MODE_CHAR(TOPICLIMIT, 't');
2744         DO_MODE_CHAR(INVITEONLY, 'i');
2745         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2746         DO_MODE_CHAR(DELAYJOINS, 'D');
2747         DO_MODE_CHAR(REGONLY, 'r');
2748         DO_MODE_CHAR(NOCOLORS, 'c');
2749         DO_MODE_CHAR(NOCTCPS, 'C');
2750         DO_MODE_CHAR(REGISTERED, 'z');
2751 #undef DO_MODE_CHAR
2752         switch (change->modes_set & (MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS)) {
2753         /* Doing this implementation has been a pain in the arse, I hope I didn't forget a possible combination */
2754         case MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS:
2755             used += sprintf(outbuff+used, "lkAU %d %s %s %s", change->new_limit, change->new_key, change->new_apass, change->new_upass);
2756             break;
2757
2758         case MODE_KEY|MODE_LIMIT|MODE_APASS:
2759             used += sprintf(outbuff+used, "lkA %d %s %s", change->new_limit, change->new_key, change->new_apass);
2760             break;
2761         case MODE_KEY|MODE_LIMIT|MODE_UPASS:
2762             used += sprintf(outbuff+used, "lkU %d %s %s", change->new_limit, change->new_key, change->new_upass);
2763             break;
2764         case MODE_KEY|MODE_APASS|MODE_UPASS:
2765             used += sprintf(outbuff+used, "kAU %s %s %s", change->new_key, change->new_apass, change->new_upass);
2766             break;
2767
2768         case MODE_KEY|MODE_APASS:
2769             used += sprintf(outbuff+used, "kA %s %s", change->new_key, change->new_apass);
2770             break;
2771         case MODE_KEY|MODE_UPASS:
2772             used += sprintf(outbuff+used, "kU %s %s", change->new_key, change->new_upass);
2773             break;
2774         case MODE_KEY|MODE_LIMIT:
2775             used += sprintf(outbuff+used, "lk %d %s", change->new_limit, change->new_key);
2776             break;
2777         case MODE_LIMIT|MODE_UPASS:
2778             used += sprintf(outbuff+used, "lU %d %s", change->new_limit, change->new_upass);
2779             break;
2780         case MODE_LIMIT|MODE_APASS:
2781             used += sprintf(outbuff+used, "lA %d %s", change->new_limit, change->new_apass);
2782             break;
2783         case MODE_APASS|MODE_UPASS:
2784             used += sprintf(outbuff+used, "AU %s %s", change->new_apass, change->new_upass);
2785             break;
2786
2787         case MODE_LIMIT|MODE_APASS|MODE_UPASS:
2788             used += sprintf(outbuff+used, "lAU %d %s %s", change->new_limit, change->new_apass, change->new_upass);
2789             break;
2790
2791         case MODE_APASS:
2792             used += sprintf(outbuff+used, "A %s", change->new_apass);
2793             break;
2794         case MODE_UPASS:
2795             used += sprintf(outbuff+used, "U %s", change->new_upass);
2796             break;
2797         case MODE_KEY:
2798             used += sprintf(outbuff+used, "k %s", change->new_key);
2799             break;
2800         case MODE_LIMIT:
2801             used += sprintf(outbuff+used, "l %d", change->new_limit);
2802             break;
2803         }
2804     }
2805     outbuff[used] = 0;
2806     return outbuff;
2807 }
2808
2809 static int
2810 clear_chanmode(struct chanNode *channel, const char *modes)
2811 {
2812     unsigned int cleared;
2813
2814     for (cleared = 0; *modes; modes++) {
2815         switch (*modes) {
2816         case 'o': cleared |= MODE_CHANOP; break;
2817         case 'v': cleared |= MODE_VOICE; break;
2818         case 'p': cleared |= MODE_PRIVATE; break;
2819         case 's': cleared |= MODE_SECRET; break;
2820         case 'm': cleared |= MODE_MODERATED; break;
2821         case 't': cleared |= MODE_TOPICLIMIT; break;
2822         case 'i': cleared |= MODE_INVITEONLY; break;
2823         case 'n': cleared |= MODE_NOPRIVMSGS; break;
2824         case 'k':
2825             cleared |= MODE_KEY;
2826             channel->key[0] = '\0';
2827             break;
2828         case 'A':
2829             cleared |= MODE_APASS;
2830             channel->apass[0] = '\0';
2831             break;
2832         case 'U':
2833             cleared |= MODE_UPASS;
2834             channel->upass[0] = '\0';
2835             break;
2836         case 'l':
2837             cleared |= MODE_LIMIT;
2838             channel->limit = 0;
2839             break;
2840         case 'b': cleared |= MODE_BAN; break;
2841         case 'D': cleared |= MODE_DELAYJOINS; break;
2842         case 'r': cleared |= MODE_REGONLY; break;
2843         case 'c': cleared |= MODE_NOCOLORS; break;
2844         case 'C': cleared |= MODE_NOCTCPS; break;
2845         case 'z': cleared |= MODE_REGISTERED; break;
2846         }
2847     }
2848
2849     if (!cleared)
2850         return 1;
2851
2852     /* Remove simple modes. */
2853     channel->modes &= ~cleared;
2854
2855     /* If removing bans, kill 'em all. */
2856     if ((cleared & MODE_BAN) && channel->banlist.used) {
2857         unsigned int i;
2858         for (i=0; i<channel->banlist.used; i++)
2859             free(channel->banlist.list[i]);
2860         channel->banlist.used = 0;
2861     }
2862
2863     /* Remove member modes. */
2864     if ((cleared & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
2865         int mask = ~(cleared & (MODE_CHANOP | MODE_VOICE));
2866         unsigned int i;
2867
2868         for (i = 0; i < channel->members.used; i++)
2869             channel->members.list[i]->modes &= mask;
2870     }
2871
2872     return 1;
2873 }
2874
2875 void
2876 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2877 {
2878     unsigned int numeric = user->num_local;
2879     if (numeric >= num_privmsg_funcs) {
2880         int newnum = numeric + 8, ii;
2881         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
2882         for (ii = num_privmsg_funcs; ii < newnum; ++ii)
2883             privmsg_funcs[ii] = NULL;
2884         num_privmsg_funcs = newnum;
2885     }
2886     if (privmsg_funcs[numeric])
2887         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
2888     privmsg_funcs[numeric] = handler;
2889 }
2890
2891 void
2892 unreg_privmsg_func(struct userNode *user)
2893 {
2894     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
2895         return; /* this really only works with users */
2896
2897     privmsg_funcs[user->num_local] = NULL;
2898 }
2899
2900
2901 void
2902 reg_notice_func(struct userNode *user, privmsg_func_t handler)
2903 {
2904     unsigned int numeric = user->num_local;
2905     if (numeric >= num_notice_funcs) {
2906         int newnum = numeric + 8, ii;
2907         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
2908         for (ii = num_notice_funcs; ii < newnum; ++ii)
2909             notice_funcs[ii] = NULL;
2910         num_notice_funcs = newnum;
2911     }
2912     if (notice_funcs[numeric])
2913         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
2914     notice_funcs[numeric] = handler;
2915 }
2916
2917 void
2918 unreg_notice_func(struct userNode *user)
2919 {
2920     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
2921         return; /* this really only works with users */
2922
2923     notice_funcs[user->num_local] = NULL;
2924 }
2925
2926 static void
2927 send_burst(void)
2928 {
2929     unsigned int i, hop, max_hop=1;
2930     dict_iterator_t it;
2931
2932     /* burst (juped) servers, closest first (except self, which is sent already) */
2933     for (i=0; i<ArrayLength(servers_num); i++)
2934         if (servers_num[i] && servers_num[i]->hops > max_hop)
2935             max_hop = servers_num[i]->hops;
2936     for (hop=1; hop<=max_hop; hop++) {
2937         for (i=0;i<ArrayLength(servers_num);i++) {
2938             if (servers_num[i]
2939                 && (servers_num[i]->hops == hop)
2940                 && (servers_num[i] != self->uplink))
2941                 irc_server(servers_num[i]);
2942         }
2943     }
2944
2945     /* burst local nicks */
2946     for (i=0; i<=self->num_mask; i++)
2947         if (self->users[i])
2948             irc_user(self->users[i]);
2949
2950     /* build dict of unbursted channel names (just copy existing channels) */
2951     unbursted_channels = dict_new();
2952     for (it = dict_first(channels); it; it = iter_next(it))
2953         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
2954 }