channel created messages added
[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     handle_new_channel_created(name, cd->user);
1201
1202     AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL));
1203 }
1204
1205 static CMD_FUNC(cmd_create)
1206 {
1207     struct create_desc cd;
1208     struct userNode *user;
1209
1210     if ((argc < 3) || !(user = GetUserH(origin)))
1211         return 0;
1212     cd.user = user;
1213     cd.when = atoi(argv[2]);
1214     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1215     return 1;
1216 }
1217
1218 static CMD_FUNC(cmd_join)
1219 {
1220     struct create_desc cd;
1221
1222     if (!(cd.user = GetUserH(origin)))
1223         return 0;
1224     if (argc < 2)
1225         return 0;
1226     else if (argc < 3)
1227         cd.when = now;
1228     else
1229         cd.when = atoi(argv[2]);
1230     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1231     return 1;
1232 }
1233
1234 static CMD_FUNC(cmd_pong)
1235 {
1236     if (argc < 3)
1237         return 0;
1238     if (!strcmp(argv[2], self->name)) {
1239         timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1240         timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1241         timeq_add(now + ping_freq, timed_send_ping, 0);
1242         received_ping();
1243     }
1244     return 1;
1245 }
1246
1247 static CMD_FUNC(cmd_nick)
1248 {
1249     struct userNode *user;
1250     if ((user = GetUserH(origin))) {
1251         /* nick change (since the source is a user numeric) */
1252         if (argc < 2)
1253             return 0;
1254         NickChange(user, argv[1], 1);
1255     } else {
1256         struct server *serv;
1257         char modes[MAXLEN];
1258         /* new nick */
1259         if (argc < 9)
1260             return 0;
1261         serv = GetServerH(origin);
1262         if (argc > 9)
1263             unsplit_string(argv+6, argc-9, modes);
1264         else
1265             strcpy(modes, "+");
1266         AddUser(serv, argv[1], argv[4], argv[5], modes, argv[argc-2], argv[argc-1], atoi(argv[3]), argv[argc-3]);
1267     }
1268     return 1;
1269 }
1270
1271 static CMD_FUNC(cmd_account)
1272 {
1273     struct userNode *user;
1274     unsigned long timestamp = 0;
1275     unsigned long serial = 0;
1276
1277     if ((argc < 3) || !origin || !GetServerH(origin))
1278         return 0; /* Origin must be server. */
1279     user = GetUserN(argv[1]);
1280     if (!user)
1281         return 1; /* A QUIT probably passed the ACCOUNT. */
1282     if (argc > 3)
1283         timestamp = strtoul(argv[3], NULL, 10);
1284     if (argc > 4)
1285         serial = strtoul(argv[4], NULL, 10);
1286     call_account_func(user, argv[2], timestamp, serial);
1287     return 1;
1288 }
1289
1290 static CMD_FUNC(cmd_fakehost)
1291 {
1292     struct userNode *user;
1293     const char *host, *ident;
1294
1295     if ((argc < 3) || !origin || !GetServerH(origin))
1296         return 0;
1297     if (!(user = GetUserN(argv[1])))
1298         return 1;
1299
1300     if (argc > 3) {
1301         ident = argv[2];
1302         host = argv[3];
1303     } else {
1304         ident = NULL;
1305         host = argv[2];
1306     }
1307
1308     assign_fakehost(user, host, ident, 0, 0);
1309     return 1;
1310 }
1311
1312 static CMD_FUNC(cmd_burst)
1313 {
1314     extern int rel_age;
1315     char modes[MAXLEN], *members = "", *banlist = NULL;
1316     unsigned int next = 3, res = 1;
1317     struct chanNode *cNode;
1318     struct userNode *un;
1319     struct modeNode *mNode;
1320     long mode;
1321     int oplevel = 0;
1322     char *user, *end, sep;
1323     unsigned long in_timestamp;
1324
1325     if (argc < 3)
1326         return 0;
1327     modes[0] = 0;
1328     while (next < argc) {
1329         switch (argv[next][0]) {
1330         case '+': {
1331             const char *pos;
1332             int n_modes;
1333             for (pos=argv[next], n_modes = 1; *pos; pos++)
1334                 if ((*pos == 'k') || (*pos == 'l') || (*pos == 'A')
1335                     || (*pos == 'U') || (*pos == 'a') || (*pos == 'F'))
1336                     n_modes++;
1337             if (next + n_modes > argc)
1338                 n_modes = argc - next;
1339             unsplit_string(argv+next, n_modes, modes);
1340             next += n_modes;
1341             break;
1342         }
1343         case '%': banlist = argv[next++]+1; break;
1344         default: members = argv[next++]; break;
1345         }
1346     }
1347
1348     in_timestamp = atoi(argv[2]);
1349     if ((cNode = dict_find(unbursted_channels, argv[1], NULL))) {
1350         cNode->timestamp = in_timestamp;
1351         dict_remove(unbursted_channels, cNode->name);
1352         irc_burst(cNode);
1353     }
1354     cNode = AddChannel(argv[1], in_timestamp, modes, banlist);
1355
1356     /* Burst channel members in now. */
1357     for (user = members, sep = *members, mode = 0; sep; user = end) {
1358         for (end = user + 3; isalnum(*end) || *end == '[' || *end == ']'; end++) ;
1359         sep = *end++; end[-1] = 0;
1360         if (sep == ':') {
1361             mode = 0;
1362             while ((sep = *end++)) {
1363                 if (sep == 'o') {
1364                     mode |= MODE_CHANOP;
1365                     oplevel = MAXOPLEVEL;
1366                 } else if (sep == 'v') {
1367                     mode |= MODE_VOICE;
1368                     oplevel = 0;
1369                 } else if (isdigit(sep)) {
1370                     mode |= MODE_CHANOP;
1371                     oplevel += parse_oplevel(end - 1);
1372                     while (isdigit(*end)) end++;
1373                 } else
1374                     break;
1375             }
1376             if (rel_age < 0)
1377                 mode = 0;
1378         }
1379         if (!(un = GetUserN(user))) {
1380             res = 0;
1381             continue;
1382         }
1383         if ((mNode = AddChannelUser(un, cNode))) {
1384             mNode->modes = mode;
1385             mNode->oplevel = oplevel;
1386         }
1387     }
1388
1389     return res;
1390 }
1391
1392 static CMD_FUNC(cmd_mode)
1393 {
1394     struct chanNode *cn;
1395     struct userNode *un;
1396
1397     if (argc < 3)
1398         return 0;
1399     if (!IsChannelName(argv[1])) {
1400         un = GetUserH(argv[1]);
1401         if (!un) {
1402             log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s whose mode is changing.", argv[1]);
1403             return 0;
1404         }
1405         argv[2] = unsplit_string(argv + 2, argc - 2, NULL);
1406         mod_usermode(un, argv[2]);
1407         return 1;
1408     }
1409
1410     if (!(cn = GetChannel(argv[1]))) {
1411         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1412         return 0;
1413     }
1414     if ((un = GetUserH(origin))) {
1415         struct modeNode *mn;
1416         /* Update idle time for person setting the mode */
1417         if ((mn = GetUserMode(cn, un)))
1418             mn->idle_since = now;
1419     } else {
1420         /* If it came from a server, reset timestamp to re-sync. */
1421         cn->timestamp = atoi(argv[argc-1]);
1422     }
1423
1424     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER|(un ? MC_NOTIFY : 0));
1425 }
1426
1427 static CMD_FUNC(cmd_opmode)
1428 {
1429     struct chanNode *cn;
1430     struct userNode *un;
1431
1432     if (argc < 3)
1433         return 0;
1434
1435     if (!(cn = GetChannel(argv[1]))) {
1436         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1437         return 0;
1438     }
1439     if (!(un = GetUserH(origin))) {
1440         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting OPMODE.", origin);
1441         return 0;
1442     }
1443     if (!IsOper(un)) {
1444         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using OPMODE.", un->nick);
1445         return 0;
1446     }
1447
1448     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER); /* do NOT announce opmode locally */
1449 }
1450
1451 static int clear_chanmode(struct chanNode *channel, const char *modes);
1452
1453 static CMD_FUNC(cmd_clearmode)
1454 {
1455     struct chanNode *cn;
1456     struct userNode *un;
1457
1458     if (argc < 3)
1459         return 0;
1460
1461     if (!(cn = GetChannel(argv[1]))) {
1462         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1463         return 0;
1464     }
1465     if (!(un = GetUserH(origin))) {
1466         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting CLEARMODE.", origin);
1467         return 0;
1468     }
1469     if (!IsOper(un)) {
1470         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using CLEARMODE.", un->nick);
1471         return 0;
1472     }
1473
1474     return clear_chanmode(cn, argv[2]);
1475 }
1476
1477 static CMD_FUNC(cmd_topic)
1478 {
1479     struct chanNode *cn;
1480     unsigned long chan_ts, topic_ts;
1481
1482     if (argc < 3)
1483         return 0;
1484     if (!(cn = GetChannel(argv[1]))) {
1485         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose topic is being set", argv[1]);
1486         return 0;
1487     }
1488     if (argc >= 5) {
1489         /* Looks like an Asuka style topic burst. */
1490         chan_ts = atoi(argv[2]);
1491         topic_ts = atoi(argv[3]);
1492     } else {
1493         chan_ts = cn->timestamp;
1494         topic_ts = now;
1495     }
1496     SetChannelTopic(cn, GetUserH(origin), argv[argc-1], 0);
1497     cn->topic_time = topic_ts;
1498     return 1;
1499 }
1500
1501 static CMD_FUNC(cmd_num_topic)
1502 {
1503     struct chanNode *cn;
1504
1505     if (!argv[0])
1506         return 0; /* huh? */
1507     if (argv[2]) {
1508         cn = GetChannel(argv[2]);
1509         if (!cn) {
1510             log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s in topic reply", argv[2]);
1511             return 0;
1512         }
1513     } else
1514         return 0;
1515
1516     switch (atoi(argv[0])) {
1517     case 331:
1518         cn->topic_time = 0;
1519         break;  /* no topic */
1520     case 332:
1521         if (argc < 4)
1522             return 0;
1523         safestrncpy(cn->topic, unsplit_string(argv+3, argc-3, NULL), sizeof(cn->topic));
1524         break;
1525     case 333:
1526         if (argc < 5)
1527             return 0;
1528         safestrncpy(cn->topic_nick, argv[3], sizeof(cn->topic_nick));
1529         cn->topic_time = atoi(argv[4]);
1530         break;
1531     default:
1532         return 0; /* should never happen */
1533     }
1534     return 1;
1535 }
1536
1537 static CMD_FUNC(cmd_num_gline)
1538 {
1539     unsigned long lastmod;
1540     unsigned long lifetime;
1541
1542     if (argc < 6)
1543         return 0;
1544     lastmod = (argc > 5) ? strtoul(argv[5], NULL, 0) : 0;
1545     lifetime = (argc > 6) ? strtoul(argv[6], NULL, 0) : 0;
1546     gline_add(origin, argv[3], atoi(argv[4])-now, argv[argc - 1], now, lastmod, lifetime, 0);
1547     return 1;
1548 }
1549
1550 static CMD_FUNC(cmd_quit)
1551 {
1552     struct userNode *user;
1553     if (argc < 2)
1554         return 0;
1555     /* Sometimes we get a KILL then a QUIT or the like, so we don't want to
1556      * call DelUser unless we have the user in our grasp. */
1557     if ((user = GetUserH(origin)))
1558         DelUser(user, NULL, false, argv[1]);
1559     return 1;
1560 }
1561
1562 static CMD_FUNC(cmd_kill)
1563 {
1564     struct userNode *user;
1565     if (argc < 2)
1566         return 0;
1567     user = GetUserN(argv[1]);
1568     if (!user) {
1569         /* If we get a KILL for a non-existent user, it could be a
1570          * Ghost response to a KILL we sent out earlier.  So we only
1571          * whine if the target is local.
1572          */
1573         if (!strncmp(argv[1], self->numeric, strlen(self->numeric)))
1574             log_module(MAIN_LOG, LOG_ERROR, "Unable to find kill victim %s", argv[1]);
1575         return 0;
1576     }
1577
1578     if (IsLocal(user) && IsService(user)) {
1579         /* TODO: rate limit this so silly things don't happen. */
1580         ReintroduceUser(user);
1581         return 1;
1582     }
1583
1584     DelUser(user, NULL, false, argv[2]);
1585     return 1;
1586 }
1587
1588 static CMD_FUNC(cmd_kick)
1589 {
1590     if (argc < 3)
1591         return 0;
1592     if (GetUserN(argv[2]) && IsOper(GetUserN(argv[2])))
1593         operpart(GetChannel(argv[1]), GetUserN(argv[2]));
1594     ChannelUserKicked(GetUserH(origin), GetUserN(argv[2]), GetChannel(argv[1]));
1595     return 1;
1596 }
1597
1598 static CMD_FUNC(cmd_squit)
1599 {
1600     struct server *server;
1601
1602     if (argc < 4)
1603         return 0;
1604     if (!(server = GetServerH(argv[1])))
1605         return 0;
1606
1607     if (server == self->uplink) {
1608         /* Force a reconnect to the currently selected server. */
1609         cManager.uplink->tries = 0;
1610         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", argv[3]);
1611         close_socket();
1612         return 1;
1613     }
1614
1615     DelServer(server, 0, argv[3]);
1616     return 1;
1617 }
1618
1619 static CMD_FUNC(cmd_privmsg)
1620 {
1621     struct privmsg_desc pd;
1622     if (argc < 3)
1623         return 0;
1624     pd.user = GetUserH(origin);
1625     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1626         return 1;
1627     pd.is_notice = 0;
1628     pd.text = argv[argc - 1];
1629     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1630     return 1;
1631 }
1632
1633 static CMD_FUNC(cmd_notice)
1634 {
1635     struct privmsg_desc pd;
1636     if (argc < 3)
1637         return 0;
1638     pd.user = GetUserH(origin);
1639     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1640         return 1;
1641     pd.is_notice = 1;
1642     pd.text = argv[argc - 1];
1643     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1644     return 1;
1645 }
1646
1647 static CMD_FUNC(cmd_away)
1648 {
1649     struct userNode *uNode;
1650
1651     uNode = GetUserH(origin);
1652     if (!uNode)
1653         return 1;
1654     if (argc < 2)
1655         uNode->modes &= ~FLAGS_AWAY;
1656     else
1657         uNode->modes |= FLAGS_AWAY;
1658     return 1;
1659 }
1660
1661 static CMD_FUNC(cmd_gline)
1662 {
1663 #define PASTWATCH (5*365*24*3600)
1664     unsigned long lastmod;
1665     unsigned long lifetime;
1666     unsigned long expiration;
1667
1668     if (argc < 3)
1669         return 0;
1670     if (argv[2][0] == '+') {
1671         if (argc < 5)
1672             return 0;
1673         expiration = strtoul(argv[3], NULL, 10);
1674         if (expiration < now - PASTWATCH)
1675             expiration += now;
1676         lastmod = (argc > 5) ? strtoul(argv[4], NULL, 10) : 0;
1677         lifetime = (argc > 6) ? strtoul(argv[5], NULL, 10) : 0;
1678         gline_add(origin, argv[2]+1, expiration - now, argv[argc-1], now, lastmod, lifetime, 0);
1679         return 1;
1680     } else if (argv[2][0] == '-') {
1681         gline_remove(argv[2]+1, 0);
1682         return 1;
1683     } else
1684         return 0;
1685 }
1686
1687 static CMD_FUNC(cmd_svsnick)
1688 {
1689     struct userNode *target, *dest;
1690     if ((argc < 4)
1691         || !(target = GetUserN(argv[1]))
1692         || !IsLocal(target)
1693         || (dest = GetUserH(argv[2])))
1694         return 0;
1695     NickChange(target, argv[2], 0);
1696     return 1;
1697 }
1698
1699 static CMD_FUNC(cmd_time)
1700 {
1701     extern int clock_skew;
1702     char buf[MAXLEN];
1703     struct userNode *who;
1704     time_t when;
1705
1706     who = GetUserH(origin);
1707     if (!who)
1708         return 0;
1709
1710     when = time(NULL);
1711     strftime(buf, sizeof(buf), "%a %b %d %Y -- %H:%M %z", localtime(&when));
1712     irc_numeric(who, 391, "%s %lu %d :%s", self->name, now, clock_skew, buf);
1713     return 1;
1714 }
1715
1716 static CMD_FUNC(cmd_relay)
1717 {
1718     struct server *sNode;
1719     unsigned int len;
1720     char buf[3];
1721     //<sender> RELAY <destination> <command>
1722     len = strlen(argv[1]);
1723     buf[2] = 0;
1724     switch(len) {
1725         case 2:
1726             sNode = GetServerN(argv[1]);
1727             break;
1728         case 5:
1729             buf[0] = argv[1][0];
1730             buf[1] = argv[1][1];
1731             sNode = GetServerN(buf);
1732             break;
1733         case 6:
1734             buf[0] = argv[1][1];
1735             buf[1] = argv[1][2];
1736             sNode = GetServerN(buf);
1737             break;
1738         default:
1739             /* Invalid destination. Ignore. */
1740             return 0;
1741     }
1742     if(sNode->numeric == self->numeric) {
1743         //ok  someone relayed something to us!
1744         if(strcmp("LQ", argv[2]) == 0) {
1745             //oooh thats exciting - we've got a LOC Query! :D
1746             //LQ !ABADE pk910 80.153.5.212 server.zoelle1.de ~watchcat :test
1747             //ok  let's check the login datas
1748             struct handle_info *hi;
1749             char tmp[MAXLEN];
1750             sprintf(tmp, "*!%s@%s",argv[7],argv[5]);
1751             if((hi = checklogin(argv[4],argv[argc-1],&argv[3][1],tmp))) {
1752              //login ok
1753              struct devnull_class *th;
1754              char devnull[512];
1755              if(hi->devnull && (th = devnull_get(hi->devnull))) {
1756                 const char *devnull_modes = DEVNULL_MODES;
1757                 int ii, flen;
1758                 char flags[50];
1759                 for (ii=flen=0; devnull_modes[ii]; ++ii)
1760                     if (th->modes & (1 << ii))
1761                         flags[flen++] = devnull_modes[ii];
1762                 flags[flen] = 0;
1763                 sprintf(devnull, "+%s %s %lu %lu",flags,th->name,th->maxchan,th->maxsendq);
1764              } else {
1765                 devnull[0] = 0;
1766              }
1767              if(getfakehost(argv[4])) {
1768                 sprintf(tmp,"%s LA %s %s %s\n",argv[3],hi->handle,getfakehost(argv[4]),devnull);
1769              } else {
1770                 extern const char *hidden_host_suffix;
1771                 sprintf(tmp,"%s LA %s %s.%s %s\n",argv[3],hi->handle,hi->handle,hidden_host_suffix,devnull);
1772              }
1773              irc_relay(tmp);
1774             } else {
1775              //login rejected
1776              sprintf(tmp,"%s LR\n",argv[3]);
1777              irc_relay(tmp);
1778             }
1779         }
1780     }
1781     return 1;
1782 }
1783
1784 void
1785 free_user(struct userNode *user)
1786 {
1787     free(user->nick);
1788     free(user);
1789 }
1790
1791 static void
1792 parse_cleanup(void)
1793 {
1794     unsigned int nn;
1795     free(of_list);
1796     free(privmsg_funcs);
1797     num_privmsg_funcs = 0;
1798     free(notice_funcs);
1799     num_notice_funcs = 0;
1800     free(mcf_list);
1801     dict_delete(irc_func_dict);
1802     for (nn=0; nn<dead_users.used; nn++)
1803         free_user(dead_users.list[nn]);
1804     userList_clean(&dead_users);
1805 }
1806
1807 static void
1808 p10_conf_reload(void) {
1809     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1810     his_servername = conf_get_data("server/his_servername", RECDB_QSTRING);
1811     his_servercomment = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1812 }
1813
1814 static void
1815 remove_unbursted_channel(struct chanNode *cNode) {
1816     if (unbursted_channels)
1817         dict_remove(unbursted_channels, cNode->name);
1818 }
1819
1820 void
1821 init_parse(void)
1822 {
1823     const char *str, *desc;
1824     int numnick, usermask, max_users;
1825     char numer[COMBO_NUMERIC_LEN+1];
1826
1827     /* read config items */
1828     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1829     ping_freq = str ? ParseInterval(str) : 120;
1830     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1831     ping_timeout = str ? ParseInterval(str) : 30;
1832     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1833     force_n2k = str ? enabled_string(str) : 1;
1834     str = conf_get_data("server/numeric", RECDB_QSTRING);
1835     if (!str) {
1836         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1837         exit(1);
1838     }
1839     numnick = atoi(str);
1840     str = conf_get_data("server/max_users", RECDB_QSTRING);
1841     max_users = str ? atoi(str) : 4096;
1842     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1843     usermask--;
1844     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1845         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1846     else
1847         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1848
1849     str = conf_get_data("server/hostname", RECDB_QSTRING);
1850     desc = conf_get_data("server/description", RECDB_QSTRING);
1851     if (!str || !desc) {
1852         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1853         exit(1);
1854     }
1855     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1856     conf_register_reload(p10_conf_reload);
1857
1858     irc_func_dict = dict_new();
1859     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1860     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1861     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1862     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1863     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1864     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1865     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1866     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1867     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1868     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1869     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1870     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1871     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1872     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1873     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1874     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1875     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1876     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1877     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1878     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1879     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1880     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1881     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1882     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1883     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1884     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1885     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1886     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1887     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1888     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1889     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1890     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1891     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1892     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1893     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1894     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1895     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1896     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1897     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1898     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1899     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1900     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1901     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1902     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1903     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1904     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1905     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1906     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1907     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1908     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1909     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1910     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1911     dict_insert(irc_func_dict, CMD_RELAY, cmd_relay);
1912     dict_insert(irc_func_dict, TOK_RELAY, cmd_relay);
1913     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1914     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1915     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1916     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1917     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1918     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1919     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1920     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1921     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1922     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1923     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1924     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1925     dict_insert(irc_func_dict, CMD_TIME, cmd_time);
1926     dict_insert(irc_func_dict, TOK_TIME, cmd_time);
1927
1928     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1929      * Apparently to obliterate channels from any servers that think they
1930      * exist?
1931      */
1932     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1933     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1934     /* Ignore invites */
1935     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1936     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1937     /* DESYNCH is just informational, so ignore it */
1938     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1939     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1940     /* Ignore channel operator notices. */
1941     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1942     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1943     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1944     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1945     /* Ignore opers being silly. */
1946     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1947     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1948     /* We have reliable clock!  Always!  Wraaa! */
1949     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1950     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1951     /* handle topics */
1952     dict_insert(irc_func_dict, "331", cmd_num_topic);
1953     dict_insert(irc_func_dict, "332", cmd_num_topic);
1954     dict_insert(irc_func_dict, "333", cmd_num_topic);
1955     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1956     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1957     /* ban list resetting */
1958     /* "stats g" responses */
1959     dict_insert(irc_func_dict, "247", cmd_num_gline);
1960     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
1961     /* other numeric responses we might get */
1962     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
1963     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
1964     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
1965     dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */
1966     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
1967     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
1968     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
1969     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
1970     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
1971
1972     num_privmsg_funcs = 16;
1973     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
1974     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
1975
1976     num_notice_funcs = 16;
1977     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
1978     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
1979
1980     userList_init(&dead_users);
1981     channelList_init(&dead_channels);
1982     reg_del_channel_func(remove_unbursted_channel);
1983     reg_exit_func(parse_cleanup);
1984 }
1985
1986 int
1987 parse_line(char *line, int recursive)
1988 {
1989     char *argv[MAXNUMPARAMS], *origin;
1990     int argc, cmd, res=0;
1991     cmd_func_t *func;
1992
1993     argc = split_line(line, true, MAXNUMPARAMS, argv);
1994     cmd = self->uplink || !argv[0][1] || !argv[0][2];
1995     if (argc > cmd) {
1996         if (cmd) {
1997             if (argv[0][0] == ':') {
1998                 origin = argv[0]+1;
1999             } else if (!argv[0][1] || !argv[0][2]) {
2000                 struct server *sNode = GetServerN(argv[0]);
2001                 origin = sNode ? sNode->name : 0;
2002             } else {
2003                 struct userNode *uNode = GetUserN(argv[0]);
2004                 origin = uNode ? uNode->nick : 0;
2005             }
2006         } else
2007             origin = 0;
2008         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
2009             res = func(origin, argc-cmd, argv+cmd);
2010     }
2011     if (!res) {
2012         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
2013     } else if (!recursive) {
2014         unsigned int i;
2015         for (i=0; i<dead_users.used; i++)
2016             free_user(dead_users.list[i]);
2017         dead_users.used = 0;
2018         for (i=0; i<dead_channels.used; i++)
2019             UnlockChannel(dead_channels.list[i]);
2020         dead_channels.used = 0;
2021     }
2022     return res;
2023 }
2024
2025 static void
2026 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
2027 {
2028     char *j, old;
2029
2030     do {
2031         j = target_list;
2032         while (*j != 0 && *j != ',')
2033             j++;
2034         old = *j;
2035         *j = 0;
2036
2037         if (IsChannelName(target_list)
2038             || (target_list[0] == '0' && target_list[1] == '\0')) {
2039             struct chanNode *chan = GetChannel(target_list);
2040
2041             if (chan) {
2042                 if (cf)
2043                     cf(chan, data);
2044             } else {
2045                 if (nc)
2046                     nc(target_list, data);
2047             }
2048         } else {
2049             struct userNode *user;
2050             struct privmsg_desc *pd = data;
2051
2052             pd->is_qualified = 0;
2053             if (*target_list == '@') {
2054                 user = NULL;
2055             } else if (strchr(target_list, '@')) {
2056                 struct server *server;
2057
2058                 pd->is_qualified = 1;
2059                 user = GetUserH(strtok(target_list, "@"));
2060                 server = GetServerH(strtok(NULL, "@"));
2061
2062                 if (user && (user->uplink != server)) {
2063                     /* Don't attempt to index into any arrays
2064                        using a user's numeric on another server. */
2065                     user = NULL;
2066                 }
2067             } else {
2068                 user = GetUserN(target_list);
2069             }
2070
2071             if (user) {
2072                 if (uf)
2073                     uf(user, data);
2074             } else {
2075                 if (nu)
2076                     nu(target_list, data);
2077             }
2078         }
2079         target_list = j+1;
2080     } while (old == ',');
2081 }
2082
2083 static int
2084 get_local_numeric(void)
2085 {
2086     static unsigned int next_numeric = 0;
2087     if (self->clients > self->num_mask)
2088         return -1;
2089     while (self->users[next_numeric])
2090         if (++next_numeric > self->num_mask)
2091             next_numeric = 0;
2092     return next_numeric;
2093 }
2094
2095 static void
2096 make_numeric(struct server *svr, int local_num, char *outbuf)
2097 {
2098     int slen, llen;
2099
2100     if (force_n2k || svr->numeric[1]) {
2101         slen = 2;
2102         llen = 3;
2103     } else {
2104         slen = 1;
2105         llen = (local_num < 64*64) ? 2 : 3;
2106     }
2107     strncpy(outbuf, svr->numeric, slen);
2108     inttobase64(outbuf+slen, local_num, llen);
2109     outbuf[slen+llen] = 0;
2110 }
2111
2112 struct server *
2113 AddServer(struct server *uplink, const char *name, int hops, unsigned long boot, unsigned long link_time, const char *numeric, const char *description)
2114 {
2115     struct server* sNode;
2116     int slen, mlen;
2117
2118     if ((sNode = GetServerN(numeric))) {
2119         /* This means we're trying to re-add an existant server.
2120          * To be safe, we should forget the previous incarnation.
2121          * (And all its linked servers.)
2122          *
2123          * It usually only happens in replays when the original
2124          * had a ping timeout and the replay didn't (because
2125          * replaying a ping timeout invariably gets things wrong).
2126          */
2127         DelServer(sNode, 0, NULL);
2128     }
2129
2130     switch (strlen(numeric)) {
2131     case 5: slen = 2; mlen = 3; break;
2132     case 4: slen = 1; mlen = 3; break;
2133     case 3: slen = 1; mlen = 2; break;
2134     default:
2135         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
2136         return NULL;
2137     }
2138
2139     sNode = calloc(1, sizeof(*sNode));
2140     sNode->uplink = uplink;
2141     safestrncpy(sNode->name, name, sizeof(sNode->name));
2142     sNode->num_mask = base64toint(numeric+slen, mlen);
2143     sNode->hops = hops;
2144     sNode->boot = boot;
2145     sNode->link_time = link_time;
2146     strncpy(sNode->numeric, numeric, slen);
2147     safestrncpy(sNode->description, description, sizeof(sNode->description));
2148     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
2149     serverList_init(&sNode->children);
2150     if (sNode->uplink) {
2151         /* uplink may be NULL if we're just building ourself */
2152         serverList_append(&sNode->uplink->children, sNode);
2153     }
2154     servers_num[base64toint(numeric, slen)] = sNode;
2155     dict_insert(servers, sNode->name, sNode);
2156     return sNode;
2157 }
2158
2159 void DelServer(struct server* serv, int announce, const char *message)
2160 {
2161     unsigned int i;
2162
2163     /* If we receive an ERROR command before the SERVER
2164      * command a NULL server can be passed */
2165     if (!serv)
2166         return;
2167
2168     /* Hrm, what's the right way to SQUIT some other server?
2169      * (This code is only to handle killing juped servers.) */
2170     if (announce && (serv->uplink == self) && (serv != self->uplink))
2171         irc_squit(serv, message, NULL);
2172
2173     /* must recursively remove servers linked to this one first */
2174     for (i=serv->children.used;i>0;)
2175         if (serv->children.list[--i] != self)
2176             DelServer(serv->children.list[i], false, NULL);
2177
2178     /* clean up server's user hash tables */
2179     for (i=0;i<=serv->num_mask;i++)
2180         if (serv->users[i])
2181             DelUser(serv->users[i], NULL, false, "server delinked");
2182
2183     /* delete server */
2184     if (serv->uplink)
2185         serverList_remove(&serv->uplink->children, serv);
2186     if (serv == self->uplink)
2187         self->uplink = NULL;
2188     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
2189     dict_remove(servers, serv->name);
2190     serverList_clean(&serv->children);
2191     free(serv->users);
2192     free(serv);
2193 }
2194
2195 struct userNode *
2196 AddLocalUser(const char *nick, const char *ident, const char *hostname, const char *desc, const char *modes)
2197 {
2198     char numeric[COMBO_NUMERIC_LEN+1];
2199     int local_num = get_local_numeric();
2200     unsigned long timestamp = now;
2201     struct userNode *old_user = GetUserH(nick);
2202
2203     if (!modes)
2204         modes = "+oik";
2205     if (old_user) {
2206         if (IsLocal(old_user))
2207             return old_user;
2208         timestamp = old_user->timestamp - 1;
2209     }
2210     if (local_num == -1) {
2211         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
2212         return 0;
2213     }
2214     if (!hostname)
2215         hostname = self->name;
2216     make_numeric(self, local_num, numeric);
2217     return AddUser(self, nick, ident, hostname, modes, numeric, desc, now, "AAAAAA");
2218 }
2219
2220 struct userNode *
2221 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
2222 {
2223     char numeric[COMBO_NUMERIC_LEN+1];
2224     int local_num = get_local_numeric();
2225     unsigned long timestamp = now;
2226     struct userNode *old_user = GetUserH(nick);
2227
2228     if (old_user) {
2229         if (IsLocal(old_user))
2230             return old_user;
2231         timestamp = old_user->timestamp - 1;
2232     }
2233     if (local_num == -1) {
2234         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
2235         return 0;
2236     }
2237     make_numeric(self, local_num, numeric);
2238     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
2239 }
2240
2241 int
2242 is_valid_nick(const char *nick) {
2243     unsigned int ii;
2244     /* IRC has some of The Most Fucked-Up ideas about character sets
2245      * in the world.. */
2246     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
2247         return 0;
2248     for (ii = 0; nick[ii]; ++ii)
2249         if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii]))
2250             return 0;
2251     if (strlen(nick) > nicklen)
2252         return 0;
2253     return 1;
2254 }
2255
2256 static struct userNode*
2257 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)
2258 {
2259     struct userNode *oldUser, *uNode;
2260     unsigned int n, ignore_user, dummy;
2261
2262     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
2263         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", (void*)uplink, nick, numeric);
2264         return NULL;
2265     }
2266
2267     if (!uplink) {
2268         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", (void*)uplink, nick, numeric);
2269         return NULL;
2270     }
2271
2272     if (uplink != GetServerN(numeric)) {
2273         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", (void*)uplink, nick, numeric, uplink->name);
2274         return NULL;
2275     }
2276
2277     dummy = modes && modes[0] == '*';
2278     if (dummy) {
2279         ++modes;
2280     } else if (!is_valid_nick(nick)) {
2281         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", (void*)uplink, nick);
2282         return NULL;
2283     }
2284
2285     ignore_user = 0;
2286     if ((oldUser = GetUserH(nick))) {
2287         if (IsLocal(oldUser)
2288             && (IsService(oldUser) || IsPersistent(oldUser))) {
2289             /* The service should collide the new user off - but not
2290              * if the new user is coming in during a burst.  (During a
2291              * burst, the bursting server will kill either our user --
2292              * triggering a ReintroduceUser() -- or its own.)
2293              */
2294             oldUser->timestamp = timestamp - 1;
2295             ignore_user = 1;
2296             if (!uplink->burst)
2297                 irc_user(oldUser);
2298         } else if (oldUser->timestamp > timestamp) {
2299             /* "Old" user is really newer; remove them. */
2300             DelUser(oldUser, 0, 1, "Overruled by older nick");
2301         } else {
2302             /* User being added is too new; do not add them to
2303              * clients, but do add them to the server's list, since it
2304              * will send a KILL and QUIT soon. */
2305             ignore_user = 1;
2306         }
2307     }
2308
2309     /* create new usernode and set all values */
2310     uNode = calloc(1, sizeof(*uNode));
2311     uNode->nick = strdup(nick);
2312     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
2313     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
2314     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
2315     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
2316     irc_p10_pton(&uNode->ip, realip);
2317     uNode->timestamp = timestamp;
2318     uNode->idle_since = timestamp;
2319     modeList_init(&uNode->channels);
2320     uNode->uplink = uplink;
2321     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
2322         uNode->uplink->max_clients = uNode->uplink->clients;
2323     }
2324     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
2325     uNode->uplink->users[uNode->num_local] = uNode;
2326     mod_usermode(uNode, modes);
2327     if (dummy)
2328         uNode->modes |= FLAGS_DUMMY;
2329     if (ignore_user)
2330         return uNode;
2331
2332     dict_insert(clients, uNode->nick, uNode);
2333     if (dict_size(clients) > max_clients) {
2334         max_clients = dict_size(clients);
2335         max_clients_time = now;
2336     }
2337     if (IsLocal(uNode))
2338         irc_user(uNode);
2339     for (n=0; (n<nuf_used) && !uNode->dead; n++)
2340         nuf_list[n](uNode);
2341     return uNode;
2342 }
2343
2344 /* removes user from it's server's hash table and nick hash table */
2345 void
2346 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
2347 {
2348     unsigned int n;
2349
2350     verify(user);
2351
2352     /* mark them as dead, in case anybody cares */
2353     user->dead = 1;
2354
2355     /* remove user from all channels */
2356     while (user->channels.used > 0)
2357         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, NULL, false);
2358
2359     /* Call these in reverse order so ChanServ can update presence
2360        information before NickServ nukes the handle_info. */
2361     for (n = duf_used; n > 0; )
2362         duf_list[--n](user, killer, why);
2363
2364     user->uplink->clients--;
2365     user->uplink->users[user->num_local] = NULL;
2366     if (IsOper(user))
2367         userList_remove(&curr_opers, user);
2368     /* remove from global dictionary, but not if after a collide */
2369     if (user == dict_find(clients, user->nick, NULL))
2370         dict_remove(clients, user->nick);
2371
2372     if (IsInvisible(user))
2373         invis_clients--;
2374
2375     if (announce) {
2376         if (IsLocal(user))
2377             irc_quit(user, why);
2378         else
2379             irc_kill(killer, user, why);
2380     }
2381
2382     if (IsLocal(user)) {
2383         unsigned int num = user->num_local;
2384         if (num < num_privmsg_funcs)
2385             privmsg_funcs[num] = NULL;
2386         if (num < num_notice_funcs)
2387             notice_funcs[num] = NULL;
2388     }
2389
2390     modeList_clean(&user->channels);
2391     /* We don't free them, in case we try to privmsg them or something
2392      * (like when a stupid oper kills themself).  We just put them onto
2393      * a list of clients that get freed after processing each line.
2394      */
2395     if (dead_users.size)
2396         userList_append(&dead_users, user);
2397     else
2398         free_user(user);
2399 }
2400
2401 static void call_oper_funcs(struct userNode *user);
2402
2403 void mod_usermode(struct userNode *user, const char *mode_change) {
2404     int add = 1;
2405     const char *word = mode_change;
2406
2407     if (!user || !mode_change)
2408         return;
2409     while (*word != ' ' && *word) word++;
2410     while (*word == ' ') word++;
2411     while (1) {
2412 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
2413         switch (*mode_change++) {
2414         case 0: case ' ': return;
2415         case '+': add = 1; break;
2416         case '-': add = 0; break;
2417         case 'o':
2418             do_user_mode(FLAGS_OPER);
2419             if (!add) {
2420                 operdel(user);
2421                 userList_remove(&curr_opers, user);
2422             } else if (!userList_contains(&curr_opers, user)) {
2423                 operadd(user);
2424                 userList_append(&curr_opers, user);
2425                 call_oper_funcs(user);
2426             }
2427             break;
2428         case 'i': do_user_mode(FLAGS_INVISIBLE);
2429             if (add)
2430                 invis_clients++;
2431             else
2432                 invis_clients--;
2433             break;
2434         case 'w': do_user_mode(FLAGS_WALLOP); break;
2435         case 'd': do_user_mode(FLAGS_DEAF); break;
2436         case 'k': do_user_mode(FLAGS_SERVICE); break;
2437         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2438         case 'n': do_user_mode(FLAGS_NOCHAN); break;
2439         case 'I': do_user_mode(FLAGS_NOIDLE); break;
2440         case 'S': do_user_mode(FLAGS_NETSERV); break;
2441         case 'D': do_user_mode(FLAGS_SECURITYSERV); break;
2442         case 'X': do_user_mode(FLAGS_XTRAOP); break;
2443         case 's': do_user_mode(FLAGS_SERVERNOTICE); break;
2444         case 'H': do_user_mode(FLAGS_HIDDENOPER); break;
2445         case 't': do_user_mode(FLAGS_SEENOIDLE); break;
2446         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2447         case 'r':
2448             if (*word) {
2449                 char tag[MAXLEN];
2450                 char *sep;
2451                 unsigned int ii;
2452                 unsigned long ts = 0;
2453                 unsigned long id = 0;
2454
2455                 for (ii=0; (*word != ' ') && (*word != '\0') && (*word != ':'); )
2456                     tag[ii++] = *word++;
2457                 if (*word == ':') {
2458                     ts = strtoul(word + 1, &sep, 10);
2459                     if (*sep == ':') {
2460                         id = strtoul(sep + 1, &sep, 10);
2461                     } else if (*sep != ' ' && *sep != '\0') {
2462                         ts = 0;
2463                     }
2464                     word = sep;
2465                 }
2466                 tag[ii] = '\0';
2467                 while (*word == ' ')
2468                     word++;
2469                 call_account_func(user, tag, ts, id);
2470             }
2471             break;
2472         case 'h':
2473             if (*word) {
2474                 char mask[MAXLEN];
2475                 char *host, *ident;
2476                 unsigned int ii;
2477
2478                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2479                     mask[ii++] = *word++;
2480                 mask[ii] = 0;
2481                 while (*word == ' ')
2482                     word++;
2483
2484                 if ((host = strrchr(mask, '@'))) {
2485                     ident = mask;
2486                     *host++ = '\0';
2487                 } else {
2488                     ident = NULL;
2489                     host = mask;
2490                 }
2491                 user->modes |= FLAGS_HIDDEN_HOST;
2492                 assign_fakehost(user, host, ident, 0, 0);
2493             }
2494             break;
2495         }
2496 #undef do_user_mode
2497     }
2498 }
2499
2500 static int
2501 keyncpy(char output[], char input[], size_t output_size)
2502 {
2503     size_t ii;
2504
2505     if (input[0] == ':')
2506     {
2507         output[0] = '\0';
2508         return 1;
2509     }
2510
2511     for (ii = 0; (ii + 1 < output_size) && (input[ii] != '\0'); ++ii)
2512     {
2513         output[ii] = input[ii];
2514     }
2515
2516     output[ii] = '\0';
2517     return 0;
2518 }
2519
2520 struct mod_chanmode *
2521 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags, short base_oplevel)
2522 {
2523     struct mod_chanmode *change;
2524     unsigned int ii, in_arg, ch_arg, add;
2525
2526     if (argc == 0)
2527         return NULL;
2528     if (!(change = mod_chanmode_alloc(argc - 1)))
2529         return NULL;
2530
2531     for (ii = ch_arg = 0, in_arg = add = 1;
2532          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2533          ++ii) {
2534         switch (modes[0][ii]) {
2535         case '+':
2536             add = 1;
2537             break;
2538         case '-':
2539             add = 0;
2540             break;
2541 #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)
2542         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2543         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2544         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2545         case 'M': do_chan_mode(MODE_NOAMSGS); break;
2546         case 'N': do_chan_mode(MODE_NONOTICES); break;
2547         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2548         case 'm': do_chan_mode(MODE_MODERATED); break;
2549         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2550         case 'p': do_chan_mode(MODE_PRIVATE); break;
2551         case 'r': do_chan_mode(MODE_REGONLY); break;
2552         case 's': do_chan_mode(MODE_SECRET); break;
2553         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2554         case 'z':
2555           if (!(flags & MCP_REGISTERED) && (!(flags & MCP_IGN_REGISTERED) || add)) {
2556             do_chan_mode(MODE_REGISTERED);
2557           } else if (flags & MCP_IGN_REGISTERED) {
2558             /* ignore the modechange but continue parsing */
2559           } else {
2560             mod_chanmode_free(change);
2561             return NULL;
2562           }
2563           break;
2564 #undef do_chan_mode
2565         case 'l':
2566             if (add) {
2567                 if (in_arg >= argc)
2568                     goto error;
2569                 change->modes_set |= MODE_LIMIT;
2570                 change->new_limit = atoi(modes[in_arg++]);
2571             } else {
2572                 change->modes_set &= ~MODE_LIMIT;
2573                 change->modes_clear |= MODE_LIMIT;
2574             }
2575             break;
2576         case 'a':
2577             if (add) {
2578                 if (in_arg >= argc)
2579                     goto error;
2580                 change->modes_set |= MODE_ACCESS;
2581                 change->new_access = atoi(modes[in_arg++]);
2582             } else {
2583                 change->modes_set &= ~MODE_ACCESS;
2584                 change->modes_clear |= MODE_ACCESS;
2585             }
2586             break;
2587         case 'k':
2588             if (add) {
2589                 if ((in_arg >= argc)
2590                     || keyncpy(change->new_key, modes[in_arg++], sizeof(change->new_key)))
2591                     goto error;
2592                 change->modes_set |= MODE_KEY;
2593             } else {
2594                 change->modes_clear |= MODE_KEY;
2595                 if (!(flags & MCP_KEY_FREE)) {
2596                     if (in_arg >= argc)
2597                         goto error;
2598                     in_arg++;
2599                 }
2600             }
2601             break;
2602         case 'F':
2603             if (add) {
2604                 if (in_arg >= argc)
2605                     goto error;
2606                 change->modes_set |= MODE_ALTCHAN;
2607                 safestrncpy(change->new_altchan, modes[in_arg++], sizeof(change->new_altchan));
2608             } else {
2609                 change->modes_clear |= MODE_ALTCHAN;
2610             }
2611             break;
2612         case 'U':
2613             if (flags & MCP_NO_APASS)
2614                 goto error;
2615             if (add)
2616             {
2617                 if ((in_arg >= argc)
2618                     || keyncpy(change->new_upass, modes[in_arg++], sizeof(change->new_upass)))
2619                     goto error;
2620                 change->modes_set |= MODE_UPASS;
2621             } else {
2622                 change->modes_clear |= MODE_UPASS;
2623                 if (!(flags & MCP_UPASS_FREE)) {
2624                     if (in_arg >= argc)
2625                         goto error;
2626                     in_arg++;
2627                 }
2628             }
2629             break;
2630         case 'A':
2631             if (flags & MCP_NO_APASS)
2632                 goto error;
2633             if (add) {
2634                 if ((in_arg >= argc)
2635                     || keyncpy(change->new_apass, modes[in_arg++], sizeof(change->new_apass)))
2636                     goto error;
2637                 change->modes_set |= MODE_APASS;
2638             } else {
2639                 change->modes_clear |= MODE_APASS;
2640                 if (!(flags & MCP_APASS_FREE)) {
2641                     if (in_arg >= argc)
2642                       goto error;
2643                     in_arg++;
2644                 }
2645             }
2646             break;
2647         case 'b':
2648             if (!(flags & MCP_ALLOW_OVB))
2649                 goto error;
2650             if (in_arg >= argc)
2651                 goto error;
2652             change->args[ch_arg].mode = MODE_BAN;
2653             if (!add)
2654                 change->args[ch_arg].mode |= MODE_REMOVE;
2655             change->args[ch_arg++].u.hostmask = modes[in_arg++];
2656             break;
2657         case 'o': case 'v':
2658         {
2659             struct userNode *victim;
2660             char *oplevel_str;
2661             int oplevel;
2662
2663             if (in_arg >= argc)
2664                 goto error;
2665             oplevel_str = strchr(modes[in_arg], ':');
2666             if (oplevel_str)
2667             {
2668                 /* XXYYY M #channel +o XXYYY:<oplevel> */
2669                 *oplevel_str++ = '\0';
2670                 oplevel = parse_oplevel(oplevel_str);
2671                 if (oplevel <= base_oplevel && !(flags & MCP_FROM_SERVER))
2672                     oplevel = base_oplevel + 1;
2673             }
2674             else if (channel->modes & MODE_UPASS)
2675                 oplevel = base_oplevel + 1;
2676             else
2677                 oplevel = MAXOPLEVEL;
2678
2679             /* Check that oplevel is within bounds. */
2680             if (oplevel > MAXOPLEVEL)
2681                 oplevel = MAXOPLEVEL;
2682
2683             if (!(flags & MCP_ALLOW_OVB))
2684                 goto error;
2685             if (in_arg >= argc)
2686                 goto error;
2687             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2688             if (!add)
2689                 change->args[ch_arg].mode |= MODE_REMOVE;
2690             if (flags & MCP_FROM_SERVER)
2691                 victim = GetUserN(modes[in_arg++]);
2692             else
2693                 victim = GetUserH(modes[in_arg++]);
2694             if (!victim)
2695                 continue;
2696             if ((change->args[ch_arg].u.member = GetUserMode(channel, victim)))
2697             {
2698                 /* Apply the oplevel change if the user is being (de-)opped */
2699                 if (modes[0][ii] == 'o')
2700                     change->args[ch_arg].u.member->oplevel = oplevel;
2701                 ch_arg++;
2702             }
2703             break;
2704         }
2705         default:
2706             if (!(flags & MCP_FROM_SERVER))
2707                 goto error;
2708             break;
2709         }
2710     }
2711     change->argc = ch_arg; /* in case any turned out to be ignored */
2712     if (change->modes_set & MODE_SECRET) {
2713         change->modes_set &= ~(MODE_PRIVATE);
2714         change->modes_clear |= MODE_PRIVATE;
2715     } else if (change->modes_set & MODE_PRIVATE) {
2716         change->modes_set &= ~(MODE_SECRET);
2717         change->modes_clear |= MODE_SECRET;
2718     }
2719     if (change->modes_clear & MODE_REGISTERED) {
2720         /* Horribly cheat by using the lock/unlock semantics. */
2721         LockChannel(channel);
2722         channelList_append(&dead_channels, channel);
2723     }
2724     return change;
2725   error:
2726     mod_chanmode_free(change);
2727     return NULL;
2728 }
2729
2730 struct chanmode_buffer {
2731     char modes[MAXLEN];
2732     char args[MAXLEN];
2733     struct chanNode *channel;
2734     struct userNode *actor;
2735     unsigned int modes_used;
2736     unsigned int args_used;
2737     size_t chname_len;
2738     unsigned int is_add : 1;
2739     unsigned int is_chanop : 1;
2740 };
2741
2742 static void
2743 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2744 {
2745     size_t arg_len = strlen(arg);
2746     if (buf->modes_used > (MAXMODEPARAMS) ||
2747         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2748         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2749         buf->modes[buf->modes_used + buf->args_used] = '\0';
2750         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2751         buf->modes[0] = buf->is_add ? '+' : '-';
2752         buf->modes_used = 1;
2753         buf->args_used = 0;
2754     }
2755     buf->modes[buf->modes_used++] = ch;
2756     buf->args[buf->args_used++] = ' ';
2757     memcpy(buf->args + buf->args_used, arg, arg_len);
2758     buf->args_used += arg_len;
2759 }
2760
2761 void
2762 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2763 {
2764     struct chanmode_buffer chbuf;
2765     unsigned int arg;
2766     struct modeNode *mn;
2767     char int_buff[32], mode = '\0';
2768
2769     assert(change->argc <= change->alloc_argc);
2770     memset(&chbuf, 0, sizeof(chbuf));
2771     chbuf.channel = channel;
2772     chbuf.actor = who;
2773     chbuf.chname_len = strlen(channel->name);
2774
2775     mn = GetUserMode(channel, who);
2776     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2777         chbuf.is_chanop = 1;
2778
2779     /* First remove modes */
2780     chbuf.is_add = 0;
2781     if (change->modes_clear) {
2782         if (mode != '-')
2783             chbuf.modes[chbuf.modes_used++] = mode = '-';
2784 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2785         DO_MODE_CHAR(PRIVATE, 'p');
2786         DO_MODE_CHAR(SECRET, 's');
2787         DO_MODE_CHAR(MODERATED, 'm');
2788         DO_MODE_CHAR(TOPICLIMIT, 't');
2789         DO_MODE_CHAR(INVITEONLY, 'i');
2790         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2791         DO_MODE_CHAR(LIMIT, 'l');
2792         DO_MODE_CHAR(ACCESS, 'a');
2793         DO_MODE_CHAR(ALTCHAN, 'F');
2794         DO_MODE_CHAR(DELAYJOINS, 'D');
2795         DO_MODE_CHAR(REGONLY, 'r');
2796         DO_MODE_CHAR(NOCOLORS, 'c');
2797         DO_MODE_CHAR(NOCTCPS, 'C');
2798         DO_MODE_CHAR(NONOTICES, 'N');
2799         DO_MODE_CHAR(NOAMSGS, 'M');
2800         DO_MODE_CHAR(REGISTERED, 'z');
2801 #undef DO_MODE_CHAR
2802         if (change->modes_clear & channel->modes & MODE_KEY)
2803             mod_chanmode_append(&chbuf, 'k', channel->key);
2804         if (change->modes_clear & channel->modes & MODE_UPASS)
2805             mod_chanmode_append(&chbuf, 'U', channel->upass);
2806         if (change->modes_clear & channel->modes & MODE_APASS)
2807             mod_chanmode_append(&chbuf, 'A', channel->apass);
2808     }
2809     for (arg = 0; arg < change->argc; ++arg) {
2810         if (!(change->args[arg].mode & MODE_REMOVE))
2811             continue;
2812         if (mode != '-')
2813             chbuf.modes[chbuf.modes_used++] = mode = '-';
2814         switch (change->args[arg].mode & ~MODE_REMOVE) {
2815         case MODE_BAN:
2816             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2817             break;
2818         default:
2819             if (change->args[arg].mode & MODE_CHANOP)
2820                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2821             if (change->args[arg].mode & MODE_VOICE)
2822                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2823             break;
2824         }
2825     }
2826
2827     /* Then set them */
2828     chbuf.is_add = 1;
2829     if (change->modes_set) {
2830         if (mode != '+')
2831             chbuf.modes[chbuf.modes_used++] = mode = '+';
2832 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2833         DO_MODE_CHAR(PRIVATE, 'p');
2834         DO_MODE_CHAR(SECRET, 's');
2835         DO_MODE_CHAR(MODERATED, 'm');
2836         DO_MODE_CHAR(TOPICLIMIT, 't');
2837         DO_MODE_CHAR(INVITEONLY, 'i');
2838         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2839         DO_MODE_CHAR(DELAYJOINS, 'D');
2840         DO_MODE_CHAR(REGONLY, 'r');
2841         DO_MODE_CHAR(NOCOLORS, 'c');
2842         DO_MODE_CHAR(NOCTCPS, 'C');
2843         DO_MODE_CHAR(NONOTICES, 'N');
2844         DO_MODE_CHAR(NOAMSGS, 'M');
2845         DO_MODE_CHAR(REGISTERED, 'z');
2846 #undef DO_MODE_CHAR
2847         if(change->modes_set & MODE_KEY)
2848             mod_chanmode_append(&chbuf, 'k', change->new_key);
2849         if (change->modes_set & MODE_UPASS)
2850             mod_chanmode_append(&chbuf, 'U', change->new_upass);
2851         if (change->modes_set & MODE_APASS)
2852             mod_chanmode_append(&chbuf, 'A', change->new_apass);
2853         if(change->modes_set & MODE_LIMIT) {
2854             sprintf(int_buff, "%d", change->new_limit);
2855             mod_chanmode_append(&chbuf, 'l', int_buff);
2856         }
2857         if(change->modes_set & MODE_ACCESS) {
2858             sprintf(int_buff, "%d", change->new_access);
2859             mod_chanmode_append(&chbuf, 'a', int_buff);
2860         }
2861         if (change->modes_set & MODE_ALTCHAN)
2862             mod_chanmode_append(&chbuf, 'F', change->new_altchan);
2863     }
2864     for (arg = 0; arg < change->argc; ++arg) {
2865         if (change->args[arg].mode & MODE_REMOVE)
2866             continue;
2867         if (mode != '+')
2868             chbuf.modes[chbuf.modes_used++] = mode = '+';
2869         switch (change->args[arg].mode) {
2870         case MODE_BAN:
2871             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2872             break;
2873         default:
2874             if (change->args[arg].mode & MODE_CHANOP)
2875                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2876             if (change->args[arg].mode & MODE_VOICE)
2877                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2878             break;
2879         }
2880     }
2881
2882     /* Flush the buffer and apply changes locally */
2883     if (chbuf.modes_used > 0) {
2884         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2885         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2886         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2887     }
2888     mod_chanmode_apply(who, channel, change);
2889 }
2890
2891 char *
2892 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2893 {
2894     unsigned int used = 0;
2895     unsigned int args_used = 0;
2896     char args[MAXLEN];
2897
2898     assert(change->argc <= change->alloc_argc);
2899     if (change->modes_clear) {
2900         outbuff[used++] = '-';
2901 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2902         DO_MODE_CHAR(PRIVATE, 'p');
2903         DO_MODE_CHAR(SECRET, 's');
2904         DO_MODE_CHAR(MODERATED, 'm');
2905         DO_MODE_CHAR(TOPICLIMIT, 't');
2906         DO_MODE_CHAR(INVITEONLY, 'i');
2907         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2908         DO_MODE_CHAR(LIMIT, 'l');
2909         DO_MODE_CHAR(ACCESS, 'a');
2910         DO_MODE_CHAR(ALTCHAN, 'F');
2911         DO_MODE_CHAR(KEY, 'k');
2912         DO_MODE_CHAR(UPASS, 'U');
2913         DO_MODE_CHAR(APASS, 'A');
2914         DO_MODE_CHAR(DELAYJOINS, 'D');
2915         DO_MODE_CHAR(REGONLY, 'r');
2916         DO_MODE_CHAR(NOCOLORS, 'c');
2917         DO_MODE_CHAR(NOCTCPS, 'C');
2918         DO_MODE_CHAR(NONOTICES, 'N');
2919         DO_MODE_CHAR(NOAMSGS, 'M');
2920         DO_MODE_CHAR(REGISTERED, 'z');
2921 #undef DO_MODE_CHAR
2922     }
2923     if (change->modes_set) {
2924         outbuff[used++] = '+';
2925 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
2926         DO_MODE_CHAR(PRIVATE, 'p');
2927         DO_MODE_CHAR(SECRET, 's');
2928         DO_MODE_CHAR(MODERATED, 'm');
2929         DO_MODE_CHAR(TOPICLIMIT, 't');
2930         DO_MODE_CHAR(INVITEONLY, 'i');
2931         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2932         DO_MODE_CHAR(DELAYJOINS, 'D');
2933         DO_MODE_CHAR(REGONLY, 'r');
2934         DO_MODE_CHAR(NOCOLORS, 'c');
2935         DO_MODE_CHAR(NOCTCPS, 'C');
2936         DO_MODE_CHAR(NONOTICES, 'N');
2937                 DO_MODE_CHAR(NOAMSGS, 'M');
2938         DO_MODE_CHAR(REGISTERED, 'z');
2939         DO_MODE_CHAR(LIMIT, 'l'), args_used += sprintf(args + args_used, " %d", change->new_limit);
2940         DO_MODE_CHAR(KEY, 'k'), args_used += sprintf(args + args_used, " %s", change->new_key);
2941         DO_MODE_CHAR(KEY, 'a'), args_used += sprintf(args + args_used, " %d", change->new_access);
2942         DO_MODE_CHAR(KEY, 'F'), args_used += sprintf(args + args_used, " %s", change->new_altchan);
2943         DO_MODE_CHAR(UPASS, 'U'), args_used += sprintf(args + args_used, " %s", change->new_upass);
2944         DO_MODE_CHAR(APASS, 'A'), args_used += sprintf(args + args_used, " %s", change->new_apass);
2945 #undef DO_MODE_CHAR
2946     }
2947     args[args_used] = '\0';
2948     strcpy(outbuff + used, args);
2949     return outbuff;
2950 }
2951
2952 static int
2953 clear_chanmode(struct chanNode *channel, const char *modes)
2954 {
2955     unsigned int cleared;
2956
2957     for (cleared = 0; *modes; modes++) {
2958         switch (*modes) {
2959         case 'o': cleared |= MODE_CHANOP; break;
2960         case 'v': cleared |= MODE_VOICE; break;
2961         case 'p': cleared |= MODE_PRIVATE; break;
2962         case 's': cleared |= MODE_SECRET; break;
2963         case 'm': cleared |= MODE_MODERATED; break;
2964         case 't': cleared |= MODE_TOPICLIMIT; break;
2965         case 'i': cleared |= MODE_INVITEONLY; break;
2966         case 'n': cleared |= MODE_NOPRIVMSGS; break;
2967         case 'F':
2968             cleared |= MODE_ALTCHAN;
2969             channel->altchan[0] = '\0';
2970             break;
2971         case 'k':
2972             cleared |= MODE_KEY;
2973             channel->key[0] = '\0';
2974             break;
2975         case 'A':
2976             cleared |= MODE_APASS;
2977             channel->apass[0] = '\0';
2978             break;
2979         case 'U':
2980             cleared |= MODE_UPASS;
2981             channel->upass[0] = '\0';
2982             break;
2983         case 'l':
2984             cleared |= MODE_LIMIT;
2985             channel->limit = 0;
2986             break;
2987         case 'a':
2988             cleared |= MODE_ACCESS;
2989             channel->access = 0;
2990             break;
2991         case 'b': cleared |= MODE_BAN; break;
2992         case 'D': cleared |= MODE_DELAYJOINS; break;
2993         case 'r': cleared |= MODE_REGONLY; break;
2994         case 'c': cleared |= MODE_NOCOLORS; break;
2995         case 'C': cleared |= MODE_NOCTCPS; break;
2996         case 'M': cleared |= MODE_NOAMSGS; break;
2997         case 'N': cleared |= MODE_NONOTICES; break;
2998         case 'z': cleared |= MODE_REGISTERED; break;
2999         }
3000     }
3001
3002     if (!cleared)
3003         return 1;
3004
3005     /* Remove simple modes. */
3006     channel->modes &= ~cleared;
3007
3008     /* If removing bans, kill 'em all. */
3009     if ((cleared & MODE_BAN) && channel->banlist.used) {
3010         unsigned int i;
3011         for (i=0; i<channel->banlist.used; i++)
3012             free(channel->banlist.list[i]);
3013         channel->banlist.used = 0;
3014     }
3015
3016     /* Remove member modes. */
3017     if ((cleared & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
3018         int mask = ~(cleared & (MODE_CHANOP | MODE_VOICE));
3019         unsigned int i;
3020
3021         for (i = 0; i < channel->members.used; i++)
3022             channel->members.list[i]->modes &= mask;
3023     }
3024
3025     return 1;
3026 }
3027
3028 void
3029 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
3030 {
3031     unsigned int numeric = user->num_local;
3032     if (numeric >= num_privmsg_funcs) {
3033         int newnum = numeric + 8, ii;
3034         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
3035         for (ii = num_privmsg_funcs; ii < newnum; ++ii)
3036             privmsg_funcs[ii] = NULL;
3037         num_privmsg_funcs = newnum;
3038     }
3039     if (privmsg_funcs[numeric])
3040         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
3041     privmsg_funcs[numeric] = handler;
3042 }
3043
3044 void
3045 unreg_privmsg_func(struct userNode *user)
3046 {
3047     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
3048         return; /* this really only works with users */
3049
3050     privmsg_funcs[user->num_local] = NULL;
3051 }
3052
3053
3054 void
3055 reg_notice_func(struct userNode *user, privmsg_func_t handler)
3056 {
3057     unsigned int numeric = user->num_local;
3058     if (numeric >= num_notice_funcs) {
3059         int newnum = numeric + 8, ii;
3060         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
3061         for (ii = num_notice_funcs; ii < newnum; ++ii)
3062             notice_funcs[ii] = NULL;
3063         num_notice_funcs = newnum;
3064     }
3065     if (notice_funcs[numeric])
3066         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
3067     notice_funcs[numeric] = handler;
3068 }
3069
3070 void
3071 unreg_notice_func(struct userNode *user)
3072 {
3073     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
3074         return; /* this really only works with users */
3075
3076     notice_funcs[user->num_local] = NULL;
3077 }
3078
3079 static void
3080 send_burst(void)
3081 {
3082     unsigned int i, hop, max_hop=1;
3083     dict_iterator_t it;
3084
3085     /* burst (juped) servers, closest first (except self, which is sent already) */
3086     for (i=0; i<ArrayLength(servers_num); i++)
3087         if (servers_num[i] && servers_num[i]->hops > max_hop)
3088             max_hop = servers_num[i]->hops;
3089     for (hop=1; hop<=max_hop; hop++) {
3090         for (i=0;i<ArrayLength(servers_num);i++) {
3091             if (servers_num[i]
3092                 && (servers_num[i]->hops == hop)
3093                 && (servers_num[i] != self->uplink))
3094                 irc_server(servers_num[i]);
3095         }
3096     }
3097
3098     /* burst local nicks */
3099     for (i=0; i<=self->num_mask; i++)
3100         if (self->users[i])
3101             irc_user(self->users[i]);
3102
3103     /* build dict of unbursted channel names (just copy existing channels) */
3104     unbursted_channels = dict_new();
3105     for (it = dict_first(channels); it; it = iter_next(it))
3106         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
3107 }