Support and use G-line lastmod timestamp.
[srvx.git] / src / proto-p10.c
1 /* proto-p10.c - IRC protocol output
2  * Copyright 2000-2004 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 char *his_servername;
293 static 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, time_t 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 %li %li J10 %s%s +s6 :%s",
372                 srv->name, srv->hops+1, srv->boot, srv->link, srv->numeric, extranum, srv->description);
373     } else {
374         putsock("%s " P10_SERVER " %s %d %li %li %c10 %s%s +s6 :%s",
375                 self->numeric, srv->name, srv->hops+1, srv->boot, srv->link, (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)
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 (IsServNotice(user))
475             modes[modelen++] = 's';
476         if (IsDeaf(user))
477             modes[modelen++] = 'd';
478         if (IsGlobal(user))
479             modes[modelen++] = 'g';
480         if (IsHelperIrcu(user))
481             modes[modelen++] = 'h';
482         if (IsHiddenHost(user))
483             modes[modelen++] = 'x';
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 %li %s %s +%s %s %s :%s",
488                 user->uplink->numeric, user->nick, user->uplink->hops+1, user->timestamp, user->ident, user->hostname, modes, b64ip, user->numeric, user->info);
489     } else {
490         putsock("%s " P10_NICK " %s %d %li %s %s %s %s :%s",
491                 user->uplink->numeric, user->nick, user->uplink->hops+1, 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)
497 {
498     putsock("%s " P10_ACCOUNT " %s %s", self->numeric, user->numeric, stamp);
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 "FMT_TIME_T, user->numeric, user->nick, 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 void
562 irc_notice(struct userNode *from, const char *to, const char *message)
563 {
564     putsock("%s " P10_NOTICE " %s :%s", from->numeric, to, message);
565 }
566
567 void
568 irc_notice_user(struct userNode *from, struct userNode *to, const char *message)
569 {
570     putsock("%s " P10_NOTICE " %s :%s", from->numeric, to->numeric, message);
571 }
572
573 void
574 irc_privmsg(struct userNode *from, const char *to, const char *message)
575 {
576     putsock("%s " P10_PRIVMSG " %s :%s", from->numeric, to, message);
577 }
578
579 void
580 irc_eob(void)
581 {
582     putsock("%s " P10_EOB, self->numeric);
583 }
584
585 void
586 irc_eob_ack(void)
587 {
588     putsock("%s " P10_EOB_ACK, self->numeric);
589 }
590
591 void
592 irc_ping(const char *payload)
593 {
594     putsock("%s " P10_PING " :%s", self->numeric, payload);
595 }
596
597 void
598 irc_pong(const char *who, const char *data)
599 {
600     putsock("%s " P10_PONG " %s :%s", self->numeric, who, data);
601 }
602
603 void
604 irc_pong_asll(const char *who, const char *orig_ts)
605 {
606     char *delim;
607     struct timeval orig;
608     struct timeval now;
609     int diff;
610
611     orig.tv_sec = strtoul(orig_ts, &delim, 10);
612     orig.tv_usec = (*delim == '.') ? strtoul(delim + 1, NULL, 10) : 0;
613     gettimeofday(&now, NULL);
614     diff = (now.tv_sec - orig.tv_sec) * 1000 + (now.tv_usec - orig.tv_usec) / 1000;
615     putsock("%s " P10_PONG " %s %s %d " FMT_TIME_T ".%06u", self->numeric, who, orig_ts, diff, now.tv_sec, (unsigned)now.tv_usec);
616 }
617
618 void
619 irc_pass(const char *passwd)
620 {
621     putsock(P10_PASS " :%s", passwd);
622 }
623
624 void
625 irc_introduce(const char *passwd)
626 {
627     void timed_send_ping(void *data);
628
629     self->self_burst = self->burst = 1;
630     irc_pass(passwd);
631     irc_server(self);
632     burst_length = 0;
633     timeq_add(now + ping_freq, timed_send_ping, 0);
634 }
635
636 void
637 irc_gline(struct server *srv, struct gline *gline)
638 {
639     if (gline->lastmod)
640         putsock("%s " P10_GLINE " %s +%s %ld %ld :%s",
641                 self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires-now, gline->lastmod, gline->reason);
642     else
643         putsock("%s " P10_GLINE " %s +%s %ld :%s",
644                 self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires-now, gline->reason);
645 }
646
647 void
648 irc_settime(const char *srv_name_mask, time_t new_time)
649 {
650     ioset_set_time(new_time);
651     if (!strcmp(srv_name_mask, "*"))
652         srv_name_mask = "";
653     putsock("%s " P10_SETTIME " " FMT_TIME_T " %s", self->numeric, new_time, srv_name_mask);
654 }
655
656 void
657 irc_ungline(const char *mask)
658 {
659     putsock("%s " P10_GLINE " * -%s", self->numeric, mask);
660 }
661
662 static void
663 irc_burst(struct chanNode *chan)
664 {
665     char burst_line[512];
666     int pos, base_len, len;
667     struct modeNode *mn;
668     struct banNode *bn;
669     long last_mode=-1;
670     unsigned int n;
671
672     base_len = sprintf(burst_line, "%s " P10_BURST " %s " FMT_TIME_T " ",
673                        self->numeric, chan->name, chan->timestamp);
674     len = irc_make_chanmode(chan, burst_line+base_len);
675     pos = base_len + len;
676     if (len)
677         burst_line[pos++] = ' ';
678
679     /* dump the users */
680     for (n=0; n<chan->members.used; n++) {
681         mn = chan->members.list[n];
682         if (pos > 500) {
683             burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
684             putsock("%s", burst_line);
685             pos = base_len;
686             last_mode = -1;
687         }
688         memcpy(burst_line+pos, mn->user->numeric, strlen(mn->user->numeric));
689         pos += strlen(mn->user->numeric);
690         if (mn->modes && (mn->modes != last_mode)) {
691             last_mode = mn->modes;
692             burst_line[pos++] = ':';
693             if (last_mode & MODE_CHANOP)
694                 burst_line[pos++] = 'o';
695             if (last_mode & MODE_VOICE)
696                 burst_line[pos++] = 'v';
697         }
698         if ((n+1)<chan->members.used)
699             burst_line[pos++] = ',';
700     }
701     if (chan->banlist.used) {
702         /* dump the bans */
703         if (pos+2+strlen(chan->banlist.list[0]->ban) > 505) {
704             burst_line[pos-1] = 0;
705             putsock("%s", burst_line);
706             pos = base_len;
707         } else {
708             burst_line[pos++] = ' ';
709         }
710
711         burst_line[pos++] = ':';
712         burst_line[pos++] = '%';
713         base_len = pos;
714         for (n=0; n<chan->banlist.used; n++) {
715             bn = chan->banlist.list[n];
716             len = strlen(bn->ban);
717             if (pos+len+1 > 510) {
718                 burst_line[pos-1] = 0; /* -1 to back up over the space or comma */
719                 putsock("%s", burst_line);
720                 pos = base_len;
721             }
722             memcpy(burst_line+pos, bn->ban, len);
723             pos += len;
724             burst_line[pos++] = ' ';
725         }
726     }
727     /* print the last line */
728     burst_line[pos] = 0;
729     putsock("%s", burst_line);
730 }
731
732 void
733 irc_quit(struct userNode *user, const char *message)
734 {
735     putsock("%s " P10_QUIT " :%s", user->numeric, message);
736 }
737
738 void
739 irc_error(const char *to, const char *message)
740 {
741     if (to) {
742         putsock("%s " P10_ERROR " :%s", to, message);
743     } else {
744         putsock(":%s " P10_ERROR " :%s", self->name, message);
745     }
746 }
747
748 void
749 irc_kill(struct userNode *from, struct userNode *target, const char *message)
750 {
751     if (from) {
752         putsock("%s " P10_KILL " %s :%s!%s (%s)",
753                 from->numeric, target->numeric, self->name, from->nick, message);
754     } else {
755         putsock("%s " P10_KILL " %s :%s (%s)",
756                 self->numeric, target->numeric, self->name, message);
757     }
758 }
759
760 void
761 irc_mode(struct userNode *from, struct chanNode *target, const char *modes)
762 {
763     putsock("%s " P10_MODE " %s %s "FMT_TIME_T,
764             (from ? from->numeric : self->numeric),
765             target->name, modes, target->timestamp);
766 }
767
768 void
769 irc_invite(struct userNode *from, struct userNode *who, struct chanNode *to)
770 {
771     putsock("%s " P10_INVITE " %s %s", from->numeric, who->nick, to->name);
772 }
773
774 void
775 irc_join(struct userNode *who, struct chanNode *what)
776 {
777     if (what->members.used == 1) {
778         putsock("%s " P10_CREATE " %s %lu",
779                 who->numeric, what->name, what->timestamp);
780     } else {
781         putsock("%s " P10_JOIN " %s %lu", who->numeric, what->name, what->timestamp);
782     }
783 }
784
785 void
786 irc_kick(struct userNode *who, struct userNode *target, struct chanNode *channel, const char *msg)
787 {
788     const char *numeric;
789     struct modeNode *mn = GetUserMode(channel, who);
790     numeric = ((mn && (mn->modes & MODE_CHANOP)) || off_channel) ? who->numeric : self->numeric;
791     putsock("%s " P10_KICK " %s %s :%s",
792             numeric, channel->name, target->numeric, msg);
793 }
794
795 void
796 irc_stats(struct userNode *from, struct server *target, char type)
797 {
798     putsock("%s " P10_STATS " %c :%s", from->numeric, type, target->numeric);
799 }
800
801 void
802 irc_svsnick(struct userNode *from, struct userNode *target, const char *newnick)
803 {
804     putsock("%s " P10_SVSNICK " %s %s "FMT_TIME_T, from->uplink->numeric, target->numeric, newnick, now);
805 }
806
807 void
808 irc_part(struct userNode *who, struct chanNode *what, const char *reason)
809 {
810     if (reason) {
811         putsock("%s " P10_PART " %s :%s", who->numeric, what->name, reason);
812     } else {
813         putsock("%s " P10_PART " %s", who->numeric, what->name);
814     }
815 }
816
817 void
818 irc_topic(struct userNode *who, struct chanNode *what, const char *topic)
819 {
820     putsock("%s " P10_TOPIC " %s :%s", who->numeric, what->name, topic);
821 }
822
823 void
824 irc_raw(const char *what)
825 {
826     putsock("%s", what);
827 }
828
829 void
830 irc_numeric(struct userNode *user, unsigned int num, const char *format, ...)
831 {
832     va_list arg_list;
833     char buffer[MAXLEN];
834     va_start(arg_list, format);
835     vsnprintf(buffer, MAXLEN-2, format, arg_list);
836     buffer[MAXLEN-1] = 0;
837     putsock(":%s %03d %s %s", self->name, num, user->nick, buffer);
838 }
839
840 static void send_burst(void);
841
842 static void
843 change_nicklen(int new_nicklen)
844 {
845     unsigned int nn;
846     char new_nick[NICKLEN+1];
847     struct userNode *user;
848
849     nicklen = new_nicklen;
850     /* fix up any users we have here */
851     for (nn=0; nn<=self->num_mask; nn++) {
852         if (!(user = self->users[nn]))
853             continue;
854         safestrncpy(new_nick, user->nick, sizeof(new_nick));
855         new_nick[nicklen] = 0;
856         NickChange(user, new_nick, 1);
857     }
858 }
859
860 static CMD_FUNC(cmd_whois)
861 {
862     struct userNode *from;
863     struct userNode *who;
864
865     if (argc < 3)
866         return 0;
867     if (!(from = GetUserH(origin))) {
868         log_module(MAIN_LOG, LOG_ERROR, "Could not find WHOIS origin user %s", origin);
869         return 0;
870     }
871     if(!(who = GetUserH(argv[2]))) {
872         irc_numeric(from, ERR_NOSUCHNICK, "%s@%s :No such nick", argv[2], self->name);
873         return 1;
874     }
875     if (IsHiddenHost(who) && !IsOper(from)) {
876         /* Just stay quiet. */
877         return 1;
878     }
879     irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->ident, who->hostname, who->info);
880     if (his_servername && his_servercomment)
881         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, his_servername, his_servercomment);
882     else
883         irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, who->uplink->name, who->uplink->description);
884     if (IsOper(who))
885         irc_numeric(from, RPL_WHOISOPERATOR, "%s :is a megalomaniacal power hungry tyrant", who->nick);
886     irc_numeric(from, RPL_ENDOFWHOIS, "%s :End of /WHOIS list", who->nick);
887     return 1;
888 }
889
890 static CMD_FUNC(cmd_server)
891 {
892     struct server *srv;
893     const char *str;
894
895     if (argc < 8)
896         return 0;
897     if (self->uplink) {
898         /* another server introduced us */
899         srv = AddServer(GetServerH(origin), argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
900         if (!srv)
901             return 0;
902         srv->self_burst = argv[5][0] == 'J';
903         srv->burst = 1;
904     } else {
905         /* this must be our uplink */
906         srv = self->uplink = AddServer(self, argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]);
907         if (!srv)
908             return 0;
909         srv->self_burst = argv[5][0] == 'J';
910         srv->burst = 1;
911         if ((argv[7][0] == '+') && !force_n2k) {
912             log_module(MAIN_LOG, LOG_WARNING, "Got Undernet-style SERVER message but \"force_n2k\" not on.");
913         }
914         send_burst();
915     }
916
917     /* Fix up our timestamps if necessary. */
918     if (srv->boot <= PREHISTORY) {
919         /* Server from the mists of time.. */
920         if (srv->hops == 1) {
921             log_module(MAIN_LOG, LOG_ERROR, "Server %s claims to have booted at time "FMT_TIME_T".  This is absurd.", srv->name, srv->boot);
922         }
923     } else if ((str = conf_get_data("server/reliable_clock", RECDB_QSTRING))
924                && enabled_string(str)) {
925         /* If we have a reliable clock, we just keep our current time. */
926     } else {
927         if (srv->boot <= self->boot) {
928             /* The other server is older than us.  Accept their timestamp.
929              * Alternately, we are same age, but we accept their time
930              * since we are linking to them. */
931             self->boot = srv->boot;
932             ioset_set_time(srv->link);
933         }
934     }
935     if (srv == self->uplink) {
936         extern time_t burst_begin;
937         burst_begin = now;
938     }
939     return 1;
940 }
941
942 static CMD_FUNC(cmd_eob)
943 {
944     struct server *sender;
945     dict_iterator_t it;
946     unsigned int ii;
947
948     if (!(sender = GetServerH(origin)))
949         return 0;
950     if (sender == self->uplink) {
951         cManager.uplink->state = CONNECTED;
952         for (it = dict_first(unbursted_channels); it; it = iter_next(it))
953             irc_burst(iter_data(it));
954         dict_delete(unbursted_channels);
955         unbursted_channels = NULL;
956         irc_eob();
957         irc_eob_ack();
958     }
959     sender->self_burst = 0;
960     recalc_bursts(sender);
961     for (ii=0; ii<slf_used; ii++)
962         slf_list[ii](sender);
963     return 1;
964 }
965
966 static CMD_FUNC(cmd_eob_ack)
967 {
968     extern time_t burst_begin;
969
970     if (GetServerH(origin) == self->uplink) {
971         burst_length = now - burst_begin;
972         self->self_burst = self->burst = 0;
973     }
974     cManager.uplink->state = CONNECTED;
975     return 1;
976 }
977
978 static CMD_FUNC(cmd_ping)
979 {
980     struct server *srv;
981     struct userNode *un;
982
983     if (argc > 3)
984         irc_pong_asll(argv[2], argv[3]);
985     else if ((srv = GetServerH(origin)))
986         irc_pong(self->name, srv->numeric);
987     else if ((un = GetUserH(origin)))
988         irc_pong(self->name, un->numeric);
989     else
990         irc_pong(self->name, origin);
991
992     timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
993     timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
994     timeq_add(now + ping_freq, timed_send_ping, 0);
995     received_ping();
996     return 1;
997 }
998
999 static CMD_FUNC(cmd_error_nick)
1000 {
1001     /* Go back to original IRC length .. and try to reconnect :/ */
1002     change_nicklen(9);
1003     irc_squit(self, "Got erroneous nickname, truncating nicks.", NULL);
1004     return 1;
1005 }
1006
1007 struct create_desc {
1008     struct userNode *user;
1009     time_t when;
1010 };
1011
1012 static void
1013 join_helper(struct chanNode *chan, void *data)
1014 {
1015     struct create_desc *cd = data;
1016     AddChannelUser(cd->user, chan);
1017 }
1018
1019 static void
1020 create_helper(char *name, void *data)
1021 {
1022     struct create_desc *cd = data;
1023
1024     if (!strcmp(name, "0")) {
1025         while (cd->user->channels.used > 0)
1026             DelChannelUser(cd->user, cd->user->channels.list[0]->channel, 0, 0);
1027         return;
1028     }
1029
1030     AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL));
1031 }
1032
1033 static CMD_FUNC(cmd_create)
1034 {
1035     struct create_desc cd;
1036     struct userNode *user;
1037
1038     if ((argc < 3) || !(user = GetUserH(origin)))
1039         return 0;
1040     cd.user = user;
1041     cd.when = atoi(argv[2]);
1042     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1043     return 1;
1044 }
1045
1046 static CMD_FUNC(cmd_join)
1047 {
1048     struct create_desc cd;
1049
1050     if (!(cd.user = GetUserH(origin)))
1051         return 0;
1052     if (argc < 2)
1053         return 0;
1054     else if (argc < 3)
1055         cd.when = now;
1056     else
1057         cd.when = atoi(argv[2]);
1058     parse_foreach(argv[1], join_helper, create_helper, NULL, NULL, &cd);
1059     return 1;
1060 }
1061
1062 static CMD_FUNC(cmd_pong)
1063 {
1064     if (argc < 3)
1065         return 0;
1066     if (!strcmp(argv[2], self->name)) {
1067         timeq_del(0, timed_send_ping, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1068         timeq_del(0, timed_ping_timeout, 0, TIMEQ_IGNORE_WHEN|TIMEQ_IGNORE_DATA);
1069         timeq_add(now + ping_freq, timed_send_ping, 0);
1070         received_ping();
1071     }
1072     return 1;
1073 }
1074
1075 static CMD_FUNC(cmd_nick)
1076 {
1077     struct userNode *user;
1078     if ((user = GetUserH(origin))) {
1079         /* nick change (since the source is a user numeric) */
1080         if (argc < 2)
1081             return 0;
1082         NickChange(user, argv[1], 1);
1083     } else {
1084         struct server *serv;
1085         char modes[MAXLEN];
1086         /* new nick */
1087         if (argc < 9)
1088             return 0;
1089         serv = GetServerH(origin);
1090         if (argc > 9)
1091             unsplit_string(argv+6, argc-9, modes);
1092         else
1093             strcpy(modes, "+");
1094         AddUser(serv, argv[1], argv[4], argv[5], modes, argv[argc-2], argv[argc-1], atoi(argv[3]), argv[argc-3]);
1095     }
1096     return 1;
1097 }
1098
1099 static CMD_FUNC(cmd_account)
1100 {
1101     struct userNode *user;
1102
1103     if ((argc < 3) || !origin || !GetServerH(origin))
1104         return 0; /* Origin must be server. */
1105     user = GetUserN(argv[1]);
1106     if (!user)
1107         return 1; /* A QUIT probably passed the ACCOUNT. */
1108     call_account_func(user, argv[2]);
1109     return 1;
1110 }
1111
1112 static CMD_FUNC(cmd_fakehost)
1113 {
1114     struct userNode *user;
1115
1116     if ((argc < 3) || !origin || !GetServerH(origin))
1117         return 0;
1118     if (!(user = GetUserN(argv[1])))
1119         return 1;
1120     assign_fakehost(user, argv[2], 0);
1121     return 1;
1122 }
1123
1124 static CMD_FUNC(cmd_burst)
1125 {
1126     extern int rel_age;
1127     char modes[MAXLEN], *members = "", *banlist = NULL;
1128     unsigned int next = 3, res = 1;
1129     struct chanNode *cNode;
1130     struct userNode *un;
1131     struct modeNode *mNode;
1132     long mode;
1133     int oplevel = -1;
1134     char *user, *end, sep;
1135     time_t in_timestamp;
1136
1137     if (argc < 3)
1138         return 0;
1139     modes[0] = 0;
1140     while (next < argc) {
1141         switch (argv[next][0]) {
1142         case '+': {
1143             const char *pos;
1144             int n_modes;
1145             for (pos=argv[next], n_modes = 1; *pos; pos++)
1146                 if ((*pos == 'k') || (*pos == 'l') || (*pos == 'A')
1147                     || (*pos == 'U'))
1148                     n_modes++;
1149             unsplit_string(argv+next, n_modes, modes);
1150             next += n_modes;
1151             break;
1152         }
1153         case '%': banlist = argv[next++]+1; break;
1154         default: members = argv[next++]; break;
1155         }
1156     }
1157
1158     in_timestamp = atoi(argv[2]);
1159     if ((cNode = dict_find(unbursted_channels, argv[1], NULL))) {
1160         cNode->timestamp = in_timestamp;
1161         dict_remove(unbursted_channels, cNode->name);
1162         irc_burst(cNode);
1163     }
1164     cNode = AddChannel(argv[1], in_timestamp, modes, banlist);
1165
1166     /* Burst channel members in now. */
1167     for (user = members, sep = *members, mode = 0; sep; user = end) {
1168         for (end = user + 3; isalnum(*end) || *end == '[' || *end == ']'; end++) ;
1169         sep = *end++; end[-1] = 0;
1170         if (sep == ':') {
1171             mode = 0;
1172             while ((sep = *end++)) {
1173                 if (sep == 'o') {
1174                     mode |= MODE_CHANOP;
1175                     oplevel = -1;
1176                 } else if (sep == 'v') {
1177                     mode |= MODE_VOICE;
1178                     oplevel = -1;
1179                 } else if (isdigit(sep)) {
1180                     mode |= MODE_CHANOP;
1181                     if (oplevel >= 0)
1182                         oplevel += parse_oplevel(end);
1183                     else
1184                         oplevel = parse_oplevel(end);
1185                     while (isdigit(*end)) end++;
1186                 } else
1187                     break;
1188             }
1189             if (rel_age < 0)
1190                 mode = 0;
1191         }
1192         if (!(un = GetUserN(user))) {
1193             res = 0;
1194             continue;
1195         }
1196         if ((mNode = AddChannelUser(un, cNode))) {
1197             mNode->modes = mode;
1198             mNode->oplevel = oplevel;
1199         }
1200     }
1201
1202     return res;
1203 }
1204
1205 static CMD_FUNC(cmd_mode)
1206 {
1207     struct chanNode *cn;
1208     struct userNode *un;
1209
1210     if (argc < 3)
1211         return 0;
1212     if (!IsChannelName(argv[1])) {
1213         un = GetUserH(argv[1]);
1214         if (!un) {
1215             log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s whose mode is changing.", argv[1]);
1216             return 0;
1217         }
1218         mod_usermode(un, argv[2]);
1219         return 1;
1220     }
1221
1222     if (!(cn = GetChannel(argv[1]))) {
1223         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1224         return 0;
1225     }
1226     if ((un = GetUserH(origin))) {
1227         struct modeNode *mn;
1228         /* Update idle time for person setting the mode */
1229         if ((mn = GetUserMode(cn, un)))
1230             mn->idle_since = now;
1231     } else {
1232         /* If it came from a server, reset timestamp to re-sync. */
1233         cn->timestamp = atoi(argv[argc-1]);
1234     }
1235
1236     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER|(un ? MC_NOTIFY : 0));
1237 }
1238
1239 static CMD_FUNC(cmd_opmode)
1240 {
1241     struct chanNode *cn;
1242     struct userNode *un;
1243
1244     if (argc < 3)
1245         return 0;
1246
1247     if (!(cn = GetChannel(argv[1]))) {
1248         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1249         return 0;
1250     }
1251     if (!(un = GetUserH(origin))) {
1252         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting OPMODE.", origin);
1253         return 0;
1254     }
1255     if (!IsOper(un)) {
1256         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using OPMODE.", un->nick);
1257         return 0;
1258     }
1259
1260     return mod_chanmode(un, cn, argv+2, argc-2, MCP_ALLOW_OVB|MCP_FROM_SERVER); /* do NOT announce opmode locally */
1261 }
1262
1263 static int clear_chanmode(struct chanNode *channel, const char *modes);
1264
1265 static CMD_FUNC(cmd_clearmode)
1266 {
1267     struct chanNode *cn;
1268     struct userNode *un;
1269
1270     if (argc < 3)
1271         return 0;
1272
1273     if (!(cn = GetChannel(argv[1]))) {
1274         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose mode is changing.", argv[1]);
1275         return 0;
1276     }
1277     if (!(un = GetUserH(origin))) {
1278         log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s requesting CLEARMODE.", origin);
1279         return 0;
1280     }
1281     if (!IsOper(un)) {
1282         log_module(MAIN_LOG, LOG_ERROR, "Non-privileged user %s using CLEARMODE.", un->nick);
1283         return 0;
1284     }
1285
1286     return clear_chanmode(cn, argv[2]);
1287 }
1288
1289 static CMD_FUNC(cmd_topic)
1290 {
1291     struct chanNode *cn;
1292     time_t chan_ts, topic_ts;
1293
1294     if (argc < 3)
1295         return 0;
1296     if (!(cn = GetChannel(argv[1]))) {
1297         log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s whose topic is being set", argv[1]);
1298         return 0;
1299     }
1300     if (argc >= 5) {
1301         /* Looks like an Asuka style topic burst. */
1302         chan_ts = atoi(argv[2]);
1303         topic_ts = atoi(argv[3]);
1304     } else {
1305         chan_ts = cn->timestamp;
1306         topic_ts = now;
1307     }
1308     SetChannelTopic(cn, GetUserH(origin), argv[argc-1], 0);
1309     cn->topic_time = topic_ts;
1310     return 1;
1311 }
1312
1313 static CMD_FUNC(cmd_num_topic)
1314 {
1315     struct chanNode *cn;
1316
1317     if (!argv[0])
1318         return 0; /* huh? */
1319     if (argv[2]) {
1320         cn = GetChannel(argv[2]);
1321         if (!cn) {
1322             log_module(MAIN_LOG, LOG_ERROR, "Unable to find channel %s in topic reply", argv[2]);
1323             return 0;
1324         }
1325     } else
1326         return 0;
1327
1328     switch (atoi(argv[0])) {
1329     case 331:
1330         cn->topic_time = 0;
1331         break;  /* no topic */
1332     case 332:
1333         if (argc < 4)
1334             return 0;
1335         safestrncpy(cn->topic, unsplit_string(argv+3, argc-3, NULL), sizeof(cn->topic));
1336         break;
1337     case 333:
1338         if (argc < 5)
1339             return 0;
1340         safestrncpy(cn->topic_nick, argv[3], sizeof(cn->topic_nick));
1341         cn->topic_time = atoi(argv[4]);
1342         break;
1343     default:
1344         return 0; /* should never happen */
1345     }
1346     return 1;
1347 }
1348
1349 static CMD_FUNC(cmd_num_gline)
1350 {
1351     time_t lastmod;
1352     if (argc < 6)
1353         return 0;
1354     lastmod = (argc > 5) ? strtoul(argv[5], NULL, 0) : 0;
1355     gline_add(origin, argv[3], atoi(argv[4])-now, argv[argc - 1], now, lastmod, 0);
1356     return 1;
1357 }
1358
1359 static CMD_FUNC(cmd_quit)
1360 {
1361     struct userNode *user;
1362     if (argc < 2)
1363         return 0;
1364     /* Sometimes we get a KILL then a QUIT or the like, so we don't want to
1365      * call DelUser unless we have the user in our grasp. */
1366     if ((user = GetUserH(origin)))
1367         DelUser(user, NULL, false, argv[1]);
1368     return 1;
1369 }
1370
1371 static CMD_FUNC(cmd_kill)
1372 {
1373     struct userNode *user;
1374     if (argc < 2)
1375         return 0;
1376     user = GetUserN(argv[1]);
1377     if (!user) {
1378         /* If we get a KILL for a non-existent user, it could be a
1379          * Ghost response to a KILL we sent out earlier.  So we only
1380          * whine if the target is local.
1381          */
1382         if (!strncmp(argv[1], self->numeric, strlen(self->numeric)))
1383             log_module(MAIN_LOG, LOG_ERROR, "Unable to find kill victim %s", argv[1]);
1384         return 0;
1385     }
1386
1387     if (IsLocal(user) && IsService(user)) {
1388         /* TODO: rate limit this so silly things don't happen. */
1389         ReintroduceUser(user);
1390         return 1;
1391     }
1392
1393     DelUser(user, NULL, false, argv[2]);
1394     return 1;
1395 }
1396
1397 static CMD_FUNC(cmd_kick)
1398 {
1399     if (argc < 3)
1400         return 0;
1401     ChannelUserKicked(GetUserH(origin), GetUserN(argv[2]), GetChannel(argv[1]));
1402     return 1;
1403 }
1404
1405 static CMD_FUNC(cmd_squit)
1406 {
1407     struct server *server;
1408
1409     if (argc < 4)
1410         return 0;
1411     if (!(server = GetServerH(argv[1])))
1412         return 0;
1413
1414     if (server == self->uplink) {
1415         /* Force a reconnect to the currently selected server. */
1416         cManager.uplink->tries = 0;
1417         log_module(MAIN_LOG, LOG_INFO, "Squitting from uplink: %s", argv[3]);
1418         close_socket();
1419         return 1;
1420     }
1421
1422     DelServer(server, 0, argv[3]);
1423     return 1;
1424 }
1425
1426 static CMD_FUNC(cmd_privmsg)
1427 {
1428     struct privmsg_desc pd;
1429     if (argc != 3)
1430         return 0;
1431     pd.user = GetUserH(origin);
1432     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1433         return 1;
1434     pd.is_notice = 0;
1435     pd.text = argv[2];
1436     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1437     return 1;
1438 }
1439
1440 static CMD_FUNC(cmd_notice)
1441 {
1442     struct privmsg_desc pd;
1443     if (argc != 3)
1444         return 0;
1445     pd.user = GetUserH(origin);
1446     if (!pd.user || (IsGagged(pd.user) && !IsOper(pd.user)))
1447         return 1;
1448     pd.is_notice = 1;
1449     pd.text = argv[2];
1450     parse_foreach(argv[1], privmsg_chan_helper, NULL, privmsg_user_helper, privmsg_invalid, &pd);
1451     return 1;
1452 }
1453
1454 static CMD_FUNC(cmd_away)
1455 {
1456     struct userNode *uNode;
1457
1458     uNode = GetUserH(origin);
1459     if (!uNode)
1460         return 1;
1461     if (argc < 2)
1462         uNode->modes &= ~FLAGS_AWAY;
1463     else
1464         uNode->modes |= FLAGS_AWAY;
1465     return 1;
1466 }
1467
1468 static CMD_FUNC(cmd_gline)
1469 {
1470     time_t lastmod;
1471
1472     if (argc < 3)
1473         return 0;
1474     if (argv[2][0] == '+') {
1475         if (argc < 5)
1476             return 0;
1477         lastmod = (argc > 5) ? strtoul(argv[5], NULL, 0) : 0;
1478         gline_add(origin, argv[2]+1, strtoul(argv[3], NULL, 0), argv[argc-1], now, lastmod, 0);
1479         return 1;
1480     } else if (argv[2][0] == '-') {
1481         gline_remove(argv[2]+1, 0);
1482         return 1;
1483     } else
1484         return 0;
1485 }
1486
1487 static CMD_FUNC(cmd_svsnick)
1488 {
1489     struct userNode *target, *dest;
1490     if ((argc < 4)
1491         || !(target = GetUserN(argv[1]))
1492         || !IsLocal(target)
1493         || (dest = GetUserH(argv[2])))
1494         return 0;
1495     NickChange(target, argv[2], 0);
1496     return 1;
1497 }
1498
1499 static oper_func_t *of_list;
1500 static unsigned int of_size = 0, of_used = 0;
1501
1502 void
1503 free_user(struct userNode *user)
1504 {
1505     free(user->nick);
1506     free(user);
1507 }
1508
1509 static void
1510 parse_cleanup(void)
1511 {
1512     unsigned int nn;
1513     free(of_list);
1514     free(privmsg_funcs);
1515     free(notice_funcs);
1516     free(mcf_list);
1517     dict_delete(irc_func_dict);
1518     for (nn=0; nn<dead_users.used; nn++)
1519         free_user(dead_users.list[nn]);
1520     userList_clean(&dead_users);
1521 }
1522
1523 static void
1524 p10_conf_reload(void) {
1525     hidden_host_suffix = conf_get_data("server/hidden_host", RECDB_QSTRING);
1526 }
1527
1528 static void
1529 remove_unbursted_channel(struct chanNode *cNode) {
1530     if (unbursted_channels)
1531         dict_remove(unbursted_channels, cNode->name);
1532 }
1533
1534 void
1535 init_parse(void)
1536 {
1537     const char *str, *desc;
1538     int numnick, usermask, max_users;
1539     char numer[COMBO_NUMERIC_LEN+1];
1540
1541     /* read config items */
1542     str = conf_get_data("server/ping_freq", RECDB_QSTRING);
1543     ping_freq = str ? ParseInterval(str) : 120;
1544     str = conf_get_data("server/ping_timeout", RECDB_QSTRING);
1545     ping_timeout = str ? ParseInterval(str) : 30;
1546     str = conf_get_data("server/force_n2k", RECDB_QSTRING);
1547     force_n2k = str ? enabled_string(str) : 1;
1548     str = conf_get_data("server/numeric", RECDB_QSTRING);
1549     if (!str) {
1550         log_module(MAIN_LOG, LOG_ERROR, "No server/numeric entry in config file.");
1551         exit(1);
1552     }
1553     numnick = atoi(str);
1554     str = conf_get_data("server/max_users", RECDB_QSTRING);
1555     max_users = str ? atoi(str) : 4096;
1556     for (usermask = 4; usermask < max_users; usermask <<= 1) ;
1557     usermask--;
1558     if ((numnick < 64) && (usermask < 4096) && !force_n2k)
1559         inttobase64(numer, (numnick << 12) + (usermask & 0x00fff), 3);
1560     else
1561         inttobase64(numer, (numnick << 18) + (usermask & 0x3ffff), 5);
1562
1563     str = conf_get_data("server/his_servername", RECDB_QSTRING);
1564     his_servername = str ? strdup(str) : NULL;
1565     str = conf_get_data("server/his_servercomment", RECDB_QSTRING);
1566     his_servercomment = str ? strdup(str) : NULL;
1567
1568     str = conf_get_data("server/hostname", RECDB_QSTRING);
1569     desc = conf_get_data("server/description", RECDB_QSTRING);
1570     if (!str || !desc) {
1571         log_module(MAIN_LOG, LOG_ERROR, "No server/hostname entry in config file.");
1572         exit(1);
1573     }
1574     self = AddServer(NULL, str, 0, boot_time, now, numer, desc);
1575     conf_register_reload(p10_conf_reload);
1576
1577     irc_func_dict = dict_new();
1578     dict_insert(irc_func_dict, CMD_BURST, cmd_burst);
1579     dict_insert(irc_func_dict, TOK_BURST, cmd_burst);
1580     dict_insert(irc_func_dict, CMD_CREATE, cmd_create);
1581     dict_insert(irc_func_dict, TOK_CREATE, cmd_create);
1582     dict_insert(irc_func_dict, CMD_EOB, cmd_eob);
1583     dict_insert(irc_func_dict, TOK_EOB, cmd_eob);
1584     dict_insert(irc_func_dict, CMD_EOB_ACK, cmd_eob_ack);
1585     dict_insert(irc_func_dict, TOK_EOB_ACK, cmd_eob_ack);
1586     dict_insert(irc_func_dict, CMD_MODE, cmd_mode);
1587     dict_insert(irc_func_dict, TOK_MODE, cmd_mode);
1588     dict_insert(irc_func_dict, CMD_NICK, cmd_nick);
1589     dict_insert(irc_func_dict, TOK_NICK, cmd_nick);
1590     dict_insert(irc_func_dict, CMD_ACCOUNT, cmd_account);
1591     dict_insert(irc_func_dict, TOK_ACCOUNT, cmd_account);
1592     dict_insert(irc_func_dict, CMD_FAKEHOST, cmd_fakehost);
1593     dict_insert(irc_func_dict, TOK_FAKEHOST, cmd_fakehost);
1594     dict_insert(irc_func_dict, CMD_PASS, cmd_pass);
1595     dict_insert(irc_func_dict, TOK_PASS, cmd_pass);
1596     dict_insert(irc_func_dict, CMD_PING, cmd_ping);
1597     dict_insert(irc_func_dict, TOK_PING, cmd_ping);
1598     dict_insert(irc_func_dict, CMD_PRIVMSG, cmd_privmsg);
1599     dict_insert(irc_func_dict, TOK_PRIVMSG, cmd_privmsg);
1600     dict_insert(irc_func_dict, CMD_PONG, cmd_pong);
1601     dict_insert(irc_func_dict, TOK_PONG, cmd_pong);
1602     dict_insert(irc_func_dict, CMD_QUIT, cmd_quit);
1603     dict_insert(irc_func_dict, TOK_QUIT, cmd_quit);
1604     dict_insert(irc_func_dict, CMD_SERVER, cmd_server);
1605     dict_insert(irc_func_dict, TOK_SERVER, cmd_server);
1606     dict_insert(irc_func_dict, CMD_JOIN, cmd_join);
1607     dict_insert(irc_func_dict, TOK_JOIN, cmd_join);
1608     dict_insert(irc_func_dict, CMD_PART, cmd_part);
1609     dict_insert(irc_func_dict, TOK_PART, cmd_part);
1610     dict_insert(irc_func_dict, CMD_ERROR, cmd_error);
1611     dict_insert(irc_func_dict, TOK_ERROR, cmd_error);
1612     dict_insert(irc_func_dict, CMD_TOPIC, cmd_topic);
1613     dict_insert(irc_func_dict, TOK_TOPIC, cmd_topic);
1614     dict_insert(irc_func_dict, CMD_AWAY, cmd_away);
1615     dict_insert(irc_func_dict, TOK_AWAY, cmd_away);
1616     dict_insert(irc_func_dict, CMD_SILENCE, cmd_dummy);
1617     dict_insert(irc_func_dict, TOK_SILENCE, cmd_dummy);
1618     dict_insert(irc_func_dict, CMD_KICK, cmd_kick);
1619     dict_insert(irc_func_dict, TOK_KICK, cmd_kick);
1620     dict_insert(irc_func_dict, CMD_SQUIT, cmd_squit);
1621     dict_insert(irc_func_dict, TOK_SQUIT, cmd_squit);
1622     dict_insert(irc_func_dict, CMD_KILL, cmd_kill);
1623     dict_insert(irc_func_dict, TOK_KILL, cmd_kill);
1624     dict_insert(irc_func_dict, CMD_NOTICE, cmd_notice);
1625     dict_insert(irc_func_dict, TOK_NOTICE, cmd_notice);
1626     dict_insert(irc_func_dict, CMD_STATS, cmd_stats);
1627     dict_insert(irc_func_dict, TOK_STATS, cmd_stats);
1628     dict_insert(irc_func_dict, CMD_SVSNICK, cmd_svsnick);
1629     dict_insert(irc_func_dict, TOK_SVSNICK, cmd_svsnick);
1630     dict_insert(irc_func_dict, CMD_WHOIS, cmd_whois);
1631     dict_insert(irc_func_dict, TOK_WHOIS, cmd_whois);
1632     dict_insert(irc_func_dict, CMD_GLINE, cmd_gline);
1633     dict_insert(irc_func_dict, TOK_GLINE, cmd_gline);
1634     dict_insert(irc_func_dict, CMD_OPMODE, cmd_opmode);
1635     dict_insert(irc_func_dict, TOK_OPMODE, cmd_opmode);
1636     dict_insert(irc_func_dict, CMD_CLEARMODE, cmd_clearmode);
1637     dict_insert(irc_func_dict, TOK_CLEARMODE, cmd_clearmode);
1638     dict_insert(irc_func_dict, CMD_VERSION, cmd_version);
1639     dict_insert(irc_func_dict, TOK_VERSION, cmd_version);
1640     dict_insert(irc_func_dict, CMD_ADMIN, cmd_admin);
1641     dict_insert(irc_func_dict, TOK_ADMIN, cmd_admin);
1642
1643     /* In P10, DESTRUCT doesn't do anything except be broadcast to servers.
1644      * Apparently to obliterate channels from any servers that think they
1645      * exist?
1646      */
1647     dict_insert(irc_func_dict, CMD_DESTRUCT, cmd_dummy);
1648     dict_insert(irc_func_dict, TOK_DESTRUCT, cmd_dummy);
1649     /* Ignore invites */
1650     dict_insert(irc_func_dict, CMD_INVITE, cmd_dummy);
1651     dict_insert(irc_func_dict, TOK_INVITE, cmd_dummy);
1652     /* DESYNCH is just informational, so ignore it */
1653     dict_insert(irc_func_dict, CMD_DESYNCH, cmd_dummy);
1654     dict_insert(irc_func_dict, TOK_DESYNCH, cmd_dummy);
1655     /* Ignore channel operator notices. */
1656     dict_insert(irc_func_dict, CMD_WALLCHOPS, cmd_dummy);
1657     dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy);
1658     dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy);
1659     dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy);
1660     /* Ignore opers being silly. */
1661     dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy);
1662     dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy);
1663     /* We have reliable clock!  Always!  Wraaa! */
1664     dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy);
1665     dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy);
1666     /* handle topics */
1667     dict_insert(irc_func_dict, "331", cmd_num_topic);
1668     dict_insert(irc_func_dict, "332", cmd_num_topic);
1669     dict_insert(irc_func_dict, "333", cmd_num_topic);
1670     dict_insert(irc_func_dict, "345", cmd_dummy); /* blah has been invited to blah */
1671     dict_insert(irc_func_dict, "432", cmd_error_nick); /* Erroneus [sic] nickname */
1672     /* ban list resetting */
1673     /* "stats g" responses */
1674     dict_insert(irc_func_dict, "247", cmd_num_gline);
1675     dict_insert(irc_func_dict, "219", cmd_dummy); /* "End of /STATS report" */
1676     /* other numeric responses we might get */
1677     dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */
1678     dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */
1679     dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */
1680     dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */
1681     dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */
1682     dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */
1683     dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */
1684     dict_insert(irc_func_dict, "461", cmd_dummy); /* Not enough parameters (after TOPIC w/ 0 args) */
1685     dict_insert(irc_func_dict, "467", cmd_dummy); /* Channel key already set */
1686
1687     num_privmsg_funcs = 16;
1688     privmsg_funcs = malloc(sizeof(privmsg_func_t)*num_privmsg_funcs);
1689     memset(privmsg_funcs, 0, sizeof(privmsg_func_t)*num_privmsg_funcs);
1690
1691     num_notice_funcs = 16;
1692     notice_funcs = malloc(sizeof(privmsg_func_t)*num_notice_funcs);
1693     memset(notice_funcs, 0, sizeof(privmsg_func_t)*num_notice_funcs);
1694
1695     userList_init(&dead_users);
1696     reg_del_channel_func(remove_unbursted_channel);
1697     reg_exit_func(parse_cleanup);
1698 }
1699
1700 int
1701 parse_line(char *line, int recursive)
1702 {
1703     char *argv[MAXNUMPARAMS], *origin;
1704     int argc, cmd, res=0;
1705     cmd_func_t *func;
1706
1707     argc = split_line(line, true, MAXNUMPARAMS, argv);
1708     cmd = self->uplink || !argv[0][1] || !argv[0][2];
1709     if (argc > cmd) {
1710         if (cmd) {
1711             if (argv[0][0] == ':') {
1712                 origin = argv[0]+1;
1713             } else if (!argv[0][1] || !argv[0][2]) {
1714                 struct server *sNode = GetServerN(argv[0]);
1715                 origin = sNode ? sNode->name : 0;
1716             } else {
1717                 struct userNode *uNode = GetUserN(argv[0]);
1718                 origin = uNode ? uNode->nick : 0;
1719             }
1720         } else
1721             origin = 0;
1722         if ((func = dict_find(irc_func_dict, argv[cmd], NULL)))
1723             res = func(origin, argc-cmd, argv+cmd);
1724     }
1725     if (!res) {
1726         log_module(MAIN_LOG, LOG_ERROR, "PARSE ERROR on line: %s", unsplit_string(argv, argc, NULL));
1727     } else if (!recursive) {
1728         unsigned int i;
1729         for (i=0; i<dead_users.used; i++)
1730             free_user(dead_users.list[i]);
1731         dead_users.used = 0;
1732     }
1733     return res;
1734 }
1735
1736 static void
1737 parse_foreach(char *target_list, foreach_chanfunc cf, foreach_nonchan nc, foreach_userfunc uf, foreach_nonuser nu, void *data)
1738 {
1739     char *j, old;
1740
1741     do {
1742         j = target_list;
1743         while (*j != 0 && *j != ',')
1744             j++;
1745         old = *j;
1746         *j = 0;
1747
1748         if (IsChannelName(target_list)
1749             || (target_list[0] == '0' && target_list[1] == '\0')) {
1750             struct chanNode *chan = GetChannel(target_list);
1751
1752             if (chan) {
1753                 if (cf)
1754                     cf(chan, data);
1755             } else {
1756                 if (nc)
1757                     nc(target_list, data);
1758             }
1759         } else {
1760             struct userNode *user;
1761             struct privmsg_desc *pd = data;
1762
1763             pd->is_qualified = 0;
1764             if (*target_list == '@') {
1765                 user = NULL;
1766             } else if (strchr(target_list, '@')) {
1767                 struct server *server;
1768
1769                 pd->is_qualified = 1;
1770                 user = GetUserH(strtok(target_list, "@"));
1771                 server = GetServerH(strtok(NULL, "@"));
1772
1773                 if (user && (user->uplink != server)) {
1774                     /* Don't attempt to index into any arrays
1775                        using a user's numeric on another server. */
1776                     user = NULL;
1777                 }
1778             } else {
1779                 user = GetUserN(target_list);
1780             }
1781
1782             if (user) {
1783                 if (uf)
1784                     uf(user, data);
1785             } else {
1786                 if (nu)
1787                     nu(target_list, data);
1788             }
1789         }
1790         target_list = j+1;
1791     } while (old == ',');
1792 }
1793
1794 static int
1795 get_local_numeric(void)
1796 {
1797     static unsigned int next_numeric = 0;
1798     if (self->clients > self->num_mask)
1799         return -1;
1800     while (self->users[next_numeric])
1801         if (++next_numeric > self->num_mask)
1802             next_numeric = 0;
1803     return next_numeric;
1804 }
1805
1806 static void
1807 make_numeric(struct server *svr, int local_num, char *outbuf)
1808 {
1809     int slen, llen;
1810
1811     if (force_n2k || svr->numeric[1]) {
1812         slen = 2;
1813         llen = 3;
1814     } else {
1815         slen = 1;
1816         llen = (local_num < 64*64) ? 2 : 3;
1817     }
1818     strncpy(outbuf, svr->numeric, slen);
1819     inttobase64(outbuf+slen, local_num, llen);
1820     outbuf[slen+llen] = 0;
1821 }
1822
1823 struct server *
1824 AddServer(struct server *uplink, const char *name, int hops, time_t boot, time_t link, const char *numeric, const char *description)
1825 {
1826     struct server* sNode;
1827     int slen, mlen;
1828
1829     if ((sNode = GetServerN(numeric))) {
1830         /* This means we're trying to re-add an existant server.
1831          * To be safe, we should forget the previous incarnation.
1832          * (And all its linked servers.)
1833          *
1834          * It usually only happens in replays when the original
1835          * had a ping timeout and the replay didn't (because
1836          * replaying a ping timeout invariably gets things wrong).
1837          */
1838         DelServer(sNode, 0, NULL);
1839     }
1840
1841     switch (strlen(numeric)) {
1842     case 5: slen = 2; mlen = 3; break;
1843     case 4: slen = 1; mlen = 3; break;
1844     case 3: slen = 1; mlen = 2; break;
1845     default:
1846         log_module(MAIN_LOG, LOG_ERROR, "AddServer(\"%s\", \"%s\", ...): Numeric %s has invalid length.", uplink->name, name, numeric);
1847         return NULL;
1848     }
1849
1850     sNode = calloc(1, sizeof(*sNode));
1851     sNode->uplink = uplink;
1852     safestrncpy(sNode->name, name, sizeof(sNode->name));
1853     sNode->num_mask = base64toint(numeric+slen, mlen);
1854     sNode->hops = hops;
1855     sNode->boot = boot;
1856     sNode->link = link;
1857     strncpy(sNode->numeric, numeric, slen);
1858     safestrncpy(sNode->description, description, sizeof(sNode->description));
1859     sNode->users = calloc(sNode->num_mask+1, sizeof(*sNode->users));
1860     serverList_init(&sNode->children);
1861     if (sNode->uplink) {
1862         /* uplink may be NULL if we're just building ourself */
1863         serverList_append(&sNode->uplink->children, sNode);
1864     }
1865     servers_num[base64toint(numeric, slen)] = sNode;
1866     dict_insert(servers, sNode->name, sNode);
1867     return sNode;
1868 }
1869
1870 void DelServer(struct server* serv, int announce, const char *message)
1871 {
1872     unsigned int i;
1873
1874     /* If we receive an ERROR command before the SERVER
1875      * command a NULL server can be passed */
1876     if (!serv)
1877         return;
1878
1879     /* Hrm, what's the right way to SQUIT some other server?
1880      * (This code is only to handle killing juped servers.) */
1881     if (announce && (serv->uplink == self) && (serv != self->uplink))
1882         irc_squit(serv, message, NULL);
1883
1884     /* must recursively remove servers linked to this one first */
1885     for (i=serv->children.used;i>0;)
1886         if (serv->children.list[--i] != self)
1887             DelServer(serv->children.list[i], false, NULL);
1888
1889     /* clean up server's user hash tables */
1890     for (i=0;i<=serv->num_mask;i++)
1891         if (serv->users[i])
1892             DelUser(serv->users[i], NULL, false, "server delinked");
1893
1894     /* delete server */
1895     if (serv->uplink)
1896         serverList_remove(&serv->uplink->children, serv);
1897     if (serv == self->uplink)
1898         self->uplink = NULL;
1899     servers_num[base64toint(serv->numeric, strlen(serv->numeric))] = NULL;
1900     dict_remove(servers, serv->name);
1901     serverList_clean(&serv->children);
1902     free(serv->users);
1903     free(serv);
1904 }
1905
1906 struct userNode *
1907 AddService(const char *nick, const char *modes, const char *desc, const char *hostname)
1908 {
1909     char numeric[COMBO_NUMERIC_LEN+1];
1910     int local_num = get_local_numeric();
1911     time_t timestamp = now;
1912     struct userNode *old_user = GetUserH(nick);
1913
1914     if (old_user) {
1915         if (IsLocal(old_user))
1916             return old_user;
1917         timestamp = old_user->timestamp - 1;
1918     }
1919     if (local_num == -1) {
1920         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for service %s", nick);
1921         return 0;
1922     }
1923     if (!hostname)
1924         hostname = self->name;
1925     make_numeric(self, local_num, numeric);
1926     return AddUser(self, nick, nick, hostname, modes ? modes : "+oik", numeric, desc, now, "AAAAAA");
1927 }
1928
1929 struct userNode *
1930 AddClone(const char *nick, const char *ident, const char *hostname, const char *desc)
1931 {
1932     char numeric[COMBO_NUMERIC_LEN+1];
1933     int local_num = get_local_numeric();
1934     time_t timestamp = now;
1935     struct userNode *old_user = GetUserH(nick);
1936
1937     if (old_user) {
1938         if (IsLocal(old_user))
1939             return old_user;
1940         timestamp = old_user->timestamp - 1;
1941     }
1942     if (local_num == -1) {
1943         log_module(MAIN_LOG, LOG_ERROR, "Unable to allocate numnick for clone %s", nick);
1944         return 0;
1945     }
1946     make_numeric(self, local_num, numeric);
1947     return AddUser(self, nick, ident, hostname, "+i", numeric, desc, timestamp, "AAAAAA");
1948 }
1949
1950 int
1951 is_valid_nick(const char *nick) {
1952     unsigned int ii;
1953     /* IRC has some of The Most Fucked-Up ideas about character sets
1954      * in the world.. */
1955     if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick))
1956         return 0;
1957     for (ii = 0; nick[ii]; ++ii)
1958         if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii]))
1959             return 0;
1960     if (strlen(nick) > nicklen)
1961         return 0;
1962     return 1;
1963 }
1964
1965 static struct userNode*
1966 AddUser(struct server* uplink, const char *nick, const char *ident, const char *hostname, const char *modes, const char *numeric, const char *userinfo, time_t timestamp, const char *realip)
1967 {
1968     struct userNode *oldUser, *uNode;
1969     unsigned int n, ignore_user;
1970
1971     if ((strlen(numeric) < 3) || (strlen(numeric) > 5)) {
1972         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): numeric %s wrong length!", uplink, nick, numeric);
1973         return NULL;
1974     }
1975
1976     if (!uplink) {
1977         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s doesn't exist!", uplink, nick, numeric);
1978         return NULL;
1979     }
1980
1981     if (uplink != GetServerN(numeric)) {
1982         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): server for numeric %s differs from nominal uplink %s.", uplink, nick, numeric, uplink->name);
1983         return NULL;
1984     }
1985
1986     if (!is_valid_nick(nick)) {
1987         log_module(MAIN_LOG, LOG_WARNING, "AddUser(%p, %s, ...): invalid nickname detected.", uplink, nick);
1988         return NULL;
1989     }
1990
1991     ignore_user = 0;
1992     if ((oldUser = GetUserH(nick))) {
1993         if (IsLocal(oldUser) && (IsService(oldUser) || IsPersistent(oldUser))) {
1994             /* The service should collide the new user off. */
1995             oldUser->timestamp = timestamp - 1;
1996             irc_user(oldUser);
1997         }
1998         if (oldUser->timestamp > timestamp) {
1999             /* "Old" user is really newer; remove them */
2000             DelUser(oldUser, 0, 1, "Overruled by older nick");
2001         } else {
2002             /* User being added is too new; do not add them to
2003              * clients, but do add them to the server's list, since it
2004              * will send a KILL and QUIT soon. */
2005             ignore_user = 1;
2006         }
2007     }
2008
2009     /* create new usernode and set all values */
2010     uNode = calloc(1, sizeof(*uNode));
2011     uNode->nick = strdup(nick);
2012     safestrncpy(uNode->ident, ident, sizeof(uNode->ident));
2013     safestrncpy(uNode->info, userinfo, sizeof(uNode->info));
2014     safestrncpy(uNode->hostname, hostname, sizeof(uNode->hostname));
2015     safestrncpy(uNode->numeric, numeric, sizeof(uNode->numeric));
2016     irc_p10_pton(&uNode->ip, realip);
2017     uNode->timestamp = timestamp;
2018     modeList_init(&uNode->channels);
2019     uNode->uplink = uplink;
2020     if (++uNode->uplink->clients > uNode->uplink->max_clients) {
2021         uNode->uplink->max_clients = uNode->uplink->clients;
2022     }
2023     uNode->num_local = base64toint(numeric+strlen(uNode->uplink->numeric), 3) & uNode->uplink->num_mask;
2024     uNode->uplink->users[uNode->num_local] = uNode;
2025     mod_usermode(uNode, modes);
2026     if (ignore_user)
2027         return uNode;
2028
2029     dict_insert(clients, uNode->nick, uNode);
2030     if (dict_size(clients) > max_clients) {
2031         max_clients = dict_size(clients);
2032         max_clients_time = now;
2033     }
2034     if (IsLocal(uNode))
2035         irc_user(uNode);
2036     for (n=0; n<nuf_used; n++)
2037         if (nuf_list[n](uNode))
2038             break;
2039     return uNode;
2040 }
2041
2042 /* removes user from it's server's hash table and nick hash table */
2043 void
2044 DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why)
2045 {
2046     unsigned int n;
2047
2048     verify(user);
2049
2050     /* mark them as dead, in case anybody cares */
2051     user->dead = 1;
2052
2053     /* remove user from all channels */
2054     while (user->channels.used > 0)
2055         DelChannelUser(user, user->channels.list[user->channels.used-1]->channel, NULL, false);
2056
2057     /* Call these in reverse order so ChanServ can update presence
2058        information before NickServ nukes the handle_info. */
2059     for (n = duf_used; n > 0; )
2060         duf_list[--n](user, killer, why);
2061
2062     user->uplink->clients--;
2063     user->uplink->users[user->num_local] = NULL;
2064     if (IsOper(user))
2065         userList_remove(&curr_opers, user);
2066     /* remove from global dictionary, but not if after a collide */
2067     if (user == dict_find(clients, user->nick, NULL))
2068         dict_remove(clients, user->nick);
2069
2070     if (IsInvisible(user))
2071         invis_clients--;
2072
2073     if (announce) {
2074         if (IsLocal(user))
2075             irc_quit(user, why);
2076         else
2077             irc_kill(killer, user, why);
2078     }
2079
2080     modeList_clean(&user->channels);
2081     /* We don't free them, in case we try to privmsg them or something
2082      * (like when a stupid oper kills themself).  We just put them onto
2083      * a list of clients that get freed after processing each line.
2084      */
2085     if (dead_users.size)
2086         userList_append(&dead_users, user);
2087     else
2088         free_user(user);
2089 }
2090
2091 static void call_oper_funcs(struct userNode *user);
2092
2093 void mod_usermode(struct userNode *user, const char *mode_change) {
2094     int add = 1;
2095     const char *word = mode_change;
2096
2097     if (!user || !mode_change)
2098         return;
2099     while (*word != ' ' && *word) word++;
2100     while (*word == ' ') word++;
2101     while (1) {
2102 #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0)
2103         switch (*mode_change++) {
2104         case 0: case ' ': return;
2105         case '+': add = 1; break;
2106         case '-': add = 0; break;
2107         case 'o':
2108             do_user_mode(FLAGS_OPER);
2109             if (add) {
2110                 userList_append(&curr_opers, user);
2111                 call_oper_funcs(user);
2112             } else {
2113                 userList_remove(&curr_opers, user);
2114             }
2115             break;
2116         case 'O': do_user_mode(FLAGS_LOCOP); break;
2117         case 'i': do_user_mode(FLAGS_INVISIBLE);
2118             if (add)
2119                 invis_clients++;
2120             else
2121                 invis_clients--;
2122             break;
2123         case 'w': do_user_mode(FLAGS_WALLOP); break;
2124         case 's': do_user_mode(FLAGS_SERVNOTICE); break;
2125         case 'd': do_user_mode(FLAGS_DEAF); break;
2126         case 'k': do_user_mode(FLAGS_SERVICE); break;
2127         case 'g': do_user_mode(FLAGS_GLOBAL); break;
2128         case 'h': do_user_mode(FLAGS_HELPER); break;
2129         case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break;
2130         case 'r':
2131             if (*word) {
2132                 char tag[MAXLEN];
2133                 unsigned int ii;
2134                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2135                     tag[ii++] = *word++;
2136                 tag[ii] = 0;
2137                 while (*word == ' ')
2138                     word++;
2139                 call_account_func(user, tag);
2140             }
2141             break;
2142         case 'f':
2143             if (*word) {
2144                 char host[MAXLEN];
2145                 unsigned int ii;
2146                 for (ii=0; (*word != ' ') && (*word != '\0'); )
2147                     host[ii++] = *word++;
2148                 host[ii] = 0;
2149                 while (*word == ' ')
2150                     word++;
2151                 assign_fakehost(user, host, 0);
2152             }
2153             break;
2154         }
2155 #undef do_user_mode
2156     }
2157 }
2158
2159 struct mod_chanmode *
2160 mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, unsigned int flags, short base_oplevel)
2161 {
2162     struct mod_chanmode *change;
2163     unsigned int ii, in_arg, ch_arg, add;
2164
2165     if (argc == 0)
2166         return NULL;
2167     if (!(change = mod_chanmode_alloc(argc - 1)))
2168         return NULL;
2169
2170     for (ii = ch_arg = 0, in_arg = add = 1;
2171          (modes[0][ii] != '\0') && (modes[0][ii] != ' ');
2172          ++ii) {
2173         switch (modes[0][ii]) {
2174         case '+':
2175             add = 1;
2176             break;
2177         case '-':
2178             add = 0;
2179             break;
2180 #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)
2181         case 'C': do_chan_mode(MODE_NOCTCPS); break;
2182         case 'D': do_chan_mode(MODE_DELAYJOINS); break;
2183         case 'c': do_chan_mode(MODE_NOCOLORS); break;
2184         case 'i': do_chan_mode(MODE_INVITEONLY); break;
2185         case 'm': do_chan_mode(MODE_MODERATED); break;
2186         case 'n': do_chan_mode(MODE_NOPRIVMSGS); break;
2187         case 'p': do_chan_mode(MODE_PRIVATE); break;
2188         case 'r': do_chan_mode(MODE_REGONLY); break;
2189         case 's': do_chan_mode(MODE_SECRET); break;
2190         case 't': do_chan_mode(MODE_TOPICLIMIT); break;
2191         case 'z':
2192           if (!(flags & MCP_REGISTERED)) {
2193            do_chan_mode(MODE_REGISTERED);
2194           } else {
2195            mod_chanmode_free(change);
2196            return NULL;
2197           }
2198           break;
2199 #undef do_chan_mode
2200         case 'l':
2201             if (add) {
2202                 if (in_arg >= argc)
2203                     goto error;
2204                 change->modes_set |= MODE_LIMIT;
2205                 change->new_limit = atoi(modes[in_arg++]);
2206             } else {
2207                 change->modes_set &= ~MODE_LIMIT;
2208                 change->modes_clear |= MODE_LIMIT;
2209             }
2210             break;
2211         case 'k':
2212             if (add) {
2213                 if (in_arg >= argc)
2214                     goto error;
2215                 change->modes_set |= MODE_KEY;
2216                 safestrncpy(change->new_key, modes[in_arg++], sizeof(change->new_key));
2217             } else {
2218                 change->modes_clear |= MODE_KEY;
2219                 if (!(flags & MCP_KEY_FREE)) {
2220                     if (in_arg >= argc)
2221                         goto error;
2222                     in_arg++;
2223                 }
2224             }
2225             break;
2226         case 'U':
2227             if (add)
2228             {
2229               if (in_arg >= argc)
2230                   goto error;
2231               change->modes_set |= MODE_UPASS;
2232               safestrncpy(change->new_upass, modes[in_arg++], sizeof(change->new_upass));
2233             } else {
2234                 change->modes_clear |= MODE_UPASS;
2235                 if (!(flags & MCP_UPASS_FREE)) {
2236                     if (in_arg >= argc)
2237                         goto error;
2238                     in_arg++;
2239                 }
2240             }
2241             break;
2242         case 'A':
2243             if (add) {
2244                 if (in_arg >= argc)
2245                     goto error;
2246                 change->modes_set |= MODE_APASS;
2247                 safestrncpy(change->new_apass, modes[in_arg++], sizeof(change->new_apass));
2248             } else {
2249                 change->modes_clear |= MODE_APASS;
2250                 if (!(flags & MCP_APASS_FREE)) {
2251                     if (in_arg >= argc)
2252                       goto error;
2253                     in_arg++;
2254                 }
2255             }
2256             break;
2257         case 'b':
2258             if (!(flags & MCP_ALLOW_OVB))
2259                 goto error;
2260             if (in_arg >= argc)
2261                 goto error;
2262             change->args[ch_arg].mode = MODE_BAN;
2263             if (!add)
2264                 change->args[ch_arg].mode |= MODE_REMOVE;
2265             change->args[ch_arg++].u.hostmask = modes[in_arg++];
2266             break;
2267         case 'o': case 'v':
2268         {
2269             struct userNode *victim;
2270             char *oplevel_str;
2271             int oplevel;
2272
2273             if (in_arg >= argc)
2274                 goto error;
2275             oplevel_str = strchr(modes[in_arg], ':');
2276             if (oplevel_str)
2277             {
2278                 /* XXYYY M #channel +o XXYYY:<oplevel> */
2279                 *oplevel_str++ = '\0';
2280                 oplevel = parse_oplevel(oplevel_str);
2281                 if (oplevel <= base_oplevel && !(flags & MCP_FROM_SERVER))
2282                     oplevel = base_oplevel + 1;
2283             }
2284             else if (channel->modes & MODE_UPASS)
2285                 oplevel = base_oplevel + 1;
2286             else
2287                 oplevel = -1;
2288
2289             /* Check that oplevel is within bounds. */
2290             if (oplevel > MAXOPLEVEL)
2291                 oplevel = MAXOPLEVEL;
2292
2293             if (!(flags & MCP_ALLOW_OVB))
2294                 goto error;
2295             if (in_arg >= argc)
2296                 goto error;
2297             change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE;
2298             if (!add)
2299                 change->args[ch_arg].mode |= MODE_REMOVE;
2300             if (flags & MCP_FROM_SERVER)
2301                 victim = GetUserN(modes[in_arg++]);
2302             else
2303                 victim = GetUserH(modes[in_arg++]);
2304             if (!victim)
2305                 continue;
2306             if ((change->args[ch_arg].u.member = GetUserMode(channel, victim)))
2307             {
2308                 /* Apply the oplevel change */
2309                 change->args[ch_arg].u.member->oplevel = oplevel;
2310                 ch_arg++;
2311             }
2312             break;
2313         }
2314         default:
2315             if (!(flags & MCP_FROM_SERVER))
2316                 goto error;
2317             break;
2318         }
2319     }
2320     change->argc = ch_arg; /* in case any turned out to be ignored */
2321     if (change->modes_set & MODE_SECRET) {
2322         change->modes_set &= ~(MODE_PRIVATE);
2323         change->modes_clear |= MODE_PRIVATE;
2324     } else if (change->modes_set & MODE_PRIVATE) {
2325         change->modes_set &= ~(MODE_SECRET);
2326         change->modes_clear |= MODE_SECRET;
2327     }
2328     return change;
2329   error:
2330     mod_chanmode_free(change);
2331     return NULL;
2332 }
2333
2334 struct chanmode_buffer {
2335     char modes[MAXLEN];
2336     char args[MAXLEN];
2337     struct chanNode *channel;
2338     struct userNode *actor;
2339     unsigned int modes_used;
2340     unsigned int args_used;
2341     size_t chname_len;
2342     unsigned int is_add : 1;
2343     unsigned int is_chanop : 1;
2344 };
2345
2346 static void
2347 mod_chanmode_append(struct chanmode_buffer *buf, char ch, const char *arg)
2348 {
2349     size_t arg_len = strlen(arg);
2350     if (buf->modes_used > (MAXMODEPARAMS) ||
2351         buf->modes_used + buf->args_used + buf->chname_len + arg_len > 450) {
2352         memcpy(buf->modes + buf->modes_used, buf->args, buf->args_used);
2353         buf->modes[buf->modes_used + buf->args_used] = '\0';
2354         irc_mode((buf->is_chanop ? buf->actor : NULL), buf->channel, buf->modes);
2355         buf->modes[0] = buf->is_add ? '+' : '-';
2356         buf->modes_used = 1;
2357         buf->args_used = 0;
2358     }
2359     buf->modes[buf->modes_used++] = ch;
2360     buf->args[buf->args_used++] = ' ';
2361     memcpy(buf->args + buf->args_used, arg, arg_len);
2362     buf->args_used += arg_len;
2363 }
2364
2365 void
2366 mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod_chanmode *change)
2367 {
2368     struct chanmode_buffer chbuf;
2369     unsigned int arg;
2370     struct modeNode *mn;
2371     char int_buff[32], mode = '\0';
2372
2373     assert(change->argc <= change->alloc_argc);
2374     memset(&chbuf, 0, sizeof(chbuf));
2375     chbuf.channel = channel;
2376     chbuf.actor = who;
2377     chbuf.chname_len = strlen(channel->name);
2378
2379     mn = GetUserMode(channel, who);
2380     if ((mn && (mn->modes & MODE_CHANOP)) || off_channel)
2381         chbuf.is_chanop = 1;
2382
2383     /* First remove modes */
2384     chbuf.is_add = 0;
2385     if (change->modes_clear) {
2386         if (mode != '-')
2387             chbuf.modes[chbuf.modes_used++] = mode = '-';
2388 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2389         DO_MODE_CHAR(PRIVATE, 'p');
2390         DO_MODE_CHAR(SECRET, 's');
2391         DO_MODE_CHAR(MODERATED, 'm');
2392         DO_MODE_CHAR(TOPICLIMIT, 't');
2393         DO_MODE_CHAR(INVITEONLY, 'i');
2394         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2395         DO_MODE_CHAR(LIMIT, 'l');
2396         DO_MODE_CHAR(DELAYJOINS, 'D');
2397         DO_MODE_CHAR(REGONLY, 'r');
2398         DO_MODE_CHAR(NOCOLORS, 'c');
2399         DO_MODE_CHAR(NOCTCPS, 'C');
2400         DO_MODE_CHAR(REGISTERED, 'z');
2401 #undef DO_MODE_CHAR
2402         if (change->modes_clear & channel->modes & MODE_KEY)
2403             mod_chanmode_append(&chbuf, 'k', channel->key);
2404         if (change->modes_clear & channel->modes & MODE_UPASS)
2405             mod_chanmode_append(&chbuf, 'U', channel->upass);
2406         if (change->modes_clear * channel->modes & MODE_APASS)
2407             mod_chanmode_append(&chbuf, 'A', channel->apass);
2408     }
2409     for (arg = 0; arg < change->argc; ++arg) {
2410         if (!(change->args[arg].mode & MODE_REMOVE))
2411             continue;
2412         if (mode != '-')
2413             chbuf.modes[chbuf.modes_used++] = mode = '-';
2414         switch (change->args[arg].mode & ~MODE_REMOVE) {
2415         case MODE_BAN:
2416             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2417             break;
2418         default:
2419             if (change->args[arg].mode & MODE_CHANOP)
2420                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2421             if (change->args[arg].mode & MODE_VOICE)
2422                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2423             break;
2424         }
2425     }
2426
2427     /* Then set them */
2428     chbuf.is_add = 1;
2429     if (change->modes_set) {
2430         if (mode != '+')
2431             chbuf.modes[chbuf.modes_used++] = mode = '+';
2432 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) chbuf.modes[chbuf.modes_used++] = CHAR
2433         DO_MODE_CHAR(PRIVATE, 'p');
2434         DO_MODE_CHAR(SECRET, 's');
2435         DO_MODE_CHAR(MODERATED, 'm');
2436         DO_MODE_CHAR(TOPICLIMIT, 't');
2437         DO_MODE_CHAR(INVITEONLY, 'i');
2438         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2439         DO_MODE_CHAR(DELAYJOINS, 'D');
2440         DO_MODE_CHAR(REGONLY, 'r');
2441         DO_MODE_CHAR(NOCOLORS, 'c');
2442         DO_MODE_CHAR(NOCTCPS, 'C');
2443         DO_MODE_CHAR(REGISTERED, 'z');
2444 #undef DO_MODE_CHAR
2445         if(change->modes_set & MODE_KEY)
2446             mod_chanmode_append(&chbuf, 'k', change->new_key);
2447         if (change->modes_set & MODE_UPASS)
2448             mod_chanmode_append(&chbuf, 'U', change->new_upass);
2449         if (change->modes_set & MODE_APASS)
2450             mod_chanmode_append(&chbuf, 'A', change->new_apass);
2451         if(change->modes_set & MODE_LIMIT) {
2452             sprintf(int_buff, "%d", change->new_limit);
2453             mod_chanmode_append(&chbuf, 'l', int_buff);
2454         }
2455     }
2456     for (arg = 0; arg < change->argc; ++arg) {
2457         if (change->args[arg].mode & MODE_REMOVE)
2458             continue;
2459         if (mode != '+')
2460             chbuf.modes[chbuf.modes_used++] = mode = '+';
2461         switch (change->args[arg].mode) {
2462         case MODE_BAN:
2463             mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask);
2464             break;
2465         default:
2466             if (change->args[arg].mode & MODE_CHANOP)
2467                 mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric);
2468             if (change->args[arg].mode & MODE_VOICE)
2469                 mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric);
2470             break;
2471         }
2472     }
2473
2474     /* Flush the buffer and apply changes locally */
2475     if (chbuf.modes_used > 0) {
2476         memcpy(chbuf.modes + chbuf.modes_used, chbuf.args, chbuf.args_used);
2477         chbuf.modes[chbuf.modes_used + chbuf.args_used] = '\0';
2478         irc_mode((chbuf.is_chanop ? chbuf.actor : NULL), chbuf.channel, chbuf.modes);
2479     }
2480     mod_chanmode_apply(who, channel, change);
2481 }
2482
2483 char *
2484 mod_chanmode_format(struct mod_chanmode *change, char *outbuff)
2485 {
2486     unsigned int used = 0;
2487     assert(change->argc <= change->alloc_argc);
2488     if (change->modes_clear) {
2489         outbuff[used++] = '-';
2490 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_clear & MODE_##BIT) outbuff[used++] = CHAR
2491         DO_MODE_CHAR(PRIVATE, 'p');
2492         DO_MODE_CHAR(SECRET, 's');
2493         DO_MODE_CHAR(MODERATED, 'm');
2494         DO_MODE_CHAR(TOPICLIMIT, 't');
2495         DO_MODE_CHAR(INVITEONLY, 'i');
2496         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2497         DO_MODE_CHAR(LIMIT, 'l');
2498         DO_MODE_CHAR(KEY, 'k');
2499         DO_MODE_CHAR(UPASS, 'U');
2500         DO_MODE_CHAR(APASS, 'A');
2501         DO_MODE_CHAR(DELAYJOINS, 'D');
2502         DO_MODE_CHAR(REGONLY, 'r');
2503         DO_MODE_CHAR(NOCOLORS, 'c');
2504         DO_MODE_CHAR(NOCTCPS, 'C');
2505         DO_MODE_CHAR(REGISTERED, 'z');
2506 #undef DO_MODE_CHAR
2507     }
2508     if (change->modes_set) {
2509         outbuff[used++] = '+';
2510 #define DO_MODE_CHAR(BIT, CHAR) if (change->modes_set & MODE_##BIT) outbuff[used++] = CHAR
2511         DO_MODE_CHAR(PRIVATE, 'p');
2512         DO_MODE_CHAR(SECRET, 's');
2513         DO_MODE_CHAR(MODERATED, 'm');
2514         DO_MODE_CHAR(TOPICLIMIT, 't');
2515         DO_MODE_CHAR(INVITEONLY, 'i');
2516         DO_MODE_CHAR(NOPRIVMSGS, 'n');
2517         DO_MODE_CHAR(DELAYJOINS, 'D');
2518         DO_MODE_CHAR(REGONLY, 'r');
2519         DO_MODE_CHAR(NOCOLORS, 'c');
2520         DO_MODE_CHAR(NOCTCPS, 'C');
2521         DO_MODE_CHAR(REGISTERED, 'z');
2522 #undef DO_MODE_CHAR
2523         switch (change->modes_set & (MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS)) {
2524         /* Doing this implementation has been a pain in the arse, I hope I didn't forget a possible combination */
2525         case MODE_KEY|MODE_LIMIT|MODE_APASS|MODE_UPASS:
2526             used += sprintf(outbuff+used, "lkAU %d %s %s %s", change->new_limit, change->new_key, change->new_apass, change->new_upass);
2527             break;
2528
2529         case MODE_KEY|MODE_LIMIT|MODE_APASS:
2530             used += sprintf(outbuff+used, "lkA %d %s %s", change->new_limit, change->new_key, change->new_apass);
2531             break;
2532         case MODE_KEY|MODE_LIMIT|MODE_UPASS:
2533             used += sprintf(outbuff+used, "lkU %d %s %s", change->new_limit, change->new_key, change->new_upass);
2534             break;
2535         case MODE_KEY|MODE_APASS|MODE_UPASS:
2536             used += sprintf(outbuff+used, "kAU %s %s %s", change->new_key, change->new_apass, change->new_upass);
2537             break;
2538
2539         case MODE_KEY|MODE_APASS:
2540             used += sprintf(outbuff+used, "kA %s %s", change->new_key, change->new_apass);
2541             break;
2542         case MODE_KEY|MODE_UPASS:
2543             used += sprintf(outbuff+used, "kU %s %s", change->new_key, change->new_upass);
2544             break;
2545         case MODE_KEY|MODE_LIMIT:
2546             used += sprintf(outbuff+used, "lk %d %s", change->new_limit, change->new_key);
2547             break;
2548         case MODE_LIMIT|MODE_UPASS:
2549             used += sprintf(outbuff+used, "lU %d %s", change->new_limit, change->new_upass);
2550             break;
2551         case MODE_LIMIT|MODE_APASS:
2552             used += sprintf(outbuff+used, "lA %d %s", change->new_limit, change->new_apass);
2553             break;
2554         case MODE_APASS|MODE_UPASS:
2555             used += sprintf(outbuff+used, "AU %s %s", change->new_apass, change->new_upass);
2556             break;
2557
2558         case MODE_LIMIT|MODE_APASS|MODE_UPASS:
2559             used += sprintf(outbuff+used, "lAU %d %s %s", change->new_limit, change->new_apass, change->new_upass);
2560             break;
2561
2562         case MODE_APASS:
2563             used += sprintf(outbuff+used, "A %s", change->new_apass);
2564             break;
2565         case MODE_UPASS:
2566             used += sprintf(outbuff+used, "U %s", change->new_upass);
2567             break;
2568         case MODE_KEY:
2569             used += sprintf(outbuff+used, "k %s", change->new_key);
2570             break;
2571         case MODE_LIMIT:
2572             used += sprintf(outbuff+used, "l %d", change->new_limit);
2573             break;
2574         }
2575     }
2576     outbuff[used] = 0;
2577     return outbuff;
2578 }
2579
2580 static int
2581 clear_chanmode(struct chanNode *channel, const char *modes)
2582 {
2583     unsigned int remove;
2584
2585     for (remove = 0; *modes; modes++) {
2586         switch (*modes) {
2587         case 'o': remove |= MODE_CHANOP; break;
2588         case 'v': remove |= MODE_VOICE; break;
2589         case 'p': remove |= MODE_PRIVATE; break;
2590         case 's': remove |= MODE_SECRET; break;
2591         case 'm': remove |= MODE_MODERATED; break;
2592         case 't': remove |= MODE_TOPICLIMIT; break;
2593         case 'i': remove |= MODE_INVITEONLY; break;
2594         case 'n': remove |= MODE_NOPRIVMSGS; break;
2595         case 'k':
2596             remove |= MODE_KEY;
2597             channel->key[0] = '\0';
2598             break;
2599         case 'A':
2600             remove |= MODE_APASS;
2601             channel->apass[0] = '\0';
2602             break;
2603         case 'U':
2604             remove |= MODE_UPASS;
2605             channel->upass[0] = '\0';
2606             break;
2607         case 'l':
2608             remove |= MODE_LIMIT;
2609             channel->limit = 0;
2610             break;
2611         case 'b': remove |= MODE_BAN; break;
2612         case 'D': remove |= MODE_DELAYJOINS; break;
2613         case 'r': remove |= MODE_REGONLY; break;
2614         case 'c': remove |= MODE_NOCOLORS; break;
2615         case 'C': remove |= MODE_NOCTCPS; break;
2616         case 'z': remove |= MODE_REGISTERED; break;
2617         }
2618     }
2619
2620     if (!remove)
2621         return 1;
2622
2623     /* Remove simple modes. */
2624     channel->modes &= ~remove;
2625
2626     /* If removing bans, kill 'em all. */
2627     if ((remove & MODE_BAN) && channel->banlist.used) {
2628         unsigned int i;
2629         for (i=0; i<channel->banlist.used; i++)
2630             free(channel->banlist.list[i]);
2631         channel->banlist.used = 0;
2632     }
2633
2634     /* Remove member modes. */
2635     if ((remove & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) {
2636         int mask = ~(remove & (MODE_CHANOP | MODE_VOICE));
2637         unsigned int i;
2638
2639         for (i = 0; i < channel->members.used; i++)
2640             channel->members.list[i]->modes &= mask;
2641     }
2642
2643     return 1;
2644 }
2645
2646 void
2647 reg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2648 {
2649     unsigned int numeric = user->num_local;
2650     if (numeric >= num_privmsg_funcs) {
2651         int newnum = numeric + 8;
2652         privmsg_funcs = realloc(privmsg_funcs, newnum*sizeof(privmsg_func_t));
2653         memset(privmsg_funcs+num_privmsg_funcs, 0, (newnum-num_privmsg_funcs)*sizeof(privmsg_func_t));
2654         num_privmsg_funcs = newnum;
2655     }
2656     if (privmsg_funcs[numeric])
2657         log_module(MAIN_LOG, LOG_WARNING, "re-registering new privmsg handler for numeric %d", numeric);
2658     privmsg_funcs[numeric] = handler;
2659 }
2660
2661 void
2662 unreg_privmsg_func(struct userNode *user, privmsg_func_t handler)
2663 {
2664     unsigned int x;
2665
2666     if (!user || handler)
2667       return; /* this really only works with users */
2668
2669     memset(privmsg_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2670
2671     for (x = user->num_local+1; x < num_privmsg_funcs; x++) 
2672        memmove(privmsg_funcs+x-1, privmsg_funcs+x, sizeof(privmsg_func_t));
2673     
2674     privmsg_funcs = realloc(privmsg_funcs, num_privmsg_funcs*sizeof(privmsg_func_t)); 
2675     num_privmsg_funcs--;
2676 }
2677
2678
2679 void
2680 reg_notice_func(struct userNode *user, privmsg_func_t handler)
2681 {
2682     unsigned int numeric = user->num_local;
2683     if (numeric >= num_notice_funcs) {
2684         int newnum = numeric + 8;
2685         notice_funcs = realloc(notice_funcs, newnum*sizeof(privmsg_func_t));
2686         memset(notice_funcs+num_notice_funcs, 0, (newnum-num_notice_funcs)*sizeof(privmsg_func_t));
2687         num_notice_funcs = newnum;
2688     }
2689     if (notice_funcs[numeric])
2690         log_module(MAIN_LOG, LOG_WARNING, "re-registering new notice handler for numeric %d", numeric);
2691     notice_funcs[numeric] = handler;
2692 }
2693
2694 void
2695 unreg_notice_func(struct userNode *user, privmsg_func_t handler)
2696 {
2697     unsigned int x;
2698
2699     if (!user || handler)
2700           return; /* this really only works with users */
2701
2702     memset(notice_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2703
2704     for (x = user->num_local+1; x < num_notice_funcs; x++)
2705        memmove(notice_funcs+x-1, notice_funcs+x, sizeof(privmsg_func_t));
2706
2707     memset(notice_funcs+user->num_local, 0, sizeof(privmsg_func_t));
2708     notice_funcs = realloc(notice_funcs, num_notice_funcs*sizeof(privmsg_func_t));
2709     num_notice_funcs--;
2710 }
2711
2712 void
2713 reg_oper_func(oper_func_t handler)
2714 {
2715     if (of_used == of_size) {
2716         if (of_size) {
2717             of_size <<= 1;
2718             of_list = realloc(of_list, of_size*sizeof(oper_func_t));
2719         } else {
2720             of_size = 8;
2721             of_list = malloc(of_size*sizeof(oper_func_t));
2722         }
2723     }
2724     of_list[of_used++] = handler;
2725 }
2726
2727 static void
2728 call_oper_funcs(struct userNode *user)
2729 {
2730     unsigned int n;
2731     if (IsLocal(user))
2732         return;
2733     for (n=0; n<of_used; n++)
2734         of_list[n](user);
2735 }
2736
2737 static void
2738 send_burst(void)
2739 {
2740     unsigned int i, hop, max_hop=1;
2741     dict_iterator_t it;
2742
2743     /* burst (juped) servers, closest first (except self, which is sent already) */
2744     for (i=0; i<ArrayLength(servers_num); i++)
2745         if (servers_num[i] && servers_num[i]->hops > max_hop)
2746             max_hop = servers_num[i]->hops;
2747     for (hop=1; hop<=max_hop; hop++) {
2748         for (i=0;i<ArrayLength(servers_num);i++) {
2749             if (servers_num[i]
2750                 && (servers_num[i]->hops == hop)
2751                 && (servers_num[i] != self->uplink))
2752                 irc_server(servers_num[i]);
2753         }
2754     }
2755
2756     /* burst local nicks */
2757     for (i=0; i<=self->num_mask; i++)
2758         if (self->users[i])
2759             irc_user(self->users[i]);
2760
2761     /* build dict of unbursted channel names (just copy existing channels) */
2762     unbursted_channels = dict_new();
2763     for (it = dict_first(channels); it; it = iter_next(it))
2764         dict_insert(unbursted_channels, iter_key(it), iter_data(it));
2765 }
2766
2767 /*
2768  * Oplevel parsing
2769  */
2770 static int
2771 parse_oplevel(char *str)
2772 {
2773     int oplevel = 0;
2774     while (isdigit(*str))
2775         oplevel = oplevel * 10 + *str++ - '0';
2776     return oplevel;
2777 }