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