]> jfr.im git - irc/rqf/shadowircd.git/blob - src/chmode.c
[svn] add_id() for local client: do not collapse() the ban mask.
[irc/rqf/shadowircd.git] / src / chmode.c
1 /*
2 * charybdis: A slightly useful ircd.
3 * chmode.c: channel mode management
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 * Copyright (C) 2005-2006 charybdis development team
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
25 * $Id: chmode.c 3530 2007-07-14 12:20:48Z jilles $
26 */
27
28 #include "stdinc.h"
29 #include "tools.h"
30 #include "channel.h"
31 #include "client.h"
32 #include "common.h"
33 #include "hash.h"
34 #include "hook.h"
35 #include "irc_string.h"
36 #include "sprintf_irc.h"
37 #include "ircd.h"
38 #include "numeric.h"
39 #include "s_serv.h" /* captab */
40 #include "s_user.h"
41 #include "send.h"
42 #include "whowas.h"
43 #include "s_conf.h" /* ConfigFileEntry, ConfigChannel */
44 #include "s_newconf.h"
45 #include "event.h"
46 #include "memory.h"
47 #include "balloc.h"
48 #include "s_log.h"
49
50 /* bitmasks for error returns, so we send once per call */
51 #define SM_ERR_NOTS 0x00000001 /* No TS on channel */
52 #define SM_ERR_NOOPS 0x00000002 /* No chan ops */
53 #define SM_ERR_UNKNOWN 0x00000004
54 #define SM_ERR_RPL_C 0x00000008
55 #define SM_ERR_RPL_B 0x00000010
56 #define SM_ERR_RPL_E 0x00000020
57 #define SM_ERR_NOTONCHANNEL 0x00000040 /* Not on channel */
58 #define SM_ERR_RPL_I 0x00000100
59 #define SM_ERR_RPL_D 0x00000200
60 #define SM_ERR_NOPRIVS 0x00000400
61 #define SM_ERR_RPL_Q 0x00000800
62 #define SM_ERR_RPL_F 0x00001000
63
64 void set_channel_mode(struct Client *, struct Client *,
65 struct Channel *, struct membership *, int, const char **);
66
67 int add_id(struct Client *source_p, struct Channel *chptr,
68 const char *banid, dlink_list * list, long mode_type);
69
70 static struct ChModeChange mode_changes[BUFSIZE];
71 static int mode_count;
72 static int mode_limit;
73 static int mask_pos;
74
75 int
76 get_channel_access(struct Client *source_p, struct membership *msptr)
77 {
78 if(!MyClient(source_p) || is_chanop(msptr))
79 return CHFL_CHANOP;
80
81 return CHFL_PEON;
82 }
83
84 /* add_id()
85 *
86 * inputs - client, channel, id to add, type
87 * outputs - 0 on failure, 1 on success
88 * side effects - given id is added to the appropriate list
89 */
90 int
91 add_id(struct Client *source_p, struct Channel *chptr, const char *banid,
92 dlink_list * list, long mode_type)
93 {
94 struct Ban *actualBan;
95 static char who[BANLEN];
96 char *realban = LOCAL_COPY(banid);
97 dlink_node *ptr;
98
99 /* dont let local clients overflow the banlist, or set redundant
100 * bans
101 */
102 if(MyClient(source_p))
103 {
104 if((dlink_list_length(&chptr->banlist) + dlink_list_length(&chptr->exceptlist) + dlink_list_length(&chptr->invexlist) + dlink_list_length(&chptr->quietlist)) >= (chptr->mode.mode & MODE_EXLIMIT ? ConfigChannel.max_bans_large : ConfigChannel.max_bans))
105 {
106 sendto_one(source_p, form_str(ERR_BANLISTFULL),
107 me.name, source_p->name, chptr->chname, realban);
108 return 0;
109 }
110
111 DLINK_FOREACH(ptr, list->head)
112 {
113 actualBan = ptr->data;
114 if(match(actualBan->banstr, realban))
115 return 0;
116 }
117 }
118 /* dont let remotes set duplicates */
119 else
120 {
121 DLINK_FOREACH(ptr, list->head)
122 {
123 actualBan = ptr->data;
124 if(!irccmp(actualBan->banstr, realban))
125 return 0;
126 }
127 }
128
129
130 if(IsPerson(source_p))
131 ircsprintf(who, "%s!%s@%s", source_p->name, source_p->username, source_p->host);
132 else
133 strlcpy(who, source_p->name, sizeof(who));
134
135 actualBan = allocate_ban(realban, who);
136 actualBan->when = CurrentTime;
137
138 dlinkAdd(actualBan, &actualBan->node, list);
139
140 /* invalidate the can_send() cache */
141 if(mode_type == CHFL_BAN || mode_type == CHFL_QUIET || mode_type == CHFL_EXCEPTION)
142 chptr->bants++;
143
144 return 1;
145 }
146
147 /* del_id()
148 *
149 * inputs - channel, id to remove, type
150 * outputs - 0 on failure, 1 on success
151 * side effects - given id is removed from the appropriate list
152 */
153 int
154 del_id(struct Channel *chptr, const char *banid, dlink_list * list, long mode_type)
155 {
156 dlink_node *ptr;
157 struct Ban *banptr;
158
159 if(EmptyString(banid))
160 return 0;
161
162 DLINK_FOREACH(ptr, list->head)
163 {
164 banptr = ptr->data;
165
166 if(irccmp(banid, banptr->banstr) == 0)
167 {
168 dlinkDelete(&banptr->node, list);
169 free_ban(banptr);
170
171 /* invalidate the can_send() cache */
172 if(mode_type == CHFL_BAN || mode_type == CHFL_QUIET || mode_type == CHFL_EXCEPTION)
173 chptr->bants++;
174
175 return 1;
176 }
177 }
178
179 return 0;
180 }
181
182 /* check_string()
183 *
184 * input - string to check
185 * output - pointer to 'fixed' string, or "*" if empty
186 * side effects - any white space found becomes \0
187 */
188 static char *
189 check_string(char *s)
190 {
191 char *str = s;
192 static char splat[] = "*";
193 if(!(s && *s))
194 return splat;
195
196 for(; *s; ++s)
197 {
198 if(IsSpace(*s))
199 {
200 *s = '\0';
201 break;
202 }
203 }
204 return str;
205 }
206
207 /* pretty_mask()
208 *
209 * inputs - mask to pretty
210 * outputs - better version of the mask
211 * side effects - mask is chopped to limits, and transformed:
212 * x!y@z => x!y@z
213 * y@z => *!y@z
214 * x!y => x!y@*
215 * x => x!*@*
216 * z.d => *!*@z.d
217 */
218 static char *
219 pretty_mask(const char *idmask)
220 {
221 static char mask_buf[BUFSIZE];
222 int old_mask_pos;
223 char *nick, *user, *host;
224 char splat[] = "*";
225 char *t, *at, *ex;
226 char ne = 0, ue = 0, he = 0; /* save values at nick[NICKLEN], et all */
227 char *mask;
228
229 mask = LOCAL_COPY(idmask);
230 mask = check_string(mask);
231 collapse(mask);
232
233 nick = user = host = splat;
234
235 if((size_t) BUFSIZE - mask_pos < strlen(mask) + 5)
236 return NULL;
237
238 old_mask_pos = mask_pos;
239
240 if (*mask == '$')
241 {
242 mask_pos += ircsprintf(mask_buf + mask_pos, "%s", mask) + 1;
243 t = mask_buf + old_mask_pos + 1;
244 if (*t == '!')
245 *t = '~';
246 if (*t == '~')
247 t++;
248 *t = ToLower(*t);
249 return mask_buf + old_mask_pos;
250 }
251
252 at = ex = NULL;
253 if((t = strchr(mask, '@')) != NULL)
254 {
255 at = t;
256 *t++ = '\0';
257 if(*t != '\0')
258 host = t;
259
260 if((t = strchr(mask, '!')) != NULL)
261 {
262 ex = t;
263 *t++ = '\0';
264 if(*t != '\0')
265 user = t;
266 if(*mask != '\0')
267 nick = mask;
268 }
269 else
270 {
271 if(*mask != '\0')
272 user = mask;
273 }
274 }
275 else if((t = strchr(mask, '!')) != NULL)
276 {
277 ex = t;
278 *t++ = '\0';
279 if(*mask != '\0')
280 nick = mask;
281 if(*t != '\0')
282 user = t;
283 }
284 else if(strchr(mask, '.') != NULL || strchr(mask, ':') != NULL)
285 {
286 if(*mask != '\0')
287 host = mask;
288 }
289 else
290 {
291 if(*mask != '\0')
292 nick = mask;
293 }
294
295 /* truncate values to max lengths */
296 if(strlen(nick) > NICKLEN - 1)
297 {
298 ne = nick[NICKLEN - 1];
299 nick[NICKLEN - 1] = '\0';
300 }
301 if(strlen(user) > USERLEN)
302 {
303 ue = user[USERLEN];
304 user[USERLEN] = '\0';
305 }
306 if(strlen(host) > HOSTLEN)
307 {
308 he = host[HOSTLEN];
309 host[HOSTLEN] = '\0';
310 }
311
312 mask_pos += ircsprintf(mask_buf + mask_pos, "%s!%s@%s", nick, user, host) + 1;
313
314 /* restore mask, since we may need to use it again later */
315 if(at)
316 *at = '@';
317 if(ex)
318 *ex = '!';
319 if(ne)
320 nick[NICKLEN - 1] = ne;
321 if(ue)
322 user[USERLEN] = ue;
323 if(he)
324 host[HOSTLEN] = he;
325
326 return mask_buf + old_mask_pos;
327 }
328
329 /* fix_key()
330 *
331 * input - key to fix
332 * output - the same key, fixed
333 * side effects - anything below ascii 13 is discarded, ':' discarded,
334 * high ascii is dropped to lower half of ascii table
335 */
336 static char *
337 fix_key(char *arg)
338 {
339 u_char *s, *t, c;
340
341 for(s = t = (u_char *) arg; (c = *s); s++)
342 {
343 c &= 0x7f;
344 if(c != ':' && c != ',' && c > ' ')
345 *t++ = c;
346 }
347
348 *t = '\0';
349 return arg;
350 }
351
352 /* fix_key_remote()
353 *
354 * input - key to fix
355 * ouput - the same key, fixed
356 * side effects - high ascii dropped to lower half of table,
357 * CR/LF/':' are dropped
358 */
359 static char *
360 fix_key_remote(char *arg)
361 {
362 u_char *s, *t, c;
363
364 for(s = t = (u_char *) arg; (c = *s); s++)
365 {
366 c &= 0x7f;
367 if((c != 0x0a) && (c != ':') && (c != ',') && (c != 0x0d) && (c != ' '))
368 *t++ = c;
369 }
370
371 *t = '\0';
372 return arg;
373 }
374
375 /* chm_*()
376 *
377 * The handlers for each specific mode.
378 */
379 void
380 chm_nosuch(struct Client *source_p, struct Channel *chptr,
381 int alevel, int parc, int *parn,
382 const char **parv, int *errors, int dir, char c, long mode_type)
383 {
384 if(*errors & SM_ERR_UNKNOWN)
385 return;
386 *errors |= SM_ERR_UNKNOWN;
387 sendto_one(source_p, form_str(ERR_UNKNOWNMODE), me.name, source_p->name, c);
388 }
389
390 void
391 chm_simple(struct Client *source_p, struct Channel *chptr,
392 int alevel, int parc, int *parn,
393 const char **parv, int *errors, int dir, char c, long mode_type)
394 {
395 if(alevel != CHFL_CHANOP)
396 {
397 if(!(*errors & SM_ERR_NOOPS))
398 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
399 me.name, source_p->name, chptr->chname);
400 *errors |= SM_ERR_NOOPS;
401 return;
402 }
403
404 /* +ntspmaikl == 9 + MAXMODEPARAMS (4 * +o) */
405 if(MyClient(source_p) && (++mode_limit > (9 + MAXMODEPARAMS)))
406 return;
407
408 /* setting + */
409 if((dir == MODE_ADD) && !(chptr->mode.mode & mode_type))
410 {
411 /* if +f is disabled, ignore an attempt to set +QF locally */
412 if(!ConfigChannel.use_forward && MyClient(source_p) &&
413 (c == 'Q' || c == 'F'))
414 return;
415
416 chptr->mode.mode |= mode_type;
417
418 mode_changes[mode_count].letter = c;
419 mode_changes[mode_count].dir = MODE_ADD;
420 mode_changes[mode_count].caps = 0;
421 mode_changes[mode_count].nocaps = 0;
422 mode_changes[mode_count].id = NULL;
423 mode_changes[mode_count].mems = ALL_MEMBERS;
424 mode_changes[mode_count++].arg = NULL;
425 }
426 else if((dir == MODE_DEL) && (chptr->mode.mode & mode_type))
427 {
428 chptr->mode.mode &= ~mode_type;
429
430 mode_changes[mode_count].letter = c;
431 mode_changes[mode_count].dir = MODE_DEL;
432 mode_changes[mode_count].caps = 0;
433 mode_changes[mode_count].nocaps = 0;
434 mode_changes[mode_count].mems = ALL_MEMBERS;
435 mode_changes[mode_count].id = NULL;
436 mode_changes[mode_count++].arg = NULL;
437 }
438 }
439
440 void
441 chm_staff(struct Client *source_p, struct Channel *chptr,
442 int alevel, int parc, int *parn,
443 const char **parv, int *errors, int dir, char c, long mode_type)
444 {
445 if(!IsOper(source_p) && !IsServer(source_p))
446 {
447 if(!(*errors & SM_ERR_NOPRIVS))
448 sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES));
449 *errors |= SM_ERR_NOPRIVS;
450 return;
451 }
452
453 /* setting + */
454 if((dir == MODE_ADD) && !(chptr->mode.mode & mode_type))
455 {
456 chptr->mode.mode |= mode_type;
457
458 mode_changes[mode_count].letter = c;
459 mode_changes[mode_count].dir = MODE_ADD;
460 mode_changes[mode_count].caps = 0;
461 mode_changes[mode_count].nocaps = 0;
462 mode_changes[mode_count].id = NULL;
463 mode_changes[mode_count].mems = ALL_MEMBERS;
464 mode_changes[mode_count++].arg = NULL;
465 }
466 else if((dir == MODE_DEL) && (chptr->mode.mode & mode_type))
467 {
468 chptr->mode.mode &= ~mode_type;
469
470 mode_changes[mode_count].letter = c;
471 mode_changes[mode_count].dir = MODE_DEL;
472 mode_changes[mode_count].caps = 0;
473 mode_changes[mode_count].nocaps = 0;
474 mode_changes[mode_count].mems = ALL_MEMBERS;
475 mode_changes[mode_count].id = NULL;
476 mode_changes[mode_count++].arg = NULL;
477 }
478 }
479
480 void
481 chm_ban(struct Client *source_p, struct Channel *chptr,
482 int alevel, int parc, int *parn,
483 const char **parv, int *errors, int dir, char c, long mode_type)
484 {
485 const char *mask;
486 const char *raw_mask;
487 dlink_list *list;
488 dlink_node *ptr;
489 struct Ban *banptr;
490 int errorval;
491 int rpl_list;
492 int rpl_endlist;
493 int caps;
494 int mems;
495
496 switch (mode_type)
497 {
498 case CHFL_BAN:
499 list = &chptr->banlist;
500 errorval = SM_ERR_RPL_B;
501 rpl_list = RPL_BANLIST;
502 rpl_endlist = RPL_ENDOFBANLIST;
503 mems = ALL_MEMBERS;
504 caps = 0;
505 break;
506
507 case CHFL_EXCEPTION:
508 /* if +e is disabled, allow all but +e locally */
509 if(!ConfigChannel.use_except && MyClient(source_p) &&
510 ((dir == MODE_ADD) && (parc > *parn)))
511 return;
512
513 list = &chptr->exceptlist;
514 errorval = SM_ERR_RPL_E;
515 rpl_list = RPL_EXCEPTLIST;
516 rpl_endlist = RPL_ENDOFEXCEPTLIST;
517 caps = CAP_EX;
518
519 if(ConfigChannel.use_except || (dir == MODE_DEL))
520 mems = ONLY_CHANOPS;
521 else
522 mems = ONLY_SERVERS;
523 break;
524
525 case CHFL_INVEX:
526 /* if +I is disabled, allow all but +I locally */
527 if(!ConfigChannel.use_invex && MyClient(source_p) &&
528 (dir == MODE_ADD) && (parc > *parn))
529 return;
530
531 list = &chptr->invexlist;
532 errorval = SM_ERR_RPL_I;
533 rpl_list = RPL_INVITELIST;
534 rpl_endlist = RPL_ENDOFINVITELIST;
535 caps = CAP_IE;
536
537 if(ConfigChannel.use_invex || (dir == MODE_DEL))
538 mems = ONLY_CHANOPS;
539 else
540 mems = ONLY_SERVERS;
541 break;
542
543 case CHFL_QUIET:
544 list = &chptr->quietlist;
545 errorval = SM_ERR_RPL_Q;
546 rpl_list = RPL_BANLIST;
547 rpl_endlist = RPL_ENDOFBANLIST;
548 mems = ALL_MEMBERS;
549 caps = 0;
550 break;
551
552 default:
553 sendto_realops_snomask(SNO_GENERAL, L_ALL, "chm_ban() called with unknown type!");
554 return;
555 break;
556 }
557
558 if(dir == 0 || parc <= *parn)
559 {
560 if((*errors & errorval) != 0)
561 return;
562 *errors |= errorval;
563
564 /* non-ops cant see +eI lists.. */
565 if(alevel != CHFL_CHANOP && mode_type != CHFL_BAN &&
566 mode_type != CHFL_QUIET)
567 {
568 if(!(*errors & SM_ERR_NOOPS))
569 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
570 me.name, source_p->name, chptr->chname);
571 *errors |= SM_ERR_NOOPS;
572 return;
573 }
574
575 DLINK_FOREACH(ptr, list->head)
576 {
577 banptr = ptr->data;
578 sendto_one(source_p, form_str(rpl_list),
579 me.name, source_p->name, chptr->chname,
580 banptr->banstr, banptr->who, banptr->when);
581 }
582 if (mode_type == CHFL_QUIET)
583 sendto_one(source_p, ":%s %d %s %s :End of Channel Quiet List", me.name, rpl_endlist, source_p->name, chptr->chname);
584 else
585 sendto_one(source_p, form_str(rpl_endlist), me.name, source_p->name, chptr->chname);
586 return;
587 }
588
589 if(alevel != CHFL_CHANOP)
590 {
591 if(!(*errors & SM_ERR_NOOPS))
592 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
593 me.name, source_p->name, chptr->chname);
594 *errors |= SM_ERR_NOOPS;
595 return;
596 }
597
598 if(MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
599 return;
600
601 raw_mask = parv[(*parn)];
602 (*parn)++;
603
604 /* empty ban, or starts with ':' which messes up s2s, ignore it */
605 if(EmptyString(raw_mask) || *raw_mask == ':')
606 return;
607
608 if(!MyClient(source_p))
609 {
610 if(strchr(raw_mask, ' '))
611 return;
612
613 mask = raw_mask;
614 }
615 else
616 mask = pretty_mask(raw_mask);
617
618 /* we'd have problems parsing this, hyb6 does it too */
619 if(strlen(mask) > (MODEBUFLEN - 2))
620 return;
621
622 /* if we're adding a NEW id */
623 if(dir == MODE_ADD)
624 {
625 if (*mask == '$' && MyClient(source_p))
626 {
627 if (!valid_extban(mask, source_p, chptr, mode_type))
628 /* XXX perhaps return an error message here */
629 return;
630 }
631
632 /* dont allow local clients to overflow the banlist, dont
633 * let remote servers set duplicate bans
634 */
635 if(!add_id(source_p, chptr, mask, list, mode_type))
636 return;
637
638 mode_changes[mode_count].letter = c;
639 mode_changes[mode_count].dir = MODE_ADD;
640 mode_changes[mode_count].caps = caps;
641 mode_changes[mode_count].nocaps = 0;
642 mode_changes[mode_count].mems = mems;
643 mode_changes[mode_count].id = NULL;
644 mode_changes[mode_count++].arg = mask;
645 }
646 else if(dir == MODE_DEL)
647 {
648 if(del_id(chptr, mask, list, mode_type) == 0)
649 {
650 /* mask isn't a valid ban, check raw_mask */
651 if(del_id(chptr, raw_mask, list, mode_type))
652 mask = raw_mask;
653 }
654
655 mode_changes[mode_count].letter = c;
656 mode_changes[mode_count].dir = MODE_DEL;
657 mode_changes[mode_count].caps = caps;
658 mode_changes[mode_count].nocaps = 0;
659 mode_changes[mode_count].mems = mems;
660 mode_changes[mode_count].id = NULL;
661 mode_changes[mode_count++].arg = mask;
662 }
663 }
664
665 void
666 chm_op(struct Client *source_p, struct Channel *chptr,
667 int alevel, int parc, int *parn,
668 const char **parv, int *errors, int dir, char c, long mode_type)
669 {
670 struct membership *mstptr;
671 const char *opnick;
672 struct Client *targ_p;
673
674 if(alevel != CHFL_CHANOP)
675 {
676 if(!(*errors & SM_ERR_NOOPS))
677 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
678 me.name, source_p->name, chptr->chname);
679 *errors |= SM_ERR_NOOPS;
680 return;
681 }
682
683 if((dir == MODE_QUERY) || (parc <= *parn))
684 return;
685
686 opnick = parv[(*parn)];
687 (*parn)++;
688
689 /* empty nick */
690 if(EmptyString(opnick))
691 {
692 sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), "*");
693 return;
694 }
695
696 if((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
697 {
698 return;
699 }
700
701 mstptr = find_channel_membership(chptr, targ_p);
702
703 if(mstptr == NULL)
704 {
705 if(!(*errors & SM_ERR_NOTONCHANNEL) && MyClient(source_p))
706 sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
707 form_str(ERR_USERNOTINCHANNEL), opnick, chptr->chname);
708 *errors |= SM_ERR_NOTONCHANNEL;
709 return;
710 }
711
712 if(MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
713 return;
714
715 if(dir == MODE_ADD)
716 {
717 if(targ_p == source_p)
718 return;
719
720 mode_changes[mode_count].letter = c;
721 mode_changes[mode_count].dir = MODE_ADD;
722 mode_changes[mode_count].caps = 0;
723 mode_changes[mode_count].nocaps = 0;
724 mode_changes[mode_count].mems = ALL_MEMBERS;
725 mode_changes[mode_count].id = targ_p->id;
726 mode_changes[mode_count].arg = targ_p->name;
727 mode_changes[mode_count++].client = targ_p;
728
729 mstptr->flags |= CHFL_CHANOP;
730 mstptr->flags &= ~CHFL_DEOPPED;
731 }
732 else
733 {
734 if(MyClient(source_p) && IsService(targ_p))
735 {
736 sendto_one(source_p, form_str(ERR_ISCHANSERVICE),
737 me.name, source_p->name, targ_p->name, chptr->chname);
738 return;
739 }
740
741 mode_changes[mode_count].letter = c;
742 mode_changes[mode_count].dir = MODE_DEL;
743 mode_changes[mode_count].caps = 0;
744 mode_changes[mode_count].nocaps = 0;
745 mode_changes[mode_count].mems = ALL_MEMBERS;
746 mode_changes[mode_count].id = targ_p->id;
747 mode_changes[mode_count].arg = targ_p->name;
748 mode_changes[mode_count++].client = targ_p;
749
750 mstptr->flags &= ~CHFL_CHANOP;
751 }
752 }
753
754 void
755 chm_voice(struct Client *source_p, struct Channel *chptr,
756 int alevel, int parc, int *parn,
757 const char **parv, int *errors, int dir, char c, long mode_type)
758 {
759 struct membership *mstptr;
760 const char *opnick;
761 struct Client *targ_p;
762
763 if(alevel != CHFL_CHANOP)
764 {
765 if(!(*errors & SM_ERR_NOOPS))
766 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
767 me.name, source_p->name, chptr->chname);
768 *errors |= SM_ERR_NOOPS;
769 return;
770 }
771
772 if((dir == MODE_QUERY) || parc <= *parn)
773 return;
774
775 opnick = parv[(*parn)];
776 (*parn)++;
777
778 /* empty nick */
779 if(EmptyString(opnick))
780 {
781 sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), "*");
782 return;
783 }
784
785 if((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
786 {
787 return;
788 }
789
790 mstptr = find_channel_membership(chptr, targ_p);
791
792 if(mstptr == NULL)
793 {
794 if(!(*errors & SM_ERR_NOTONCHANNEL) && MyClient(source_p))
795 sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
796 form_str(ERR_USERNOTINCHANNEL), opnick, chptr->chname);
797 *errors |= SM_ERR_NOTONCHANNEL;
798 return;
799 }
800
801 if(MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
802 return;
803
804 if(dir == MODE_ADD)
805 {
806 mode_changes[mode_count].letter = c;
807 mode_changes[mode_count].dir = MODE_ADD;
808 mode_changes[mode_count].caps = 0;
809 mode_changes[mode_count].nocaps = 0;
810 mode_changes[mode_count].mems = ALL_MEMBERS;
811 mode_changes[mode_count].id = targ_p->id;
812 mode_changes[mode_count].arg = targ_p->name;
813 mode_changes[mode_count++].client = targ_p;
814
815 mstptr->flags |= CHFL_VOICE;
816 }
817 else
818 {
819 mode_changes[mode_count].letter = 'v';
820 mode_changes[mode_count].dir = MODE_DEL;
821 mode_changes[mode_count].caps = 0;
822 mode_changes[mode_count].nocaps = 0;
823 mode_changes[mode_count].mems = ALL_MEMBERS;
824 mode_changes[mode_count].id = targ_p->id;
825 mode_changes[mode_count].arg = targ_p->name;
826 mode_changes[mode_count++].client = targ_p;
827
828 mstptr->flags &= ~CHFL_VOICE;
829 }
830 }
831
832 void
833 chm_limit(struct Client *source_p, struct Channel *chptr,
834 int alevel, int parc, int *parn,
835 const char **parv, int *errors, int dir, char c, long mode_type)
836 {
837 const char *lstr;
838 static char limitstr[30];
839 int limit;
840
841 if(alevel != CHFL_CHANOP)
842 {
843 if(!(*errors & SM_ERR_NOOPS))
844 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
845 me.name, source_p->name, chptr->chname);
846 *errors |= SM_ERR_NOOPS;
847 return;
848 }
849
850 if(dir == MODE_QUERY)
851 return;
852
853 if((dir == MODE_ADD) && parc > *parn)
854 {
855 lstr = parv[(*parn)];
856 (*parn)++;
857
858 if(EmptyString(lstr) || (limit = atoi(lstr)) <= 0)
859 return;
860
861 ircsprintf(limitstr, "%d", limit);
862
863 mode_changes[mode_count].letter = c;
864 mode_changes[mode_count].dir = MODE_ADD;
865 mode_changes[mode_count].caps = 0;
866 mode_changes[mode_count].nocaps = 0;
867 mode_changes[mode_count].mems = ALL_MEMBERS;
868 mode_changes[mode_count].id = NULL;
869 mode_changes[mode_count++].arg = limitstr;
870
871 chptr->mode.limit = limit;
872 }
873 else if(dir == MODE_DEL)
874 {
875 if(!chptr->mode.limit)
876 return;
877
878 chptr->mode.limit = 0;
879
880 mode_changes[mode_count].letter = c;
881 mode_changes[mode_count].dir = MODE_DEL;
882 mode_changes[mode_count].caps = 0;
883 mode_changes[mode_count].nocaps = 0;
884 mode_changes[mode_count].mems = ALL_MEMBERS;
885 mode_changes[mode_count].id = NULL;
886 mode_changes[mode_count++].arg = NULL;
887 }
888 }
889
890 void
891 chm_throttle(struct Client *source_p, struct Channel *chptr,
892 int alevel, int parc, int *parn,
893 const char **parv, int *errors, int dir, char c, long mode_type)
894 {
895 int joins = 0, timeslice = 0;
896
897 if(alevel != CHFL_CHANOP)
898 {
899 if(!(*errors & SM_ERR_NOOPS))
900 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
901 me.name, source_p->name, chptr->chname);
902 *errors |= SM_ERR_NOOPS;
903 return;
904 }
905
906 if(dir == MODE_QUERY)
907 return;
908
909 if((dir == MODE_ADD) && parc > *parn)
910 {
911 sscanf(parv[(*parn)], "%d:%d", &joins, &timeslice);
912
913 if(!joins || !timeslice)
914 return;
915
916 mode_changes[mode_count].letter = c;
917 mode_changes[mode_count].dir = MODE_ADD;
918 mode_changes[mode_count].caps = 0;
919 mode_changes[mode_count].nocaps = 0;
920 mode_changes[mode_count].mems = ALL_MEMBERS;
921 mode_changes[mode_count].id = NULL;
922 mode_changes[mode_count++].arg = parv[(*parn)];
923
924 (*parn)++;
925
926 chptr->mode.join_num = joins;
927 chptr->mode.join_time = timeslice;
928 }
929 else if(dir == MODE_DEL)
930 {
931 if(!chptr->mode.join_num)
932 return;
933
934 chptr->mode.join_num = 0;
935 chptr->mode.join_time = 0;
936 chptr->join_count = 0;
937 chptr->join_delta = 0;
938
939 mode_changes[mode_count].letter = c;
940 mode_changes[mode_count].dir = MODE_DEL;
941 mode_changes[mode_count].caps = 0;
942 mode_changes[mode_count].nocaps = 0;
943 mode_changes[mode_count].mems = ALL_MEMBERS;
944 mode_changes[mode_count].id = NULL;
945 mode_changes[mode_count++].arg = NULL;
946 }
947 }
948
949 void
950 chm_forward(struct Client *source_p, struct Channel *chptr,
951 int alevel, int parc, int *parn,
952 const char **parv, int *errors, int dir, char c, long mode_type)
953 {
954 struct Channel *targptr = NULL;
955 struct membership *msptr;
956 const char *forward;
957
958 /* if +f is disabled, ignore local attempts to set it */
959 if(!ConfigChannel.use_forward && MyClient(source_p) &&
960 (dir == MODE_ADD) && (parc > *parn))
961 return;
962
963 if(dir == MODE_QUERY || (dir == MODE_ADD && parc <= *parn))
964 {
965 if (!(*errors & SM_ERR_RPL_F))
966 {
967 if (*chptr->mode.forward == '\0')
968 sendto_one_notice(source_p, ":%s has no forward channel", chptr->chname);
969 else
970 sendto_one_notice(source_p, ":%s forward channel is %s", chptr->chname, chptr->mode.forward);
971 *errors |= SM_ERR_RPL_F;
972 }
973 return;
974 }
975
976 #ifndef FORWARD_OPERONLY
977 if(alevel != CHFL_CHANOP)
978 {
979 if(!(*errors & SM_ERR_NOOPS))
980 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
981 me.name, source_p->name, chptr->chname);
982 *errors |= SM_ERR_NOOPS;
983 return;
984 }
985 #else
986 if(!IsOper(source_p) && !IsServer(source_p))
987 {
988 if(!(*errors & SM_ERR_NOPRIVS))
989 sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES));
990 *errors |= SM_ERR_NOPRIVS;
991 return;
992 }
993 #endif
994
995 if(dir == MODE_ADD && parc > *parn)
996 {
997 forward = parv[(*parn)];
998 (*parn)++;
999
1000 if(EmptyString(forward))
1001 return;
1002 if(!check_channel_name(forward) ||
1003 (MyClient(source_p) && (strlen(forward) > LOC_CHANNELLEN || hash_find_resv(forward))))
1004 {
1005 sendto_one_numeric(source_p, ERR_BADCHANNAME, form_str(ERR_BADCHANNAME), forward);
1006 return;
1007 }
1008 /* don't forward to inconsistent target -- jilles */
1009 if(chptr->chname[0] == '#' && forward[0] == '&')
1010 {
1011 sendto_one_numeric(source_p, ERR_BADCHANNAME,
1012 form_str(ERR_BADCHANNAME), forward);
1013 return;
1014 }
1015 if(MyClient(source_p) && (targptr = find_channel(forward)) == NULL)
1016 {
1017 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
1018 form_str(ERR_NOSUCHCHANNEL), forward);
1019 return;
1020 }
1021 if(MyClient(source_p) && !(targptr->mode.mode & MODE_FREETARGET))
1022 {
1023 if((msptr = find_channel_membership(targptr, source_p)) == NULL ||
1024 get_channel_access(source_p, msptr) != CHFL_CHANOP)
1025 {
1026 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
1027 me.name, source_p->name, targptr->chname);
1028 return;
1029 }
1030 }
1031
1032 strlcpy(chptr->mode.forward, forward, sizeof(chptr->mode.forward));
1033
1034 mode_changes[mode_count].letter = c;
1035 mode_changes[mode_count].dir = MODE_ADD;
1036 mode_changes[mode_count].caps = 0;
1037 mode_changes[mode_count].nocaps = 0;
1038 mode_changes[mode_count].mems = ConfigChannel.use_forward ? ALL_MEMBERS : ONLY_SERVERS;
1039 mode_changes[mode_count].id = NULL;
1040 mode_changes[mode_count++].arg = forward;
1041 }
1042 else if(dir == MODE_DEL)
1043 {
1044 if(!(*chptr->mode.forward))
1045 return;
1046
1047 *chptr->mode.forward = '\0';
1048
1049 mode_changes[mode_count].letter = c;
1050 mode_changes[mode_count].dir = MODE_DEL;
1051 mode_changes[mode_count].caps = 0;
1052 mode_changes[mode_count].nocaps = 0;
1053 mode_changes[mode_count].mems = ALL_MEMBERS;
1054 mode_changes[mode_count].id = NULL;
1055 mode_changes[mode_count++].arg = NULL;
1056 }
1057 }
1058
1059 void
1060 chm_key(struct Client *source_p, struct Channel *chptr,
1061 int alevel, int parc, int *parn,
1062 const char **parv, int *errors, int dir, char c, long mode_type)
1063 {
1064 char *key;
1065
1066 if(alevel != CHFL_CHANOP)
1067 {
1068 if(!(*errors & SM_ERR_NOOPS))
1069 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
1070 me.name, source_p->name, chptr->chname);
1071 *errors |= SM_ERR_NOOPS;
1072 return;
1073 }
1074
1075 if(dir == MODE_QUERY)
1076 return;
1077
1078 if((dir == MODE_ADD) && parc > *parn)
1079 {
1080 key = LOCAL_COPY(parv[(*parn)]);
1081 (*parn)++;
1082
1083 if(MyClient(source_p))
1084 fix_key(key);
1085 else
1086 fix_key_remote(key);
1087
1088 if(EmptyString(key))
1089 return;
1090
1091 s_assert(key[0] != ' ');
1092 strlcpy(chptr->mode.key, key, sizeof(chptr->mode.key));
1093
1094 mode_changes[mode_count].letter = c;
1095 mode_changes[mode_count].dir = MODE_ADD;
1096 mode_changes[mode_count].caps = 0;
1097 mode_changes[mode_count].nocaps = 0;
1098 mode_changes[mode_count].mems = ALL_MEMBERS;
1099 mode_changes[mode_count].id = NULL;
1100 mode_changes[mode_count++].arg = chptr->mode.key;
1101 }
1102 else if(dir == MODE_DEL)
1103 {
1104 static char splat[] = "*";
1105 int i;
1106
1107 if(parc > *parn)
1108 (*parn)++;
1109
1110 if(!(*chptr->mode.key))
1111 return;
1112
1113 /* hack time. when we get a +k-k mode, the +k arg is
1114 * chptr->mode.key, which the -k sets to \0, so hunt for a
1115 * +k when we get a -k, and set the arg to splat. --anfl
1116 */
1117 for(i = 0; i < mode_count; i++)
1118 {
1119 if(mode_changes[i].letter == 'k' && mode_changes[i].dir == MODE_ADD)
1120 mode_changes[i].arg = splat;
1121 }
1122
1123 *chptr->mode.key = 0;
1124
1125 mode_changes[mode_count].letter = c;
1126 mode_changes[mode_count].dir = MODE_DEL;
1127 mode_changes[mode_count].caps = 0;
1128 mode_changes[mode_count].nocaps = 0;
1129 mode_changes[mode_count].mems = ALL_MEMBERS;
1130 mode_changes[mode_count].id = NULL;
1131 mode_changes[mode_count++].arg = "*";
1132 }
1133 }
1134
1135 void
1136 chm_regonly(struct Client *source_p, struct Channel *chptr,
1137 int alevel, int parc, int *parn,
1138 const char **parv, int *errors, int dir, char c, long mode_type)
1139 {
1140 if(alevel != CHFL_CHANOP)
1141 {
1142 if(!(*errors & SM_ERR_NOOPS))
1143 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
1144 me.name, source_p->name, chptr->chname);
1145 *errors |= SM_ERR_NOOPS;
1146 return;
1147 }
1148
1149 if(dir == MODE_QUERY)
1150 return;
1151
1152 if(((dir == MODE_ADD) && (chptr->mode.mode & MODE_REGONLY)) ||
1153 ((dir == MODE_DEL) && !(chptr->mode.mode & MODE_REGONLY)))
1154 return;
1155
1156 if(dir == MODE_ADD)
1157 chptr->mode.mode |= MODE_REGONLY;
1158 else
1159 chptr->mode.mode &= ~MODE_REGONLY;
1160
1161 mode_changes[mode_count].letter = c;
1162 mode_changes[mode_count].dir = dir;
1163 mode_changes[mode_count].caps = CAP_SERVICE;
1164 mode_changes[mode_count].nocaps = 0;
1165 mode_changes[mode_count].mems = ALL_MEMBERS;
1166 mode_changes[mode_count].id = NULL;
1167 mode_changes[mode_count++].arg = NULL;
1168 }
1169
1170 /* *INDENT-OFF* */
1171 struct ChannelMode chmode_table[256] =
1172 {
1173 {chm_nosuch, 0 }, /* 0x00 */
1174 {chm_nosuch, 0 }, /* 0x01 */
1175 {chm_nosuch, 0 }, /* 0x02 */
1176 {chm_nosuch, 0 }, /* 0x03 */
1177 {chm_nosuch, 0 }, /* 0x04 */
1178 {chm_nosuch, 0 }, /* 0x05 */
1179 {chm_nosuch, 0 }, /* 0x06 */
1180 {chm_nosuch, 0 }, /* 0x07 */
1181 {chm_nosuch, 0 }, /* 0x08 */
1182 {chm_nosuch, 0 }, /* 0x09 */
1183 {chm_nosuch, 0 }, /* 0x0a */
1184 {chm_nosuch, 0 }, /* 0x0b */
1185 {chm_nosuch, 0 }, /* 0x0c */
1186 {chm_nosuch, 0 }, /* 0x0d */
1187 {chm_nosuch, 0 }, /* 0x0e */
1188 {chm_nosuch, 0 }, /* 0x0f */
1189 {chm_nosuch, 0 }, /* 0x10 */
1190 {chm_nosuch, 0 }, /* 0x11 */
1191 {chm_nosuch, 0 }, /* 0x12 */
1192 {chm_nosuch, 0 }, /* 0x13 */
1193 {chm_nosuch, 0 }, /* 0x14 */
1194 {chm_nosuch, 0 }, /* 0x15 */
1195 {chm_nosuch, 0 }, /* 0x16 */
1196 {chm_nosuch, 0 }, /* 0x17 */
1197 {chm_nosuch, 0 }, /* 0x18 */
1198 {chm_nosuch, 0 }, /* 0x19 */
1199 {chm_nosuch, 0 }, /* 0x1a */
1200 {chm_nosuch, 0 }, /* 0x1b */
1201 {chm_nosuch, 0 }, /* 0x1c */
1202 {chm_nosuch, 0 }, /* 0x1d */
1203 {chm_nosuch, 0 }, /* 0x1e */
1204 {chm_nosuch, 0 }, /* 0x1f */
1205 {chm_nosuch, 0 }, /* 0x20 */
1206 {chm_nosuch, 0 }, /* 0x21 */
1207 {chm_nosuch, 0 }, /* 0x22 */
1208 {chm_nosuch, 0 }, /* 0x23 */
1209 {chm_nosuch, 0 }, /* 0x24 */
1210 {chm_nosuch, 0 }, /* 0x25 */
1211 {chm_nosuch, 0 }, /* 0x26 */
1212 {chm_nosuch, 0 }, /* 0x27 */
1213 {chm_nosuch, 0 }, /* 0x28 */
1214 {chm_nosuch, 0 }, /* 0x29 */
1215 {chm_nosuch, 0 }, /* 0x2a */
1216 {chm_nosuch, 0 }, /* 0x2b */
1217 {chm_nosuch, 0 }, /* 0x2c */
1218 {chm_nosuch, 0 }, /* 0x2d */
1219 {chm_nosuch, 0 }, /* 0x2e */
1220 {chm_nosuch, 0 }, /* 0x2f */
1221 {chm_nosuch, 0 }, /* 0x30 */
1222 {chm_nosuch, 0 }, /* 0x31 */
1223 {chm_nosuch, 0 }, /* 0x32 */
1224 {chm_nosuch, 0 }, /* 0x33 */
1225 {chm_nosuch, 0 }, /* 0x34 */
1226 {chm_nosuch, 0 }, /* 0x35 */
1227 {chm_nosuch, 0 }, /* 0x36 */
1228 {chm_nosuch, 0 }, /* 0x37 */
1229 {chm_nosuch, 0 }, /* 0x38 */
1230 {chm_nosuch, 0 }, /* 0x39 */
1231 {chm_nosuch, 0 }, /* 0x3a */
1232 {chm_nosuch, 0 }, /* 0x3b */
1233 {chm_nosuch, 0 }, /* 0x3c */
1234 {chm_nosuch, 0 }, /* 0x3d */
1235 {chm_nosuch, 0 }, /* 0x3e */
1236 {chm_nosuch, 0 }, /* 0x3f */
1237
1238 {chm_nosuch, 0 }, /* @ */
1239 {chm_nosuch, 0 }, /* A */
1240 {chm_nosuch, 0 }, /* B */
1241 {chm_nosuch, 0 }, /* C */
1242 {chm_nosuch, 0 }, /* D */
1243 {chm_nosuch, 0 }, /* E */
1244 {chm_simple, MODE_FREETARGET }, /* F */
1245 {chm_nosuch, 0 }, /* G */
1246 {chm_nosuch, 0 }, /* H */
1247 {chm_ban, CHFL_INVEX }, /* I */
1248 {chm_nosuch, 0 }, /* J */
1249 {chm_nosuch, 0 }, /* K */
1250 {chm_staff, MODE_EXLIMIT }, /* L */
1251 {chm_nosuch, 0 }, /* M */
1252 {chm_nosuch, 0 }, /* N */
1253 {chm_nosuch, 0 }, /* O */
1254 {chm_staff, MODE_PERMANENT }, /* P */
1255 {chm_simple, MODE_DISFORWARD }, /* Q */
1256 {chm_nosuch, 0 }, /* R */
1257 {chm_nosuch, 0 }, /* S */
1258 {chm_nosuch, 0 }, /* T */
1259 {chm_nosuch, 0 }, /* U */
1260 {chm_nosuch, 0 }, /* V */
1261 {chm_nosuch, 0 }, /* W */
1262 {chm_nosuch, 0 }, /* X */
1263 {chm_nosuch, 0 }, /* Y */
1264 {chm_nosuch, 0 }, /* Z */
1265 {chm_nosuch, 0 },
1266 {chm_nosuch, 0 },
1267 {chm_nosuch, 0 },
1268 {chm_nosuch, 0 },
1269 {chm_nosuch, 0 },
1270 {chm_nosuch, 0 },
1271 {chm_nosuch, 0 }, /* a */
1272 {chm_ban, CHFL_BAN }, /* b */
1273 {chm_simple, MODE_NOCOLOR }, /* c */
1274 {chm_nosuch, 0 }, /* d */
1275 {chm_ban, CHFL_EXCEPTION }, /* e */
1276 {chm_forward, 0 }, /* f */
1277 {chm_simple, MODE_FREEINVITE }, /* g */
1278 {chm_nosuch, 0 }, /* h */
1279 {chm_simple, MODE_INVITEONLY }, /* i */
1280 {chm_throttle, 0 }, /* j */
1281 {chm_key, 0 }, /* k */
1282 {chm_limit, 0 }, /* l */
1283 {chm_simple, MODE_MODERATED }, /* m */
1284 {chm_simple, MODE_NOPRIVMSGS }, /* n */
1285 {chm_op, 0 }, /* o */
1286 {chm_simple, MODE_PRIVATE }, /* p */
1287 {chm_ban, CHFL_QUIET }, /* q */
1288 {chm_regonly, 0 }, /* r */
1289 {chm_simple, MODE_SECRET }, /* s */
1290 {chm_simple, MODE_TOPICLIMIT }, /* t */
1291 {chm_nosuch, 0 }, /* u */
1292 {chm_voice, 0 }, /* v */
1293 {chm_nosuch, 0 }, /* w */
1294 {chm_nosuch, 0 }, /* x */
1295 {chm_nosuch, 0 }, /* y */
1296 {chm_simple, MODE_OPMODERATE }, /* z */
1297
1298 {chm_nosuch, 0 }, /* 0x7b */
1299 {chm_nosuch, 0 }, /* 0x7c */
1300 {chm_nosuch, 0 }, /* 0x7d */
1301 {chm_nosuch, 0 }, /* 0x7e */
1302 {chm_nosuch, 0 }, /* 0x7f */
1303
1304 {chm_nosuch, 0 }, /* 0x80 */
1305 {chm_nosuch, 0 }, /* 0x81 */
1306 {chm_nosuch, 0 }, /* 0x82 */
1307 {chm_nosuch, 0 }, /* 0x83 */
1308 {chm_nosuch, 0 }, /* 0x84 */
1309 {chm_nosuch, 0 }, /* 0x85 */
1310 {chm_nosuch, 0 }, /* 0x86 */
1311 {chm_nosuch, 0 }, /* 0x87 */
1312 {chm_nosuch, 0 }, /* 0x88 */
1313 {chm_nosuch, 0 }, /* 0x89 */
1314 {chm_nosuch, 0 }, /* 0x8a */
1315 {chm_nosuch, 0 }, /* 0x8b */
1316 {chm_nosuch, 0 }, /* 0x8c */
1317 {chm_nosuch, 0 }, /* 0x8d */
1318 {chm_nosuch, 0 }, /* 0x8e */
1319 {chm_nosuch, 0 }, /* 0x8f */
1320
1321 {chm_nosuch, 0 }, /* 0x90 */
1322 {chm_nosuch, 0 }, /* 0x91 */
1323 {chm_nosuch, 0 }, /* 0x92 */
1324 {chm_nosuch, 0 }, /* 0x93 */
1325 {chm_nosuch, 0 }, /* 0x94 */
1326 {chm_nosuch, 0 }, /* 0x95 */
1327 {chm_nosuch, 0 }, /* 0x96 */
1328 {chm_nosuch, 0 }, /* 0x97 */
1329 {chm_nosuch, 0 }, /* 0x98 */
1330 {chm_nosuch, 0 }, /* 0x99 */
1331 {chm_nosuch, 0 }, /* 0x9a */
1332 {chm_nosuch, 0 }, /* 0x9b */
1333 {chm_nosuch, 0 }, /* 0x9c */
1334 {chm_nosuch, 0 }, /* 0x9d */
1335 {chm_nosuch, 0 }, /* 0x9e */
1336 {chm_nosuch, 0 }, /* 0x9f */
1337
1338 {chm_nosuch, 0 }, /* 0xa0 */
1339 {chm_nosuch, 0 }, /* 0xa1 */
1340 {chm_nosuch, 0 }, /* 0xa2 */
1341 {chm_nosuch, 0 }, /* 0xa3 */
1342 {chm_nosuch, 0 }, /* 0xa4 */
1343 {chm_nosuch, 0 }, /* 0xa5 */
1344 {chm_nosuch, 0 }, /* 0xa6 */
1345 {chm_nosuch, 0 }, /* 0xa7 */
1346 {chm_nosuch, 0 }, /* 0xa8 */
1347 {chm_nosuch, 0 }, /* 0xa9 */
1348 {chm_nosuch, 0 }, /* 0xaa */
1349 {chm_nosuch, 0 }, /* 0xab */
1350 {chm_nosuch, 0 }, /* 0xac */
1351 {chm_nosuch, 0 }, /* 0xad */
1352 {chm_nosuch, 0 }, /* 0xae */
1353 {chm_nosuch, 0 }, /* 0xaf */
1354
1355 {chm_nosuch, 0 }, /* 0xb0 */
1356 {chm_nosuch, 0 }, /* 0xb1 */
1357 {chm_nosuch, 0 }, /* 0xb2 */
1358 {chm_nosuch, 0 }, /* 0xb3 */
1359 {chm_nosuch, 0 }, /* 0xb4 */
1360 {chm_nosuch, 0 }, /* 0xb5 */
1361 {chm_nosuch, 0 }, /* 0xb6 */
1362 {chm_nosuch, 0 }, /* 0xb7 */
1363 {chm_nosuch, 0 }, /* 0xb8 */
1364 {chm_nosuch, 0 }, /* 0xb9 */
1365 {chm_nosuch, 0 }, /* 0xba */
1366 {chm_nosuch, 0 }, /* 0xbb */
1367 {chm_nosuch, 0 }, /* 0xbc */
1368 {chm_nosuch, 0 }, /* 0xbd */
1369 {chm_nosuch, 0 }, /* 0xbe */
1370 {chm_nosuch, 0 }, /* 0xbf */
1371
1372 {chm_nosuch, 0 }, /* 0xc0 */
1373 {chm_nosuch, 0 }, /* 0xc1 */
1374 {chm_nosuch, 0 }, /* 0xc2 */
1375 {chm_nosuch, 0 }, /* 0xc3 */
1376 {chm_nosuch, 0 }, /* 0xc4 */
1377 {chm_nosuch, 0 }, /* 0xc5 */
1378 {chm_nosuch, 0 }, /* 0xc6 */
1379 {chm_nosuch, 0 }, /* 0xc7 */
1380 {chm_nosuch, 0 }, /* 0xc8 */
1381 {chm_nosuch, 0 }, /* 0xc9 */
1382 {chm_nosuch, 0 }, /* 0xca */
1383 {chm_nosuch, 0 }, /* 0xcb */
1384 {chm_nosuch, 0 }, /* 0xcc */
1385 {chm_nosuch, 0 }, /* 0xcd */
1386 {chm_nosuch, 0 }, /* 0xce */
1387 {chm_nosuch, 0 }, /* 0xcf */
1388
1389 {chm_nosuch, 0 }, /* 0xd0 */
1390 {chm_nosuch, 0 }, /* 0xd1 */
1391 {chm_nosuch, 0 }, /* 0xd2 */
1392 {chm_nosuch, 0 }, /* 0xd3 */
1393 {chm_nosuch, 0 }, /* 0xd4 */
1394 {chm_nosuch, 0 }, /* 0xd5 */
1395 {chm_nosuch, 0 }, /* 0xd6 */
1396 {chm_nosuch, 0 }, /* 0xd7 */
1397 {chm_nosuch, 0 }, /* 0xd8 */
1398 {chm_nosuch, 0 }, /* 0xd9 */
1399 {chm_nosuch, 0 }, /* 0xda */
1400 {chm_nosuch, 0 }, /* 0xdb */
1401 {chm_nosuch, 0 }, /* 0xdc */
1402 {chm_nosuch, 0 }, /* 0xdd */
1403 {chm_nosuch, 0 }, /* 0xde */
1404 {chm_nosuch, 0 }, /* 0xdf */
1405
1406 {chm_nosuch, 0 }, /* 0xe0 */
1407 {chm_nosuch, 0 }, /* 0xe1 */
1408 {chm_nosuch, 0 }, /* 0xe2 */
1409 {chm_nosuch, 0 }, /* 0xe3 */
1410 {chm_nosuch, 0 }, /* 0xe4 */
1411 {chm_nosuch, 0 }, /* 0xe5 */
1412 {chm_nosuch, 0 }, /* 0xe6 */
1413 {chm_nosuch, 0 }, /* 0xe7 */
1414 {chm_nosuch, 0 }, /* 0xe8 */
1415 {chm_nosuch, 0 }, /* 0xe9 */
1416 {chm_nosuch, 0 }, /* 0xea */
1417 {chm_nosuch, 0 }, /* 0xeb */
1418 {chm_nosuch, 0 }, /* 0xec */
1419 {chm_nosuch, 0 }, /* 0xed */
1420 {chm_nosuch, 0 }, /* 0xee */
1421 {chm_nosuch, 0 }, /* 0xef */
1422
1423 {chm_nosuch, 0 }, /* 0xf0 */
1424 {chm_nosuch, 0 }, /* 0xf1 */
1425 {chm_nosuch, 0 }, /* 0xf2 */
1426 {chm_nosuch, 0 }, /* 0xf3 */
1427 {chm_nosuch, 0 }, /* 0xf4 */
1428 {chm_nosuch, 0 }, /* 0xf5 */
1429 {chm_nosuch, 0 }, /* 0xf6 */
1430 {chm_nosuch, 0 }, /* 0xf7 */
1431 {chm_nosuch, 0 }, /* 0xf8 */
1432 {chm_nosuch, 0 }, /* 0xf9 */
1433 {chm_nosuch, 0 }, /* 0xfa */
1434 {chm_nosuch, 0 }, /* 0xfb */
1435 {chm_nosuch, 0 }, /* 0xfc */
1436 {chm_nosuch, 0 }, /* 0xfd */
1437 {chm_nosuch, 0 }, /* 0xfe */
1438 {chm_nosuch, 0 }, /* 0xff */
1439 };
1440
1441 /* *INDENT-ON* */
1442
1443 /* set_channel_mode()
1444 *
1445 * inputs - client, source, channel, membership pointer, params
1446 * output -
1447 * side effects - channel modes/memberships are changed, MODE is issued
1448 *
1449 * Extensively modified to be hotpluggable, 03/09/06 -- nenolod
1450 */
1451 void
1452 set_channel_mode(struct Client *client_p, struct Client *source_p,
1453 struct Channel *chptr, struct membership *msptr, int parc, const char *parv[])
1454 {
1455 static char modebuf[BUFSIZE];
1456 static char parabuf[BUFSIZE];
1457 char *mbuf;
1458 char *pbuf;
1459 int cur_len, mlen, paralen, paracount, arglen, len;
1460 int i, j, flags;
1461 int dir = MODE_ADD;
1462 int parn = 1;
1463 int errors = 0;
1464 int alevel;
1465 const char *ml = parv[0];
1466 char c;
1467 struct Client *fakesource_p;
1468
1469 mask_pos = 0;
1470 mode_count = 0;
1471 mode_limit = 0;
1472
1473 alevel = get_channel_access(source_p, msptr);
1474
1475 /* Hide connecting server on netburst -- jilles */
1476 if (ConfigServerHide.flatten_links && IsServer(source_p) && !has_id(source_p) && !HasSentEob(source_p))
1477 fakesource_p = &me;
1478 else
1479 fakesource_p = source_p;
1480
1481 for(; (c = *ml) != 0; ml++)
1482 {
1483 switch (c)
1484 {
1485 case '+':
1486 dir = MODE_ADD;
1487 break;
1488 case '-':
1489 dir = MODE_DEL;
1490 break;
1491 case '=':
1492 dir = MODE_QUERY;
1493 break;
1494 default:
1495 chmode_table[(unsigned char) c].set_func(fakesource_p, chptr, alevel,
1496 parc, &parn, parv,
1497 &errors, dir, c,
1498 chmode_table[(unsigned char) c].mode_type);
1499 break;
1500 }
1501 }
1502
1503 /* bail out if we have nothing to do... */
1504 if(!mode_count)
1505 return;
1506
1507 if(IsServer(source_p))
1508 mlen = ircsprintf(modebuf, ":%s MODE %s ", fakesource_p->name, chptr->chname);
1509 else
1510 mlen = ircsprintf(modebuf, ":%s!%s@%s MODE %s ",
1511 source_p->name, source_p->username,
1512 source_p->host, chptr->chname);
1513
1514 for(j = 0, flags = ALL_MEMBERS; j < 2; j++, flags = ONLY_CHANOPS)
1515 {
1516 cur_len = mlen;
1517 mbuf = modebuf + mlen;
1518 pbuf = parabuf;
1519 parabuf[0] = '\0';
1520 paracount = paralen = 0;
1521 dir = MODE_QUERY;
1522
1523 for(i = 0; i < mode_count; i++)
1524 {
1525 if(mode_changes[i].letter == 0 || mode_changes[i].mems != flags)
1526 continue;
1527
1528 if(mode_changes[i].arg != NULL)
1529 {
1530 arglen = strlen(mode_changes[i].arg);
1531
1532 if(arglen > MODEBUFLEN - 5)
1533 continue;
1534 }
1535 else
1536 arglen = 0;
1537
1538 /* if we're creeping over MAXMODEPARAMSSERV, or over
1539 * bufsize (4 == +/-,modechar,two spaces) send now.
1540 */
1541 if(mode_changes[i].arg != NULL &&
1542 ((paracount == MAXMODEPARAMSSERV) ||
1543 ((cur_len + paralen + arglen + 4) > (BUFSIZE - 3))))
1544 {
1545 *mbuf = '\0';
1546
1547 if(cur_len > mlen)
1548 sendto_channel_local(flags, chptr, "%s %s", modebuf,
1549 parabuf);
1550 else
1551 continue;
1552
1553 paracount = paralen = 0;
1554 cur_len = mlen;
1555 mbuf = modebuf + mlen;
1556 pbuf = parabuf;
1557 parabuf[0] = '\0';
1558 dir = MODE_QUERY;
1559 }
1560
1561 if(dir != mode_changes[i].dir)
1562 {
1563 *mbuf++ = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1564 cur_len++;
1565 dir = mode_changes[i].dir;
1566 }
1567
1568 *mbuf++ = mode_changes[i].letter;
1569 cur_len++;
1570
1571 if(mode_changes[i].arg != NULL)
1572 {
1573 paracount++;
1574 len = ircsprintf(pbuf, "%s ", mode_changes[i].arg);
1575 pbuf += len;
1576 paralen += len;
1577 }
1578 }
1579
1580 if(paralen && parabuf[paralen - 1] == ' ')
1581 parabuf[paralen - 1] = '\0';
1582
1583 *mbuf = '\0';
1584 if(cur_len > mlen)
1585 sendto_channel_local(flags, chptr, "%s %s", modebuf, parabuf);
1586 }
1587
1588 /* only propagate modes originating locally, or if we're hubbing */
1589 if(MyClient(source_p) || dlink_list_length(&serv_list) > 1)
1590 send_cap_mode_changes(client_p, source_p, chptr, mode_changes, mode_count);
1591 }