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