ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/channel_mode.c
Revision: 3629
Committed: Fri May 23 18:36:26 2014 UTC (11 years, 3 months ago) by michael
Content type: text/x-csrc
File size: 46010 byte(s)
Log Message:
- channel_mode.c:chm_operonly(): removed redundant assignment

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 adx 30 /* bitmasks for various error returns that set_channel_mode should only return
408     * once per call -orabidoo
409     */
410    
411     #define SM_ERR_NOTS 0x00000001 /* No TS on channel */
412     #define SM_ERR_NOOPS 0x00000002 /* No chan ops */
413     #define SM_ERR_UNKNOWN 0x00000004
414     #define SM_ERR_RPL_B 0x00000008
415     #define SM_ERR_RPL_E 0x00000010
416     #define SM_ERR_NOTONCHANNEL 0x00000020 /* Not on channel */
417     #define SM_ERR_RPL_I 0x00000040
418 michael 1150 #define SM_ERR_NOTOPER 0x00000080
419 michael 1167 #define SM_ERR_ONLYSERVER 0x00000100
420 adx 30
421     /* Mode functions handle mode changes for a particular mode... */
422     static void
423 michael 3374 chm_nosuch(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
424 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
425 adx 30 {
426     if (*errors & SM_ERR_UNKNOWN)
427     return;
428    
429     *errors |= SM_ERR_UNKNOWN;
430 michael 3109 sendto_one_numeric(source_p, &me, ERR_UNKNOWNMODE, c);
431 adx 30 }
432    
433     static void
434 michael 3374 chm_simple(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
435     char **parv, int *errors, int alev, int dir, char c, unsigned int d)
436 adx 30 {
437     if ((alev < CHACCESS_HALFOP) ||
438 michael 2937 ((d == MODE_PRIVATE) && (alev < CHACCESS_CHANOP)))
439 adx 30 {
440     if (!(*errors & SM_ERR_NOOPS))
441 michael 3109 sendto_one_numeric(source_p, &me,
442     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
443     ERR_CHANOPRIVSNEEDED, chptr->chname);
444 adx 30 *errors |= SM_ERR_NOOPS;
445     return;
446     }
447    
448     /* If have already dealt with this simple mode, ignore it */
449 michael 2937 if (simple_modes_mask & d)
450 adx 30 return;
451    
452 michael 2937 simple_modes_mask |= d;
453 adx 30
454     /* setting + */
455 michael 2892 /* Apparently, (though no one has ever told the hybrid group directly)
456     * admins don't like redundant mode checking. ok. It would have been nice
457     * if you had have told us directly. I've left the original code snippets
458     * in place.
459     *
460     * -Dianora
461     */
462 michael 2937 if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */
463 adx 30 {
464 michael 2937 chptr->mode.mode |= d;
465 adx 30
466     mode_changes[mode_count].letter = c;
467     mode_changes[mode_count].dir = MODE_ADD;
468     mode_changes[mode_count].id = NULL;
469     mode_changes[mode_count].mems = ALL_MEMBERS;
470     mode_changes[mode_count++].arg = NULL;
471     }
472 michael 2937 else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */
473 adx 30 {
474     /* setting - */
475    
476 michael 2937 chptr->mode.mode &= ~d;
477 adx 30
478     mode_changes[mode_count].letter = c;
479     mode_changes[mode_count].dir = MODE_DEL;
480     mode_changes[mode_count].mems = ALL_MEMBERS;
481     mode_changes[mode_count].id = NULL;
482     mode_changes[mode_count++].arg = NULL;
483     }
484     }
485    
486     static void
487 michael 3374 chm_registered(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
488     char **parv, int *errors, int alev, int dir, char c, unsigned int d)
489 michael 1167 {
490 michael 1219 if (!IsServer(source_p) && !HasFlag(source_p, FLAGS_SERVICE))
491 michael 1167 {
492     if (!(*errors & SM_ERR_ONLYSERVER))
493 michael 3109 sendto_one_numeric(source_p, &me,
494     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
495     ERR_ONLYSERVERSCANCHANGE, chptr->chname);
496 michael 1167 *errors |= SM_ERR_ONLYSERVER;
497     return;
498     }
499    
500     /* If have already dealt with this simple mode, ignore it */
501 michael 2937 if (simple_modes_mask & d)
502 michael 1167 return;
503    
504 michael 2937 simple_modes_mask |= d;
505 michael 1167
506     /* setting + */
507 michael 2892 /* Apparently, (though no one has ever told the hybrid group directly)
508     * admins don't like redundant mode checking. ok. It would have been nice
509     * if you had have told us directly. I've left the original code snippets
510     * in place.
511     *
512     * -Dianora
513 michael 1167 */
514 michael 2937 if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */
515 michael 1167 {
516 michael 2937 chptr->mode.mode |= d;
517 michael 1167
518     mode_changes[mode_count].letter = c;
519     mode_changes[mode_count].dir = MODE_ADD;
520     mode_changes[mode_count].id = NULL;
521     mode_changes[mode_count].mems = ALL_MEMBERS;
522     mode_changes[mode_count++].arg = NULL;
523     }
524 michael 2937 else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */
525 michael 1167 {
526     /* setting - */
527    
528 michael 2937 chptr->mode.mode &= ~d;
529 michael 1167
530     mode_changes[mode_count].letter = c;
531     mode_changes[mode_count].dir = MODE_DEL;
532     mode_changes[mode_count].mems = ALL_MEMBERS;
533     mode_changes[mode_count].id = NULL;
534     mode_changes[mode_count++].arg = NULL;
535     }
536     }
537    
538     static void
539 michael 3150 chm_operonly(struct Client *source_p, struct Channel *chptr,
540     int parc, int *parn, char **parv, int *errors, int alev, int dir,
541     char c, unsigned int d)
542 michael 1150 {
543     if ((alev < CHACCESS_HALFOP) ||
544 michael 2937 ((d == MODE_PRIVATE) && (alev < CHACCESS_CHANOP)))
545 michael 1150 {
546     if (!(*errors & SM_ERR_NOOPS))
547 michael 3109 sendto_one_numeric(source_p, &me,
548     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
549     ERR_CHANOPRIVSNEEDED, chptr->chname);
550 michael 1150 *errors |= SM_ERR_NOOPS;
551     return;
552     }
553 michael 1219 else if (MyClient(source_p) && !HasUMode(source_p, UMODE_OPER))
554 michael 1150 {
555     if (!(*errors & SM_ERR_NOTOPER))
556     {
557     if (alev == CHACCESS_NOTONCHAN)
558 michael 3109 sendto_one_numeric(source_p, &me, ERR_NOTONCHANNEL, chptr->chname);
559 michael 1150 else
560 michael 3109 sendto_one_numeric(source_p, &me, ERR_NOPRIVILEGES);
561 michael 1150 }
562    
563     *errors |= SM_ERR_NOTOPER;
564     return;
565     }
566    
567     /* If have already dealt with this simple mode, ignore it */
568 michael 2937 if (simple_modes_mask & d)
569 michael 1150 return;
570    
571 michael 2937 simple_modes_mask |= d;
572 michael 1150
573 michael 2937 if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */
574 michael 1150 {
575 michael 2937 chptr->mode.mode |= d;
576 michael 1150
577     mode_changes[mode_count].letter = c;
578     mode_changes[mode_count].dir = MODE_ADD;
579     mode_changes[mode_count].id = NULL;
580     mode_changes[mode_count].mems = ALL_MEMBERS;
581     mode_changes[mode_count++].arg = NULL;
582     }
583 michael 2937 else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */
584 michael 1150 {
585     /* setting - */
586    
587 michael 2937 chptr->mode.mode &= ~d;
588 michael 1150
589     mode_changes[mode_count].letter = c;
590     mode_changes[mode_count].dir = MODE_DEL;
591     mode_changes[mode_count].mems = ALL_MEMBERS;
592     mode_changes[mode_count].id = NULL;
593     mode_changes[mode_count++].arg = NULL;
594     }
595     }
596    
597     static void
598 michael 3374 chm_ban(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
599 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
600 adx 30 {
601     char *mask = NULL;
602    
603     if (dir == MODE_QUERY || parc <= *parn)
604     {
605     dlink_node *ptr = NULL;
606    
607     if (*errors & SM_ERR_RPL_B)
608     return;
609    
610     *errors |= SM_ERR_RPL_B;
611    
612     DLINK_FOREACH(ptr, chptr->banlist.head)
613     {
614     const struct Ban *banptr = ptr->data;
615 michael 3109 sendto_one_numeric(source_p, &me, RPL_BANLIST, chptr->chname,
616     banptr->name, banptr->user, banptr->host,
617     banptr->who, banptr->when);
618 adx 30 }
619    
620 michael 3109 sendto_one_numeric(source_p, &me, RPL_ENDOFBANLIST, chptr->chname);
621 adx 30 return;
622     }
623    
624     if (alev < CHACCESS_HALFOP)
625     {
626     if (!(*errors & SM_ERR_NOOPS))
627 michael 3109 sendto_one_numeric(source_p, &me,
628     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
629     ERR_CHANOPRIVSNEEDED, chptr->chname);
630 adx 30 *errors |= SM_ERR_NOOPS;
631     return;
632     }
633    
634     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
635     return;
636    
637 michael 388 mask = nuh_mask[*parn];
638     memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn]));
639     ++*parn;
640    
641 michael 3150 if (!MyConnect(source_p))
642 adx 30 if (strchr(mask, ' '))
643     return;
644    
645     switch (dir)
646     {
647     case MODE_ADD:
648     if (!add_id(source_p, chptr, mask, CHFL_BAN))
649     return;
650     break;
651     case MODE_DEL:
652     if (!del_id(chptr, mask, CHFL_BAN))
653     return;
654     break;
655     default:
656     assert(0);
657     }
658    
659     mode_changes[mode_count].letter = c;
660     mode_changes[mode_count].dir = dir;
661     mode_changes[mode_count].mems = ALL_MEMBERS;
662     mode_changes[mode_count].id = NULL;
663     mode_changes[mode_count++].arg = mask;
664     }
665    
666     static void
667 michael 3374 chm_except(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
668 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
669 adx 30 {
670     char *mask = NULL;
671    
672     if (alev < CHACCESS_HALFOP)
673     {
674     if (!(*errors & SM_ERR_NOOPS))
675 michael 3109 sendto_one_numeric(source_p, &me,
676     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
677     ERR_CHANOPRIVSNEEDED, chptr->chname);
678 adx 30 *errors |= SM_ERR_NOOPS;
679     return;
680     }
681    
682     if (dir == MODE_QUERY || parc <= *parn)
683     {
684     dlink_node *ptr = NULL;
685    
686     if (*errors & SM_ERR_RPL_E)
687     return;
688    
689     *errors |= SM_ERR_RPL_E;
690    
691     DLINK_FOREACH(ptr, chptr->exceptlist.head)
692     {
693     const struct Ban *banptr = ptr->data;
694 michael 3109
695     sendto_one_numeric(source_p, &me, RPL_EXCEPTLIST, chptr->chname,
696     banptr->name, banptr->user, banptr->host,
697     banptr->who, banptr->when);
698 adx 30 }
699    
700 michael 3109 sendto_one_numeric(source_p, &me, RPL_ENDOFEXCEPTLIST, chptr->chname);
701 adx 30 return;
702     }
703    
704     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
705     return;
706    
707 michael 388 mask = nuh_mask[*parn];
708     memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn]));
709     ++*parn;
710 adx 30
711 michael 3150 if (!MyConnect(source_p))
712 adx 30 if (strchr(mask, ' '))
713     return;
714    
715     switch (dir)
716     {
717     case MODE_ADD:
718     if (!add_id(source_p, chptr, mask, CHFL_EXCEPTION))
719     return;
720     break;
721     case MODE_DEL:
722     if (!del_id(chptr, mask, CHFL_EXCEPTION))
723     return;
724     break;
725     default:
726     assert(0);
727     }
728    
729     mode_changes[mode_count].letter = c;
730     mode_changes[mode_count].dir = dir;
731 michael 1495 mode_changes[mode_count].mems = ONLY_CHANOPS;
732 adx 30 mode_changes[mode_count].id = NULL;
733     mode_changes[mode_count++].arg = mask;
734     }
735    
736     static void
737 michael 3374 chm_invex(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
738 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
739 adx 30 {
740     char *mask = NULL;
741    
742     if (alev < CHACCESS_HALFOP)
743     {
744     if (!(*errors & SM_ERR_NOOPS))
745 michael 3109 sendto_one_numeric(source_p, &me,
746     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
747     ERR_CHANOPRIVSNEEDED, chptr->chname);
748 adx 30 *errors |= SM_ERR_NOOPS;
749     return;
750     }
751    
752     if (dir == MODE_QUERY || parc <= *parn)
753     {
754     dlink_node *ptr = NULL;
755    
756     if (*errors & SM_ERR_RPL_I)
757     return;
758    
759     *errors |= SM_ERR_RPL_I;
760    
761     DLINK_FOREACH(ptr, chptr->invexlist.head)
762     {
763     const struct Ban *banptr = ptr->data;
764 michael 3109
765     sendto_one_numeric(source_p, &me, RPL_INVITELIST, chptr->chname,
766     banptr->name, banptr->user, banptr->host,
767     banptr->who, banptr->when);
768 adx 30 }
769    
770 michael 3109 sendto_one_numeric(source_p, &me, RPL_ENDOFINVITELIST, chptr->chname);
771 adx 30 return;
772     }
773    
774     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
775     return;
776    
777 michael 388 mask = nuh_mask[*parn];
778     memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn]));
779     ++*parn;
780 adx 30
781 michael 3150 if (!MyConnect(source_p))
782 adx 30 if (strchr(mask, ' '))
783     return;
784    
785     switch (dir)
786     {
787     case MODE_ADD:
788     if (!add_id(source_p, chptr, mask, CHFL_INVEX))
789     return;
790     break;
791     case MODE_DEL:
792     if (!del_id(chptr, mask, CHFL_INVEX))
793     return;
794     break;
795     default:
796     assert(0);
797     }
798    
799     mode_changes[mode_count].letter = c;
800     mode_changes[mode_count].dir = dir;
801 michael 1495 mode_changes[mode_count].mems = ONLY_CHANOPS;
802 adx 30 mode_changes[mode_count].id = NULL;
803     mode_changes[mode_count++].arg = mask;
804     }
805    
806     static void
807 michael 3374 chm_voice(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
808 michael 2951 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
809 adx 30 {
810 michael 2892 const char *opnick = NULL;
811 michael 3143 struct Client *target_p;
812 adx 30 struct Membership *member;
813    
814 michael 2951 if (alev < CHACCESS_HALFOP)
815 adx 30 {
816     if (!(*errors & SM_ERR_NOOPS))
817 michael 3109 sendto_one_numeric(source_p, &me,
818     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
819     ERR_CHANOPRIVSNEEDED, chptr->chname);
820 adx 30 *errors |= SM_ERR_NOOPS;
821     return;
822     }
823    
824 michael 2951 if ((dir == MODE_QUERY) || parc <= *parn)
825 adx 30 return;
826    
827     opnick = parv[(*parn)++];
828    
829 michael 3192 if ((target_p = find_chasing(source_p, opnick)) == NULL)
830 adx 30 return;
831    
832 michael 3143 if ((member = find_channel_link(target_p, chptr)) == NULL)
833 adx 30 {
834     if (!(*errors & SM_ERR_NOTONCHANNEL))
835 michael 3109 sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, opnick, chptr->chname);
836 adx 30 *errors |= SM_ERR_NOTONCHANNEL;
837     return;
838     }
839    
840     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
841     return;
842    
843     /* no redundant mode changes */
844 michael 2951 if (dir == MODE_ADD && has_member_flags(member, CHFL_VOICE))
845 adx 30 return;
846 michael 2951 if (dir == MODE_DEL && !has_member_flags(member, CHFL_VOICE))
847 adx 30 return;
848    
849 michael 2951 mode_changes[mode_count].letter = 'v';
850 adx 30 mode_changes[mode_count].dir = dir;
851     mode_changes[mode_count].mems = ALL_MEMBERS;
852 michael 3143 mode_changes[mode_count].id = target_p->id;
853     mode_changes[mode_count].arg = target_p->name;
854     mode_changes[mode_count++].client = target_p;
855 adx 30
856     if (dir == MODE_ADD)
857 michael 2951 AddMemberFlag(member, CHFL_VOICE);
858 adx 30 else
859 michael 2951 DelMemberFlag(member, CHFL_VOICE);
860 adx 30 }
861    
862     #ifdef HALFOPS
863     static void
864 michael 3374 chm_hop(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
865 michael 3150 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
866 adx 30 {
867 michael 2892 const char *opnick = NULL;
868 michael 3143 struct Client *target_p;
869 adx 30 struct Membership *member;
870    
871     /* *sigh* - dont allow halfops to set +/-h, they could fully control a
872     * channel if there were no ops - it doesnt solve anything.. MODE_PRIVATE
873     * when used with MODE_SECRET is paranoid - cant use +p
874     *
875     * it needs to be optional per channel - but not via +p, that or remove
876     * paranoid.. -- fl_
877     *
878     * +p means paranoid, it is useless for anything else on modern IRC, as
879     * list isn't really usable. If you want to have a private channel these
880     * days, you set it +s. Halfops can no longer remove simple modes when
881     * +p is set (although they can set +p) so it is safe to use this to
882     * control whether they can (de)halfop...
883     */
884     if (alev <
885     ((chptr->mode.mode & MODE_PRIVATE) ? CHACCESS_CHANOP : CHACCESS_HALFOP))
886     {
887     if (!(*errors & SM_ERR_NOOPS))
888 michael 3109 sendto_one_numeric(source_p, &me,
889     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
890     ERR_CHANOPRIVSNEEDED, chptr->chname);
891 adx 30 *errors |= SM_ERR_NOOPS;
892     return;
893     }
894    
895     if ((dir == MODE_QUERY) || (parc <= *parn))
896     return;
897    
898     opnick = parv[(*parn)++];
899    
900 michael 3192 if ((target_p = find_chasing(source_p, opnick)) == NULL)
901 adx 30 return;
902    
903 michael 3143 if ((member = find_channel_link(target_p, chptr)) == NULL)
904 adx 30 {
905     if (!(*errors & SM_ERR_NOTONCHANNEL))
906 michael 3109 sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, opnick, chptr->chname);
907 adx 30 *errors |= SM_ERR_NOTONCHANNEL;
908     return;
909     }
910    
911     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
912     return;
913    
914     /* no redundant mode changes */
915 michael 3140 if (dir == MODE_ADD && has_member_flags(member, CHFL_HALFOP))
916 adx 30 return;
917     if (dir == MODE_DEL && !has_member_flags(member, CHFL_HALFOP))
918     return;
919    
920     mode_changes[mode_count].letter = 'h';
921     mode_changes[mode_count].dir = dir;
922     mode_changes[mode_count].mems = ALL_MEMBERS;
923 michael 3143 mode_changes[mode_count].id = target_p->id;
924     mode_changes[mode_count].arg = target_p->name;
925     mode_changes[mode_count++].client = target_p;
926 adx 30
927     if (dir == MODE_ADD)
928     {
929     AddMemberFlag(member, CHFL_HALFOP);
930     DelMemberFlag(member, CHFL_DEOPPED);
931     }
932     else
933     DelMemberFlag(member, CHFL_HALFOP);
934     }
935     #endif
936    
937     static void
938 michael 3374 chm_op(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
939 michael 2951 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
940 adx 30 {
941 michael 2892 const char *opnick = NULL;
942 michael 3143 struct Client *target_p;
943 adx 30 struct Membership *member;
944    
945 michael 2951 if (alev < CHACCESS_CHANOP)
946 adx 30 {
947     if (!(*errors & SM_ERR_NOOPS))
948 michael 3109 sendto_one_numeric(source_p, &me,
949     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
950     ERR_CHANOPRIVSNEEDED, chptr->chname);
951 adx 30 *errors |= SM_ERR_NOOPS;
952     return;
953     }
954    
955 michael 2951 if ((dir == MODE_QUERY) || (parc <= *parn))
956 adx 30 return;
957    
958     opnick = parv[(*parn)++];
959    
960 michael 3192 if ((target_p = find_chasing(source_p, opnick)) == NULL)
961 adx 30 return;
962    
963 michael 3143 if ((member = find_channel_link(target_p, chptr)) == NULL)
964 adx 30 {
965     if (!(*errors & SM_ERR_NOTONCHANNEL))
966 michael 3109 sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, opnick, chptr->chname);
967 adx 30 *errors |= SM_ERR_NOTONCHANNEL;
968     return;
969     }
970    
971     if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
972     return;
973    
974     /* no redundant mode changes */
975 michael 2951 if (dir == MODE_ADD && has_member_flags(member, CHFL_CHANOP))
976 adx 30 return;
977 michael 2951 if (dir == MODE_DEL && !has_member_flags(member, CHFL_CHANOP))
978 adx 30 return;
979    
980 michael 2951 mode_changes[mode_count].letter = 'o';
981 adx 30 mode_changes[mode_count].dir = dir;
982     mode_changes[mode_count].mems = ALL_MEMBERS;
983 michael 3143 mode_changes[mode_count].id = target_p->id;
984     mode_changes[mode_count].arg = target_p->name;
985     mode_changes[mode_count++].client = target_p;
986 adx 30
987     if (dir == MODE_ADD)
988 michael 2951 {
989     AddMemberFlag(member, CHFL_CHANOP);
990 michael 3140 DelMemberFlag(member, CHFL_DEOPPED);
991 michael 2951 }
992 adx 30 else
993 michael 2951 DelMemberFlag(member, CHFL_CHANOP);
994 adx 30 }
995    
996     static void
997 michael 3374 chm_limit(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
998 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
999 adx 30 {
1000 michael 3151 unsigned int i = 0;
1001     int limit = 0;
1002 adx 30
1003     if (alev < CHACCESS_HALFOP)
1004     {
1005     if (!(*errors & SM_ERR_NOOPS))
1006 michael 3109 sendto_one_numeric(source_p, &me,
1007     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
1008     ERR_CHANOPRIVSNEEDED, chptr->chname);
1009 adx 30 *errors |= SM_ERR_NOOPS;
1010     return;
1011     }
1012    
1013     if (dir == MODE_QUERY)
1014     return;
1015    
1016     if ((dir == MODE_ADD) && parc > *parn)
1017     {
1018 michael 3151 char *lstr = parv[(*parn)++];
1019 adx 30
1020 michael 3153 if (EmptyString(lstr) || (limit = atoi(lstr)) <= 0)
1021 adx 30 return;
1022    
1023 michael 1793 sprintf(lstr, "%d", limit);
1024 adx 30
1025 michael 3151 /* If somebody sets MODE #channel +ll 1 2, accept latter --fl */
1026     for (i = 0; i < mode_count; ++i)
1027 adx 30 if (mode_changes[i].letter == c && mode_changes[i].dir == MODE_ADD)
1028     mode_changes[i].letter = 0;
1029    
1030     mode_changes[mode_count].letter = c;
1031     mode_changes[mode_count].dir = MODE_ADD;
1032     mode_changes[mode_count].mems = ALL_MEMBERS;
1033     mode_changes[mode_count].id = NULL;
1034     mode_changes[mode_count++].arg = lstr;
1035    
1036     chptr->mode.limit = limit;
1037     }
1038     else if (dir == MODE_DEL)
1039     {
1040     if (!chptr->mode.limit)
1041     return;
1042    
1043     chptr->mode.limit = 0;
1044    
1045     mode_changes[mode_count].letter = c;
1046     mode_changes[mode_count].dir = MODE_DEL;
1047     mode_changes[mode_count].mems = ALL_MEMBERS;
1048     mode_changes[mode_count].id = NULL;
1049     mode_changes[mode_count++].arg = NULL;
1050     }
1051     }
1052    
1053     static void
1054 michael 3374 chm_key(struct Client *source_p, struct Channel *chptr, int parc, int *parn,
1055 michael 2937 char **parv, int *errors, int alev, int dir, char c, unsigned int d)
1056 adx 30 {
1057 michael 3151 unsigned int i = 0;
1058 adx 30
1059     if (alev < CHACCESS_HALFOP)
1060     {
1061     if (!(*errors & SM_ERR_NOOPS))
1062 michael 3109 sendto_one_numeric(source_p, &me,
1063     alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL :
1064     ERR_CHANOPRIVSNEEDED, chptr->chname);
1065 adx 30 *errors |= SM_ERR_NOOPS;
1066     return;
1067     }
1068    
1069     if (dir == MODE_QUERY)
1070     return;
1071    
1072     if ((dir == MODE_ADD) && parc > *parn)
1073     {
1074 michael 3151 char *key = parv[(*parn)++];
1075 adx 30
1076     if (MyClient(source_p))
1077     fix_key(key);
1078     else
1079     fix_key_old(key);
1080    
1081 michael 3153 if (EmptyString(key))
1082 adx 30 return;
1083    
1084     assert(key[0] != ' ');
1085     strlcpy(chptr->mode.key, key, sizeof(chptr->mode.key));
1086    
1087 michael 3151 /* If somebody does MODE #channel +kk a b, accept latter --fl */
1088     for (i = 0; i < mode_count; ++i)
1089 adx 30 if (mode_changes[i].letter == c && mode_changes[i].dir == MODE_ADD)
1090     mode_changes[i].letter = 0;
1091    
1092     mode_changes[mode_count].letter = c;
1093     mode_changes[mode_count].dir = MODE_ADD;
1094     mode_changes[mode_count].mems = ALL_MEMBERS;
1095     mode_changes[mode_count].id = NULL;
1096     mode_changes[mode_count++].arg = chptr->mode.key;
1097     }
1098     else if (dir == MODE_DEL)
1099     {
1100     if (parc > *parn)
1101     (*parn)++;
1102    
1103     if (chptr->mode.key[0] == '\0')
1104     return;
1105    
1106     chptr->mode.key[0] = '\0';
1107    
1108     mode_changes[mode_count].letter = c;
1109     mode_changes[mode_count].dir = MODE_DEL;
1110     mode_changes[mode_count].mems = ALL_MEMBERS;
1111     mode_changes[mode_count].id = NULL;
1112     mode_changes[mode_count++].arg = "*";
1113     }
1114     }
1115    
1116     struct ChannelMode
1117     {
1118 michael 3150 void (*func)(struct Client *,
1119 michael 2937 struct Channel *, int, int *, char **,
1120     int *, int, int, char, unsigned int);
1121     unsigned int d;
1122 adx 30 };
1123    
1124 michael 2939 static struct ChannelMode ModeTable[256] =
1125 adx 30 {
1126 michael 2939 { chm_nosuch, 0 }, /* 0x00 */
1127     { chm_nosuch, 0 }, /* 0x01 */
1128     { chm_nosuch, 0 }, /* 0x02 */
1129     { chm_nosuch, 0 }, /* 0x03 */
1130     { chm_nosuch, 0 }, /* 0x04 */
1131     { chm_nosuch, 0 }, /* 0x05 */
1132     { chm_nosuch, 0 }, /* 0x06 */
1133     { chm_nosuch, 0 }, /* 0x07 */
1134     { chm_nosuch, 0 }, /* 0x08 */
1135     { chm_nosuch, 0 }, /* 0x09 */
1136     { chm_nosuch, 0 }, /* 0x0a */
1137     { chm_nosuch, 0 }, /* 0x0b */
1138     { chm_nosuch, 0 }, /* 0x0c */
1139     { chm_nosuch, 0 }, /* 0x0d */
1140     { chm_nosuch, 0 }, /* 0x0e */
1141     { chm_nosuch, 0 }, /* 0x0f */
1142     { chm_nosuch, 0 }, /* 0x10 */
1143     { chm_nosuch, 0 }, /* 0x11 */
1144     { chm_nosuch, 0 }, /* 0x12 */
1145     { chm_nosuch, 0 }, /* 0x13 */
1146     { chm_nosuch, 0 }, /* 0x14 */
1147     { chm_nosuch, 0 }, /* 0x15 */
1148     { chm_nosuch, 0 }, /* 0x16 */
1149     { chm_nosuch, 0 }, /* 0x17 */
1150     { chm_nosuch, 0 }, /* 0x18 */
1151     { chm_nosuch, 0 }, /* 0x19 */
1152     { chm_nosuch, 0 }, /* 0x1a */
1153     { chm_nosuch, 0 }, /* 0x1b */
1154     { chm_nosuch, 0 }, /* 0x1c */
1155     { chm_nosuch, 0 }, /* 0x1d */
1156     { chm_nosuch, 0 }, /* 0x1e */
1157     { chm_nosuch, 0 }, /* 0x1f */
1158     { chm_nosuch, 0 }, /* 0x20 */
1159     { chm_nosuch, 0 }, /* 0x21 */
1160     { chm_nosuch, 0 }, /* 0x22 */
1161     { chm_nosuch, 0 }, /* 0x23 */
1162     { chm_nosuch, 0 }, /* 0x24 */
1163     { chm_nosuch, 0 }, /* 0x25 */
1164     { chm_nosuch, 0 }, /* 0x26 */
1165     { chm_nosuch, 0 }, /* 0x27 */
1166     { chm_nosuch, 0 }, /* 0x28 */
1167     { chm_nosuch, 0 }, /* 0x29 */
1168     { chm_nosuch, 0 }, /* 0x2a */
1169     { chm_nosuch, 0 }, /* 0x2b */
1170     { chm_nosuch, 0 }, /* 0x2c */
1171     { chm_nosuch, 0 }, /* 0x2d */
1172     { chm_nosuch, 0 }, /* 0x2e */
1173     { chm_nosuch, 0 }, /* 0x2f */
1174     { chm_nosuch, 0 }, /* 0x30 */
1175     { chm_nosuch, 0 }, /* 0x31 */
1176     { chm_nosuch, 0 }, /* 0x32 */
1177     { chm_nosuch, 0 }, /* 0x33 */
1178     { chm_nosuch, 0 }, /* 0x34 */
1179     { chm_nosuch, 0 }, /* 0x35 */
1180     { chm_nosuch, 0 }, /* 0x36 */
1181     { chm_nosuch, 0 }, /* 0x37 */
1182     { chm_nosuch, 0 }, /* 0x38 */
1183     { chm_nosuch, 0 }, /* 0x39 */
1184     { chm_nosuch, 0 }, /* 0x3a */
1185     { chm_nosuch, 0 }, /* 0x3b */
1186     { chm_nosuch, 0 }, /* 0x3c */
1187     { chm_nosuch, 0 }, /* 0x3d */
1188     { chm_nosuch, 0 }, /* 0x3e */
1189     { chm_nosuch, 0 }, /* 0x3f */
1190     { chm_nosuch, 0 }, /* @ */
1191     { chm_nosuch, 0 }, /* A */
1192     { chm_nosuch, 0 }, /* B */
1193     { chm_nosuch, 0 }, /* C */
1194     { chm_nosuch, 0 }, /* D */
1195     { chm_nosuch, 0 }, /* E */
1196     { chm_nosuch, 0 }, /* F */
1197     { chm_nosuch, 0 }, /* G */
1198     { chm_nosuch, 0 }, /* H */
1199     { chm_invex, 0 }, /* I */
1200     { chm_nosuch, 0 }, /* J */
1201     { chm_nosuch, 0 }, /* K */
1202     { chm_nosuch, 0 }, /* L */
1203     { chm_simple, MODE_MODREG}, /* M */
1204     { chm_nosuch, 0 }, /* N */
1205     { chm_operonly, MODE_OPERONLY}, /* O */
1206     { chm_nosuch, 0 }, /* P */
1207     { chm_nosuch, 0 }, /* Q */
1208     { chm_simple, MODE_REGONLY}, /* R */
1209     { chm_simple, MODE_SSLONLY}, /* S */
1210     { chm_nosuch, 0 }, /* T */
1211     { chm_nosuch, 0 }, /* U */
1212     { chm_nosuch, 0 }, /* V */
1213     { chm_nosuch, 0 }, /* W */
1214     { chm_nosuch, 0 }, /* X */
1215     { chm_nosuch, 0 }, /* Y */
1216     { chm_nosuch, 0 }, /* Z */
1217     { chm_nosuch, 0 },
1218     { chm_nosuch, 0 },
1219     { chm_nosuch, 0 },
1220     { chm_nosuch, 0 },
1221     { chm_nosuch, 0 },
1222     { chm_nosuch, 0 },
1223     { chm_nosuch, 0 }, /* a */
1224     { chm_ban, 0 }, /* b */
1225     { chm_simple, MODE_NOCTRL}, /* c */
1226     { chm_nosuch, 0 }, /* d */
1227     { chm_except, 0 }, /* e */
1228     { chm_nosuch, 0 }, /* f */
1229     { chm_nosuch, 0 }, /* g */
1230 adx 30 #ifdef HALFOPS
1231 michael 2939 { chm_hop, 0 }, /* h */
1232 adx 30 #else
1233 michael 2939 { chm_nosuch, 0 }, /* h */
1234 adx 30 #endif
1235 michael 2939 { chm_simple, MODE_INVITEONLY }, /* i */
1236     { chm_nosuch, 0 }, /* j */
1237     { chm_key, 0 }, /* k */
1238     { chm_limit, 0 }, /* l */
1239     { chm_simple, MODE_MODERATED }, /* m */
1240     { chm_simple, MODE_NOPRIVMSGS }, /* n */
1241     { chm_op, 0 }, /* o */
1242     { chm_simple, MODE_PRIVATE }, /* p */
1243     { chm_nosuch, 0 }, /* q */
1244     { chm_registered, MODE_REGISTERED }, /* r */
1245     { chm_simple, MODE_SECRET }, /* s */
1246     { chm_simple, MODE_TOPICLIMIT }, /* t */
1247     { chm_nosuch, 0 }, /* u */
1248     { chm_voice, 0 }, /* v */
1249     { chm_nosuch, 0 }, /* w */
1250     { chm_nosuch, 0 }, /* x */
1251     { chm_nosuch, 0 }, /* y */
1252     { chm_nosuch, 0 }, /* z */
1253     { chm_nosuch, 0 }, /* 0x7b */
1254     { chm_nosuch, 0 }, /* 0x7c */
1255     { chm_nosuch, 0 }, /* 0x7d */
1256     { chm_nosuch, 0 }, /* 0x7e */
1257     { chm_nosuch, 0 }, /* 0x7f */
1258     { chm_nosuch, 0 }, /* 0x80 */
1259     { chm_nosuch, 0 }, /* 0x81 */
1260     { chm_nosuch, 0 }, /* 0x82 */
1261     { chm_nosuch, 0 }, /* 0x83 */
1262     { chm_nosuch, 0 }, /* 0x84 */
1263     { chm_nosuch, 0 }, /* 0x85 */
1264     { chm_nosuch, 0 }, /* 0x86 */
1265     { chm_nosuch, 0 }, /* 0x87 */
1266     { chm_nosuch, 0 }, /* 0x88 */
1267     { chm_nosuch, 0 }, /* 0x89 */
1268     { chm_nosuch, 0 }, /* 0x8a */
1269     { chm_nosuch, 0 }, /* 0x8b */
1270     { chm_nosuch, 0 }, /* 0x8c */
1271     { chm_nosuch, 0 }, /* 0x8d */
1272     { chm_nosuch, 0 }, /* 0x8e */
1273     { chm_nosuch, 0 }, /* 0x8f */
1274     { chm_nosuch, 0 }, /* 0x90 */
1275     { chm_nosuch, 0 }, /* 0x91 */
1276     { chm_nosuch, 0 }, /* 0x92 */
1277     { chm_nosuch, 0 }, /* 0x93 */
1278     { chm_nosuch, 0 }, /* 0x94 */
1279     { chm_nosuch, 0 }, /* 0x95 */
1280     { chm_nosuch, 0 }, /* 0x96 */
1281     { chm_nosuch, 0 }, /* 0x97 */
1282     { chm_nosuch, 0 }, /* 0x98 */
1283     { chm_nosuch, 0 }, /* 0x99 */
1284     { chm_nosuch, 0 }, /* 0x9a */
1285     { chm_nosuch, 0 }, /* 0x9b */
1286     { chm_nosuch, 0 }, /* 0x9c */
1287     { chm_nosuch, 0 }, /* 0x9d */
1288     { chm_nosuch, 0 }, /* 0x9e */
1289     { chm_nosuch, 0 }, /* 0x9f */
1290     { chm_nosuch, 0 }, /* 0xa0 */
1291     { chm_nosuch, 0 }, /* 0xa1 */
1292     { chm_nosuch, 0 }, /* 0xa2 */
1293     { chm_nosuch, 0 }, /* 0xa3 */
1294     { chm_nosuch, 0 }, /* 0xa4 */
1295     { chm_nosuch, 0 }, /* 0xa5 */
1296     { chm_nosuch, 0 }, /* 0xa6 */
1297     { chm_nosuch, 0 }, /* 0xa7 */
1298     { chm_nosuch, 0 }, /* 0xa8 */
1299     { chm_nosuch, 0 }, /* 0xa9 */
1300     { chm_nosuch, 0 }, /* 0xaa */
1301     { chm_nosuch, 0 }, /* 0xab */
1302     { chm_nosuch, 0 }, /* 0xac */
1303     { chm_nosuch, 0 }, /* 0xad */
1304     { chm_nosuch, 0 }, /* 0xae */
1305     { chm_nosuch, 0 }, /* 0xaf */
1306     { chm_nosuch, 0 }, /* 0xb0 */
1307     { chm_nosuch, 0 }, /* 0xb1 */
1308     { chm_nosuch, 0 }, /* 0xb2 */
1309     { chm_nosuch, 0 }, /* 0xb3 */
1310     { chm_nosuch, 0 }, /* 0xb4 */
1311     { chm_nosuch, 0 }, /* 0xb5 */
1312     { chm_nosuch, 0 }, /* 0xb6 */
1313     { chm_nosuch, 0 }, /* 0xb7 */
1314     { chm_nosuch, 0 }, /* 0xb8 */
1315     { chm_nosuch, 0 }, /* 0xb9 */
1316     { chm_nosuch, 0 }, /* 0xba */
1317     { chm_nosuch, 0 }, /* 0xbb */
1318     { chm_nosuch, 0 }, /* 0xbc */
1319     { chm_nosuch, 0 }, /* 0xbd */
1320     { chm_nosuch, 0 }, /* 0xbe */
1321     { chm_nosuch, 0 }, /* 0xbf */
1322     { chm_nosuch, 0 }, /* 0xc0 */
1323     { chm_nosuch, 0 }, /* 0xc1 */
1324     { chm_nosuch, 0 }, /* 0xc2 */
1325     { chm_nosuch, 0 }, /* 0xc3 */
1326     { chm_nosuch, 0 }, /* 0xc4 */
1327     { chm_nosuch, 0 }, /* 0xc5 */
1328     { chm_nosuch, 0 }, /* 0xc6 */
1329     { chm_nosuch, 0 }, /* 0xc7 */
1330     { chm_nosuch, 0 }, /* 0xc8 */
1331     { chm_nosuch, 0 }, /* 0xc9 */
1332     { chm_nosuch, 0 }, /* 0xca */
1333     { chm_nosuch, 0 }, /* 0xcb */
1334     { chm_nosuch, 0 }, /* 0xcc */
1335     { chm_nosuch, 0 }, /* 0xcd */
1336     { chm_nosuch, 0 }, /* 0xce */
1337     { chm_nosuch, 0 }, /* 0xcf */
1338     { chm_nosuch, 0 }, /* 0xd0 */
1339     { chm_nosuch, 0 }, /* 0xd1 */
1340     { chm_nosuch, 0 }, /* 0xd2 */
1341     { chm_nosuch, 0 }, /* 0xd3 */
1342     { chm_nosuch, 0 }, /* 0xd4 */
1343     { chm_nosuch, 0 }, /* 0xd5 */
1344     { chm_nosuch, 0 }, /* 0xd6 */
1345     { chm_nosuch, 0 }, /* 0xd7 */
1346     { chm_nosuch, 0 }, /* 0xd8 */
1347     { chm_nosuch, 0 }, /* 0xd9 */
1348     { chm_nosuch, 0 }, /* 0xda */
1349     { chm_nosuch, 0 }, /* 0xdb */
1350     { chm_nosuch, 0 }, /* 0xdc */
1351     { chm_nosuch, 0 }, /* 0xdd */
1352     { chm_nosuch, 0 }, /* 0xde */
1353     { chm_nosuch, 0 }, /* 0xdf */
1354     { chm_nosuch, 0 }, /* 0xe0 */
1355     { chm_nosuch, 0 }, /* 0xe1 */
1356     { chm_nosuch, 0 }, /* 0xe2 */
1357     { chm_nosuch, 0 }, /* 0xe3 */
1358     { chm_nosuch, 0 }, /* 0xe4 */
1359     { chm_nosuch, 0 }, /* 0xe5 */
1360     { chm_nosuch, 0 }, /* 0xe6 */
1361     { chm_nosuch, 0 }, /* 0xe7 */
1362     { chm_nosuch, 0 }, /* 0xe8 */
1363     { chm_nosuch, 0 }, /* 0xe9 */
1364     { chm_nosuch, 0 }, /* 0xea */
1365     { chm_nosuch, 0 }, /* 0xeb */
1366     { chm_nosuch, 0 }, /* 0xec */
1367     { chm_nosuch, 0 }, /* 0xed */
1368     { chm_nosuch, 0 }, /* 0xee */
1369     { chm_nosuch, 0 }, /* 0xef */
1370     { chm_nosuch, 0 }, /* 0xf0 */
1371     { chm_nosuch, 0 }, /* 0xf1 */
1372     { chm_nosuch, 0 }, /* 0xf2 */
1373     { chm_nosuch, 0 }, /* 0xf3 */
1374     { chm_nosuch, 0 }, /* 0xf4 */
1375     { chm_nosuch, 0 }, /* 0xf5 */
1376     { chm_nosuch, 0 }, /* 0xf6 */
1377     { chm_nosuch, 0 }, /* 0xf7 */
1378     { chm_nosuch, 0 }, /* 0xf8 */
1379     { chm_nosuch, 0 }, /* 0xf9 */
1380     { chm_nosuch, 0 }, /* 0xfa */
1381     { chm_nosuch, 0 }, /* 0xfb */
1382     { chm_nosuch, 0 }, /* 0xfc */
1383     { chm_nosuch, 0 }, /* 0xfd */
1384     { chm_nosuch, 0 }, /* 0xfe */
1385     { chm_nosuch, 0 }, /* 0xff */
1386 adx 30 };
1387    
1388     /* get_channel_access()
1389     *
1390     * inputs - pointer to Client struct
1391     * - pointer to Membership struct
1392     * output - CHACCESS_CHANOP if we should let them have
1393     * chanop level access, 0 for peon level access.
1394     * side effects - NONE
1395     */
1396     static int
1397 michael 2941 get_channel_access(const struct Client *source_p,
1398     const struct Membership *member)
1399 adx 30 {
1400     /* Let hacked servers in for now... */
1401     if (!MyClient(source_p))
1402     return CHACCESS_CHANOP;
1403    
1404 michael 3235 if (!member)
1405 adx 30 return CHACCESS_NOTONCHAN;
1406    
1407 michael 3374 /* Just to be sure.. */
1408 adx 30 assert(source_p == member->client_p);
1409    
1410     if (has_member_flags(member, CHFL_CHANOP))
1411     return CHACCESS_CHANOP;
1412    
1413     #ifdef HALFOPS
1414     if (has_member_flags(member, CHFL_HALFOP))
1415     return CHACCESS_HALFOP;
1416     #endif
1417    
1418     return CHACCESS_PEON;
1419     }
1420    
1421 michael 3151 /* send_mode_changes_server()
1422 michael 3159 * Input: the source client(source_p),
1423 adx 30 * the channel to send mode changes for(chptr)
1424     * Output: None.
1425 michael 3151 * Side-effects: Sends the appropriate mode changes to servers.
1426 adx 30 *
1427     */
1428     static void
1429 michael 3150 send_mode_changes_server(struct Client *source_p, struct Channel *chptr)
1430 adx 30 {
1431 michael 3057 unsigned int i;
1432 michael 3151 int mbl = 0, pbl = 0, arglen = 0, nc = 0, mc = 0;
1433     int len = 0;
1434 adx 30 const char *arg = NULL;
1435     char *parptr;
1436     int dir = MODE_QUERY;
1437    
1438     parabuf[0] = '\0';
1439     parptr = parabuf;
1440    
1441 michael 3135 mbl = snprintf(modebuf, sizeof(modebuf), ":%s TMODE %lu %s ", source_p->id,
1442     (unsigned long)chptr->channelts, chptr->chname);
1443 adx 30
1444 michael 3374 /* Loop the list of modes we have */
1445 michael 3140 for (i = 0; i < mode_count; ++i)
1446 adx 30 {
1447 michael 3140 if (mode_changes[i].letter == 0) /* XXX: can it ever happen? */
1448 adx 30 continue;
1449    
1450 michael 3141 if (mode_changes[i].id)
1451     arg = mode_changes[i].id;
1452     else
1453     arg = mode_changes[i].arg;
1454 adx 30
1455 michael 3215 if (arg)
1456 michael 3141 arglen = strlen(arg);
1457     else
1458     arglen = 0;
1459    
1460 michael 3136 /*
1461     * If we're creeping past the buf size, we need to send it and make
1462 adx 30 * another line for the other modes
1463     */
1464     if ((mc == MAXMODEPARAMS) ||
1465     ((arglen + mbl + pbl + 2) > IRCD_BUFSIZE) ||
1466     (pbl + arglen + BAN_FUDGE) >= MODEBUFLEN)
1467     {
1468 michael 3215 if (nc)
1469 michael 3150 sendto_server(source_p, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
1470 michael 3215
1471 adx 30 nc = 0;
1472     mc = 0;
1473    
1474 michael 3135 mbl = snprintf(modebuf, sizeof(modebuf), ":%s TMODE %lu %s ", source_p->id,
1475     (unsigned long)chptr->channelts, chptr->chname);
1476 adx 30
1477     pbl = 0;
1478     parabuf[0] = '\0';
1479     parptr = parabuf;
1480     dir = MODE_QUERY;
1481     }
1482    
1483     if (dir != mode_changes[i].dir)
1484     {
1485     modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1486     dir = mode_changes[i].dir;
1487     }
1488    
1489     modebuf[mbl++] = mode_changes[i].letter;
1490     modebuf[mbl] = '\0';
1491     nc++;
1492    
1493 michael 3215 if (arg)
1494 adx 30 {
1495 michael 1793 len = sprintf(parptr, "%s ", arg);
1496 adx 30 pbl += len;
1497     parptr += len;
1498     mc++;
1499     }
1500     }
1501    
1502     if (pbl && parabuf[pbl - 1] == ' ')
1503 michael 3149 parabuf[pbl - 1] = '\0';
1504 adx 30
1505 michael 3215 if (nc)
1506 michael 3150 sendto_server(source_p, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
1507 adx 30 }
1508    
1509     /* void send_mode_changes(struct Client *client_p,
1510     * struct Client *source_p,
1511     * struct Channel *chptr)
1512     * Input: The client sending(client_p), the source client(source_p),
1513     * the channel to send mode changes for(chptr),
1514     * mode change globals.
1515     * Output: None.
1516     * Side-effects: Sends the appropriate mode changes to other clients
1517     * and propagates to servers.
1518     */
1519     /* ensure parabuf < MODEBUFLEN -db */
1520     static void
1521 michael 3150 send_mode_changes(struct Client *source_p, struct Channel *chptr)
1522 adx 30 {
1523 michael 3057 unsigned int i;
1524 michael 3151 int mbl = 0, pbl = 0, arglen = 0, nc = 0, mc = 0;
1525     int len = 0;
1526 adx 30 const char *arg = NULL;
1527     char *parptr;
1528     int dir = MODE_QUERY;
1529    
1530 michael 3151 /* Bail out if we have nothing to do... */
1531 adx 30 if (!mode_count)
1532     return;
1533    
1534     if (IsServer(source_p))
1535 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s MODE %s ", (IsHidden(source_p) ||
1536     ConfigServerHide.hide_servers) ?
1537     me.name : source_p->name, chptr->chname);
1538 adx 30 else
1539 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s!%s@%s MODE %s ", source_p->name,
1540     source_p->username, source_p->host, chptr->chname);
1541 adx 30
1542     parabuf[0] = '\0';
1543     parptr = parabuf;
1544    
1545 michael 3140 for (i = 0; i < mode_count; ++i)
1546 adx 30 {
1547     if (mode_changes[i].letter == 0 ||
1548     mode_changes[i].mems == NON_CHANOPS ||
1549     mode_changes[i].mems == ONLY_SERVERS)
1550     continue;
1551    
1552     arg = mode_changes[i].arg;
1553 michael 3215 if (arg)
1554 adx 30 arglen = strlen(arg);
1555     else
1556     arglen = 0;
1557    
1558 michael 2892 if ((mc == MAXMODEPARAMS) ||
1559 adx 30 ((arglen + mbl + pbl + 2) > IRCD_BUFSIZE) ||
1560 michael 2892 ((arglen + pbl + BAN_FUDGE) >= MODEBUFLEN))
1561 adx 30 {
1562     if (mbl && modebuf[mbl - 1] == '-')
1563     modebuf[mbl - 1] = '\0';
1564    
1565 michael 3215 if (nc)
1566 michael 1243 sendto_channel_local(ALL_MEMBERS, 0, chptr, "%s %s", modebuf, parabuf);
1567 adx 30
1568     nc = 0;
1569     mc = 0;
1570    
1571     if (IsServer(source_p))
1572 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s MODE %s ", (IsHidden(source_p) ||
1573     ConfigServerHide.hide_servers) ?
1574     me.name : source_p->name, chptr->chname);
1575 adx 30 else
1576 michael 3029 mbl = snprintf(modebuf, sizeof(modebuf), ":%s!%s@%s MODE %s ", source_p->name,
1577     source_p->username, source_p->host, chptr->chname);
1578 adx 30
1579     pbl = 0;
1580     parabuf[0] = '\0';
1581     parptr = parabuf;
1582     dir = MODE_QUERY;
1583     }
1584    
1585     if (dir != mode_changes[i].dir)
1586     {
1587     modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
1588     dir = mode_changes[i].dir;
1589     }
1590    
1591     modebuf[mbl++] = mode_changes[i].letter;
1592     modebuf[mbl] = '\0';
1593     nc++;
1594    
1595 michael 3215 if (arg)
1596 adx 30 {
1597 michael 1793 len = sprintf(parptr, "%s ", arg);
1598 adx 30 pbl += len;
1599     parptr += len;
1600     mc++;
1601     }
1602     }
1603    
1604     if (pbl && parabuf[pbl - 1] == ' ')
1605 michael 3149 parabuf[pbl - 1] = '\0';
1606 adx 30
1607 michael 3215 if (nc)
1608 michael 1243 sendto_channel_local(ALL_MEMBERS, 0, chptr, "%s %s", modebuf, parabuf);
1609 adx 30
1610 michael 3150 send_mode_changes_server(source_p, chptr);
1611 adx 30 }
1612    
1613 michael 3159 /*
1614     * Input: The the client this originated
1615 adx 30 * from, the channel, the parameter count starting at the modes,
1616     * the parameters, the channel name.
1617     * Output: None.
1618     * Side-effects: Changes the channel membership and modes appropriately,
1619     * sends the appropriate MODE messages to the appropriate
1620     * clients.
1621     */
1622     void
1623 michael 3150 set_channel_mode(struct Client *source_p, struct Channel *chptr,
1624 michael 2937 struct Membership *member, int parc, char *parv[])
1625 adx 30 {
1626     int dir = MODE_ADD;
1627     int parn = 1;
1628     int alevel, errors = 0;
1629    
1630     mode_count = 0;
1631     mode_limit = 0;
1632     simple_modes_mask = 0;
1633    
1634     alevel = get_channel_access(source_p, member);
1635    
1636 michael 3283 for (const char *ml = parv[0]; *ml; ++ml)
1637 adx 30 {
1638 michael 3250 switch (*ml)
1639 adx 30 {
1640     case '+':
1641     dir = MODE_ADD;
1642     break;
1643     case '-':
1644     dir = MODE_DEL;
1645     break;
1646     case '=':
1647     dir = MODE_QUERY;
1648     break;
1649     default:
1650 michael 2939 {
1651 michael 3250 struct ChannelMode *tptr = &ModeTable[(unsigned char)*ml];
1652 michael 2939
1653 michael 3150 tptr->func(source_p, chptr, parc, &parn, parv,
1654 michael 3250 &errors, alevel, dir, *ml, tptr->d);
1655 adx 30 break;
1656 michael 2939 }
1657 adx 30 }
1658     }
1659    
1660 michael 3150 send_mode_changes(source_p, chptr);
1661 adx 30 }

Properties

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