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