ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/channel_mode.c
Revision: 3672
Committed: Thu May 29 11:57:31 2014 UTC (11 years, 3 months ago) by michael
Content type: text/x-csrc
File size: 45573 byte(s)
Log Message:
- channel_mode.c:chm_op(), chm_hop(), chm_voice(): use target_p->name when
  reporting ERR_USERNOTINCHANNEL

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2916 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 2916 * Copyright (c) 1997-2014 ircd-hybrid development team
5 adx 30 *
6     * This program 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 this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19     * USA
20     */
21    
22 michael 2916 /*! \file channel_mode.c
23     * \brief Controls modes on channels.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28 michael 1011 #include "list.h"
29 adx 30 #include "channel.h"
30     #include "channel_mode.h"
31     #include "client.h"
32 michael 1632 #include "conf.h"
33 michael 371 #include "hostmask.h"
34 adx 30 #include "irc_string.h"
35     #include "ircd.h"
36     #include "numeric.h"
37 michael 3347 #include "server.h"
38 adx 30 #include "send.h"
39     #include "memory.h"
40 michael 1654 #include "mempool.h"
41 michael 1243 #include "parse.h"
42 adx 30
43     /* 10 is a magic number in hybrid 6 NFI where it comes from -db */
44 michael 2892 #define BAN_FUDGE 10
45 adx 30
46 michael 388 static char nuh_mask[MAXPARA][IRCD_BUFSIZE];
47 adx 30 /* some buffers for rebuilding channel/nick lists with ,'s */
48     static char modebuf[IRCD_BUFSIZE];
49     static char parabuf[MODEBUFLEN];
50     static struct ChModeChange mode_changes[IRCD_BUFSIZE];
51 michael 3057 static unsigned int mode_count;
52     static unsigned int mode_limit; /* number of modes set other than simple */
53     static unsigned int simple_modes_mask; /* bit mask of simple modes already set */
54 michael 1654 extern mp_pool_t *ban_pool;
55 adx 30
56 michael 3149 const struct mode_letter chan_modes[] =
57     {
58     { MODE_NOCTRL, 'c' },
59     { MODE_INVITEONLY, 'i' },
60     { MODE_MODERATED, 'm' },
61     { MODE_NOPRIVMSGS, 'n' },
62     { MODE_PRIVATE, 'p' },
63     { MODE_REGISTERED, 'r' },
64     { MODE_SECRET, 's' },
65     { MODE_TOPICLIMIT, 't' },
66     { MODE_MODREG, 'M' },
67     { MODE_OPERONLY, 'O' },
68     { MODE_REGONLY, 'R' },
69     { MODE_SSLONLY, 'S' },
70     { 0, '\0' }
71     };
72 adx 30
73 michael 3149
74 adx 30 /* check_string()
75     *
76     * inputs - string to check
77     * output - pointer to modified string
78     * side effects - Fixes a string so that the first white space found
79     * becomes an end of string marker (`\0`).
80     * returns the 'fixed' string or "*" if the string
81     * was NULL length or a NULL pointer.
82     */
83     static char *
84     check_string(char *s)
85     {
86     char *str = s;
87     static char star[] = "*";
88    
89 michael 1772 if (EmptyString(str))
90 michael 593 return star;
91 adx 30
92     for (; *s; ++s)
93     {
94     if (IsSpace(*s))
95     {
96     *s = '\0';
97     break;
98     }
99     }
100    
101 michael 1772 return EmptyString(str) ? star : str;
102 adx 30 }
103    
104     /*
105     * Ban functions to work with mode +b/e/d/I
106     */
107 michael 2892 /* add the specified ID to the channel.
108     * -is 8/9/00
109 adx 30 */
110    
111     int
112 michael 3044 add_id(struct Client *client_p, struct Channel *chptr, char *banid, unsigned int type)
113 adx 30 {
114 michael 593 dlink_list *list = NULL;
115     dlink_node *ban = NULL;
116     struct Ban *ban_p = NULL;
117 adx 30 unsigned int num_mask;
118 michael 3250 size_t len = 0;
119 michael 3215 char name[NICKLEN + 1] = "";
120     char user[USERLEN + 1] = "";
121     char host[HOSTLEN + 1] = "";
122 michael 593 struct split_nuh_item nuh;
123 adx 30
124 michael 3374 /* Don't let local clients overflow the b/e/I lists */
125 adx 30 if (MyClient(client_p))
126     {
127     num_mask = dlink_list_length(&chptr->banlist) +
128     dlink_list_length(&chptr->exceptlist) +
129     dlink_list_length(&chptr->invexlist);
130    
131     if (num_mask >= ConfigChannel.max_bans)
132     {
133 michael 3109 sendto_one_numeric(client_p, &me, ERR_BANLISTFULL, chptr->chname, banid);
134 adx 30 return 0;
135     }
136    
137     collapse(banid);
138     }
139    
140 michael 593 nuh.nuhmask = check_string(banid);
141     nuh.nickptr = name;
142     nuh.userptr = user;
143     nuh.hostptr = host;
144 adx 30
145 michael 593 nuh.nicksize = sizeof(name);
146     nuh.usersize = sizeof(user);
147     nuh.hostsize = sizeof(host);
148    
149     split_nuh(&nuh);
150    
151 adx 30 /*
152 michael 593 * Re-assemble a new n!u@h and print it back to banid for sending
153 adx 30 * the mode to the channel.
154     */
155 michael 1793 len = sprintf(banid, "%s!%s@%s", name, user, host);
156 adx 30
157     switch (type)
158     {
159     case CHFL_BAN:
160     list = &chptr->banlist;
161     clear_ban_cache(chptr);
162     break;
163     case CHFL_EXCEPTION:
164     list = &chptr->exceptlist;
165     clear_ban_cache(chptr);
166     break;
167     case CHFL_INVEX:
168     list = &chptr->invexlist;
169     break;
170     default:
171     assert(0);
172     return 0;
173     }
174    
175     DLINK_FOREACH(ban, list->head)
176     {
177 michael 593 ban_p = ban->data;
178 michael 2892
179 michael 593 if (!irccmp(ban_p->name, name) &&
180 michael 2296 !irccmp(ban_p->user, user) &&
181 michael 593 !irccmp(ban_p->host, host))
182 adx 30 return 0;
183     }
184    
185 michael 1654 ban_p = mp_pool_get(ban_pool);
186     memset(ban_p, 0, sizeof(*ban_p));
187 michael 1646 ban_p->name = xstrdup(name);
188 michael 2296 ban_p->user = xstrdup(user);
189 michael 1646 ban_p->host = xstrdup(host);
190 michael 593 ban_p->when = CurrentTime;
191 michael 2892 ban_p->len = len - 2; /* -2 for @ and ! */
192 michael 593 ban_p->type = parse_netmask(host, &ban_p->addr, &ban_p->bits);
193    
194 adx 30 if (IsClient(client_p))
195     {
196 michael 3504 ban_p->who = MyCalloc(strlen(client_p->name) +
197 michael 593 strlen(client_p->username) +
198     strlen(client_p->host) + 3);
199 michael 1793 sprintf(ban_p->who, "%s!%s@%s", client_p->name,
200 michael 2296 client_p->username, client_p->host);
201 adx 30 }
202 michael 2242 else if (IsHidden(client_p) || (IsServer(client_p) && ConfigServerHide.hide_servers))
203     ban_p->who = xstrdup(me.name);
204 adx 30 else
205 michael 1646 ban_p->who = xstrdup(client_p->name);
206 adx 30
207 michael 593 dlinkAdd(ban_p, &ban_p->node, list);
208 adx 30
209     return 1;
210     }
211    
212     /*
213     * inputs - pointer to channel
214     * - pointer to ban id
215     * - type of ban, i.e. ban, exception, invex
216     * output - 0 for failure, 1 for success
217     * side effects -
218     */
219     static int
220 michael 3044 del_id(struct Channel *chptr, char *banid, unsigned int type)
221 adx 30 {
222 michael 3374 dlink_list *list = NULL;
223     dlink_node *ban = NULL;
224 michael 3215 char name[NICKLEN + 1] = "";
225     char user[USERLEN + 1] = "";
226     char host[HOSTLEN + 1] = "";
227 michael 593 struct split_nuh_item nuh;
228 adx 30
229 michael 2892 assert(banid);
230 adx 30
231 michael 593 nuh.nuhmask = check_string(banid);
232     nuh.nickptr = name;
233     nuh.userptr = user;
234     nuh.hostptr = host;
235 adx 30
236 michael 593 nuh.nicksize = sizeof(name);
237     nuh.usersize = sizeof(user);
238     nuh.hostsize = sizeof(host);
239    
240     split_nuh(&nuh);
241    
242 adx 30 /*
243 michael 593 * Re-assemble a new n!u@h and print it back to banid for sending
244 adx 30 * the mode to the channel.
245     */
246 michael 1793 sprintf(banid, "%s!%s@%s", name, user, host);
247 adx 30
248     switch (type)
249     {
250     case CHFL_BAN:
251     list = &chptr->banlist;
252     clear_ban_cache(chptr);
253     break;
254     case CHFL_EXCEPTION:
255     list = &chptr->exceptlist;
256     clear_ban_cache(chptr);
257     break;
258     case CHFL_INVEX:
259     list = &chptr->invexlist;
260     break;
261     default:
262 michael 2892 assert(0);
263 michael 593 return 0;
264 adx 30 }
265    
266     DLINK_FOREACH(ban, list->head)
267     {
268 michael 3215 struct Ban *banptr = ban->data;
269 adx 30
270     if (!irccmp(name, banptr->name) &&
271 michael 2296 !irccmp(user, banptr->user) &&
272 michael 593 !irccmp(host, banptr->host))
273 adx 30 {
274     remove_ban(banptr, list);
275     return 1;
276     }
277     }
278    
279     return 0;
280     }
281    
282     /* channel_modes()
283     *
284     * inputs - pointer to channel
285     * - pointer to client
286     * - pointer to mode buf
287     * - pointer to parameter buf
288     * output - NONE
289     * side effects - write the "simple" list of channel modes for channel
290     * chptr onto buffer mbuf with the parameters in pbuf.
291     */
292     void
293     channel_modes(struct Channel *chptr, struct Client *client_p,
294     char *mbuf, char *pbuf)
295     {
296 michael 1175 const struct mode_letter *tab = chan_modes;
297 adx 30
298     *mbuf++ = '+';
299     *pbuf = '\0';
300    
301 michael 1175 for (; tab->mode; ++tab)
302     if (chptr->mode.mode & tab->mode)
303     *mbuf++ = tab->letter;
304 adx 30
305     if (chptr->mode.limit)
306     {
307     *mbuf++ = 'l';
308    
309 michael 1219 if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE) || IsMember(client_p, chptr))
310 michael 1793 pbuf += sprintf(pbuf, "%d ", chptr->mode.limit);
311 adx 30 }
312    
313     if (chptr->mode.key[0])
314     {
315     *mbuf++ = 'k';
316    
317 michael 1219 if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE) || IsMember(client_p, chptr))
318 michael 1793 sprintf(pbuf, "%s ", chptr->mode.key);
319 adx 30 }
320    
321     *mbuf = '\0';
322     }
323    
324     /* fix_key()
325 michael 2892 *
326 adx 30 * inputs - pointer to key to clean up
327     * output - pointer to cleaned up key
328     * side effects - input string is modified
329     *
330     * stolen from Undernet's ircd -orabidoo
331     */
332     static char *
333     fix_key(char *arg)
334     {
335     unsigned char *s, *t, c;
336    
337 michael 3149 for (s = t = (unsigned char *)arg; (c = *s); ++s)
338 adx 30 {
339     c &= 0x7f;
340 michael 2892
341 adx 30 if (c != ':' && c > ' ' && c != ',')
342     *t++ = c;
343     }
344    
345     *t = '\0';
346 michael 2892 return arg;
347 adx 30 }
348    
349     /* fix_key_old()
350 michael 2892 *
351 adx 30 * inputs - pointer to key to clean up
352     * output - pointer to cleaned up key
353 michael 2892 * side effects - input string is modifed
354 adx 30 *
355     * Here we attempt to be compatible with older non-hybrid servers.
356     * We can't back down from the ':' issue however. --Rodder
357     */
358     static char *
359     fix_key_old(char *arg)
360     {
361     unsigned char *s, *t, c;
362    
363 michael 3149 for (s = t = (unsigned char *)arg; (c = *s); ++s)
364 adx 30 {
365     c &= 0x7f;
366 michael 2892
367     if ((c != 0x0a) && (c != ':') &&
368     (c != 0x0d) && (c != ','))
369 adx 30 *t++ = c;
370     }
371    
372     *t = '\0';
373 michael 2892 return arg;
374 adx 30 }
375    
376 michael 3149 /*
377     * inputs - pointer to channel
378     * output - none
379     * side effects - clear ban cache
380     */
381     void
382     clear_ban_cache(struct Channel *chptr)
383     {
384     dlink_node *ptr = NULL;
385    
386     DLINK_FOREACH(ptr, chptr->members.head)
387     {
388     struct Membership *ms = ptr->data;
389    
390     if (MyConnect(ms->client_p))
391     ms->flags &= ~(CHFL_BAN_SILENCED|CHFL_BAN_CHECKED);
392     }
393     }
394    
395     void
396     clear_ban_cache_client(struct Client *client_p)
397     {
398     dlink_node *ptr = NULL;
399    
400     DLINK_FOREACH(ptr, client_p->channel.head)
401     {
402     struct Membership *ms = ptr->data;
403     ms->flags &= ~(CHFL_BAN_SILENCED|CHFL_BAN_CHECKED);
404     }
405     }
406    
407 michael 3634 /*
408     * Bitmasks for various error returns that set_channel_mode should only return
409 adx 30 * once per call -orabidoo
410     */
411 michael 3634 enum
412     {
413     SM_ERR_NOOPS = 1 << 0, /* No chan ops */
414     SM_ERR_UNKNOWN = 1 << 1,
415     SM_ERR_RPL_B = 1 << 2,
416     SM_ERR_RPL_E = 1 << 3,
417     SM_ERR_RPL_I = 1 << 4,
418     SM_ERR_NOTONCHANNEL = 1 << 5, /* Client is not on channel */
419     SM_ERR_NOTOPER = 1 << 6,
420     SM_ERR_ONLYSERVER = 1 << 7
421     };
422 adx 30
423     /* Mode functions handle mode changes for a particular mode... */
424     static void
425 michael 3374 chm_nosuch(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
426 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
427 adx 30 {
428     if (*errors & SM_ERR_UNKNOWN)
429     return;
430    
431     *errors |= SM_ERR_UNKNOWN;
432 michael 3109 sendto_one_numeric(source_p, &me, ERR_UNKNOWNMODE, c);
433 adx 30 }
434    
435     static void
436 michael 3374 chm_simple(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
437     char **parv, int *errors, int alev, int dir, char c, unsigned int d)
438 adx 30 {
439     if ((alev < CHACCESS_HALFOP) ||
440 michael 2937 ((d == MODE_PRIVATE) && (alev < CHACCESS_CHANOP)))
441 adx 30 {
442     if (!(*errors & SM_ERR_NOOPS))
443 michael 3109 sendto_one_numeric(source_p, &me,
444     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
445     ERR_CHANOPRIVSNEEDED, chptr->chname);
446 adx 30 *errors |= SM_ERR_NOOPS;
447     return;
448     }
449    
450     /* If have already dealt with this simple mode, ignore it */
451 michael 2937 if (simple_modes_mask & d)
452 adx 30 return;
453    
454 michael 2937 simple_modes_mask |= d;
455 adx 30
456     /* setting + */
457 michael 2892 /* Apparently, (though no one has ever told the hybrid group directly)
458     * admins don't like redundant mode checking. ok. It would have been nice
459     * if you had have told us directly. I've left the original code snippets
460     * in place.
461     *
462     * -Dianora
463     */
464 michael 2937 if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */
465 adx 30 {
466 michael 2937 chptr->mode.mode |= d;
467 adx 30
468     mode_changes[mode_count].letter = c;
469     mode_changes[mode_count].dir = MODE_ADD;
470     mode_changes[mode_count].id = NULL;
471     mode_changes[mode_count].mems = ALL_MEMBERS;
472     mode_changes[mode_count++].arg = NULL;
473     }
474 michael 2937 else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */
475 adx 30 {
476     /* setting - */
477    
478 michael 2937 chptr->mode.mode &= ~d;
479 adx 30
480     mode_changes[mode_count].letter = c;
481     mode_changes[mode_count].dir = MODE_DEL;
482     mode_changes[mode_count].mems = ALL_MEMBERS;
483     mode_changes[mode_count].id = NULL;
484     mode_changes[mode_count++].arg = NULL;
485     }
486     }
487    
488     static void
489 michael 3374 chm_registered(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
490     char **parv, int *errors, int alev, int dir, char c, unsigned int d)
491 michael 1167 {
492 michael 1219 if (!IsServer(source_p) && !HasFlag(source_p, FLAGS_SERVICE))
493 michael 1167 {
494     if (!(*errors & SM_ERR_ONLYSERVER))
495 michael 3109 sendto_one_numeric(source_p, &me,
496     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
497     ERR_ONLYSERVERSCANCHANGE, chptr->chname);
498 michael 1167 *errors |= SM_ERR_ONLYSERVER;
499     return;
500     }
501    
502     /* If have already dealt with this simple mode, ignore it */
503 michael 2937 if (simple_modes_mask & d)
504 michael 1167 return;
505    
506 michael 2937 simple_modes_mask |= d;
507 michael 1167
508     /* setting + */
509 michael 2892 /* Apparently, (though no one has ever told the hybrid group directly)
510     * admins don't like redundant mode checking. ok. It would have been nice
511     * if you had have told us directly. I've left the original code snippets
512     * in place.
513     *
514     * -Dianora
515 michael 1167 */
516 michael 2937 if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */
517 michael 1167 {
518 michael 2937 chptr->mode.mode |= d;
519 michael 1167
520     mode_changes[mode_count].letter = c;
521     mode_changes[mode_count].dir = MODE_ADD;
522     mode_changes[mode_count].id = NULL;
523     mode_changes[mode_count].mems = ALL_MEMBERS;
524     mode_changes[mode_count++].arg = NULL;
525     }
526 michael 2937 else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */
527 michael 1167 {
528     /* setting - */
529    
530 michael 2937 chptr->mode.mode &= ~d;
531 michael 1167
532     mode_changes[mode_count].letter = c;
533     mode_changes[mode_count].dir = MODE_DEL;
534     mode_changes[mode_count].mems = ALL_MEMBERS;
535     mode_changes[mode_count].id = NULL;
536     mode_changes[mode_count++].arg = NULL;
537     }
538     }
539    
540     static void
541 michael 3150 chm_operonly(struct Client *source_p, struct Channel *chptr,
542     int parc, int *parn, char **parv, int *errors, int alev, int dir,
543     char c, unsigned int d)
544 michael 1150 {
545 michael 3648 if ((alev < CHACCESS_HALFOP) || ((d == MODE_PRIVATE) && (alev < CHACCESS_CHANOP)))
546 michael 1150 {
547     if (!(*errors & SM_ERR_NOOPS))
548 michael 3109 sendto_one_numeric(source_p, &me,
549     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
550     ERR_CHANOPRIVSNEEDED, chptr->chname);
551 michael 3648
552 michael 1150 *errors |= SM_ERR_NOOPS;
553     return;
554     }
555 michael 3648
556     if (MyClient(source_p) && !HasUMode(source_p, UMODE_OPER))
557 michael 1150 {
558     if (!(*errors & SM_ERR_NOTOPER))
559 michael 3648 sendto_one_numeric(source_p, &me, ERR_NOPRIVILEGES);
560 michael 1150
561     *errors |= SM_ERR_NOTOPER;
562     return;
563     }
564    
565     /* If have already dealt with this simple mode, ignore it */
566 michael 2937 if (simple_modes_mask & d)
567 michael 1150 return;
568    
569 michael 2937 simple_modes_mask |= d;
570 michael 1150
571 michael 2937 if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */
572 michael 1150 {
573 michael 2937 chptr->mode.mode |= d;
574 michael 1150
575     mode_changes[mode_count].letter = c;
576     mode_changes[mode_count].dir = MODE_ADD;
577     mode_changes[mode_count].id = NULL;
578     mode_changes[mode_count].mems = ALL_MEMBERS;
579     mode_changes[mode_count++].arg = NULL;
580     }
581 michael 2937 else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */
582 michael 1150 {
583     /* setting - */
584    
585 michael 2937 chptr->mode.mode &= ~d;
586 michael 1150
587     mode_changes[mode_count].letter = c;
588     mode_changes[mode_count].dir = MODE_DEL;
589     mode_changes[mode_count].mems = ALL_MEMBERS;
590     mode_changes[mode_count].id = NULL;
591     mode_changes[mode_count++].arg = NULL;
592     }
593     }
594    
595     static void
596 michael 3374 chm_ban(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
597 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
598 adx 30 {
599     char *mask = NULL;
600    
601     if (dir == MODE_QUERY || parc <= *parn)
602     {
603     dlink_node *ptr = NULL;
604    
605     if (*errors & SM_ERR_RPL_B)
606     return;
607    
608     *errors |= SM_ERR_RPL_B;
609    
610     DLINK_FOREACH(ptr, chptr->banlist.head)
611     {
612     const struct Ban *banptr = ptr->data;
613 michael 3109 sendto_one_numeric(source_p, &me, RPL_BANLIST, chptr->chname,
614     banptr->name, banptr->user, banptr->host,
615     banptr->who, banptr->when);
616 adx 30 }
617    
618 michael 3109 sendto_one_numeric(source_p, &me, RPL_ENDOFBANLIST, chptr->chname);
619 adx 30 return;
620     }
621    
622     if (alev < CHACCESS_HALFOP)
623     {
624     if (!(*errors & SM_ERR_NOOPS))
625 michael 3109 sendto_one_numeric(source_p, &me,
626     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
627     ERR_CHANOPRIVSNEEDED, chptr->chname);
628 adx 30 *errors |= SM_ERR_NOOPS;
629     return;
630     }
631    
632     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
633     return;
634    
635 michael 388 mask = nuh_mask[*parn];
636     memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn]));
637     ++*parn;
638    
639 michael 3150 if (!MyConnect(source_p))
640 adx 30 if (strchr(mask, ' '))
641     return;
642    
643     switch (dir)
644     {
645     case MODE_ADD:
646     if (!add_id(source_p, chptr, mask, CHFL_BAN))
647     return;
648     break;
649     case MODE_DEL:
650     if (!del_id(chptr, mask, CHFL_BAN))
651     return;
652     break;
653     default:
654     assert(0);
655     }
656    
657     mode_changes[mode_count].letter = c;
658     mode_changes[mode_count].dir = dir;
659     mode_changes[mode_count].mems = ALL_MEMBERS;
660     mode_changes[mode_count].id = NULL;
661     mode_changes[mode_count++].arg = mask;
662     }
663    
664     static void
665 michael 3374 chm_except(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
666 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
667 adx 30 {
668     char *mask = NULL;
669    
670     if (alev < CHACCESS_HALFOP)
671     {
672     if (!(*errors & SM_ERR_NOOPS))
673 michael 3109 sendto_one_numeric(source_p, &me,
674     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
675     ERR_CHANOPRIVSNEEDED, chptr->chname);
676 adx 30 *errors |= SM_ERR_NOOPS;
677     return;
678     }
679    
680     if (dir == MODE_QUERY || parc <= *parn)
681     {
682     dlink_node *ptr = NULL;
683    
684     if (*errors & SM_ERR_RPL_E)
685     return;
686    
687     *errors |= SM_ERR_RPL_E;
688    
689     DLINK_FOREACH(ptr, chptr->exceptlist.head)
690     {
691     const struct Ban *banptr = ptr->data;
692 michael 3109
693     sendto_one_numeric(source_p, &me, RPL_EXCEPTLIST, chptr->chname,
694     banptr->name, banptr->user, banptr->host,
695     banptr->who, banptr->when);
696 adx 30 }
697    
698 michael 3109 sendto_one_numeric(source_p, &me, RPL_ENDOFEXCEPTLIST, chptr->chname);
699 adx 30 return;
700     }
701    
702     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
703     return;
704    
705 michael 388 mask = nuh_mask[*parn];
706     memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn]));
707     ++*parn;
708 adx 30
709 michael 3150 if (!MyConnect(source_p))
710 adx 30 if (strchr(mask, ' '))
711     return;
712    
713     switch (dir)
714     {
715     case MODE_ADD:
716     if (!add_id(source_p, chptr, mask, CHFL_EXCEPTION))
717     return;
718     break;
719     case MODE_DEL:
720     if (!del_id(chptr, mask, CHFL_EXCEPTION))
721     return;
722     break;
723     default:
724     assert(0);
725     }
726    
727     mode_changes[mode_count].letter = c;
728     mode_changes[mode_count].dir = dir;
729 michael 1495 mode_changes[mode_count].mems = ONLY_CHANOPS;
730 adx 30 mode_changes[mode_count].id = NULL;
731     mode_changes[mode_count++].arg = mask;
732     }
733    
734     static void
735 michael 3374 chm_invex(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
736 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
737 adx 30 {
738     char *mask = NULL;
739    
740     if (alev < CHACCESS_HALFOP)
741     {
742     if (!(*errors & SM_ERR_NOOPS))
743 michael 3109 sendto_one_numeric(source_p, &me,
744     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
745     ERR_CHANOPRIVSNEEDED, chptr->chname);
746 adx 30 *errors |= SM_ERR_NOOPS;
747     return;
748     }
749    
750     if (dir == MODE_QUERY || parc <= *parn)
751     {
752     dlink_node *ptr = NULL;
753    
754     if (*errors & SM_ERR_RPL_I)
755     return;
756    
757     *errors |= SM_ERR_RPL_I;
758    
759     DLINK_FOREACH(ptr, chptr->invexlist.head)
760     {
761     const struct Ban *banptr = ptr->data;
762 michael 3109
763     sendto_one_numeric(source_p, &me, RPL_INVITELIST, chptr->chname,
764     banptr->name, banptr->user, banptr->host,
765     banptr->who, banptr->when);
766 adx 30 }
767    
768 michael 3109 sendto_one_numeric(source_p, &me, RPL_ENDOFINVITELIST, chptr->chname);
769 adx 30 return;
770     }
771    
772     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
773     return;
774    
775 michael 388 mask = nuh_mask[*parn];
776     memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn]));
777     ++*parn;
778 adx 30
779 michael 3150 if (!MyConnect(source_p))
780 adx 30 if (strchr(mask, ' '))
781     return;
782    
783     switch (dir)
784     {
785     case MODE_ADD:
786     if (!add_id(source_p, chptr, mask, CHFL_INVEX))
787     return;
788     break;
789     case MODE_DEL:
790     if (!del_id(chptr, mask, CHFL_INVEX))
791     return;
792     break;
793     default:
794     assert(0);
795     }
796    
797     mode_changes[mode_count].letter = c;
798     mode_changes[mode_count].dir = dir;
799 michael 1495 mode_changes[mode_count].mems = ONLY_CHANOPS;
800 adx 30 mode_changes[mode_count].id = NULL;
801     mode_changes[mode_count++].arg = mask;
802     }
803    
804     static void
805 michael 3374 chm_voice(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
806 michael 2951 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
807 adx 30 {
808 michael 3143 struct Client *target_p;
809 adx 30 struct Membership *member;
810    
811 michael 2951 if (alev < CHACCESS_HALFOP)
812 adx 30 {
813     if (!(*errors & SM_ERR_NOOPS))
814 michael 3109 sendto_one_numeric(source_p, &me,
815     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
816     ERR_CHANOPRIVSNEEDED, chptr->chname);
817 adx 30 *errors |= SM_ERR_NOOPS;
818     return;
819     }
820    
821 michael 3671 if (dir == MODE_QUERY || parc <= *parn)
822 adx 30 return;
823    
824 michael 3672 if ((target_p = find_chasing(source_p, parv[(*parn)++])) == NULL)
825 adx 30 return;
826    
827 michael 3143 if ((member = find_channel_link(target_p, chptr)) == NULL)
828 adx 30 {
829     if (!(*errors & SM_ERR_NOTONCHANNEL))
830 michael 3672 sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, target_p->name, chptr->chname);
831 adx 30 *errors |= SM_ERR_NOTONCHANNEL;
832     return;
833     }
834    
835     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
836     return;
837    
838     /* no redundant mode changes */
839 michael 2951 if (dir == MODE_ADD && has_member_flags(member, CHFL_VOICE))
840 adx 30 return;
841 michael 2951 if (dir == MODE_DEL && !has_member_flags(member, CHFL_VOICE))
842 adx 30 return;
843    
844 michael 2951 mode_changes[mode_count].letter = 'v';
845 adx 30 mode_changes[mode_count].dir = dir;
846     mode_changes[mode_count].mems = ALL_MEMBERS;
847 michael 3143 mode_changes[mode_count].id = target_p->id;
848     mode_changes[mode_count].arg = target_p->name;
849     mode_changes[mode_count++].client = target_p;
850 adx 30
851     if (dir == MODE_ADD)
852 michael 2951 AddMemberFlag(member, CHFL_VOICE);
853 adx 30 else
854 michael 2951 DelMemberFlag(member, CHFL_VOICE);
855 adx 30 }
856    
857     #ifdef HALFOPS
858     static void
859 michael 3374 chm_hop(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
860 michael 3150 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
861 adx 30 {
862 michael 3143 struct Client *target_p;
863 adx 30 struct Membership *member;
864    
865     /* *sigh* - dont allow halfops to set +/-h, they could fully control a
866     * channel if there were no ops - it doesnt solve anything.. MODE_PRIVATE
867     * when used with MODE_SECRET is paranoid - cant use +p
868     *
869     * it needs to be optional per channel - but not via +p, that or remove
870     * paranoid.. -- fl_
871     *
872     * +p means paranoid, it is useless for anything else on modern IRC, as
873     * list isn't really usable. If you want to have a private channel these
874     * days, you set it +s. Halfops can no longer remove simple modes when
875     * +p is set (although they can set +p) so it is safe to use this to
876     * control whether they can (de)halfop...
877     */
878     if (alev <
879     ((chptr->mode.mode & MODE_PRIVATE) ? CHACCESS_CHANOP : CHACCESS_HALFOP))
880     {
881     if (!(*errors & SM_ERR_NOOPS))
882 michael 3109 sendto_one_numeric(source_p, &me,
883     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
884     ERR_CHANOPRIVSNEEDED, chptr->chname);
885 adx 30 *errors |= SM_ERR_NOOPS;
886     return;
887     }
888    
889 michael 3671 if (dir == MODE_QUERY || parc <= *parn)
890 adx 30 return;
891    
892 michael 3672 if ((target_p = find_chasing(source_p, parv[(*parn)++])) == NULL)
893 adx 30 return;
894    
895 michael 3143 if ((member = find_channel_link(target_p, chptr)) == NULL)
896 adx 30 {
897     if (!(*errors & SM_ERR_NOTONCHANNEL))
898 michael 3672 sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, target_p->name, chptr->chname);
899 adx 30 *errors |= SM_ERR_NOTONCHANNEL;
900     return;
901     }
902    
903     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
904     return;
905    
906     /* no redundant mode changes */
907 michael 3140 if (dir == MODE_ADD && has_member_flags(member, CHFL_HALFOP))
908 adx 30 return;
909     if (dir == MODE_DEL && !has_member_flags(member, CHFL_HALFOP))
910     return;
911    
912     mode_changes[mode_count].letter = 'h';
913     mode_changes[mode_count].dir = dir;
914     mode_changes[mode_count].mems = ALL_MEMBERS;
915 michael 3143 mode_changes[mode_count].id = target_p->id;
916     mode_changes[mode_count].arg = target_p->name;
917     mode_changes[mode_count++].client = target_p;
918 adx 30
919     if (dir == MODE_ADD)
920     {
921     AddMemberFlag(member, CHFL_HALFOP);
922     DelMemberFlag(member, CHFL_DEOPPED);
923     }
924     else
925     DelMemberFlag(member, CHFL_HALFOP);
926     }
927     #endif
928    
929     static void
930 michael 3374 chm_op(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
931 michael 2951 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
932 adx 30 {
933 michael 3143 struct Client *target_p;
934 adx 30 struct Membership *member;
935    
936 michael 2951 if (alev < CHACCESS_CHANOP)
937 adx 30 {
938     if (!(*errors & SM_ERR_NOOPS))
939 michael 3109 sendto_one_numeric(source_p, &me,
940     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
941     ERR_CHANOPRIVSNEEDED, chptr->chname);
942 adx 30 *errors |= SM_ERR_NOOPS;
943     return;
944     }
945    
946 michael 3671 if (dir == MODE_QUERY || parc <= *parn)
947 adx 30 return;
948    
949 michael 3672 if ((target_p = find_chasing(source_p, parv[(*parn)++])) == NULL)
950 adx 30 return;
951    
952 michael 3143 if ((member = find_channel_link(target_p, chptr)) == NULL)
953 adx 30 {
954     if (!(*errors & SM_ERR_NOTONCHANNEL))
955 michael 3672 sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, target_p->name, chptr->chname);
956 adx 30 *errors |= SM_ERR_NOTONCHANNEL;
957     return;
958     }
959    
960     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
961     return;
962    
963     /* no redundant mode changes */
964 michael 2951 if (dir == MODE_ADD && has_member_flags(member, CHFL_CHANOP))
965 adx 30 return;
966 michael 2951 if (dir == MODE_DEL && !has_member_flags(member, CHFL_CHANOP))
967 adx 30 return;
968    
969 michael 2951 mode_changes[mode_count].letter = 'o';
970 adx 30 mode_changes[mode_count].dir = dir;
971     mode_changes[mode_count].mems = ALL_MEMBERS;
972 michael 3143 mode_changes[mode_count].id = target_p->id;
973     mode_changes[mode_count].arg = target_p->name;
974     mode_changes[mode_count++].client = target_p;
975 adx 30
976     if (dir == MODE_ADD)
977 michael 2951 {
978     AddMemberFlag(member, CHFL_CHANOP);
979 michael 3140 DelMemberFlag(member, CHFL_DEOPPED);
980 michael 2951 }
981 adx 30 else
982 michael 2951 DelMemberFlag(member, CHFL_CHANOP);
983 adx 30 }
984    
985     static void
986 michael 3374 chm_limit(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
987 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
988 adx 30 {
989 michael 3151 int limit = 0;
990 adx 30
991     if (alev < CHACCESS_HALFOP)
992     {
993     if (!(*errors & SM_ERR_NOOPS))
994 michael 3109 sendto_one_numeric(source_p, &me,
995     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
996     ERR_CHANOPRIVSNEEDED, chptr->chname);
997 adx 30 *errors |= SM_ERR_NOOPS;
998     return;
999     }
1000    
1001     if (dir == MODE_QUERY)
1002     return;
1003    
1004 michael 3671 if (dir == MODE_ADD && parc > *parn)
1005 adx 30 {
1006 michael 3151 char *lstr = parv[(*parn)++];
1007 adx 30
1008 michael 3153 if (EmptyString(lstr) || (limit = atoi(lstr)) <= 0)
1009 adx 30 return;
1010    
1011 michael 1793 sprintf(lstr, "%d", limit);
1012 adx 30
1013 michael 3151 /* If somebody sets MODE #channel +ll 1 2, accept latter --fl */
1014 michael 3671 for (unsigned int i = 0; i < mode_count; ++i)
1015 adx 30 if (mode_changes[i].letter == c && mode_changes[i].dir == MODE_ADD)
1016     mode_changes[i].letter = 0;
1017    
1018     mode_changes[mode_count].letter = c;
1019     mode_changes[mode_count].dir = MODE_ADD;
1020     mode_changes[mode_count].mems = ALL_MEMBERS;
1021     mode_changes[mode_count].id = NULL;
1022     mode_changes[mode_count++].arg = lstr;
1023    
1024     chptr->mode.limit = limit;
1025     }
1026     else if (dir == MODE_DEL)
1027     {
1028     if (!chptr->mode.limit)
1029     return;
1030    
1031     chptr->mode.limit = 0;
1032    
1033     mode_changes[mode_count].letter = c;
1034     mode_changes[mode_count].dir = MODE_DEL;
1035     mode_changes[mode_count].mems = ALL_MEMBERS;
1036     mode_changes[mode_count].id = NULL;
1037     mode_changes[mode_count++].arg = NULL;
1038     }
1039     }
1040    
1041     static void
1042 michael 3374 chm_key(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
1043 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
1044 adx 30 {
1045     if (alev < CHACCESS_HALFOP)
1046     {
1047     if (!(*errors & SM_ERR_NOOPS))
1048 michael 3109 sendto_one_numeric(source_p, &me,
1049     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
1050     ERR_CHANOPRIVSNEEDED, chptr->chname);
1051 adx 30 *errors |= SM_ERR_NOOPS;
1052     return;
1053     }
1054    
1055     if (dir == MODE_QUERY)
1056     return;
1057    
1058 michael 3671 if (dir == MODE_ADD && parc > *parn)
1059 adx 30 {
1060 michael 3151 char *key = parv[(*parn)++];
1061 adx 30
1062     if (MyClient(source_p))
1063     fix_key(key);
1064     else
1065     fix_key_old(key);
1066    
1067 michael 3153 if (EmptyString(key))
1068 adx 30 return;
1069    
1070     assert(key[0] != ' ');
1071     strlcpy(chptr->mode.key, key, sizeof(chptr->mode.key));
1072    
1073 michael 3151 /* If somebody does MODE #channel +kk a b, accept latter --fl */
1074 michael 3671 for (unsigned int i = 0; i < mode_count; ++i)
1075 adx 30 if (mode_changes[i].letter == c && mode_changes[i].dir == MODE_ADD)
1076     mode_changes[i].letter = 0;
1077    
1078     mode_changes[mode_count].letter = c;
1079     mode_changes[mode_count].dir = MODE_ADD;
1080     mode_changes[mode_count].mems = ALL_MEMBERS;
1081     mode_changes[mode_count].id = NULL;
1082     mode_changes[mode_count++].arg = chptr->mode.key;
1083     }
1084     else if (dir == MODE_DEL)
1085     {
1086     if (parc > *parn)
1087     (*parn)++;
1088    
1089     if (chptr->mode.key[0] == '\0')
1090     return;
1091    
1092     chptr->mode.key[0] = '\0';
1093    
1094     mode_changes[mode_count].letter = c;
1095     mode_changes[mode_count].dir = MODE_DEL;
1096     mode_changes[mode_count].mems = ALL_MEMBERS;
1097     mode_changes[mode_count].id = NULL;
1098     mode_changes[mode_count++].arg = "*";
1099     }
1100     }
1101    
1102     struct ChannelMode
1103     {
1104 michael 3150 void (*func)(struct Client *,
1105 michael 2937 struct Channel *, int, int *, char **,
1106     int *, int, int, char, unsigned int);
1107     unsigned int d;
1108 adx 30 };
1109    
1110 michael 2939 static struct ChannelMode ModeTable[256] =
1111 adx 30 {
1112 michael 2939 { chm_nosuch, 0 }, /* 0x00 */
1113     { chm_nosuch, 0 }, /* 0x01 */
1114     { chm_nosuch, 0 }, /* 0x02 */
1115     { chm_nosuch, 0 }, /* 0x03 */
1116     { chm_nosuch, 0 }, /* 0x04 */
1117     { chm_nosuch, 0 }, /* 0x05 */
1118     { chm_nosuch, 0 }, /* 0x06 */
1119     { chm_nosuch, 0 }, /* 0x07 */
1120     { chm_nosuch, 0 }, /* 0x08 */
1121     { chm_nosuch, 0 }, /* 0x09 */
1122     { chm_nosuch, 0 }, /* 0x0a */
1123     { chm_nosuch, 0 }, /* 0x0b */
1124     { chm_nosuch, 0 }, /* 0x0c */
1125     { chm_nosuch, 0 }, /* 0x0d */
1126     { chm_nosuch, 0 }, /* 0x0e */
1127     { chm_nosuch, 0 }, /* 0x0f */
1128     { chm_nosuch, 0 }, /* 0x10 */
1129     { chm_nosuch, 0 }, /* 0x11 */
1130     { chm_nosuch, 0 }, /* 0x12 */
1131     { chm_nosuch, 0 }, /* 0x13 */
1132     { chm_nosuch, 0 }, /* 0x14 */
1133     { chm_nosuch, 0 }, /* 0x15 */
1134     { chm_nosuch, 0 }, /* 0x16 */
1135     { chm_nosuch, 0 }, /* 0x17 */
1136     { chm_nosuch, 0 }, /* 0x18 */
1137     { chm_nosuch, 0 }, /* 0x19 */
1138     { chm_nosuch, 0 }, /* 0x1a */
1139     { chm_nosuch, 0 }, /* 0x1b */
1140     { chm_nosuch, 0 }, /* 0x1c */
1141     { chm_nosuch, 0 }, /* 0x1d */
1142     { chm_nosuch, 0 }, /* 0x1e */
1143     { chm_nosuch, 0 }, /* 0x1f */
1144     { chm_nosuch, 0 }, /* 0x20 */
1145     { chm_nosuch, 0 }, /* 0x21 */
1146     { chm_nosuch, 0 }, /* 0x22 */
1147     { chm_nosuch, 0 }, /* 0x23 */
1148     { chm_nosuch, 0 }, /* 0x24 */
1149     { chm_nosuch, 0 }, /* 0x25 */
1150     { chm_nosuch, 0 }, /* 0x26 */
1151     { chm_nosuch, 0 }, /* 0x27 */
1152     { chm_nosuch, 0 }, /* 0x28 */
1153     { chm_nosuch, 0 }, /* 0x29 */
1154     { chm_nosuch, 0 }, /* 0x2a */
1155     { chm_nosuch, 0 }, /* 0x2b */
1156     { chm_nosuch, 0 }, /* 0x2c */
1157     { chm_nosuch, 0 }, /* 0x2d */
1158     { chm_nosuch, 0 }, /* 0x2e */
1159     { chm_nosuch, 0 }, /* 0x2f */
1160     { chm_nosuch, 0 }, /* 0x30 */
1161     { chm_nosuch, 0 }, /* 0x31 */
1162     { chm_nosuch, 0 }, /* 0x32 */
1163     { chm_nosuch, 0 }, /* 0x33 */
1164     { chm_nosuch, 0 }, /* 0x34 */
1165     { chm_nosuch, 0 }, /* 0x35 */
1166     { chm_nosuch, 0 }, /* 0x36 */
1167     { chm_nosuch, 0 }, /* 0x37 */
1168     { chm_nosuch, 0 }, /* 0x38 */
1169     { chm_nosuch, 0 }, /* 0x39 */
1170     { chm_nosuch, 0 }, /* 0x3a */
1171     { chm_nosuch, 0 }, /* 0x3b */
1172     { chm_nosuch, 0 }, /* 0x3c */
1173     { chm_nosuch, 0 }, /* 0x3d */
1174     { chm_nosuch, 0 }, /* 0x3e */
1175     { chm_nosuch, 0 }, /* 0x3f */
1176     { chm_nosuch, 0 }, /* @ */
1177     { chm_nosuch, 0 }, /* A */
1178     { chm_nosuch, 0 }, /* B */
1179     { chm_nosuch, 0 }, /* C */
1180     { chm_nosuch, 0 }, /* D */
1181     { chm_nosuch, 0 }, /* E */
1182     { chm_nosuch, 0 }, /* F */
1183     { chm_nosuch, 0 }, /* G */
1184     { chm_nosuch, 0 }, /* H */
1185     { chm_invex, 0 }, /* I */
1186     { chm_nosuch, 0 }, /* J */
1187     { chm_nosuch, 0 }, /* K */
1188     { chm_nosuch, 0 }, /* L */
1189     { chm_simple, MODE_MODREG}, /* M */
1190     { chm_nosuch, 0 }, /* N */
1191     { chm_operonly, MODE_OPERONLY}, /* O */
1192     { chm_nosuch, 0 }, /* P */
1193     { chm_nosuch, 0 }, /* Q */
1194     { chm_simple, MODE_REGONLY}, /* R */
1195     { chm_simple, MODE_SSLONLY}, /* S */
1196     { chm_nosuch, 0 }, /* T */
1197     { chm_nosuch, 0 }, /* U */
1198     { chm_nosuch, 0 }, /* V */
1199     { chm_nosuch, 0 }, /* W */
1200     { chm_nosuch, 0 }, /* X */
1201     { chm_nosuch, 0 }, /* Y */
1202     { chm_nosuch, 0 }, /* Z */
1203     { chm_nosuch, 0 },
1204     { chm_nosuch, 0 },
1205     { chm_nosuch, 0 },
1206     { chm_nosuch, 0 },
1207     { chm_nosuch, 0 },
1208     { chm_nosuch, 0 },
1209     { chm_nosuch, 0 }, /* a */
1210     { chm_ban, 0 }, /* b */
1211     { chm_simple, MODE_NOCTRL}, /* c */
1212     { chm_nosuch, 0 }, /* d */
1213     { chm_except, 0 }, /* e */
1214     { chm_nosuch, 0 }, /* f */
1215     { chm_nosuch, 0 }, /* g */
1216 adx 30 #ifdef HALFOPS
1217 michael 2939 { chm_hop, 0 }, /* h */
1218 adx 30 #else
1219 michael 2939 { chm_nosuch, 0 }, /* h */
1220 adx 30 #endif
1221 michael 2939 { chm_simple, MODE_INVITEONLY }, /* i */
1222     { chm_nosuch, 0 }, /* j */
1223     { chm_key, 0 }, /* k */
1224     { chm_limit, 0 }, /* l */
1225     { chm_simple, MODE_MODERATED }, /* m */
1226     { chm_simple, MODE_NOPRIVMSGS }, /* n */
1227     { chm_op, 0 }, /* o */
1228     { chm_simple, MODE_PRIVATE }, /* p */
1229     { chm_nosuch, 0 }, /* q */
1230     { chm_registered, MODE_REGISTERED }, /* r */
1231     { chm_simple, MODE_SECRET }, /* s */
1232     { chm_simple, MODE_TOPICLIMIT }, /* t */
1233     { chm_nosuch, 0 }, /* u */
1234     { chm_voice, 0 }, /* v */
1235     { chm_nosuch, 0 }, /* w */
1236     { chm_nosuch, 0 }, /* x */
1237     { chm_nosuch, 0 }, /* y */
1238     { chm_nosuch, 0 }, /* z */
1239     { chm_nosuch, 0 }, /* 0x7b */
1240     { chm_nosuch, 0 }, /* 0x7c */
1241     { chm_nosuch, 0 }, /* 0x7d */
1242     { chm_nosuch, 0 }, /* 0x7e */
1243     { chm_nosuch, 0 }, /* 0x7f */
1244     { chm_nosuch, 0 }, /* 0x80 */
1245     { chm_nosuch, 0 }, /* 0x81 */
1246     { chm_nosuch, 0 }, /* 0x82 */
1247     { chm_nosuch, 0 }, /* 0x83 */
1248     { chm_nosuch, 0 }, /* 0x84 */
1249     { chm_nosuch, 0 }, /* 0x85 */
1250     { chm_nosuch, 0 }, /* 0x86 */
1251     { chm_nosuch, 0 }, /* 0x87 */
1252     { chm_nosuch, 0 }, /* 0x88 */
1253     { chm_nosuch, 0 }, /* 0x89 */
1254     { chm_nosuch, 0 }, /* 0x8a */
1255     { chm_nosuch, 0 }, /* 0x8b */
1256     { chm_nosuch, 0 }, /* 0x8c */
1257     { chm_nosuch, 0 }, /* 0x8d */
1258     { chm_nosuch, 0 }, /* 0x8e */
1259     { chm_nosuch, 0 }, /* 0x8f */
1260     { chm_nosuch, 0 }, /* 0x90 */
1261     { chm_nosuch, 0 }, /* 0x91 */
1262     { chm_nosuch, 0 }, /* 0x92 */
1263     { chm_nosuch, 0 }, /* 0x93 */
1264     { chm_nosuch, 0 }, /* 0x94 */
1265     { chm_nosuch, 0 }, /* 0x95 */
1266     { chm_nosuch, 0 }, /* 0x96 */
1267     { chm_nosuch, 0 }, /* 0x97 */
1268     { chm_nosuch, 0 }, /* 0x98 */
1269     { chm_nosuch, 0 }, /* 0x99 */
1270     { chm_nosuch, 0 }, /* 0x9a */
1271     { chm_nosuch, 0 }, /* 0x9b */
1272     { chm_nosuch, 0 }, /* 0x9c */
1273     { chm_nosuch, 0 }, /* 0x9d */
1274     { chm_nosuch, 0 }, /* 0x9e */
1275     { chm_nosuch, 0 }, /* 0x9f */
1276     { chm_nosuch, 0 }, /* 0xa0 */
1277     { chm_nosuch, 0 }, /* 0xa1 */
1278     { chm_nosuch, 0 }, /* 0xa2 */
1279     { chm_nosuch, 0 }, /* 0xa3 */
1280     { chm_nosuch, 0 }, /* 0xa4 */
1281     { chm_nosuch, 0 }, /* 0xa5 */
1282     { chm_nosuch, 0 }, /* 0xa6 */
1283     { chm_nosuch, 0 }, /* 0xa7 */
1284     { chm_nosuch, 0 }, /* 0xa8 */
1285     { chm_nosuch, 0 }, /* 0xa9 */
1286     { chm_nosuch, 0 }, /* 0xaa */
1287     { chm_nosuch, 0 }, /* 0xab */
1288     { chm_nosuch, 0 }, /* 0xac */
1289     { chm_nosuch, 0 }, /* 0xad */
1290     { chm_nosuch, 0 }, /* 0xae */
1291     { chm_nosuch, 0 }, /* 0xaf */
1292     { chm_nosuch, 0 }, /* 0xb0 */
1293     { chm_nosuch, 0 }, /* 0xb1 */
1294     { chm_nosuch, 0 }, /* 0xb2 */
1295     { chm_nosuch, 0 }, /* 0xb3 */
1296     { chm_nosuch, 0 }, /* 0xb4 */
1297     { chm_nosuch, 0 }, /* 0xb5 */
1298     { chm_nosuch, 0 }, /* 0xb6 */
1299     { chm_nosuch, 0 }, /* 0xb7 */
1300     { chm_nosuch, 0 }, /* 0xb8 */
1301     { chm_nosuch, 0 }, /* 0xb9 */
1302     { chm_nosuch, 0 }, /* 0xba */
1303     { chm_nosuch, 0 }, /* 0xbb */
1304     { chm_nosuch, 0 }, /* 0xbc */
1305     { chm_nosuch, 0 }, /* 0xbd */
1306     { chm_nosuch, 0 }, /* 0xbe */
1307     { chm_nosuch, 0 }, /* 0xbf */
1308     { chm_nosuch, 0 }, /* 0xc0 */
1309     { chm_nosuch, 0 }, /* 0xc1 */
1310     { chm_nosuch, 0 }, /* 0xc2 */
1311     { chm_nosuch, 0 }, /* 0xc3 */
1312     { chm_nosuch, 0 }, /* 0xc4 */
1313     { chm_nosuch, 0 }, /* 0xc5 */
1314     { chm_nosuch, 0 }, /* 0xc6 */
1315     { chm_nosuch, 0 }, /* 0xc7 */
1316     { chm_nosuch, 0 }, /* 0xc8 */
1317     { chm_nosuch, 0 }, /* 0xc9 */
1318     { chm_nosuch, 0 }, /* 0xca */
1319     { chm_nosuch, 0 }, /* 0xcb */
1320     { chm_nosuch, 0 }, /* 0xcc */
1321     { chm_nosuch, 0 }, /* 0xcd */
1322     { chm_nosuch, 0 }, /* 0xce */
1323     { chm_nosuch, 0 }, /* 0xcf */
1324     { chm_nosuch, 0 }, /* 0xd0 */
1325     { chm_nosuch, 0 }, /* 0xd1 */
1326     { chm_nosuch, 0 }, /* 0xd2 */
1327     { chm_nosuch, 0 }, /* 0xd3 */
1328     { chm_nosuch, 0 }, /* 0xd4 */
1329     { chm_nosuch, 0 }, /* 0xd5 */
1330     { chm_nosuch, 0 }, /* 0xd6 */
1331     { chm_nosuch, 0 }, /* 0xd7 */
1332     { chm_nosuch, 0 }, /* 0xd8 */
1333     { chm_nosuch, 0 }, /* 0xd9 */
1334     { chm_nosuch, 0 }, /* 0xda */
1335     { chm_nosuch, 0 }, /* 0xdb */
1336     { chm_nosuch, 0 }, /* 0xdc */
1337     { chm_nosuch, 0 }, /* 0xdd */
1338     { chm_nosuch, 0 }, /* 0xde */
1339     { chm_nosuch, 0 }, /* 0xdf */
1340     { chm_nosuch, 0 }, /* 0xe0 */
1341     { chm_nosuch, 0 }, /* 0xe1 */
1342     { chm_nosuch, 0 }, /* 0xe2 */
1343     { chm_nosuch, 0 }, /* 0xe3 */
1344     { chm_nosuch, 0 }, /* 0xe4 */
1345     { chm_nosuch, 0 }, /* 0xe5 */
1346     { chm_nosuch, 0 }, /* 0xe6 */
1347     { chm_nosuch, 0 }, /* 0xe7 */
1348     { chm_nosuch, 0 }, /* 0xe8 */
1349     { chm_nosuch, 0 }, /* 0xe9 */
1350     { chm_nosuch, 0 }, /* 0xea */
1351     { chm_nosuch, 0 }, /* 0xeb */
1352     { chm_nosuch, 0 }, /* 0xec */
1353     { chm_nosuch, 0 }, /* 0xed */
1354     { chm_nosuch, 0 }, /* 0xee */
1355     { chm_nosuch, 0 }, /* 0xef */
1356     { chm_nosuch, 0 }, /* 0xf0 */
1357     { chm_nosuch, 0 }, /* 0xf1 */
1358     { chm_nosuch, 0 }, /* 0xf2 */
1359     { chm_nosuch, 0 }, /* 0xf3 */
1360     { chm_nosuch, 0 }, /* 0xf4 */
1361     { chm_nosuch, 0 }, /* 0xf5 */
1362     { chm_nosuch, 0 }, /* 0xf6 */
1363     { chm_nosuch, 0 }, /* 0xf7 */
1364     { chm_nosuch, 0 }, /* 0xf8 */
1365     { chm_nosuch, 0 }, /* 0xf9 */
1366     { chm_nosuch, 0 }, /* 0xfa */
1367     { chm_nosuch, 0 }, /* 0xfb */
1368     { chm_nosuch, 0 }, /* 0xfc */
1369     { chm_nosuch, 0 }, /* 0xfd */
1370     { chm_nosuch, 0 }, /* 0xfe */
1371     { chm_nosuch, 0 }, /* 0xff */
1372 adx 30 };
1373    
1374     /* get_channel_access()
1375     *
1376     * inputs - pointer to Client struct
1377     * - pointer to Membership struct
1378     * output - CHACCESS_CHANOP if we should let them have
1379     * chanop level access, 0 for peon level access.
1380     * side effects - NONE
1381     */
1382     static int
1383 michael 2941 get_channel_access(const struct Client *source_p,
1384     const struct Membership *member)
1385 adx 30 {
1386     /* Let hacked servers in for now... */
1387     if (!MyClient(source_p))
1388     return CHACCESS_CHANOP;
1389    
1390 michael 3235 if (!member)
1391 adx 30 return CHACCESS_NOTONCHAN;
1392    
1393 michael 3374 /* Just to be sure.. */
1394 adx 30 assert(source_p == member->client_p);
1395    
1396     if (has_member_flags(member, CHFL_CHANOP))
1397     return CHACCESS_CHANOP;
1398    
1399     #ifdef HALFOPS
1400     if (has_member_flags(member, CHFL_HALFOP))
1401     return CHACCESS_HALFOP;
1402     #endif
1403    
1404     return CHACCESS_PEON;
1405     }
1406    
1407 michael 3151 /* send_mode_changes_server()
1408 michael 3159 * Input: the source client(source_p),
1409 adx 30 * the channel to send mode changes for(chptr)
1410     * Output: None.
1411 michael 3151 * Side-effects: Sends the appropriate mode changes to servers.
1412 adx 30 *
1413     */
1414     static void
1415 michael 3150 send_mode_changes_server(struct Client *source_p, struct Channel *chptr)
1416 adx 30 {
1417 michael 3151 int mbl = 0, pbl = 0, arglen = 0, nc = 0, mc = 0;
1418     int len = 0;
1419 michael 3671 int dir = MODE_QUERY;
1420 adx 30 const char *arg = NULL;
1421 michael 3671 char *parptr = NULL;
1422 adx 30
1423     parabuf[0] = '\0';
1424     parptr = parabuf;
1425    
1426 michael 3135 mbl = snprintf(modebuf, sizeof(modebuf), ":%s TMODE %lu %s ", source_p->id,
1427     (unsigned long)chptr->channelts, chptr->chname);
1428 adx 30
1429 michael 3374 /* Loop the list of modes we have */
1430 michael 3671 for (unsigned i = 0; i < mode_count; ++i)
1431 adx 30 {
1432 michael 3668 if (mode_changes[i].letter == 0)
1433 adx 30 continue;
1434    
1435 michael 3141 if (mode_changes[i].id)
1436     arg = mode_changes[i].id;
1437     else
1438     arg = mode_changes[i].arg;
1439 adx 30
1440 michael 3215 if (arg)
1441 michael 3141 arglen = strlen(arg);
1442     else
1443     arglen = 0;
1444    
1445 michael 3136 /*
1446     * If we're creeping past the buf size, we need to send it and make
1447 adx 30 * another line for the other modes
1448     */
1449     if ((mc == MAXMODEPARAMS) ||
1450     ((arglen + mbl + pbl + 2) > IRCD_BUFSIZE) ||
1451     (pbl + arglen + BAN_FUDGE) >= MODEBUFLEN)
1452     {
1453 michael 3215 if (nc)
1454 michael 3150 sendto_server(source_p, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
1455 michael 3215
1456 adx 30 nc = 0;
1457     mc = 0;
1458    
1459 michael 3135 mbl = snprintf(modebuf, sizeof(modebuf), ":%s TMODE %lu %s ", source_p->id,
1460     (unsigned long)chptr->channelts, chptr->chname);
1461 adx 30
1462     pbl = 0;
1463     parabuf[0] = '\0';
1464     parptr = parabuf;
1465     dir = MODE_QUERY;
1466     }
1467    
1468     if (dir != mode_changes[i].dir)
1469     {
1470     modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1471     dir = mode_changes[i].dir;
1472     }
1473    
1474     modebuf[mbl++] = mode_changes[i].letter;
1475     modebuf[mbl] = '\0';
1476     nc++;
1477    
1478 michael 3215 if (arg)
1479 adx 30 {
1480 michael 1793 len = sprintf(parptr, "%s ", arg);
1481 adx 30 pbl += len;
1482     parptr += len;
1483     mc++;
1484     }
1485     }
1486    
1487     if (pbl && parabuf[pbl - 1] == ' ')
1488 michael 3149 parabuf[pbl - 1] = '\0';
1489 adx 30
1490 michael 3215 if (nc)
1491 michael 3150 sendto_server(source_p, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
1492 adx 30 }
1493    
1494     /* void send_mode_changes(struct Client *client_p,
1495     * struct Client *source_p,
1496     * struct Channel *chptr)
1497     * Input: The client sending(client_p), the source client(source_p),
1498     * the channel to send mode changes for(chptr),
1499     * mode change globals.
1500     * Output: None.
1501     * Side-effects: Sends the appropriate mode changes to other clients
1502     * and propagates to servers.
1503     */
1504     /* ensure parabuf < MODEBUFLEN -db */
1505     static void
1506 michael 3150 send_mode_changes(struct Client *source_p, struct Channel *chptr)
1507 adx 30 {
1508 michael 3151 int mbl = 0, pbl = 0, arglen = 0, nc = 0, mc = 0;
1509     int len = 0;
1510 michael 3671 int dir = MODE_QUERY;
1511 adx 30 const char *arg = NULL;
1512 michael 3671 char *parptr = NULL;
1513 adx 30
1514 michael 3151 /* Bail out if we have nothing to do... */
1515 adx 30 if (!mode_count)
1516     return;
1517    
1518     if (IsServer(source_p))
1519 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s MODE %s ", (IsHidden(source_p) ||
1520     ConfigServerHide.hide_servers) ?
1521     me.name : source_p->name, chptr->chname);
1522 adx 30 else
1523 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s!%s@%s MODE %s ", source_p->name,
1524     source_p->username, source_p->host, chptr->chname);
1525 adx 30
1526     parabuf[0] = '\0';
1527     parptr = parabuf;
1528    
1529 michael 3671 for (unsigned int i = 0; i < mode_count; ++i)
1530 adx 30 {
1531     if (mode_changes[i].letter == 0 ||
1532     mode_changes[i].mems == NON_CHANOPS ||
1533     mode_changes[i].mems == ONLY_SERVERS)
1534     continue;
1535    
1536     arg = mode_changes[i].arg;
1537 michael 3215 if (arg)
1538 adx 30 arglen = strlen(arg);
1539     else
1540     arglen = 0;
1541    
1542 michael 2892 if ((mc == MAXMODEPARAMS) ||
1543 adx 30 ((arglen + mbl + pbl + 2) > IRCD_BUFSIZE) ||
1544 michael 2892 ((arglen + pbl + BAN_FUDGE) >= MODEBUFLEN))
1545 adx 30 {
1546     if (mbl && modebuf[mbl - 1] == '-')
1547     modebuf[mbl - 1] = '\0';
1548    
1549 michael 3215 if (nc)
1550 michael 1243 sendto_channel_local(ALL_MEMBERS, 0, chptr, "%s %s", modebuf, parabuf);
1551 adx 30
1552     nc = 0;
1553     mc = 0;
1554    
1555     if (IsServer(source_p))
1556 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s MODE %s ", (IsHidden(source_p) ||
1557     ConfigServerHide.hide_servers) ?
1558     me.name : source_p->name, chptr->chname);
1559 adx 30 else
1560 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s!%s@%s MODE %s ", source_p->name,
1561     source_p->username, source_p->host, chptr->chname);
1562 adx 30
1563     pbl = 0;
1564     parabuf[0] = '\0';
1565     parptr = parabuf;
1566     dir = MODE_QUERY;
1567     }
1568    
1569     if (dir != mode_changes[i].dir)
1570     {
1571     modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1572     dir = mode_changes[i].dir;
1573     }
1574    
1575     modebuf[mbl++] = mode_changes[i].letter;
1576     modebuf[mbl] = '\0';
1577     nc++;
1578    
1579 michael 3215 if (arg)
1580 adx 30 {
1581 michael 1793 len = sprintf(parptr, "%s ", arg);
1582 adx 30 pbl += len;
1583     parptr += len;
1584     mc++;
1585     }
1586     }
1587    
1588     if (pbl && parabuf[pbl - 1] == ' ')
1589 michael 3149 parabuf[pbl - 1] = '\0';
1590 adx 30
1591 michael 3215 if (nc)
1592 michael 1243 sendto_channel_local(ALL_MEMBERS, 0, chptr, "%s %s", modebuf, parabuf);
1593 adx 30
1594 michael 3150 send_mode_changes_server(source_p, chptr);
1595 adx 30 }
1596    
1597 michael 3671 /*
1598 michael 3159 * Input: The the client this originated
1599 adx 30 * from, the channel, the parameter count starting at the modes,
1600     * the parameters, the channel name.
1601     * Output: None.
1602     * Side-effects: Changes the channel membership and modes appropriately,
1603     * sends the appropriate MODE messages to the appropriate
1604     * clients.
1605     */
1606     void
1607 michael 3150 set_channel_mode(struct Client *source_p, struct Channel *chptr,
1608 michael 2937 struct Membership *member, int parc, char *parv[])
1609 adx 30 {
1610     int dir = MODE_ADD;
1611     int parn = 1;
1612 michael 3671 int alevel = 0, errors = 0;
1613 adx 30
1614     mode_count = 0;
1615     mode_limit = 0;
1616     simple_modes_mask = 0;
1617    
1618     alevel = get_channel_access(source_p, member);
1619    
1620 michael 3283 for (const char *ml = parv[0]; *ml; ++ml)
1621 adx 30 {
1622 michael 3250 switch (*ml)
1623 adx 30 {
1624     case '+':
1625     dir = MODE_ADD;
1626     break;
1627     case '-':
1628     dir = MODE_DEL;
1629     break;
1630     case '=':
1631     dir = MODE_QUERY;
1632     break;
1633     default:
1634 michael 2939 {
1635 michael 3250 struct ChannelMode *tptr = &ModeTable[(unsigned char)*ml];
1636 michael 2939
1637 michael 3150 tptr->func(source_p, chptr, parc, &parn, parv,
1638 michael 3250 &errors, alevel, dir, *ml, tptr->d);
1639 adx 30 break;
1640 michael 2939 }
1641 adx 30 }
1642     }
1643    
1644 michael 3150 send_mode_changes(source_p, chptr);
1645 adx 30 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision