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.c |
23 |
* \brief Responsible for managing channels, members, bans and topics |
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 "hash.h" |
33 |
#include "conf.h" |
34 |
#include "hostmask.h" |
35 |
#include "irc_string.h" |
36 |
#include "ircd.h" |
37 |
#include "numeric.h" |
38 |
#include "s_serv.h" |
39 |
#include "send.h" |
40 |
#include "event.h" |
41 |
#include "memory.h" |
42 |
#include "mempool.h" |
43 |
#include "s_misc.h" |
44 |
#include "resv.h" |
45 |
|
46 |
dlink_list global_channel_list = { NULL, NULL, 0 }; |
47 |
mp_pool_t *ban_pool; /*! \todo ban_pool shouldn't be a global var */ |
48 |
|
49 |
static mp_pool_t *member_pool = NULL; |
50 |
static mp_pool_t *channel_pool = NULL; |
51 |
|
52 |
static char buf[IRCD_BUFSIZE]; |
53 |
static char modebuf[MODEBUFLEN]; |
54 |
static char parabuf[MODEBUFLEN]; |
55 |
|
56 |
|
57 |
/*! \brief Initializes the channel blockheap, adds known channel CAPAB |
58 |
*/ |
59 |
void |
60 |
channel_init(void) |
61 |
{ |
62 |
add_capability("EX", CAP_EX, 1); |
63 |
add_capability("IE", CAP_IE, 1); |
64 |
|
65 |
channel_pool = mp_pool_new(sizeof(struct Channel), MP_CHUNK_SIZE_CHANNEL); |
66 |
ban_pool = mp_pool_new(sizeof(struct Ban), MP_CHUNK_SIZE_BAN); |
67 |
member_pool = mp_pool_new(sizeof(struct Membership), MP_CHUNK_SIZE_MEMBER); |
68 |
} |
69 |
|
70 |
/*! \brief adds a user to a channel by adding another link to the |
71 |
* channels member chain. |
72 |
* \param chptr pointer to channel to add client to |
73 |
* \param who pointer to client (who) to add |
74 |
* \param flags flags for chanops etc |
75 |
* \param flood_ctrl whether to count this join in flood calculations |
76 |
*/ |
77 |
void |
78 |
add_user_to_channel(struct Channel *chptr, struct Client *who, |
79 |
unsigned int flags, int flood_ctrl) |
80 |
{ |
81 |
struct Membership *ms = NULL; |
82 |
|
83 |
if (GlobalSetOptions.joinfloodtime > 0) |
84 |
{ |
85 |
if (flood_ctrl) |
86 |
chptr->number_joined++; |
87 |
|
88 |
chptr->number_joined -= (CurrentTime - chptr->last_join_time) * |
89 |
(((float)GlobalSetOptions.joinfloodcount) / |
90 |
(float)GlobalSetOptions.joinfloodtime); |
91 |
|
92 |
if (chptr->number_joined <= 0) |
93 |
{ |
94 |
chptr->number_joined = 0; |
95 |
ClearJoinFloodNoticed(chptr); |
96 |
} |
97 |
else if (chptr->number_joined >= GlobalSetOptions.joinfloodcount) |
98 |
{ |
99 |
chptr->number_joined = GlobalSetOptions.joinfloodcount; |
100 |
|
101 |
if (!IsSetJoinFloodNoticed(chptr)) |
102 |
{ |
103 |
SetJoinFloodNoticed(chptr); |
104 |
sendto_realops_flags(UMODE_BOTS, L_ALL, SEND_NOTICE, |
105 |
"Possible Join Flooder %s on %s target: %s", |
106 |
get_client_name(who, HIDE_IP), |
107 |
who->servptr->name, chptr->chname); |
108 |
} |
109 |
} |
110 |
|
111 |
chptr->last_join_time = CurrentTime; |
112 |
} |
113 |
|
114 |
ms = mp_pool_get(member_pool); |
115 |
memset(ms, 0, sizeof(*ms)); |
116 |
|
117 |
ms->client_p = who; |
118 |
ms->chptr = chptr; |
119 |
ms->flags = flags; |
120 |
|
121 |
dlinkAdd(ms, &ms->channode, &chptr->members); |
122 |
dlinkAdd(ms, &ms->usernode, &who->channel); |
123 |
} |
124 |
|
125 |
/*! \brief deletes an user from a channel by removing a link in the |
126 |
* channels member chain. |
127 |
* \param member pointer to Membership struct |
128 |
*/ |
129 |
void |
130 |
remove_user_from_channel(struct Membership *member) |
131 |
{ |
132 |
struct Client *client_p = member->client_p; |
133 |
struct Channel *chptr = member->chptr; |
134 |
|
135 |
dlinkDelete(&member->channode, &chptr->members); |
136 |
dlinkDelete(&member->usernode, &client_p->channel); |
137 |
|
138 |
mp_pool_release(member); |
139 |
|
140 |
if (chptr->members.head == NULL) |
141 |
destroy_channel(chptr); |
142 |
} |
143 |
|
144 |
/* send_members() |
145 |
* |
146 |
* inputs - |
147 |
* output - NONE |
148 |
* side effects - |
149 |
*/ |
150 |
static void |
151 |
send_members(struct Client *client_p, struct Channel *chptr, |
152 |
char *lmodebuf, char *lparabuf) |
153 |
{ |
154 |
const dlink_node *ptr = NULL; |
155 |
int tlen; /* length of text to append */ |
156 |
char *t, *start; /* temp char pointer */ |
157 |
|
158 |
start = t = buf + snprintf(buf, sizeof(buf), ":%s SJOIN %lu %s %s %s:", |
159 |
ID_or_name(&me, client_p), |
160 |
(unsigned long)chptr->channelts, |
161 |
chptr->chname, lmodebuf, lparabuf); |
162 |
|
163 |
DLINK_FOREACH(ptr, chptr->members.head) |
164 |
{ |
165 |
const struct Membership *ms = ptr->data; |
166 |
|
167 |
tlen = strlen(IsCapable(client_p, CAP_TS6) ? |
168 |
ID(ms->client_p) : ms->client_p->name) + 1; /* nick + space */ |
169 |
|
170 |
if (ms->flags & CHFL_CHANOP) |
171 |
tlen++; |
172 |
#ifdef HALFOPS |
173 |
else if (ms->flags & CHFL_HALFOP) |
174 |
tlen++; |
175 |
#endif |
176 |
if (ms->flags & CHFL_VOICE) |
177 |
tlen++; |
178 |
|
179 |
/* space will be converted into CR, but we also need space for LF.. |
180 |
* That's why we use '- 1' here |
181 |
* -adx */ |
182 |
if (t + tlen - buf > IRCD_BUFSIZE - 1) |
183 |
{ |
184 |
*(t - 1) = '\0'; /* kill the space and terminate the string */ |
185 |
sendto_one(client_p, "%s", buf); |
186 |
t = start; |
187 |
} |
188 |
|
189 |
if ((ms->flags & (CHFL_CHANOP | CHFL_HALFOP))) |
190 |
*t++ = (!(ms->flags & CHFL_CHANOP) && IsCapable(client_p, CAP_HOPS)) ? |
191 |
'%' : '@'; |
192 |
if ((ms->flags & CHFL_VOICE)) |
193 |
*t++ = '+'; |
194 |
|
195 |
if (IsCapable(client_p, CAP_TS6)) |
196 |
strcpy(t, ID(ms->client_p)); |
197 |
else |
198 |
strcpy(t, ms->client_p->name); |
199 |
t += strlen(t); |
200 |
*t++ = ' '; |
201 |
} |
202 |
|
203 |
/* should always be non-NULL unless we have a kind of persistent channels */ |
204 |
if (chptr->members.head != NULL) |
205 |
t--; /* take the space out */ |
206 |
*t = '\0'; |
207 |
sendto_one(client_p, "%s", buf); |
208 |
} |
209 |
|
210 |
/*! \brief sends +b/+e/+I |
211 |
* \param client_p client pointer to server |
212 |
* \param chptr pointer to channel |
213 |
* \param top pointer to top of mode link list to send |
214 |
* \param flag char flag flagging type of mode. Currently this can be 'b', e' or 'I' |
215 |
*/ |
216 |
static void |
217 |
send_mode_list(struct Client *client_p, struct Channel *chptr, |
218 |
const dlink_list *top, char flag) |
219 |
{ |
220 |
int ts5 = !IsCapable(client_p, CAP_TS6); |
221 |
const dlink_node *lp = NULL; |
222 |
char pbuf[IRCD_BUFSIZE]; |
223 |
int tlen, mlen, cur_len, count = 0; |
224 |
char *mp = NULL, *pp = pbuf; |
225 |
|
226 |
if (top == NULL || top->length == 0) |
227 |
return; |
228 |
|
229 |
if (ts5) |
230 |
mlen = snprintf(buf, sizeof(buf), ":%s MODE %s +", me.name, chptr->chname); |
231 |
else |
232 |
mlen = snprintf(buf, sizeof(buf), ":%s BMASK %lu %s %c :", me.id, |
233 |
(unsigned long)chptr->channelts, chptr->chname, flag); |
234 |
|
235 |
/* MODE needs additional one byte for space between buf and pbuf */ |
236 |
cur_len = mlen + ts5; |
237 |
mp = buf + mlen; |
238 |
|
239 |
DLINK_FOREACH(lp, top->head) |
240 |
{ |
241 |
const struct Ban *banptr = lp->data; |
242 |
|
243 |
/* must add another b/e/I letter if we use MODE */ |
244 |
tlen = banptr->len + 3 + ts5; |
245 |
|
246 |
/* |
247 |
* send buffer and start over if we cannot fit another ban, |
248 |
* or if the target is non-ts6 and we have too many modes in |
249 |
* in this line. |
250 |
*/ |
251 |
if (cur_len + (tlen - 1) > IRCD_BUFSIZE - 2 || |
252 |
(!IsCapable(client_p, CAP_TS6) && |
253 |
(count >= MAXMODEPARAMS || pp - pbuf >= MODEBUFLEN))) |
254 |
{ |
255 |
*(pp - 1) = '\0'; /* get rid of trailing space on buffer */ |
256 |
sendto_one(client_p, "%s%s%s", buf, ts5 ? " " : "", pbuf); |
257 |
|
258 |
cur_len = mlen + ts5; |
259 |
mp = buf + mlen; |
260 |
pp = pbuf; |
261 |
count = 0; |
262 |
} |
263 |
|
264 |
count++; |
265 |
if (ts5) |
266 |
{ |
267 |
*mp++ = flag; |
268 |
*mp = '\0'; |
269 |
} |
270 |
|
271 |
pp += sprintf(pp, "%s!%s@%s ", banptr->name, banptr->user, |
272 |
banptr->host); |
273 |
cur_len += tlen; |
274 |
} |
275 |
|
276 |
*(pp - 1) = '\0'; /* get rid of trailing space on buffer */ |
277 |
sendto_one(client_p, "%s%s%s", buf, ts5 ? " " : "", pbuf); |
278 |
} |
279 |
|
280 |
/*! \brief send "client_p" a full list of the modes for channel chptr |
281 |
* \param client_p pointer to client client_p |
282 |
* \param chptr pointer to channel pointer |
283 |
*/ |
284 |
void |
285 |
send_channel_modes(struct Client *client_p, struct Channel *chptr) |
286 |
{ |
287 |
*modebuf = *parabuf = '\0'; |
288 |
channel_modes(chptr, client_p, modebuf, parabuf); |
289 |
send_members(client_p, chptr, modebuf, parabuf); |
290 |
|
291 |
send_mode_list(client_p, chptr, &chptr->banlist, 'b'); |
292 |
send_mode_list(client_p, chptr, &chptr->exceptlist, 'e'); |
293 |
send_mode_list(client_p, chptr, &chptr->invexlist, 'I'); |
294 |
} |
295 |
|
296 |
/*! \brief check channel name for invalid characters |
297 |
* \param name pointer to channel name string |
298 |
* \param local indicates whether it's a local or remote creation |
299 |
* \return 0 if invalid, 1 otherwise |
300 |
*/ |
301 |
int |
302 |
check_channel_name(const char *name, const int local) |
303 |
{ |
304 |
const char *p = name; |
305 |
const int max_length = local ? LOCAL_CHANNELLEN : CHANNELLEN; |
306 |
assert(name != NULL); |
307 |
|
308 |
if (!IsChanPrefix(*p)) |
309 |
return 0; |
310 |
|
311 |
if (!local || !ConfigChannel.disable_fake_channels) |
312 |
{ |
313 |
while (*++p) |
314 |
if (!IsChanChar(*p)) |
315 |
return 0; |
316 |
} |
317 |
else |
318 |
{ |
319 |
while (*++p) |
320 |
if (!IsVisibleChanChar(*p)) |
321 |
return 0; |
322 |
} |
323 |
|
324 |
return p - name <= max_length; |
325 |
} |
326 |
|
327 |
void |
328 |
remove_ban(struct Ban *bptr, dlink_list *list) |
329 |
{ |
330 |
dlinkDelete(&bptr->node, list); |
331 |
|
332 |
MyFree(bptr->name); |
333 |
MyFree(bptr->user); |
334 |
MyFree(bptr->host); |
335 |
MyFree(bptr->who); |
336 |
|
337 |
mp_pool_release(bptr); |
338 |
} |
339 |
|
340 |
/* free_channel_list() |
341 |
* |
342 |
* inputs - pointer to dlink_list |
343 |
* output - NONE |
344 |
* side effects - |
345 |
*/ |
346 |
void |
347 |
free_channel_list(dlink_list *list) |
348 |
{ |
349 |
dlink_node *ptr = NULL, *next_ptr = NULL; |
350 |
|
351 |
DLINK_FOREACH_SAFE(ptr, next_ptr, list->head) |
352 |
remove_ban(ptr->data, list); |
353 |
|
354 |
assert(list->tail == NULL && list->head == NULL); |
355 |
} |
356 |
|
357 |
/*! \brief Get Channel block for chname (and allocate a new channel |
358 |
* block, if it didn't exist before) |
359 |
* \param chname channel name |
360 |
* \return channel block |
361 |
*/ |
362 |
struct Channel * |
363 |
make_channel(const char *chname) |
364 |
{ |
365 |
struct Channel *chptr = NULL; |
366 |
|
367 |
assert(!EmptyString(chname)); |
368 |
|
369 |
chptr = mp_pool_get(channel_pool); |
370 |
|
371 |
memset(chptr, 0, sizeof(*chptr)); |
372 |
|
373 |
/* doesn't hurt to set it here */ |
374 |
chptr->channelts = CurrentTime; |
375 |
chptr->last_join_time = CurrentTime; |
376 |
|
377 |
strlcpy(chptr->chname, chname, sizeof(chptr->chname)); |
378 |
dlinkAdd(chptr, &chptr->node, &global_channel_list); |
379 |
|
380 |
hash_add_channel(chptr); |
381 |
|
382 |
return chptr; |
383 |
} |
384 |
|
385 |
/*! \brief walk through this channel, and destroy it. |
386 |
* \param chptr channel pointer |
387 |
*/ |
388 |
void |
389 |
destroy_channel(struct Channel *chptr) |
390 |
{ |
391 |
dlink_node *ptr = NULL, *ptr_next = NULL; |
392 |
|
393 |
DLINK_FOREACH_SAFE(ptr, ptr_next, chptr->invites.head) |
394 |
del_invite(chptr, ptr->data); |
395 |
|
396 |
/* free ban/exception/invex lists */ |
397 |
free_channel_list(&chptr->banlist); |
398 |
free_channel_list(&chptr->exceptlist); |
399 |
free_channel_list(&chptr->invexlist); |
400 |
|
401 |
dlinkDelete(&chptr->node, &global_channel_list); |
402 |
hash_del_channel(chptr); |
403 |
|
404 |
mp_pool_release(chptr); |
405 |
} |
406 |
|
407 |
/*! |
408 |
* \param chptr pointer to channel |
409 |
* \return string pointer "=" if public, "@" if secret else "*" |
410 |
*/ |
411 |
static const char * |
412 |
channel_pub_or_secret(const struct Channel *chptr) |
413 |
{ |
414 |
if (SecretChannel(chptr)) |
415 |
return "@"; |
416 |
if (PrivateChannel(chptr)) |
417 |
return "*"; |
418 |
return "="; |
419 |
} |
420 |
|
421 |
/*! \brief lists all names on given channel |
422 |
* \param source_p pointer to client struct requesting names |
423 |
* \param chptr pointer to channel block |
424 |
* \param show_eon show ENDOFNAMES numeric or not |
425 |
* (don't want it with /names with no params) |
426 |
*/ |
427 |
void |
428 |
channel_member_names(struct Client *source_p, struct Channel *chptr, |
429 |
int show_eon) |
430 |
{ |
431 |
const dlink_node *ptr = NULL; |
432 |
char lbuf[IRCD_BUFSIZE + 1]; |
433 |
char *t = NULL, *start = NULL; |
434 |
int tlen = 0; |
435 |
int is_member = IsMember(source_p, chptr); |
436 |
int multi_prefix = HasCap(source_p, CAP_MULTI_PREFIX) != 0; |
437 |
int uhnames = HasCap(source_p, CAP_UHNAMES) != 0; |
438 |
|
439 |
if (PubChannel(chptr) || is_member) |
440 |
{ |
441 |
t = lbuf + snprintf(lbuf, sizeof(lbuf), numeric_form(RPL_NAMREPLY), |
442 |
me.name, source_p->name, |
443 |
channel_pub_or_secret(chptr), chptr->chname); |
444 |
start = t; |
445 |
|
446 |
DLINK_FOREACH(ptr, chptr->members.head) |
447 |
{ |
448 |
const struct Membership *ms = ptr->data; |
449 |
|
450 |
if (HasUMode(ms->client_p, UMODE_INVISIBLE) && !is_member) |
451 |
continue; |
452 |
|
453 |
if (!uhnames) |
454 |
tlen = strlen(ms->client_p->name) + 1; /* nick + space */ |
455 |
else |
456 |
tlen = strlen(ms->client_p->name) + strlen(ms->client_p->username) + |
457 |
strlen(ms->client_p->host) + 3; |
458 |
|
459 |
if (!multi_prefix) |
460 |
{ |
461 |
if (ms->flags & (CHFL_CHANOP | CHFL_HALFOP | CHFL_VOICE)) |
462 |
++tlen; |
463 |
} |
464 |
else |
465 |
{ |
466 |
if (ms->flags & CHFL_CHANOP) |
467 |
++tlen; |
468 |
if (ms->flags & CHFL_HALFOP) |
469 |
++tlen; |
470 |
if (ms->flags & CHFL_VOICE) |
471 |
++tlen; |
472 |
} |
473 |
|
474 |
if (t + tlen - lbuf > IRCD_BUFSIZE - 2) |
475 |
{ |
476 |
*(t - 1) = '\0'; |
477 |
sendto_one(source_p, "%s", lbuf); |
478 |
t = start; |
479 |
} |
480 |
|
481 |
if (!uhnames) |
482 |
t += sprintf(t, "%s%s ", get_member_status(ms, multi_prefix), |
483 |
ms->client_p->name); |
484 |
else |
485 |
t += sprintf(t, "%s%s!%s@%s ", get_member_status(ms, multi_prefix), |
486 |
ms->client_p->name, ms->client_p->username, |
487 |
ms->client_p->host); |
488 |
} |
489 |
|
490 |
if (tlen != 0) |
491 |
{ |
492 |
*(t - 1) = '\0'; |
493 |
sendto_one(source_p, "%s", lbuf); |
494 |
} |
495 |
} |
496 |
|
497 |
if (show_eon) |
498 |
sendto_one_numeric(source_p, &me, RPL_ENDOFNAMES, chptr->chname); |
499 |
} |
500 |
|
501 |
/*! \brief adds client to invite list |
502 |
* \param chptr pointer to channel block |
503 |
* \param who pointer to client to add invite to |
504 |
*/ |
505 |
void |
506 |
add_invite(struct Channel *chptr, struct Client *who) |
507 |
{ |
508 |
del_invite(chptr, who); |
509 |
|
510 |
/* |
511 |
* delete last link in chain if the list is max length |
512 |
*/ |
513 |
if (dlink_list_length(&who->localClient->invited) >= |
514 |
ConfigChannel.max_chans_per_user) |
515 |
del_invite(who->localClient->invited.tail->data, who); |
516 |
|
517 |
/* add client to channel invite list */ |
518 |
dlinkAdd(who, make_dlink_node(), &chptr->invites); |
519 |
|
520 |
/* add channel to the end of the client invite list */ |
521 |
dlinkAdd(chptr, make_dlink_node(), &who->localClient->invited); |
522 |
} |
523 |
|
524 |
/*! \brief Delete Invite block from channel invite list |
525 |
* and client invite list |
526 |
* \param chptr pointer to Channel struct |
527 |
* \param who pointer to client to remove invites from |
528 |
*/ |
529 |
void |
530 |
del_invite(struct Channel *chptr, struct Client *who) |
531 |
{ |
532 |
dlink_node *ptr = NULL; |
533 |
|
534 |
if ((ptr = dlinkFindDelete(&who->localClient->invited, chptr))) |
535 |
free_dlink_node(ptr); |
536 |
|
537 |
if ((ptr = dlinkFindDelete(&chptr->invites, who))) |
538 |
free_dlink_node(ptr); |
539 |
} |
540 |
|
541 |
/* get_member_status() |
542 |
* |
543 |
* inputs - pointer to struct Membership |
544 |
* - YES if we can combine different flags |
545 |
* output - string either @, +, % or "" depending on whether |
546 |
* chanop, voiced or user |
547 |
* side effects - |
548 |
* |
549 |
* NOTE: Returned string is usually a static buffer |
550 |
* (like in get_client_name) |
551 |
*/ |
552 |
const char * |
553 |
get_member_status(const struct Membership *ms, const int combine) |
554 |
{ |
555 |
static char buffer[4]; |
556 |
char *p = buffer; |
557 |
|
558 |
if (ms->flags & CHFL_CHANOP) |
559 |
{ |
560 |
if (!combine) |
561 |
return "@"; |
562 |
*p++ = '@'; |
563 |
} |
564 |
|
565 |
#ifdef HALFOPS |
566 |
if (ms->flags & CHFL_HALFOP) |
567 |
{ |
568 |
if (!combine) |
569 |
return "%"; |
570 |
*p++ = '%'; |
571 |
} |
572 |
#endif |
573 |
|
574 |
if (ms->flags & CHFL_VOICE) |
575 |
*p++ = '+'; |
576 |
*p = '\0'; |
577 |
|
578 |
return buffer; |
579 |
} |
580 |
|
581 |
/*! |
582 |
* \param who pointer to Client to check |
583 |
* \param list pointer to ban list to search |
584 |
* \return 1 if ban found for given n!u\@h mask, 0 otherwise |
585 |
* |
586 |
*/ |
587 |
static int |
588 |
find_bmask(const struct Client *who, const dlink_list *const list) |
589 |
{ |
590 |
const dlink_node *ptr = NULL; |
591 |
|
592 |
DLINK_FOREACH(ptr, list->head) |
593 |
{ |
594 |
const struct Ban *bp = ptr->data; |
595 |
|
596 |
if (!match(bp->name, who->name) && !match(bp->user, who->username)) |
597 |
{ |
598 |
switch (bp->type) |
599 |
{ |
600 |
case HM_HOST: |
601 |
if (!match(bp->host, who->host) || !match(bp->host, who->sockhost)) |
602 |
return 1; |
603 |
break; |
604 |
case HM_IPV4: |
605 |
if (who->localClient->aftype == AF_INET) |
606 |
if (match_ipv4(&who->localClient->ip, &bp->addr, bp->bits)) |
607 |
return 1; |
608 |
break; |
609 |
#ifdef IPV6 |
610 |
case HM_IPV6: |
611 |
if (who->localClient->aftype == AF_INET6) |
612 |
if (match_ipv6(&who->localClient->ip, &bp->addr, bp->bits)) |
613 |
return 1; |
614 |
break; |
615 |
#endif |
616 |
default: |
617 |
assert(0); |
618 |
} |
619 |
} |
620 |
} |
621 |
|
622 |
return 0; |
623 |
} |
624 |
|
625 |
/*! |
626 |
* \param chptr pointer to channel block |
627 |
* \param who pointer to client to check access fo |
628 |
* \return 0 if not banned, 1 otherwise |
629 |
*/ |
630 |
int |
631 |
is_banned(const struct Channel *chptr, const struct Client *who) |
632 |
{ |
633 |
if (find_bmask(who, &chptr->banlist)) |
634 |
if (!find_bmask(who, &chptr->exceptlist)) |
635 |
return 1; |
636 |
|
637 |
return 0; |
638 |
} |
639 |
|
640 |
/*! |
641 |
* \param source_p pointer to client attempting to join |
642 |
* \param chptr pointer to channel |
643 |
* \param key key sent by client attempting to join if present |
644 |
* \return ERR_BANNEDFROMCHAN, ERR_INVITEONLYCHAN, ERR_CHANNELISFULL |
645 |
* or 0 if allowed to join. |
646 |
*/ |
647 |
int |
648 |
can_join(struct Client *source_p, struct Channel *chptr, const char *key) |
649 |
{ |
650 |
if ((chptr->mode.mode & MODE_SSLONLY) && !HasUMode(source_p, UMODE_SSL)) |
651 |
return ERR_SSLONLYCHAN; |
652 |
|
653 |
if ((chptr->mode.mode & MODE_REGONLY) && !HasUMode(source_p, UMODE_REGISTERED)) |
654 |
return ERR_NEEDREGGEDNICK; |
655 |
|
656 |
if ((chptr->mode.mode & MODE_OPERONLY) && !HasUMode(source_p, UMODE_OPER)) |
657 |
return ERR_OPERONLYCHAN; |
658 |
|
659 |
if (chptr->mode.mode & MODE_INVITEONLY) |
660 |
if (!dlinkFind(&source_p->localClient->invited, chptr)) |
661 |
if (!find_bmask(source_p, &chptr->invexlist)) |
662 |
return ERR_INVITEONLYCHAN; |
663 |
|
664 |
if (chptr->mode.key[0] && (!key || strcmp(chptr->mode.key, key))) |
665 |
return ERR_BADCHANNELKEY; |
666 |
|
667 |
if (chptr->mode.limit && dlink_list_length(&chptr->members) >= |
668 |
chptr->mode.limit) |
669 |
return ERR_CHANNELISFULL; |
670 |
|
671 |
if (is_banned(chptr, source_p)) |
672 |
return ERR_BANNEDFROMCHAN; |
673 |
|
674 |
return 0; |
675 |
} |
676 |
|
677 |
int |
678 |
has_member_flags(const struct Membership *ms, const unsigned int flags) |
679 |
{ |
680 |
if (ms != NULL) |
681 |
return ms->flags & flags; |
682 |
return 0; |
683 |
} |
684 |
|
685 |
struct Membership * |
686 |
find_channel_link(struct Client *client_p, struct Channel *chptr) |
687 |
{ |
688 |
dlink_node *ptr = NULL; |
689 |
|
690 |
if (!IsClient(client_p)) |
691 |
return NULL; |
692 |
|
693 |
if (dlink_list_length(&chptr->members) < dlink_list_length(&client_p->channel)) |
694 |
{ |
695 |
DLINK_FOREACH(ptr, chptr->members.head) |
696 |
if (((struct Membership *)ptr->data)->client_p == client_p) |
697 |
return ptr->data; |
698 |
} |
699 |
else |
700 |
{ |
701 |
DLINK_FOREACH(ptr, client_p->channel.head) |
702 |
if (((struct Membership *)ptr->data)->chptr == chptr) |
703 |
return ptr->data; |
704 |
} |
705 |
|
706 |
return NULL; |
707 |
} |
708 |
|
709 |
/* |
710 |
* Basically the same functionality as in bahamut |
711 |
*/ |
712 |
static int |
713 |
msg_has_ctrls(const char *message) |
714 |
{ |
715 |
const unsigned char *p = (const unsigned char *)message; |
716 |
|
717 |
for (; *p; ++p) |
718 |
{ |
719 |
if (*p > 31 || *p == 1) |
720 |
continue; |
721 |
|
722 |
if (*p == 27) |
723 |
{ |
724 |
if (*(p + 1) == '$' || |
725 |
*(p + 1) == '(') |
726 |
{ |
727 |
++p; |
728 |
continue; |
729 |
} |
730 |
} |
731 |
|
732 |
return 1; |
733 |
} |
734 |
|
735 |
return 0; |
736 |
} |
737 |
|
738 |
/*! |
739 |
* \param chptr pointer to Channel struct |
740 |
* \param source_p pointer to Client struct |
741 |
* \param ms pointer to Membership struct (can be NULL) |
742 |
* \return CAN_SEND_OPV if op or voiced on channel\n |
743 |
* CAN_SEND_NONOP if can send to channel but is not an op\n |
744 |
* ERR_CANNOTSENDTOCHAN or ERR_NEEDREGGEDNICK if they cannot send to channel\n |
745 |
*/ |
746 |
int |
747 |
can_send(struct Channel *chptr, struct Client *source_p, |
748 |
struct Membership *ms, const char *message) |
749 |
{ |
750 |
struct MaskItem *conf = NULL; |
751 |
|
752 |
if (IsServer(source_p) || HasFlag(source_p, FLAGS_SERVICE)) |
753 |
return CAN_SEND_OPV; |
754 |
|
755 |
if (MyClient(source_p) && !IsExemptResv(source_p)) |
756 |
if (!(HasUMode(source_p, UMODE_OPER) && ConfigFileEntry.oper_pass_resv)) |
757 |
if ((conf = match_find_resv(chptr->chname)) && !resv_find_exempt(source_p, conf)) |
758 |
return ERR_CANNOTSENDTOCHAN; |
759 |
|
760 |
if ((chptr->mode.mode & MODE_NOCTRL) && msg_has_ctrls(message)) |
761 |
return ERR_NOCTRLSONCHAN; |
762 |
if (ms || (ms = find_channel_link(source_p, chptr))) |
763 |
if (ms->flags & (CHFL_CHANOP|CHFL_HALFOP|CHFL_VOICE)) |
764 |
return CAN_SEND_OPV; |
765 |
if (!ms && (chptr->mode.mode & MODE_NOPRIVMSGS)) |
766 |
return ERR_CANNOTSENDTOCHAN; |
767 |
if (chptr->mode.mode & MODE_MODERATED) |
768 |
return ERR_CANNOTSENDTOCHAN; |
769 |
if ((chptr->mode.mode & MODE_MODREG) && !HasUMode(source_p, UMODE_REGISTERED)) |
770 |
return ERR_NEEDREGGEDNICK; |
771 |
|
772 |
/* cache can send if banned */ |
773 |
if (MyClient(source_p)) |
774 |
{ |
775 |
if (ms) |
776 |
{ |
777 |
if (ms->flags & CHFL_BAN_SILENCED) |
778 |
return ERR_CANNOTSENDTOCHAN; |
779 |
|
780 |
if (!(ms->flags & CHFL_BAN_CHECKED)) |
781 |
{ |
782 |
if (is_banned(chptr, source_p)) |
783 |
{ |
784 |
ms->flags |= (CHFL_BAN_CHECKED|CHFL_BAN_SILENCED); |
785 |
return ERR_CANNOTSENDTOCHAN; |
786 |
} |
787 |
|
788 |
ms->flags |= CHFL_BAN_CHECKED; |
789 |
} |
790 |
} |
791 |
else if (is_banned(chptr, source_p)) |
792 |
return ERR_CANNOTSENDTOCHAN; |
793 |
} |
794 |
|
795 |
return CAN_SEND_NONOP; |
796 |
} |
797 |
|
798 |
/*! \brief Updates the client's oper_warn_count_down, warns the |
799 |
* IRC operators if necessary, and updates |
800 |
* join_leave_countdown as needed. |
801 |
* \param source_p pointer to struct Client to check |
802 |
* \param name channel name or NULL if this is a part. |
803 |
*/ |
804 |
void |
805 |
check_spambot_warning(struct Client *source_p, const char *name) |
806 |
{ |
807 |
int t_delta = 0; |
808 |
int decrement_count = 0; |
809 |
|
810 |
if ((GlobalSetOptions.spam_num && |
811 |
(source_p->localClient->join_leave_count >= |
812 |
GlobalSetOptions.spam_num))) |
813 |
{ |
814 |
if (source_p->localClient->oper_warn_count_down > 0) |
815 |
source_p->localClient->oper_warn_count_down--; |
816 |
else |
817 |
source_p->localClient->oper_warn_count_down = 0; |
818 |
|
819 |
if (source_p->localClient->oper_warn_count_down == 0) |
820 |
{ |
821 |
/* Its already known as a possible spambot */ |
822 |
if (name != NULL) |
823 |
sendto_realops_flags(UMODE_BOTS, L_ALL, SEND_NOTICE, |
824 |
"User %s (%s@%s) trying to join %s is a possible spambot", |
825 |
source_p->name, source_p->username, |
826 |
source_p->host, name); |
827 |
else |
828 |
sendto_realops_flags(UMODE_BOTS, L_ALL, SEND_NOTICE, |
829 |
"User %s (%s@%s) is a possible spambot", |
830 |
source_p->name, source_p->username, |
831 |
source_p->host); |
832 |
source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN; |
833 |
} |
834 |
} |
835 |
else |
836 |
{ |
837 |
if ((t_delta = (CurrentTime - source_p->localClient->last_leave_time)) > |
838 |
JOIN_LEAVE_COUNT_EXPIRE_TIME) |
839 |
{ |
840 |
decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME); |
841 |
if (decrement_count > source_p->localClient->join_leave_count) |
842 |
source_p->localClient->join_leave_count = 0; |
843 |
else |
844 |
source_p->localClient->join_leave_count -= decrement_count; |
845 |
} |
846 |
else |
847 |
{ |
848 |
if ((CurrentTime - (source_p->localClient->last_join_time)) < |
849 |
GlobalSetOptions.spam_time) |
850 |
{ |
851 |
/* oh, its a possible spambot */ |
852 |
source_p->localClient->join_leave_count++; |
853 |
} |
854 |
} |
855 |
|
856 |
if (name != NULL) |
857 |
source_p->localClient->last_join_time = CurrentTime; |
858 |
else |
859 |
source_p->localClient->last_leave_time = CurrentTime; |
860 |
} |
861 |
} |
862 |
|
863 |
/*! \brief compares usercount and servercount against their split |
864 |
* values and adjusts splitmode accordingly |
865 |
* \param unused Unused address pointer |
866 |
*/ |
867 |
void |
868 |
check_splitmode(void *unused) |
869 |
{ |
870 |
if (splitchecking && (ConfigChannel.no_join_on_split || |
871 |
ConfigChannel.no_create_on_split)) |
872 |
{ |
873 |
const unsigned int server = dlink_list_length(&global_serv_list); |
874 |
|
875 |
if (!splitmode && ((server < split_servers) || (Count.total < split_users))) |
876 |
{ |
877 |
splitmode = 1; |
878 |
|
879 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
880 |
"Network split, activating splitmode"); |
881 |
eventAddIsh("check_splitmode", check_splitmode, NULL, 10); |
882 |
} |
883 |
else if (splitmode && (server > split_servers) && (Count.total > split_users)) |
884 |
{ |
885 |
splitmode = 0; |
886 |
|
887 |
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
888 |
"Network rejoined, deactivating splitmode"); |
889 |
eventDelete(check_splitmode, NULL); |
890 |
} |
891 |
} |
892 |
} |
893 |
|
894 |
/*! \brief Sets the channel topic for chptr |
895 |
* \param chptr Pointer to struct Channel |
896 |
* \param topic The topic string |
897 |
* \param topic_info n!u\@h formatted string of the topic setter |
898 |
* \param topicts timestamp on the topic |
899 |
*/ |
900 |
void |
901 |
set_channel_topic(struct Channel *chptr, const char *topic, |
902 |
const char *topic_info, time_t topicts, int local) |
903 |
{ |
904 |
if (local) |
905 |
strlcpy(chptr->topic, topic, IRCD_MIN(sizeof(chptr->topic), ServerInfo.max_topic_length + 1)); |
906 |
else |
907 |
strlcpy(chptr->topic, topic, sizeof(chptr->topic)); |
908 |
|
909 |
strlcpy(chptr->topic_info, topic_info, sizeof(chptr->topic_info)); |
910 |
chptr->topic_time = topicts; |
911 |
} |