1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 1997-2014 ircd-hybrid development team |
5 |
* |
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 |
/*! \file channel_mode.c |
23 |
* \brief Controls modes on channels. |
24 |
* \version $Id$ |
25 |
*/ |
26 |
|
27 |
#include "stdinc.h" |
28 |
#include "list.h" |
29 |
#include "channel.h" |
30 |
#include "channel_mode.h" |
31 |
#include "client.h" |
32 |
#include "conf.h" |
33 |
#include "hostmask.h" |
34 |
#include "irc_string.h" |
35 |
#include "ircd.h" |
36 |
#include "numeric.h" |
37 |
#include "server.h" |
38 |
#include "send.h" |
39 |
#include "memory.h" |
40 |
#include "mempool.h" |
41 |
#include "parse.h" |
42 |
|
43 |
/* 10 is a magic number in hybrid 6 NFI where it comes from -db */ |
44 |
#define BAN_FUDGE 10 |
45 |
|
46 |
static char nuh_mask[MAXPARA][IRCD_BUFSIZE]; |
47 |
/* 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 |
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 |
extern mp_pool_t *ban_pool; |
55 |
|
56 |
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 |
|
73 |
|
74 |
/* 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 |
if (EmptyString(str)) |
90 |
return star; |
91 |
|
92 |
for (; *s; ++s) |
93 |
{ |
94 |
if (IsSpace(*s)) |
95 |
{ |
96 |
*s = '\0'; |
97 |
break; |
98 |
} |
99 |
} |
100 |
|
101 |
return EmptyString(str) ? star : str; |
102 |
} |
103 |
|
104 |
/* |
105 |
* Ban functions to work with mode +b/e/d/I |
106 |
*/ |
107 |
/* add the specified ID to the channel. |
108 |
* -is 8/9/00 |
109 |
*/ |
110 |
|
111 |
int |
112 |
add_id(struct Client *client_p, struct Channel *chptr, char *banid, unsigned int type) |
113 |
{ |
114 |
dlink_list *list = NULL; |
115 |
dlink_node *ban = NULL; |
116 |
struct Ban *ban_p = NULL; |
117 |
unsigned int num_mask; |
118 |
size_t len = 0; |
119 |
char name[NICKLEN + 1] = ""; |
120 |
char user[USERLEN + 1] = ""; |
121 |
char host[HOSTLEN + 1] = ""; |
122 |
struct split_nuh_item nuh; |
123 |
|
124 |
/* Don't let local clients overflow the b/e/I lists */ |
125 |
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 |
sendto_one_numeric(client_p, &me, ERR_BANLISTFULL, chptr->chname, banid); |
134 |
return 0; |
135 |
} |
136 |
|
137 |
collapse(banid); |
138 |
} |
139 |
|
140 |
nuh.nuhmask = check_string(banid); |
141 |
nuh.nickptr = name; |
142 |
nuh.userptr = user; |
143 |
nuh.hostptr = host; |
144 |
|
145 |
nuh.nicksize = sizeof(name); |
146 |
nuh.usersize = sizeof(user); |
147 |
nuh.hostsize = sizeof(host); |
148 |
|
149 |
split_nuh(&nuh); |
150 |
|
151 |
/* |
152 |
* Re-assemble a new n!u@h and print it back to banid for sending |
153 |
* the mode to the channel. |
154 |
*/ |
155 |
len = sprintf(banid, "%s!%s@%s", name, user, host); |
156 |
|
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 |
ban_p = ban->data; |
178 |
|
179 |
if (!irccmp(ban_p->name, name) && |
180 |
!irccmp(ban_p->user, user) && |
181 |
!irccmp(ban_p->host, host)) |
182 |
return 0; |
183 |
} |
184 |
|
185 |
ban_p = mp_pool_get(ban_pool); |
186 |
memset(ban_p, 0, sizeof(*ban_p)); |
187 |
ban_p->name = xstrdup(name); |
188 |
ban_p->user = xstrdup(user); |
189 |
ban_p->host = xstrdup(host); |
190 |
ban_p->when = CurrentTime; |
191 |
ban_p->len = len - 2; /* -2 for @ and ! */ |
192 |
ban_p->type = parse_netmask(host, &ban_p->addr, &ban_p->bits); |
193 |
|
194 |
if (IsClient(client_p)) |
195 |
{ |
196 |
ban_p->who = MyCalloc(strlen(client_p->name) + |
197 |
strlen(client_p->username) + |
198 |
strlen(client_p->host) + 3); |
199 |
sprintf(ban_p->who, "%s!%s@%s", client_p->name, |
200 |
client_p->username, client_p->host); |
201 |
} |
202 |
else if (IsHidden(client_p) || (IsServer(client_p) && ConfigServerHide.hide_servers)) |
203 |
ban_p->who = xstrdup(me.name); |
204 |
else |
205 |
ban_p->who = xstrdup(client_p->name); |
206 |
|
207 |
dlinkAdd(ban_p, &ban_p->node, list); |
208 |
|
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 |
del_id(struct Channel *chptr, char *banid, unsigned int type) |
221 |
{ |
222 |
dlink_list *list = NULL; |
223 |
dlink_node *ban = NULL; |
224 |
char name[NICKLEN + 1] = ""; |
225 |
char user[USERLEN + 1] = ""; |
226 |
char host[HOSTLEN + 1] = ""; |
227 |
struct split_nuh_item nuh; |
228 |
|
229 |
assert(banid); |
230 |
|
231 |
nuh.nuhmask = check_string(banid); |
232 |
nuh.nickptr = name; |
233 |
nuh.userptr = user; |
234 |
nuh.hostptr = host; |
235 |
|
236 |
nuh.nicksize = sizeof(name); |
237 |
nuh.usersize = sizeof(user); |
238 |
nuh.hostsize = sizeof(host); |
239 |
|
240 |
split_nuh(&nuh); |
241 |
|
242 |
/* |
243 |
* Re-assemble a new n!u@h and print it back to banid for sending |
244 |
* the mode to the channel. |
245 |
*/ |
246 |
sprintf(banid, "%s!%s@%s", name, user, host); |
247 |
|
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 |
assert(0); |
263 |
return 0; |
264 |
} |
265 |
|
266 |
DLINK_FOREACH(ban, list->head) |
267 |
{ |
268 |
struct Ban *banptr = ban->data; |
269 |
|
270 |
if (!irccmp(name, banptr->name) && |
271 |
!irccmp(user, banptr->user) && |
272 |
!irccmp(host, banptr->host)) |
273 |
{ |
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 |
const struct mode_letter *tab = chan_modes; |
297 |
|
298 |
*mbuf++ = '+'; |
299 |
*pbuf = '\0'; |
300 |
|
301 |
for (; tab->mode; ++tab) |
302 |
if (chptr->mode.mode & tab->mode) |
303 |
*mbuf++ = tab->letter; |
304 |
|
305 |
if (chptr->mode.limit) |
306 |
{ |
307 |
*mbuf++ = 'l'; |
308 |
|
309 |
if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE) || IsMember(client_p, chptr)) |
310 |
pbuf += sprintf(pbuf, "%d ", chptr->mode.limit); |
311 |
} |
312 |
|
313 |
if (chptr->mode.key[0]) |
314 |
{ |
315 |
*mbuf++ = 'k'; |
316 |
|
317 |
if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE) || IsMember(client_p, chptr)) |
318 |
sprintf(pbuf, "%s ", chptr->mode.key); |
319 |
} |
320 |
|
321 |
*mbuf = '\0'; |
322 |
} |
323 |
|
324 |
/* fix_key() |
325 |
* |
326 |
* 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 |
for (s = t = (unsigned char *)arg; (c = *s); ++s) |
338 |
{ |
339 |
c &= 0x7f; |
340 |
|
341 |
if (c != ':' && c > ' ' && c != ',') |
342 |
*t++ = c; |
343 |
} |
344 |
|
345 |
*t = '\0'; |
346 |
return arg; |
347 |
} |
348 |
|
349 |
/* fix_key_old() |
350 |
* |
351 |
* inputs - pointer to key to clean up |
352 |
* output - pointer to cleaned up key |
353 |
* side effects - input string is modifed |
354 |
* |
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 |
for (s = t = (unsigned char *)arg; (c = *s); ++s) |
364 |
{ |
365 |
c &= 0x7f; |
366 |
|
367 |
if ((c != 0x0a) && (c != ':') && |
368 |
(c != 0x0d) && (c != ',')) |
369 |
*t++ = c; |
370 |
} |
371 |
|
372 |
*t = '\0'; |
373 |
return arg; |
374 |
} |
375 |
|
376 |
/* |
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 |
/* 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 |
#define SM_ERR_NOTOPER 0x00000080 |
419 |
#define SM_ERR_ONLYSERVER 0x00000100 |
420 |
|
421 |
/* Mode functions handle mode changes for a particular mode... */ |
422 |
static void |
423 |
chm_nosuch(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
424 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
425 |
{ |
426 |
if (*errors & SM_ERR_UNKNOWN) |
427 |
return; |
428 |
|
429 |
*errors |= SM_ERR_UNKNOWN; |
430 |
sendto_one_numeric(source_p, &me, ERR_UNKNOWNMODE, c); |
431 |
} |
432 |
|
433 |
static void |
434 |
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 |
{ |
437 |
if ((alev < CHACCESS_HALFOP) || |
438 |
((d == MODE_PRIVATE) && (alev < CHACCESS_CHANOP))) |
439 |
{ |
440 |
if (!(*errors & SM_ERR_NOOPS)) |
441 |
sendto_one_numeric(source_p, &me, |
442 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
443 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
444 |
*errors |= SM_ERR_NOOPS; |
445 |
return; |
446 |
} |
447 |
|
448 |
/* If have already dealt with this simple mode, ignore it */ |
449 |
if (simple_modes_mask & d) |
450 |
return; |
451 |
|
452 |
simple_modes_mask |= d; |
453 |
|
454 |
/* setting + */ |
455 |
/* 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 |
if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */ |
463 |
{ |
464 |
chptr->mode.mode |= d; |
465 |
|
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 |
else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */ |
473 |
{ |
474 |
/* setting - */ |
475 |
|
476 |
chptr->mode.mode &= ~d; |
477 |
|
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 |
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 |
{ |
490 |
if (!IsServer(source_p) && !HasFlag(source_p, FLAGS_SERVICE)) |
491 |
{ |
492 |
if (!(*errors & SM_ERR_ONLYSERVER)) |
493 |
sendto_one_numeric(source_p, &me, |
494 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
495 |
ERR_ONLYSERVERSCANCHANGE, chptr->chname); |
496 |
*errors |= SM_ERR_ONLYSERVER; |
497 |
return; |
498 |
} |
499 |
|
500 |
/* If have already dealt with this simple mode, ignore it */ |
501 |
if (simple_modes_mask & d) |
502 |
return; |
503 |
|
504 |
simple_modes_mask |= d; |
505 |
|
506 |
/* setting + */ |
507 |
/* 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 |
*/ |
514 |
if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */ |
515 |
{ |
516 |
chptr->mode.mode |= d; |
517 |
|
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 |
else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */ |
525 |
{ |
526 |
/* setting - */ |
527 |
|
528 |
chptr->mode.mode &= ~d; |
529 |
|
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 |
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 |
{ |
543 |
if ((alev < CHACCESS_HALFOP) || |
544 |
((d == MODE_PRIVATE) && (alev < CHACCESS_CHANOP))) |
545 |
{ |
546 |
if (!(*errors & SM_ERR_NOOPS)) |
547 |
sendto_one_numeric(source_p, &me, |
548 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
549 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
550 |
*errors |= SM_ERR_NOOPS; |
551 |
return; |
552 |
} |
553 |
else if (MyClient(source_p) && !HasUMode(source_p, UMODE_OPER)) |
554 |
{ |
555 |
if (!(*errors & SM_ERR_NOTOPER)) |
556 |
{ |
557 |
if (alev == CHACCESS_NOTONCHAN) |
558 |
sendto_one_numeric(source_p, &me, ERR_NOTONCHANNEL, chptr->chname); |
559 |
else |
560 |
sendto_one_numeric(source_p, &me, ERR_NOPRIVILEGES); |
561 |
} |
562 |
|
563 |
*errors |= SM_ERR_NOTOPER; |
564 |
return; |
565 |
} |
566 |
|
567 |
/* If have already dealt with this simple mode, ignore it */ |
568 |
if (simple_modes_mask & d) |
569 |
return; |
570 |
|
571 |
simple_modes_mask |= d; |
572 |
|
573 |
if (dir == MODE_ADD) /* && !(chptr->mode.mode & d)) */ |
574 |
{ |
575 |
chptr->mode.mode |= d; |
576 |
|
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 |
else if (dir == MODE_DEL) /* && (chptr->mode.mode & d)) */ |
584 |
{ |
585 |
/* setting - */ |
586 |
|
587 |
chptr->mode.mode &= ~d; |
588 |
|
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 |
chm_ban(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
599 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
600 |
{ |
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 |
sendto_one_numeric(source_p, &me, RPL_BANLIST, chptr->chname, |
616 |
banptr->name, banptr->user, banptr->host, |
617 |
banptr->who, banptr->when); |
618 |
} |
619 |
|
620 |
sendto_one_numeric(source_p, &me, RPL_ENDOFBANLIST, chptr->chname); |
621 |
return; |
622 |
} |
623 |
|
624 |
if (alev < CHACCESS_HALFOP) |
625 |
{ |
626 |
if (!(*errors & SM_ERR_NOOPS)) |
627 |
sendto_one_numeric(source_p, &me, |
628 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
629 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
630 |
*errors |= SM_ERR_NOOPS; |
631 |
return; |
632 |
} |
633 |
|
634 |
if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS)) |
635 |
return; |
636 |
|
637 |
mask = nuh_mask[*parn]; |
638 |
memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn])); |
639 |
++*parn; |
640 |
|
641 |
if (!MyConnect(source_p)) |
642 |
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 |
chm_except(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
668 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
669 |
{ |
670 |
char *mask = NULL; |
671 |
|
672 |
if (alev < CHACCESS_HALFOP) |
673 |
{ |
674 |
if (!(*errors & SM_ERR_NOOPS)) |
675 |
sendto_one_numeric(source_p, &me, |
676 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
677 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
678 |
*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 |
|
695 |
sendto_one_numeric(source_p, &me, RPL_EXCEPTLIST, chptr->chname, |
696 |
banptr->name, banptr->user, banptr->host, |
697 |
banptr->who, banptr->when); |
698 |
} |
699 |
|
700 |
sendto_one_numeric(source_p, &me, RPL_ENDOFEXCEPTLIST, chptr->chname); |
701 |
return; |
702 |
} |
703 |
|
704 |
if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS)) |
705 |
return; |
706 |
|
707 |
mask = nuh_mask[*parn]; |
708 |
memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn])); |
709 |
++*parn; |
710 |
|
711 |
if (!MyConnect(source_p)) |
712 |
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 |
mode_changes[mode_count].mems = ONLY_CHANOPS; |
732 |
mode_changes[mode_count].id = NULL; |
733 |
mode_changes[mode_count++].arg = mask; |
734 |
} |
735 |
|
736 |
static void |
737 |
chm_invex(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
738 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
739 |
{ |
740 |
char *mask = NULL; |
741 |
|
742 |
if (alev < CHACCESS_HALFOP) |
743 |
{ |
744 |
if (!(*errors & SM_ERR_NOOPS)) |
745 |
sendto_one_numeric(source_p, &me, |
746 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
747 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
748 |
*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 |
|
765 |
sendto_one_numeric(source_p, &me, RPL_INVITELIST, chptr->chname, |
766 |
banptr->name, banptr->user, banptr->host, |
767 |
banptr->who, banptr->when); |
768 |
} |
769 |
|
770 |
sendto_one_numeric(source_p, &me, RPL_ENDOFINVITELIST, chptr->chname); |
771 |
return; |
772 |
} |
773 |
|
774 |
if (MyClient(source_p) && (++mode_limit > MAXMODEPARAMS)) |
775 |
return; |
776 |
|
777 |
mask = nuh_mask[*parn]; |
778 |
memcpy(mask, parv[*parn], sizeof(nuh_mask[*parn])); |
779 |
++*parn; |
780 |
|
781 |
if (!MyConnect(source_p)) |
782 |
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 |
mode_changes[mode_count].mems = ONLY_CHANOPS; |
802 |
mode_changes[mode_count].id = NULL; |
803 |
mode_changes[mode_count++].arg = mask; |
804 |
} |
805 |
|
806 |
static void |
807 |
chm_voice(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
808 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
809 |
{ |
810 |
const char *opnick = NULL; |
811 |
struct Client *target_p; |
812 |
struct Membership *member; |
813 |
|
814 |
if (alev < CHACCESS_HALFOP) |
815 |
{ |
816 |
if (!(*errors & SM_ERR_NOOPS)) |
817 |
sendto_one_numeric(source_p, &me, |
818 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
819 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
820 |
*errors |= SM_ERR_NOOPS; |
821 |
return; |
822 |
} |
823 |
|
824 |
if ((dir == MODE_QUERY) || parc <= *parn) |
825 |
return; |
826 |
|
827 |
opnick = parv[(*parn)++]; |
828 |
|
829 |
if ((target_p = find_chasing(source_p, opnick)) == NULL) |
830 |
return; |
831 |
|
832 |
if ((member = find_channel_link(target_p, chptr)) == NULL) |
833 |
{ |
834 |
if (!(*errors & SM_ERR_NOTONCHANNEL)) |
835 |
sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, opnick, chptr->chname); |
836 |
*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 |
if (dir == MODE_ADD && has_member_flags(member, CHFL_VOICE)) |
845 |
return; |
846 |
if (dir == MODE_DEL && !has_member_flags(member, CHFL_VOICE)) |
847 |
return; |
848 |
|
849 |
mode_changes[mode_count].letter = 'v'; |
850 |
mode_changes[mode_count].dir = dir; |
851 |
mode_changes[mode_count].mems = ALL_MEMBERS; |
852 |
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 |
|
856 |
if (dir == MODE_ADD) |
857 |
AddMemberFlag(member, CHFL_VOICE); |
858 |
else |
859 |
DelMemberFlag(member, CHFL_VOICE); |
860 |
} |
861 |
|
862 |
#ifdef HALFOPS |
863 |
static void |
864 |
chm_hop(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
865 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
866 |
{ |
867 |
const char *opnick = NULL; |
868 |
struct Client *target_p; |
869 |
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 |
sendto_one_numeric(source_p, &me, |
889 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
890 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
891 |
*errors |= SM_ERR_NOOPS; |
892 |
return; |
893 |
} |
894 |
|
895 |
if ((dir == MODE_QUERY) || (parc <= *parn)) |
896 |
return; |
897 |
|
898 |
opnick = parv[(*parn)++]; |
899 |
|
900 |
if ((target_p = find_chasing(source_p, opnick)) == NULL) |
901 |
return; |
902 |
|
903 |
if ((member = find_channel_link(target_p, chptr)) == NULL) |
904 |
{ |
905 |
if (!(*errors & SM_ERR_NOTONCHANNEL)) |
906 |
sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, opnick, chptr->chname); |
907 |
*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 |
if (dir == MODE_ADD && has_member_flags(member, CHFL_HALFOP)) |
916 |
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 |
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 |
|
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 |
chm_op(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
939 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
940 |
{ |
941 |
const char *opnick = NULL; |
942 |
struct Client *target_p; |
943 |
struct Membership *member; |
944 |
|
945 |
if (alev < CHACCESS_CHANOP) |
946 |
{ |
947 |
if (!(*errors & SM_ERR_NOOPS)) |
948 |
sendto_one_numeric(source_p, &me, |
949 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
950 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
951 |
*errors |= SM_ERR_NOOPS; |
952 |
return; |
953 |
} |
954 |
|
955 |
if ((dir == MODE_QUERY) || (parc <= *parn)) |
956 |
return; |
957 |
|
958 |
opnick = parv[(*parn)++]; |
959 |
|
960 |
if ((target_p = find_chasing(source_p, opnick)) == NULL) |
961 |
return; |
962 |
|
963 |
if ((member = find_channel_link(target_p, chptr)) == NULL) |
964 |
{ |
965 |
if (!(*errors & SM_ERR_NOTONCHANNEL)) |
966 |
sendto_one_numeric(source_p, &me, ERR_USERNOTINCHANNEL, opnick, chptr->chname); |
967 |
*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 |
if (dir == MODE_ADD && has_member_flags(member, CHFL_CHANOP)) |
976 |
return; |
977 |
if (dir == MODE_DEL && !has_member_flags(member, CHFL_CHANOP)) |
978 |
return; |
979 |
|
980 |
mode_changes[mode_count].letter = 'o'; |
981 |
mode_changes[mode_count].dir = dir; |
982 |
mode_changes[mode_count].mems = ALL_MEMBERS; |
983 |
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 |
|
987 |
if (dir == MODE_ADD) |
988 |
{ |
989 |
AddMemberFlag(member, CHFL_CHANOP); |
990 |
DelMemberFlag(member, CHFL_DEOPPED); |
991 |
} |
992 |
else |
993 |
DelMemberFlag(member, CHFL_CHANOP); |
994 |
} |
995 |
|
996 |
static void |
997 |
chm_limit(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
998 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
999 |
{ |
1000 |
unsigned int i = 0; |
1001 |
int limit = 0; |
1002 |
|
1003 |
if (alev < CHACCESS_HALFOP) |
1004 |
{ |
1005 |
if (!(*errors & SM_ERR_NOOPS)) |
1006 |
sendto_one_numeric(source_p, &me, |
1007 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
1008 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
1009 |
*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 |
char *lstr = parv[(*parn)++]; |
1019 |
|
1020 |
if (EmptyString(lstr) || (limit = atoi(lstr)) <= 0) |
1021 |
return; |
1022 |
|
1023 |
sprintf(lstr, "%d", limit); |
1024 |
|
1025 |
/* If somebody sets MODE #channel +ll 1 2, accept latter --fl */ |
1026 |
for (i = 0; i < mode_count; ++i) |
1027 |
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 |
chm_key(struct Client *source_p, struct Channel *chptr, int parc, int *parn, |
1055 |
char **parv, int *errors, int alev, int dir, char c, unsigned int d) |
1056 |
{ |
1057 |
unsigned int i = 0; |
1058 |
|
1059 |
if (alev < CHACCESS_HALFOP) |
1060 |
{ |
1061 |
if (!(*errors & SM_ERR_NOOPS)) |
1062 |
sendto_one_numeric(source_p, &me, |
1063 |
alev == CHACCESS_NOTONCHAN ? ERR_NOTONCHANNEL : |
1064 |
ERR_CHANOPRIVSNEEDED, chptr->chname); |
1065 |
*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 |
char *key = parv[(*parn)++]; |
1075 |
|
1076 |
if (MyClient(source_p)) |
1077 |
fix_key(key); |
1078 |
else |
1079 |
fix_key_old(key); |
1080 |
|
1081 |
if (EmptyString(key)) |
1082 |
return; |
1083 |
|
1084 |
assert(key[0] != ' '); |
1085 |
strlcpy(chptr->mode.key, key, sizeof(chptr->mode.key)); |
1086 |
|
1087 |
/* If somebody does MODE #channel +kk a b, accept latter --fl */ |
1088 |
for (i = 0; i < mode_count; ++i) |
1089 |
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 |
void (*func)(struct Client *, |
1119 |
struct Channel *, int, int *, char **, |
1120 |
int *, int, int, char, unsigned int); |
1121 |
unsigned int d; |
1122 |
}; |
1123 |
|
1124 |
static struct ChannelMode ModeTable[256] = |
1125 |
{ |
1126 |
{ 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 |
#ifdef HALFOPS |
1231 |
{ chm_hop, 0 }, /* h */ |
1232 |
#else |
1233 |
{ chm_nosuch, 0 }, /* h */ |
1234 |
#endif |
1235 |
{ 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 |
}; |
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 |
get_channel_access(const struct Client *source_p, |
1398 |
const struct Membership *member) |
1399 |
{ |
1400 |
/* Let hacked servers in for now... */ |
1401 |
if (!MyClient(source_p)) |
1402 |
return CHACCESS_CHANOP; |
1403 |
|
1404 |
if (!member) |
1405 |
return CHACCESS_NOTONCHAN; |
1406 |
|
1407 |
/* Just to be sure.. */ |
1408 |
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 |
/* send_mode_changes_server() |
1422 |
* Input: the source client(source_p), |
1423 |
* the channel to send mode changes for(chptr) |
1424 |
* Output: None. |
1425 |
* Side-effects: Sends the appropriate mode changes to servers. |
1426 |
* |
1427 |
*/ |
1428 |
static void |
1429 |
send_mode_changes_server(struct Client *source_p, struct Channel *chptr) |
1430 |
{ |
1431 |
unsigned int i; |
1432 |
int mbl = 0, pbl = 0, arglen = 0, nc = 0, mc = 0; |
1433 |
int len = 0; |
1434 |
const char *arg = NULL; |
1435 |
char *parptr; |
1436 |
int dir = MODE_QUERY; |
1437 |
|
1438 |
parabuf[0] = '\0'; |
1439 |
parptr = parabuf; |
1440 |
|
1441 |
mbl = snprintf(modebuf, sizeof(modebuf), ":%s TMODE %lu %s ", source_p->id, |
1442 |
(unsigned long)chptr->channelts, chptr->chname); |
1443 |
|
1444 |
/* Loop the list of modes we have */ |
1445 |
for (i = 0; i < mode_count; ++i) |
1446 |
{ |
1447 |
if (mode_changes[i].letter == 0) /* XXX: can it ever happen? */ |
1448 |
continue; |
1449 |
|
1450 |
if (mode_changes[i].id) |
1451 |
arg = mode_changes[i].id; |
1452 |
else |
1453 |
arg = mode_changes[i].arg; |
1454 |
|
1455 |
if (arg) |
1456 |
arglen = strlen(arg); |
1457 |
else |
1458 |
arglen = 0; |
1459 |
|
1460 |
/* |
1461 |
* If we're creeping past the buf size, we need to send it and make |
1462 |
* 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 |
if (nc) |
1469 |
sendto_server(source_p, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf); |
1470 |
|
1471 |
nc = 0; |
1472 |
mc = 0; |
1473 |
|
1474 |
mbl = snprintf(modebuf, sizeof(modebuf), ":%s TMODE %lu %s ", source_p->id, |
1475 |
(unsigned long)chptr->channelts, chptr->chname); |
1476 |
|
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 |
if (arg) |
1494 |
{ |
1495 |
len = sprintf(parptr, "%s ", arg); |
1496 |
pbl += len; |
1497 |
parptr += len; |
1498 |
mc++; |
1499 |
} |
1500 |
} |
1501 |
|
1502 |
if (pbl && parabuf[pbl - 1] == ' ') |
1503 |
parabuf[pbl - 1] = '\0'; |
1504 |
|
1505 |
if (nc) |
1506 |
sendto_server(source_p, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf); |
1507 |
} |
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 |
send_mode_changes(struct Client *source_p, struct Channel *chptr) |
1522 |
{ |
1523 |
unsigned int i; |
1524 |
int mbl = 0, pbl = 0, arglen = 0, nc = 0, mc = 0; |
1525 |
int len = 0; |
1526 |
const char *arg = NULL; |
1527 |
char *parptr; |
1528 |
int dir = MODE_QUERY; |
1529 |
|
1530 |
/* Bail out if we have nothing to do... */ |
1531 |
if (!mode_count) |
1532 |
return; |
1533 |
|
1534 |
if (IsServer(source_p)) |
1535 |
mbl = snprintf(modebuf, sizeof(modebuf), ":%s MODE %s ", (IsHidden(source_p) || |
1536 |
ConfigServerHide.hide_servers) ? |
1537 |
me.name : source_p->name, chptr->chname); |
1538 |
else |
1539 |
mbl = snprintf(modebuf, sizeof(modebuf), ":%s!%s@%s MODE %s ", source_p->name, |
1540 |
source_p->username, source_p->host, chptr->chname); |
1541 |
|
1542 |
parabuf[0] = '\0'; |
1543 |
parptr = parabuf; |
1544 |
|
1545 |
for (i = 0; i < mode_count; ++i) |
1546 |
{ |
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 |
if (arg) |
1554 |
arglen = strlen(arg); |
1555 |
else |
1556 |
arglen = 0; |
1557 |
|
1558 |
if ((mc == MAXMODEPARAMS) || |
1559 |
((arglen + mbl + pbl + 2) > IRCD_BUFSIZE) || |
1560 |
((arglen + pbl + BAN_FUDGE) >= MODEBUFLEN)) |
1561 |
{ |
1562 |
if (mbl && modebuf[mbl - 1] == '-') |
1563 |
modebuf[mbl - 1] = '\0'; |
1564 |
|
1565 |
if (nc) |
1566 |
sendto_channel_local(ALL_MEMBERS, 0, chptr, "%s %s", modebuf, parabuf); |
1567 |
|
1568 |
nc = 0; |
1569 |
mc = 0; |
1570 |
|
1571 |
if (IsServer(source_p)) |
1572 |
mbl = snprintf(modebuf, sizeof(modebuf), ":%s MODE %s ", (IsHidden(source_p) || |
1573 |
ConfigServerHide.hide_servers) ? |
1574 |
me.name : source_p->name, chptr->chname); |
1575 |
else |
1576 |
mbl = snprintf(modebuf, sizeof(modebuf), ":%s!%s@%s MODE %s ", source_p->name, |
1577 |
source_p->username, source_p->host, chptr->chname); |
1578 |
|
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 |
if (arg) |
1596 |
{ |
1597 |
len = sprintf(parptr, "%s ", arg); |
1598 |
pbl += len; |
1599 |
parptr += len; |
1600 |
mc++; |
1601 |
} |
1602 |
} |
1603 |
|
1604 |
if (pbl && parabuf[pbl - 1] == ' ') |
1605 |
parabuf[pbl - 1] = '\0'; |
1606 |
|
1607 |
if (nc) |
1608 |
sendto_channel_local(ALL_MEMBERS, 0, chptr, "%s %s", modebuf, parabuf); |
1609 |
|
1610 |
send_mode_changes_server(source_p, chptr); |
1611 |
} |
1612 |
|
1613 |
/* |
1614 |
* Input: The the client this originated |
1615 |
* 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 |
set_channel_mode(struct Client *source_p, struct Channel *chptr, |
1624 |
struct Membership *member, int parc, char *parv[]) |
1625 |
{ |
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 |
for (const char *ml = parv[0]; *ml; ++ml) |
1637 |
{ |
1638 |
switch (*ml) |
1639 |
{ |
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 |
{ |
1651 |
struct ChannelMode *tptr = &ModeTable[(unsigned char)*ml]; |
1652 |
|
1653 |
tptr->func(source_p, chptr, parc, &parn, parv, |
1654 |
&errors, alevel, dir, *ml, tptr->d); |
1655 |
break; |
1656 |
} |
1657 |
} |
1658 |
} |
1659 |
|
1660 |
send_mode_changes(source_p, chptr); |
1661 |
} |