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