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