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