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