fix
[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         } else if(strcmp("UC", argv[2]) == 0) {
1780             char tmp[MAXLEN];
1781             sprintf(tmp,"%s UC %s %s",argv[3],argv[3],argv[4]);
1782             irc_relay(tmp);
1783         } else if(strcmp("JA", argv[2]) == 0) {
1784             struct userData *uData;
1785             struct chanNode *cn;
1786             struct userNode *user;
1787             char tmp[MAXLEN];
1788             cn = GetChannel(argv[4]);
1789             if (!cn) return 0;
1790             if (!(user = GetUserN(argv[3]))) return 0;
1791             if(!cn->channel_info) {
1792                 //channel not registered
1793                 sprintf(tmp,"%s JAA %s %s\n",argv[3],cn->name,argv[6]);
1794             } else if((uData = GetChannelUser(cn->channel_info, user->handle_info))) {
1795                 if(uData->access >= atoi(argv[5])) {
1796                     //we can join
1797                     sprintf(tmp,"%s JAA %s %s\n",argv[3],cn->name,argv[6]);
1798                 } else {
1799                     //access too low
1800                     sprintf(tmp,"%s JAR %s %i %i\n",argv[3],cn->name,uData->access,uData->access);
1801                 }
1802             } else {
1803                 //0 access
1804                 sprintf(tmp,"%s JAR %s %s %s\n",argv[3],cn->name,"0","0");
1805             }
1806             irc_relay(tmp);
1807         }
1808     }
1809     return 1;
1810 }
1811
1812 void
1813 free_user(struct userNode *user)
1814 {
1815     free(user->nick);
1816     free(user);
1817 }
1818
1819 static void
1820 parse_cleanup(void)
1821 {
1822     unsigned int nn;
1823     free(of_list);
1824     free(privmsg_funcs);
1825     num_privmsg_funcs = 0;
1826     free(notice_funcs);
1827     num_notice_funcs = 0;
1828     free(mcf_list);
1829     dict_delete(irc_func_dict);
1830     for (nn=0; nn<dead_users.used; nn++)
1831         free_user(dead_users.list[nn]);
1832     userList_clean(&dead_users);
1833 }
1834
1835 static void
1836 p10_conf_reload(void) {
1837     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1838     his_servername = conf_get_data("server/his_servername", RECDB_QSTRING);
1839     his_servercomment = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1840 }
1841
1842 static void
1843 remove_unbursted_channel(struct chanNode *cNode) {
1844     if (unbursted_channels)
1845         dict_remove(unbursted_channels, cNode->name);
1846 }
1847
1848 void
1849 init_parse(void)
1850 {
1851     const char *str, *desc;
1852     int numnick, usermask, max_users;
1853     char numer[COMBO_NUMERIC_LEN+1];
1854
1855     /* read config items */
1856     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1857     ping_freq = str ? ParseInterval(str) : 120;
1858     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1859     ping_timeout = str ? ParseInterval(str) : 30;
1860     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1861     force_n2k = str ? enabled_string(str) : 1;
1862     str = conf_get_data("server/numeric", RECDB_QSTRING);
1863     if (!str) {
1864         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1865         exit(1);
1866     }
1867     numnick = atoi(str);
1868     str = conf_get_data("server/max_users", RECDB_QSTRING);
1869     max_users = str ? atoi(str) : 4096;
1870     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1871     usermask--;
1872     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1873         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1874     else
1875         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1876
1877     str = conf_get_data("server/hostname", RECDB_QSTRING);
1878     desc = conf_get_data("server/description", RECDB_QSTRING);
1879     if (!str || !desc) {
1880         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1881         exit(1);
1882     }
1883     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1884     conf_register_reload(p10_conf_reload);
1885
1886     irc_func_dict = dict_new();
1887     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1888     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1889     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1890     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1891     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1892     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1893     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1894     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1895     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1896     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1897     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1898     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1899     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1900     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1901     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1902     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1903     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1904     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1905     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1906     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1907     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1908     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1909     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1910     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1911     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1912     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1913     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1914     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1915     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1916     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1917     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1918     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1919     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1920     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1921     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1922     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1923     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1924     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1925     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1926     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1927     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1928     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1929     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1930     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1931     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1932     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1933     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1934     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1935     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1936     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1937     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1938     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1939     dict_insert(irc_func_dict, CMD_RELAY, cmd_relay);
1940     dict_insert(irc_func_dict, TOK_RELAY, cmd_relay);
1941     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1942     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1943     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1944     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1945     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1946     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1947     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1948     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1949     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1950     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1951     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1952     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1953     dict_insert(irc_func_dict, CMD_TIME, cmd_time);
1954     dict_insert(irc_func_dict, TOK_TIME, cmd_time);
1955
1956     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1957      * Apparently to obliterate channels from any servers that think they
1958      * exist?
1959      */
1960     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1961     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1962     /* Ignore invites */
1963     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1964     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1965     /* DESYNCH is just informational, so ignore it */
1966     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1967     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1968     /* Ignore channel operator notices. */
1969     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1970     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1971     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1972     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1973     /* Ignore opers being silly. */
1974     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1975     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1976     /* We have reliable clock!  Always!  Wraaa! */
1977     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1978     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1979     /* handle topics */
1980     dict_insert(irc_func_dict, "331", cmd_num_topic);
1981     dict_insert(irc_func_dict, "332", cmd_num_topic);
1982     dict_insert(irc_func_dict, "333", cmd_num_topic);
1983     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1984     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1985     /* ban list resetting */
1986     /* "stats g" responses */
1987     dict_insert(irc_func_dict, "247", cmd_num_gline);
1988     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
1989     /* other numeric responses we might get */
1990     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
1991     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
1992     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
1993     dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */
1994     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
1995     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
1996     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
1997     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
1998     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
1999
2000     num_privmsg_funcs = 16;
2001     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
2002     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
2003
2004     num_notice_funcs = 16;
2005     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
2006     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
2007
2008     userList_init(&dead_users);
2009     channelList_init(&dead_channels);
2010     reg_del_channel_func(remove_unbursted_channel);
2011     reg_exit_func(parse_cleanup);
2012 }
2013
2014 int
2015 parse_line(char *line, int recursive)
2016 {
2017     char *argv[MAXNUMPARAMS], *origin;
2018     int argc, cmd, res=0;
2019     cmd_func_t *func;
2020
2021     argc = split_line(line, true, MAXNUMPARAMS, argv);
2022     cmd = self->uplink || !argv[0][1] || !argv[0][2];
2023     if (argc > cmd) {
2024         if (cmd) {
2025             if (argv[0][0] == ':') {
2026                 origin = argv[0]+1;
2027             } else if (!argv[0][1] || !argv[0][2]) {
2028                 struct server *sNode = GetServerN(argv[0]);
2029                 origin = sNode ? sNode->name : 0;
2030             } else {
2031                 struct userNode *uNode = GetUserN(argv[0]);
2032                 origin = uNode ? uNode->nick : 0;
2033             }
2034         } else
2035             origin = 0;
2036         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
2037             res = func(origin, argc-cmd, argv+cmd);
2038     }
2039     if (!res) {
2040         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
2041     } else if (!recursive) {
2042         unsigned int i;
2043         for (i=0; i<dead_users.used; i++)
2044             free_user(dead_users.list[i]);
2045         dead_users.used = 0;
2046         for (i=0; i<dead_channels.used; i++)
2047             UnlockChannel(dead_channels.list[i]);
2048         dead_channels.used = 0;
2049     }
2050     return res;
2051 }
2052
2053 static void
2054 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
2055 {
2056     char *j, old;
2057
2058     do {
2059         j = target_list;
2060         while (*j != 0 && *j != ',')
2061             j++;
2062         old = *j;
2063         *j = 0;
2064
2065         if (IsChannelName(target_list)
2066             || (target_list[0] == '0' && target_list[1] == '\0')) {
2067             struct chanNode *chan = GetChannel(target_list);
2068
2069             if (chan) {
2070                 if (cf)
2071                     cf(chan, data);
2072             } else {
2073                 if (nc)
2074                     nc(target_list, data);
2075             }
2076         } else {
2077             struct userNode *user;
2078             struct privmsg_desc *pd = data;
2079
2080             pd->is_qualified = 0;
2081             if (*target_list == '@') {
2082                 user = NULL;
2083             } else if (strchr(target_list, '@')) {
2084                 struct server *server;
2085
2086                 pd->is_qualified = 1;
2087                 user = GetUserH(strtok(target_list, "@"));
2088                 server = GetServerH(strtok(NULL, "@"));
2089
2090                 if (user && (user->uplink != server)) {
2091                     /* Don't attempt to index into any arrays
2092                        using a user's numeric on another server. */
2093                     user = NULL;
2094                 }
2095             } else {
2096                 user = GetUserN(target_list);
2097             }
2098
2099             if (user) {
2100                 if (uf)
2101                     uf(user, data);
2102             } else {
2103                 if (nu)
2104                     nu(target_list, data);
2105             }
2106         }
2107         target_list = j+1;
2108     } while (old == ',');
2109 }
2110
2111 static int
2112 get_local_numeric(void)
2113 {
2114     static unsigned int next_numeric = 0;
2115     if (self->clients > self->num_mask)
2116         return -1;
2117     while (self->users[next_numeric])
2118         if (++next_numeric > self->num_mask)
2119             next_numeric = 0;
2120     return next_numeric;
2121 }
2122
2123 static void
2124 make_numeric(struct server *svr, int local_num, char *outbuf)
2125 {
2126     int slen, llen;
2127
2128     if (force_n2k || svr->numeric[1]) {
2129         slen = 2;
2130         llen = 3;
2131     } else {
2132         slen = 1;
2133         llen = (local_num < 64*64) ? 2 : 3;
2134     }
2135     strncpy(outbuf, svr->numeric, slen);
2136     inttobase64(outbuf+slen, local_num, llen);
2137     outbuf[slen+llen] = 0;
2138 }
2139
2140 struct server *
2141 AddServer(struct server *uplink, const char *name, int hops, unsigned long boot, unsigned long link_time, const char *numeric, const char *description)
2142 {
2143     struct server* sNode;
2144     int slen, mlen;
2145
2146     if ((sNode = GetServerN(numeric))) {
2147         /* This means we're trying to re-add an existant server.
2148          * To be safe, we should forget the previous incarnation.
2149          * (And all its linked servers.)
2150          *
2151          * It usually only happens in replays when the original
2152          * had a ping timeout and the replay didn't (because
2153          * replaying a ping timeout invariably gets things wrong).
2154          */
2155         DelServer(sNode, 0, NULL);
2156     }
2157
2158     switch (strlen(numeric)) {
2159     case 5: slen = 2; mlen = 3; break;
2160     case 4: slen = 1; mlen = 3; break;
2161     case 3: slen = 1; mlen = 2; break;
2162     default:
2163         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
2164         return NULL;
2165     }
2166
2167     sNode = calloc(1, sizeof(*sNode));
2168     sNode->uplink = uplink;
2169     safestrncpy(sNode->name, name, sizeof(sNode->name));
2170     sNode->num_mask = base64toint(numeric+slen, mlen);
2171     sNode->hops = hops;
2172     sNode->boot = boot;
2173     sNode->link_time = link_time;
2174     strncpy(sNode->numeric, numeric, slen);
2175     safestrncpy(sNode->description, description, sizeof(sNode->description));
2176     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
2177     serverList_init(&sNode->children);
2178     if (sNode->uplink) {
2179         /* uplink may be NULL if we're just building ourself */
2180         serverList_append(&sNode->uplink->children, sNode);
2181     }
2182     servers_num[base64toint(numeric, slen)] = sNode;
2183     dict_insert(servers, sNode->name, sNode);
2184     return sNode;
2185 }
2186
2187 void DelServer(struct server* serv, int announce, const char *message)
2188 {
2189     unsigned int i;
2190
2191     /* If we receive an ERROR command before the SERVER
2192      * command a NULL server can be passed */
2193     if (!serv)
2194         return;
2195
2196     /* Hrm, what's the right way to SQUIT some other server?
2197      * (This code is only to handle killing juped servers.) */
2198     if (announce && (serv->uplink == self) && (serv != self->uplink))
2199         irc_squit(serv, message, NULL);
2200
2201     /* must recursively remove servers linked to this one first */
2202     for (i=serv->children.used;i>0;)
2203         if (serv->children.list[--i] != self)
2204             DelServer(serv->children.list[i], false, NULL);
2205
2206     /* clean up server's user hash tables */
2207     for (i=0;i<=serv->num_mask;i++)
2208         if (serv->users[i])
2209             DelUser(serv->users[i], NULL, false, "server delinked");
2210
2211     /* delete server */
2212     if (serv->uplink)
2213         serverList_remove(&serv->uplink->children, serv);
2214     if (serv == self->uplink)
2215         self->uplink = NULL;
2216     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
2217     dict_remove(servers, serv->name);
2218     serverList_clean(&serv->children);
2219     free(serv->users);
2220     free(serv);
2221 }
2222
2223 struct userNode *
2224 AddLocalUser(const char *nick, const char *ident, const char *hostname, const char *desc, const char *modes)
2225 {
2226     char numeric[COMBO_NUMERIC_LEN+1];
2227     int local_num = get_local_numeric();
2228     unsigned long timestamp = now;
2229     struct userNode *old_user = GetUserH(nick);
2230
2231     if (!modes)
2232         modes = "+oik";
2233     if (old_user) {
2234         if (IsLocal(old_user))
2235             return old_user;
2236         timestamp = old_user->timestamp - 1;
2237     }
2238     if (local_num == -1) {
2239         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
2240         return 0;
2241     }
2242     if (!hostname)
2243         hostname = self->name;
2244     make_numeric(self, local_num, numeric);
2245     return AddUser(self, nick, ident, hostname, modes, numeric, desc, now, "AAAAAA");
2246 }
2247
2248 struct userNode *
2249 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
2250 {
2251     char numeric[COMBO_NUMERIC_LEN+1];
2252     int local_num = get_local_numeric();
2253     unsigned long timestamp = now;
2254     struct userNode *old_user = GetUserH(nick);
2255
2256     if (old_user) {
2257         if (IsLocal(old_user))
2258             return old_user;
2259         timestamp = old_user->timestamp - 1;
2260     }
2261     if (local_num == -1) {
2262         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
2263         return 0;
2264     }
2265     make_numeric(self, local_num, numeric);
2266     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
2267 }
2268
2269 int
2270 is_valid_nick(const char *nick) {
2271     unsigned int ii;
2272     /* IRC has some of The Most Fucked-Up ideas about character sets
2273      * in the world.. */
2274     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
2275         return 0;
2276     for (ii = 0; nick[ii]; ++ii)
2277         if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii]))
2278             return 0;
2279     if (strlen(nick) > nicklen)
2280         return 0;
2281     return 1;
2282 }
2283
2284 static struct userNode*
2285 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)
2286 {
2287     struct userNode *oldUser, *uNode;
2288     unsigned int n, ignore_user, dummy;
2289
2290     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
2291         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", (void*)uplink, nick, numeric);
2292         return NULL;
2293     }
2294
2295     if (!uplink) {
2296         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", (void*)uplink, nick, numeric);
2297         return NULL;
2298     }
2299
2300     if (uplink != GetServerN(numeric)) {
2301         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", (void*)uplink, nick, numeric, uplink->name);
2302         return NULL;
2303     }
2304
2305     dummy = modes && modes[0] == '*';
2306     if (dummy) {
2307         ++modes;
2308     } else if (!is_valid_nick(nick)) {
2309         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", (void*)uplink, nick);
2310         return NULL;
2311     }
2312
2313     ignore_user = 0;
2314     if ((oldUser = GetUserH(nick))) {
2315         if (IsLocal(oldUser)
2316             && (IsService(oldUser) || IsPersistent(oldUser))) {
2317             /* The service should collide the new user off - but not
2318              * if the new user is coming in during a burst.  (During a
2319              * burst, the bursting server will kill either our user --
2320              * triggering a ReintroduceUser() -- or its own.)
2321              */
2322             oldUser->timestamp = timestamp - 1;
2323             ignore_user = 1;
2324             if (!uplink->burst)
2325                 irc_user(oldUser);
2326         } else if (oldUser->timestamp > timestamp) {
2327             /* "Old" user is really newer; remove them. */
2328             DelUser(oldUser, 0, 1, "Overruled by older nick");
2329         } else {
2330             /* User being added is too new; do not add them to
2331              * clients, but do add them to the server's list, since it
2332              * will send a KILL and QUIT soon. */
2333             ignore_user = 1;
2334         }
2335     }
2336
2337     /* create new usernode and set all values */
2338     uNode = calloc(1, sizeof(*uNode));
2339     uNode->nick = strdup(nick);
2340     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
2341     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
2342     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
2343     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
2344     irc_p10_pton(&uNode->ip, realip);
2345     uNode->timestamp = timestamp;
2346     uNode->idle_since = timestamp;
2347     modeList_init(&uNode->channels);
2348     uNode->uplink = uplink;
2349     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
2350         uNode->uplink->max_clients = uNode->uplink->clients;
2351     }
2352     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
2353     uNode->uplink->users[uNode->num_local] = uNode;
2354     mod_usermode(uNode, modes);
2355     if (dummy)
2356         uNode->modes |= FLAGS_DUMMY;
2357     if (ignore_user)
2358         return uNode;
2359
2360     dict_insert(clients, uNode->nick, uNode);
2361     if (dict_size(clients) > max_clients) {
2362         max_clients = dict_size(clients);
2363         max_clients_time = now;
2364     }
2365     if (IsLocal(uNode))
2366         irc_user(uNode);
2367     for (n=0; (n<nuf_used) && !uNode->dead; n++)
2368         nuf_list[n](uNode);
2369     return uNode;
2370 }
2371
2372 /* removes user from it's server's hash table and nick hash table */
2373 void
2374 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
2375 {
2376     unsigned int n;
2377
2378     verify(user);
2379
2380     /* mark them as dead, in case anybody cares */
2381     user->dead = 1;
2382
2383     /* remove user from all channels */
2384     while (user->channels.used > 0)
2385         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, NULL, false);
2386
2387     /* Call these in reverse order so ChanServ can update presence
2388        information before NickServ nukes the handle_info. */
2389     for (n = duf_used; n > 0; )
2390         duf_list[--n](user, killer, why);
2391
2392     user->uplink->clients--;
2393     user->uplink->users[user->num_local] = NULL;
2394     if (IsOper(user))
2395         userList_remove(&curr_opers, user);
2396     /* remove from global dictionary, but not if after a collide */
2397     if (user == dict_find(clients, user->nick, NULL))
2398         dict_remove(clients, user->nick);
2399
2400     if (IsInvisible(user))
2401         invis_clients--;
2402
2403     if (announce) {
2404         if (IsLocal(user))
2405             irc_quit(user, why);
2406         else
2407             irc_kill(killer, user, why);
2408     }
2409
2410     if (IsLocal(user)) {
2411         unsigned int num = user->num_local;
2412         if (num < num_privmsg_funcs)
2413             privmsg_funcs[num] = NULL;
2414         if (num < num_notice_funcs)
2415             notice_funcs[num] = NULL;
2416     }
2417
2418     modeList_clean(&user->channels);
2419     /* We don't free them, in case we try to privmsg them or something
2420      * (like when a stupid oper kills themself).  We just put them onto
2421      * a list of clients that get freed after processing each line.
2422      */
2423     if (dead_users.size)
2424         userList_append(&dead_users, user);
2425     else
2426         free_user(user);
2427 }
2428
2429 static void call_oper_funcs(struct userNode *user);
2430
2431 void mod_usermode(struct userNode *user, const char *mode_change) {
2432     int add = 1;
2433     const char *word = mode_change;
2434
2435     if (!user || !mode_change)
2436         return;
2437     while (*word != ' ' && *word) word++;
2438     while (*word == ' ') word++;
2439     while (1) {
2440 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
2441         switch (*mode_change++) {
2442         case 0: case ' ': return;
2443         case '+': add = 1; break;
2444         case '-': add = 0; break;
2445         case 'o':
2446             do_user_mode(FLAGS_OPER);
2447             if (!add) {
2448                 operdel(user);
2449                 userList_remove(&curr_opers, user);
2450             } else if (!userList_contains(&curr_opers, user)) {
2451                 operadd(user);
2452                 userList_append(&curr_opers, user);
2453                 call_oper_funcs(user);
2454             }
2455             break;
2456         case 'i': do_user_mode(FLAGS_INVISIBLE);
2457             if (add)
2458                 invis_clients++;
2459             else
2460                 invis_clients--;
2461             break;
2462         case 'w': do_user_mode(FLAGS_WALLOP); break;
2463         case 'd': do_user_mode(FLAGS_DEAF); break;
2464         case 'k': do_user_mode(FLAGS_SERVICE); break;
2465         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2466         case 'n': do_user_mode(FLAGS_NOCHAN); break;
2467         case 'I': do_user_mode(FLAGS_NOIDLE); break;
2468         case 'S': do_user_mode(FLAGS_NETSERV); break;
2469         case 'D': do_user_mode(FLAGS_SECURITYSERV); break;
2470         case 'X': do_user_mode(FLAGS_XTRAOP); break;
2471         case 's': do_user_mode(FLAGS_SERVERNOTICE); break;
2472         case 'H': do_user_mode(FLAGS_HIDDENOPER); break;
2473         case 't': do_user_mode(FLAGS_SEENOIDLE); break;
2474         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2475         case 'r':
2476             if (*word) {
2477                 char tag[MAXLEN];
2478                 char *sep;
2479                 unsigned int ii;
2480                 unsigned long ts = 0;
2481                 unsigned long id = 0;
2482
2483                 for (ii=0; (*word != ' ') && (*word != '\0') && (*word != ':'); )
2484                     tag[ii++] = *word++;
2485                 if (*word == ':') {
2486                     ts = strtoul(word + 1, &sep, 10);
2487                     if (*sep == ':') {
2488                         id = strtoul(sep + 1, &sep, 10);
2489                     } else if (*sep != ' ' && *sep != '\0') {
2490                         ts = 0;
2491                     }
2492                     word = sep;
2493                 }
2494                 tag[ii] = '\0';
2495                 while (*word == ' ')
2496                     word++;
2497                 call_account_func(user, tag, ts, id);
2498             }
2499             break;
2500         case 'h':
2501             if (*word) {
2502                 char mask[MAXLEN];
2503                 char *host, *ident;
2504                 unsigned int ii;
2505
2506                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2507                     mask[ii++] = *word++;
2508                 mask[ii] = 0;
2509                 while (*word == ' ')
2510                     word++;
2511
2512                 if ((host = strrchr(mask, '@'))) {
2513                     ident = mask;
2514                     *host++ = '\0';
2515                 } else {
2516                     ident = NULL;
2517                     host = mask;
2518                 }
2519                 user->modes |= FLAGS_HIDDEN_HOST;
2520                 assign_fakehost(user, host, ident, 0, 0);
2521             }
2522             break;
2523         }
2524 #undef do_user_mode
2525     }
2526 }
2527
2528 static int
2529 keyncpy(char output[], char input[], size_t output_size)
2530 {
2531     size_t ii;
2532
2533     if (input[0] == ':')
2534     {
2535         output[0] = '\0';
2536         return 1;
2537     }
2538
2539     for (ii = 0; (ii + 1 < output_size) && (input[ii] != '\0'); ++ii)
2540     {
2541         output[ii] = input[ii];
2542     }
2543
2544     output[ii] = '\0';
2545     return 0;
2546 }
2547
2548 struct mod_chanmode *
2549 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags, short base_oplevel)
2550 {
2551     struct mod_chanmode *change;
2552     unsigned int ii, in_arg, ch_arg, add;
2553
2554     if (argc == 0)
2555         return NULL;
2556     if (!(change = mod_chanmode_alloc(argc - 1)))
2557         return NULL;
2558
2559     for (ii = ch_arg = 0, in_arg = add = 1;
2560          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2561          ++ii) {
2562         switch (modes[0][ii]) {
2563         case '+':
2564             add = 1;
2565             break;
2566         case '-':
2567             add = 0;
2568             break;
2569 #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)
2570         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2571         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2572         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2573         case 'M': do_chan_mode(MODE_NOAMSGS); break;
2574         case 'N': do_chan_mode(MODE_NONOTICES); break;
2575         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2576         case 'm': do_chan_mode(MODE_MODERATED); break;
2577         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2578         case 'p': do_chan_mode(MODE_PRIVATE); break;
2579         case 'r': do_chan_mode(MODE_REGONLY); break;
2580         case 's': do_chan_mode(MODE_SECRET); break;
2581         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2582         case 'z':
2583           if (!(flags & MCP_REGISTERED) && (!(flags & MCP_IGN_REGISTERED) || add)) {
2584             do_chan_mode(MODE_REGISTERED);
2585           } else if (flags & MCP_IGN_REGISTERED) {
2586             /* ignore the modechange but continue parsing */
2587           } else {
2588             mod_chanmode_free(change);
2589             return NULL;
2590           }
2591           break;
2592 #undef do_chan_mode
2593         case 'l':
2594             if (add) {
2595                 if (in_arg >= argc)
2596                     goto error;
2597                 change->modes_set |= MODE_LIMIT;
2598                 change->new_limit = atoi(modes[in_arg++]);
2599             } else {
2600                 change->modes_set &= ~MODE_LIMIT;
2601                 change->modes_clear |= MODE_LIMIT;
2602             }
2603             break;
2604         case 'a':
2605             if (add) {
2606                 if (in_arg >= argc)
2607                     goto error;
2608                 change->modes_set |= MODE_ACCESS;
2609                 change->new_access = atoi(modes[in_arg++]);
2610             } else {
2611                 change->modes_set &= ~MODE_ACCESS;
2612                 change->modes_clear |= MODE_ACCESS;
2613             }
2614             break;
2615         case 'k':
2616             if (add) {
2617                 if ((in_arg >= argc)
2618                     || keyncpy(change->new_key, modes[in_arg++], sizeof(change->new_key)))
2619                     goto error;
2620                 change->modes_set |= MODE_KEY;
2621             } else {
2622                 change->modes_clear |= MODE_KEY;
2623                 if (!(flags & MCP_KEY_FREE)) {
2624                     if (in_arg >= argc)
2625                         goto error;
2626                     in_arg++;
2627                 }
2628             }
2629             break;
2630         case 'f':
2631                     if (add) {
2632                             if (in_arg >= argc)
2633                     goto error;
2634                 char *mode = modes[in_arg++];
2635                 if(mode[0] == '!' && !(flags & MCP_OPERMODE)) { //noflood flag also for overriders
2636                     //only allow opers
2637                     goto error;
2638                 }
2639                 if(mode[0] == '+' || mode[0] == '@') {
2640                     mode++;
2641                 }
2642                 char *p;
2643                 int count = 0, time = 0;
2644                 for(p = mode; p[0]; p++) {
2645                     if(p[0] == ':') {
2646                         char tmpchar = p[0];
2647                         p[0] = '\0';
2648                         count = strtoul(mode,0,10);
2649                         p[0] = tmpchar;
2650                                                 p++;
2651                                                 time = strtoul(p,0,10);
2652                                                 break;
2653                                 }
2654                 }
2655                 if(count <= 0 || time <= 0 || count > 100 || time > 600) 
2656                                     goto error;
2657                                 change->modes_set |= MODE_NOFLOOD;
2658                                 safestrncpy(change->new_noflood, modes[in_arg - 1], sizeof(change->new_noflood));
2659                         } else {
2660                             change->modes_clear |= MODE_NOFLOOD;
2661                         }
2662         case 'F':
2663             if (add) {
2664                 if (in_arg >= argc)
2665                     goto error;
2666                 change->modes_set |= MODE_ALTCHAN;
2667                 safestrncpy(change->new_altchan, modes[in_arg++], sizeof(change->new_altchan));
2668             } else {
2669                 change->modes_clear |= MODE_ALTCHAN;
2670             }
2671             break;
2672         case 'U':
2673             if (flags & MCP_NO_APASS)
2674                 goto error;
2675             if (add)
2676             {
2677                 if ((in_arg >= argc)
2678                     || keyncpy(change->new_upass, modes[in_arg++], sizeof(change->new_upass)))
2679                     goto error;
2680                 change->modes_set |= MODE_UPASS;
2681             } else {
2682                 change->modes_clear |= MODE_UPASS;
2683                 if (!(flags & MCP_UPASS_FREE)) {
2684                     if (in_arg >= argc)
2685                         goto error;
2686                     in_arg++;
2687                 }
2688             }
2689             break;
2690         case 'A':
2691             if (flags & MCP_NO_APASS)
2692                 goto error;
2693             if (add) {
2694                 if ((in_arg >= argc)
2695                     || keyncpy(change->new_apass, modes[in_arg++], sizeof(change->new_apass)))
2696                     goto error;
2697                 change->modes_set |= MODE_APASS;
2698             } else {
2699                 change->modes_clear |= MODE_APASS;
2700                 if (!(flags & MCP_APASS_FREE)) {
2701                     if (in_arg >= argc)
2702                       goto error;
2703                     in_arg++;
2704                 }
2705             }
2706             break;
2707         case 'b':
2708             if (!(flags & MCP_ALLOW_OVB))
2709                 goto error;
2710             if (in_arg >= argc)
2711                 goto error;
2712             change->args[ch_arg].mode = MODE_BAN;
2713             if (!add)
2714                 change->args[ch_arg].mode |= MODE_REMOVE;
2715             change->args[ch_arg++].u.hostmask = modes[in_arg++];
2716             break;
2717         case 'o': case 'v':
2718         {
2719             struct userNode *victim;
2720             char *oplevel_str;
2721             int oplevel;
2722
2723             if (in_arg >= argc)
2724                 goto error;
2725             oplevel_str = strchr(modes[in_arg], ':');
2726             if (oplevel_str)
2727             {
2728                 /* XXYYY M #channel +o XXYYY:<oplevel> */
2729                 *oplevel_str++ = '\0';
2730                 oplevel = parse_oplevel(oplevel_str);
2731                 if (oplevel <= base_oplevel && !(flags & MCP_FROM_SERVER))
2732                     oplevel = base_oplevel + 1;
2733             }
2734             else if (channel->modes & MODE_UPASS)
2735                 oplevel = base_oplevel + 1;
2736             else
2737                 oplevel = MAXOPLEVEL;
2738
2739             /* Check that oplevel is within bounds. */
2740             if (oplevel > MAXOPLEVEL)
2741                 oplevel = MAXOPLEVEL;
2742
2743             if (!(flags & MCP_ALLOW_OVB))
2744                 goto error;
2745             if (in_arg >= argc)
2746                 goto error;
2747             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2748             if (!add)
2749                 change->args[ch_arg].mode |= MODE_REMOVE;
2750             if (flags & MCP_FROM_SERVER)
2751                 victim = GetUserN(modes[in_arg++]);
2752             else
2753                 victim = GetUserH(modes[in_arg++]);
2754             if (!victim)
2755                 continue;
2756             if ((change->args[ch_arg].u.member = GetUserMode(channel, victim)))
2757             {
2758                 /* Apply the oplevel change if the user is being (de-)opped */
2759                 if (modes[0][ii] == 'o')
2760                     change->args[ch_arg].u.member->oplevel = oplevel;
2761                 ch_arg++;
2762             }
2763             break;
2764         }
2765         default:
2766             if (!(flags & MCP_FROM_SERVER))
2767                 goto error;
2768             break;
2769         }
2770     }
2771     change->argc = ch_arg; /* in case any turned out to be ignored */
2772     if (change->modes_set & MODE_SECRET) {
2773         change->modes_set &= ~(MODE_PRIVATE);
2774         change->modes_clear |= MODE_PRIVATE;
2775     } else if (change->modes_set & MODE_PRIVATE) {
2776         change->modes_set &= ~(MODE_SECRET);
2777         change->modes_clear |= MODE_SECRET;
2778     }
2779     if (change->modes_clear & MODE_REGISTERED) {
2780         /* Horribly cheat by using the lock/unlock semantics. */
2781         LockChannel(channel);
2782         channelList_append(&dead_channels, channel);
2783     }
2784     return change;
2785   error:
2786     mod_chanmode_free(change);
2787     return NULL;
2788 }
2789
2790 struct chanmode_buffer {
2791     char modes[MAXLEN];
2792     char args[MAXLEN];
2793     struct chanNode *channel;
2794     struct userNode *actor;
2795     unsigned int modes_used;
2796     unsigned int args_used;
2797     size_t chname_len;
2798     unsigned int is_add : 1;
2799     unsigned int is_chanop : 1;
2800 };
2801
2802 static void
2803 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2804 {
2805     size_t arg_len = strlen(arg);
2806     if (buf->modes_used > (MAXMODEPARAMS) ||
2807         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2808         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2809         buf->modes[buf->modes_used + buf->args_used] = '\0';
2810         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2811         buf->modes[0] = buf->is_add ? '+' : '-';
2812         buf->modes_used = 1;
2813         buf->args_used = 0;
2814     }
2815     buf->modes[buf->modes_used++] = ch;
2816     buf->args[buf->args_used++] = ' ';
2817     memcpy(buf->args + buf->args_used, arg, arg_len);
2818     buf->args_used += arg_len;
2819 }
2820
2821 void
2822 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2823 {
2824     struct chanmode_buffer chbuf;
2825     unsigned int arg;
2826     struct modeNode *mn;
2827     char int_buff[32], mode = '\0';
2828
2829     assert(change->argc <= change->alloc_argc);
2830     memset(&chbuf, 0, sizeof(chbuf));
2831     chbuf.channel = channel;
2832     chbuf.actor = who;
2833     chbuf.chname_len = strlen(channel->name);
2834
2835     mn = GetUserMode(channel, who);
2836     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2837         chbuf.is_chanop = 1;
2838
2839     /* First remove modes */
2840     chbuf.is_add = 0;
2841     if (change->modes_clear) {
2842         if (mode != '-')
2843             chbuf.modes[chbuf.modes_used++] = mode = '-';
2844 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2845         DO_MODE_CHAR(PRIVATE, 'p');
2846         DO_MODE_CHAR(SECRET, 's');
2847         DO_MODE_CHAR(MODERATED, 'm');
2848         DO_MODE_CHAR(TOPICLIMIT, 't');
2849         DO_MODE_CHAR(INVITEONLY, 'i');
2850         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2851         DO_MODE_CHAR(LIMIT, 'l');
2852         DO_MODE_CHAR(ACCESS, 'a');
2853         DO_MODE_CHAR(ALTCHAN, 'F');
2854         DO_MODE_CHAR(NOFLOOD, 'f');
2855         DO_MODE_CHAR(DELAYJOINS, 'D');
2856         DO_MODE_CHAR(REGONLY, 'r');
2857         DO_MODE_CHAR(NOCOLORS, 'c');
2858         DO_MODE_CHAR(NOCTCPS, 'C');
2859         DO_MODE_CHAR(NONOTICES, 'N');
2860         DO_MODE_CHAR(NOAMSGS, 'M');
2861         DO_MODE_CHAR(REGISTERED, 'z');
2862 #undef DO_MODE_CHAR
2863         if (change->modes_clear & channel->modes & MODE_KEY)
2864             mod_chanmode_append(&chbuf, 'k', channel->key);
2865         if (change->modes_clear & channel->modes & MODE_UPASS)
2866             mod_chanmode_append(&chbuf, 'U', channel->upass);
2867         if (change->modes_clear & channel->modes & MODE_APASS)
2868             mod_chanmode_append(&chbuf, 'A', channel->apass);
2869     }
2870     for (arg = 0; arg < change->argc; ++arg) {
2871         if (!(change->args[arg].mode & MODE_REMOVE))
2872             continue;
2873         if (mode != '-')
2874             chbuf.modes[chbuf.modes_used++] = mode = '-';
2875         switch (change->args[arg].mode & ~MODE_REMOVE) {
2876         case MODE_BAN:
2877             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2878             break;
2879         default:
2880             if (change->args[arg].mode & MODE_CHANOP)
2881                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2882             if (change->args[arg].mode & MODE_VOICE)
2883                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2884             break;
2885         }
2886     }
2887
2888     /* Then set them */
2889     chbuf.is_add = 1;
2890     if (change->modes_set) {
2891         if (mode != '+')
2892             chbuf.modes[chbuf.modes_used++] = mode = '+';
2893 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2894         DO_MODE_CHAR(PRIVATE, 'p');
2895         DO_MODE_CHAR(SECRET, 's');
2896         DO_MODE_CHAR(MODERATED, 'm');
2897         DO_MODE_CHAR(TOPICLIMIT, 't');
2898         DO_MODE_CHAR(INVITEONLY, 'i');
2899         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2900         DO_MODE_CHAR(DELAYJOINS, 'D');
2901         DO_MODE_CHAR(REGONLY, 'r');
2902         DO_MODE_CHAR(NOCOLORS, 'c');
2903         DO_MODE_CHAR(NOCTCPS, 'C');
2904         DO_MODE_CHAR(NONOTICES, 'N');
2905         DO_MODE_CHAR(NOAMSGS, 'M');
2906         DO_MODE_CHAR(REGISTERED, 'z');
2907 #undef DO_MODE_CHAR
2908         if(change->modes_set & MODE_KEY)
2909             mod_chanmode_append(&chbuf, 'k', change->new_key);
2910         if (change->modes_set & MODE_UPASS)
2911             mod_chanmode_append(&chbuf, 'U', change->new_upass);
2912         if (change->modes_set & MODE_APASS)
2913             mod_chanmode_append(&chbuf, 'A', change->new_apass);
2914         if(change->modes_set & MODE_LIMIT) {
2915             sprintf(int_buff, "%d", change->new_limit);
2916             mod_chanmode_append(&chbuf, 'l', int_buff);
2917         }
2918         if(change->modes_set & MODE_ACCESS) {
2919             sprintf(int_buff, "%d", change->new_access);
2920             mod_chanmode_append(&chbuf, 'a', int_buff);
2921         }
2922         if (change->modes_set & MODE_ALTCHAN)
2923             mod_chanmode_append(&chbuf, 'F', change->new_altchan);
2924         if (change->modes_set & MODE_NOFLOOD)
2925             mod_chanmode_append(&chbuf, 'f', change->new_noflood);
2926     }
2927     for (arg = 0; arg < change->argc; ++arg) {
2928         if (change->args[arg].mode & MODE_REMOVE)
2929             continue;
2930         if (mode != '+')
2931             chbuf.modes[chbuf.modes_used++] = mode = '+';
2932         switch (change->args[arg].mode) {
2933         case MODE_BAN:
2934             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2935             break;
2936         default:
2937             if (change->args[arg].mode & MODE_CHANOP)
2938                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2939             if (change->args[arg].mode & MODE_VOICE)
2940                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2941             break;
2942         }
2943     }
2944
2945     /* Flush the buffer and apply changes locally */
2946     if (chbuf.modes_used > 0) {
2947         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2948         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2949         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2950     }
2951     mod_chanmode_apply(who, channel, change);
2952 }
2953
2954 char *
2955 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2956 {
2957     unsigned int used = 0;
2958     unsigned int args_used = 0;
2959     char args[MAXLEN];
2960
2961     assert(change->argc <= change->alloc_argc);
2962     if (change->modes_clear) {
2963         outbuff[used++] = '-';
2964 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2965         DO_MODE_CHAR(PRIVATE, 'p');
2966         DO_MODE_CHAR(SECRET, 's');
2967         DO_MODE_CHAR(MODERATED, 'm');
2968         DO_MODE_CHAR(TOPICLIMIT, 't');
2969         DO_MODE_CHAR(INVITEONLY, 'i');
2970         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2971         DO_MODE_CHAR(LIMIT, 'l');
2972         DO_MODE_CHAR(ACCESS, 'a');
2973         DO_MODE_CHAR(ALTCHAN, 'F');
2974         DO_MODE_CHAR(NOFLOOD, 'f');
2975         DO_MODE_CHAR(KEY, 'k');
2976         DO_MODE_CHAR(UPASS, 'U');
2977         DO_MODE_CHAR(APASS, 'A');
2978         DO_MODE_CHAR(DELAYJOINS, 'D');
2979         DO_MODE_CHAR(REGONLY, 'r');
2980         DO_MODE_CHAR(NOCOLORS, 'c');
2981         DO_MODE_CHAR(NOCTCPS, 'C');
2982         DO_MODE_CHAR(NONOTICES, 'N');
2983         DO_MODE_CHAR(NOAMSGS, 'M');
2984         DO_MODE_CHAR(REGISTERED, 'z');
2985 #undef DO_MODE_CHAR
2986     }
2987     if (change->modes_set) {
2988         outbuff[used++] = '+';
2989 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
2990         DO_MODE_CHAR(PRIVATE, 'p');
2991         DO_MODE_CHAR(SECRET, 's');
2992         DO_MODE_CHAR(MODERATED, 'm');
2993         DO_MODE_CHAR(TOPICLIMIT, 't');
2994         DO_MODE_CHAR(INVITEONLY, 'i');
2995         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2996         DO_MODE_CHAR(DELAYJOINS, 'D');
2997         DO_MODE_CHAR(REGONLY, 'r');
2998         DO_MODE_CHAR(NOCOLORS, 'c');
2999         DO_MODE_CHAR(NOCTCPS, 'C');
3000         DO_MODE_CHAR(NONOTICES, 'N');
3001                 DO_MODE_CHAR(NOAMSGS, 'M');
3002         DO_MODE_CHAR(REGISTERED, 'z');
3003         DO_MODE_CHAR(LIMIT, 'l'), args_used += sprintf(args + args_used, " %d", change->new_limit);
3004         DO_MODE_CHAR(KEY, 'k'), args_used += sprintf(args + args_used, " %s", change->new_key);
3005         DO_MODE_CHAR(KEY, 'a'), args_used += sprintf(args + args_used, " %d", change->new_access);
3006         DO_MODE_CHAR(KEY, 'F'), args_used += sprintf(args + args_used, " %s", change->new_altchan);
3007         DO_MODE_CHAR(KEY, 'f'), args_used += sprintf(args + args_used, " %s", change->new_noflood);
3008         DO_MODE_CHAR(UPASS, 'U'), args_used += sprintf(args + args_used, " %s", change->new_upass);
3009         DO_MODE_CHAR(APASS, 'A'), args_used += sprintf(args + args_used, " %s", change->new_apass);
3010 #undef DO_MODE_CHAR
3011     }
3012     args[args_used] = '\0';
3013     strcpy(outbuff + used, args);
3014     return outbuff;
3015 }
3016
3017 static int
3018 clear_chanmode(struct chanNode *channel, const char *modes)
3019 {
3020     unsigned int cleared;
3021
3022     for (cleared = 0; *modes; modes++) {
3023         switch (*modes) {
3024         case 'o': cleared |= MODE_CHANOP; break;
3025         case 'v': cleared |= MODE_VOICE; break;
3026         case 'p': cleared |= MODE_PRIVATE; break;
3027         case 's': cleared |= MODE_SECRET; break;
3028         case 'm': cleared |= MODE_MODERATED; break;
3029         case 't': cleared |= MODE_TOPICLIMIT; break;
3030         case 'i': cleared |= MODE_INVITEONLY; break;
3031         case 'n': cleared |= MODE_NOPRIVMSGS; break;
3032         case 'F':
3033             cleared |= MODE_ALTCHAN;
3034             channel->altchan[0] = '\0';
3035             break;
3036         case 'f':
3037             cleared |= MODE_NOFLOOD;
3038             channel->noflood[0] = '\0';
3039             break;
3040         case 'k':
3041             cleared |= MODE_KEY;
3042             channel->key[0] = '\0';
3043             break;
3044         case 'A':
3045             cleared |= MODE_APASS;
3046             channel->apass[0] = '\0';
3047             break;
3048         case 'U':
3049             cleared |= MODE_UPASS;
3050             channel->upass[0] = '\0';
3051             break;
3052         case 'l':
3053             cleared |= MODE_LIMIT;
3054             channel->limit = 0;
3055             break;
3056         case 'a':
3057             cleared |= MODE_ACCESS;
3058             channel->access = 0;
3059             break;
3060         case 'b': cleared |= MODE_BAN; break;
3061         case 'D': cleared |= MODE_DELAYJOINS; break;
3062         case 'r': cleared |= MODE_REGONLY; break;
3063         case 'c': cleared |= MODE_NOCOLORS; break;
3064         case 'C': cleared |= MODE_NOCTCPS; break;
3065         case 'M': cleared |= MODE_NOAMSGS; break;
3066         case 'N': cleared |= MODE_NONOTICES; break;
3067         case 'z': cleared |= MODE_REGISTERED; break;
3068         }
3069     }
3070
3071     if (!cleared)
3072         return 1;
3073
3074     /* Remove simple modes. */
3075     channel->modes &= ~cleared;
3076
3077     /* If removing bans, kill 'em all. */
3078     if ((cleared & MODE_BAN) && channel->banlist.used) {
3079         unsigned int i;
3080         for (i=0; i<channel->banlist.used; i++)
3081             free(channel->banlist.list[i]);
3082         channel->banlist.used = 0;
3083     }
3084
3085     /* Remove member modes. */
3086     if ((cleared & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
3087         int mask = ~(cleared & (MODE_CHANOP | MODE_VOICE));
3088         unsigned int i;
3089
3090         for (i = 0; i < channel->members.used; i++)
3091             channel->members.list[i]->modes &= mask;
3092     }
3093
3094     return 1;
3095 }
3096
3097 void
3098 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
3099 {
3100     unsigned int numeric = user->num_local;
3101     if (numeric >= num_privmsg_funcs) {
3102         int newnum = numeric + 8, ii;
3103         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
3104         for (ii = num_privmsg_funcs; ii < newnum; ++ii)
3105             privmsg_funcs[ii] = NULL;
3106         num_privmsg_funcs = newnum;
3107     }
3108     if (privmsg_funcs[numeric])
3109         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
3110     privmsg_funcs[numeric] = handler;
3111 }
3112
3113 void
3114 unreg_privmsg_func(struct userNode *user)
3115 {
3116     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
3117         return; /* this really only works with users */
3118
3119     privmsg_funcs[user->num_local] = NULL;
3120 }
3121
3122
3123 void
3124 reg_notice_func(struct userNode *user, privmsg_func_t handler)
3125 {
3126     unsigned int numeric = user->num_local;
3127     if (numeric >= num_notice_funcs) {
3128         int newnum = numeric + 8, ii;
3129         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
3130         for (ii = num_notice_funcs; ii < newnum; ++ii)
3131             notice_funcs[ii] = NULL;
3132         num_notice_funcs = newnum;
3133     }
3134     if (notice_funcs[numeric])
3135         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
3136     notice_funcs[numeric] = handler;
3137 }
3138
3139 void
3140 unreg_notice_func(struct userNode *user)
3141 {
3142     if (!IsLocal(user) || user->num_local >= num_privmsg_funcs)
3143         return; /* this really only works with users */
3144
3145     notice_funcs[user->num_local] = NULL;
3146 }
3147
3148 static void
3149 send_burst(void)
3150 {
3151     unsigned int i, hop, max_hop=1;
3152     dict_iterator_t it;
3153
3154     /* burst (juped) servers, closest first (except self, which is sent already) */
3155     for (i=0; i<ArrayLength(servers_num); i++)
3156         if (servers_num[i] && servers_num[i]->hops > max_hop)
3157             max_hop = servers_num[i]->hops;
3158     for (hop=1; hop<=max_hop; hop++) {
3159         for (i=0;i<ArrayLength(servers_num);i++) {
3160             if (servers_num[i]
3161                 && (servers_num[i]->hops == hop)
3162                 && (servers_num[i] != self->uplink))
3163                 irc_server(servers_num[i]);
3164         }
3165     }
3166
3167     /* burst local nicks */
3168     for (i=0; i<=self->num_mask; i++)
3169         if (self->users[i])
3170             irc_user(self->users[i]);
3171
3172     /* build dict of unbursted channel names (just copy existing channels) */
3173     unbursted_channels = dict_new();
3174     for (it = dict_first(channels); it; it = iter_next(it))
3175         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
3176 }