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