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