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