]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/core/m_message.c
fc0896ff39a7ed845f1d1cc93f3c2f39ee2f939e
[irc/rqf/shadowircd.git] / modules / core / m_message.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_message.c: Sends a (PRIVMSG|NOTICE) message to a user or channel.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: m_message.c 3173 2007-01-31 23:57:18Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "numeric.h"
31 #include "common.h"
32 #include "s_conf.h"
33 #include "s_serv.h"
34 #include "msg.h"
35 #include "parse.h"
36 #include "modules.h"
37 #include "channel.h"
38 #include "match.h"
39 #include "hash.h"
40 #include "class.h"
41 #include "msg.h"
42 #include "packet.h"
43 #include "send.h"
44 #include "s_newconf.h"
45 #include "s_stats.h"
46 #include "inline/stringops.h"
47
48 static int m_message(int, const char *, struct Client *, struct Client *, int, const char **);
49 static int m_privmsg(struct Client *, struct Client *, int, const char **);
50 static int m_notice(struct Client *, struct Client *, int, const char **);
51
52 static void expire_tgchange(void *unused);
53 static struct ev_entry *expire_tgchange_event;
54
55 static int
56 modinit(void)
57 {
58 expire_tgchange_event = rb_event_addish("expire_tgchange", expire_tgchange, NULL, 300);
59 expire_tgchange(NULL);
60 return 0;
61 }
62
63 static void
64 moddeinit(void)
65 {
66 rb_event_delete(expire_tgchange_event);
67 }
68
69 struct Message privmsg_msgtab = {
70 "PRIVMSG", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
71 {mg_unreg, {m_privmsg, 0}, {m_privmsg, 0}, mg_ignore, mg_ignore, {m_privmsg, 0}}
72 };
73 struct Message notice_msgtab = {
74 "NOTICE", 0, 0, 0, MFLG_SLOW,
75 {mg_unreg, {m_notice, 0}, {m_notice, 0}, {m_notice, 0}, mg_ignore, {m_notice, 0}}
76 };
77
78 mapi_clist_av1 message_clist[] = { &privmsg_msgtab, &notice_msgtab, NULL };
79
80 DECLARE_MODULE_AV1(message, modinit, moddeinit, message_clist, NULL, NULL, "$Revision: 3173 $");
81
82 struct entity
83 {
84 void *ptr;
85 int type;
86 int flags;
87 };
88
89 static int build_target_list(int p_or_n, const char *command,
90 struct Client *client_p,
91 struct Client *source_p, const char *nicks_channels, const char *text);
92
93 static struct Channel *find_allowing_channel(struct Client *source_p, struct Client *target_p);
94 static int flood_attack_client(int p_or_n, struct Client *source_p, struct Client *target_p);
95 static int flood_attack_channel(int p_or_n, struct Client *source_p,
96 struct Channel *chptr, char *chname);
97
98 #define ENTITY_NONE 0
99 #define ENTITY_CHANNEL 1
100 #define ENTITY_CHANOPS_ON_CHANNEL 2
101 #define ENTITY_CLIENT 3
102
103 static struct entity targets[512];
104 static int ntargets = 0;
105
106 static int duplicate_ptr(void *);
107
108 static void msg_channel(int p_or_n, const char *command,
109 struct Client *client_p,
110 struct Client *source_p, struct Channel *chptr, const char *text);
111
112 static void msg_channel_flags(int p_or_n, const char *command,
113 struct Client *client_p,
114 struct Client *source_p,
115 struct Channel *chptr, int flags, const char *text);
116
117 static void msg_client(int p_or_n, const char *command,
118 struct Client *source_p, struct Client *target_p, const char *text);
119
120 static void handle_special(int p_or_n, const char *command,
121 struct Client *client_p, struct Client *source_p, const char *nick,
122 const char *text);
123
124 /*
125 ** m_privmsg
126 **
127 ** massive cleanup
128 ** rev argv 6/91
129 **
130 ** Another massive cleanup Nov, 2000
131 ** (I don't think there is a single line left from 6/91. Maybe.)
132 ** m_privmsg and m_notice do basically the same thing.
133 ** in the original 2.8.2 code base, they were the same function
134 ** "m_message.c." When we did the great cleanup in conjuncton with bleep
135 ** of ircu fame, we split m_privmsg.c and m_notice.c.
136 ** I don't see the point of that now. Its harder to maintain, its
137 ** easier to introduce bugs into one version and not the other etc.
138 ** Really, the penalty of an extra function call isn't that big a deal folks.
139 ** -db Nov 13, 2000
140 **
141 */
142
143 #define PRIVMSG 0
144 #define NOTICE 1
145
146 static int
147 m_privmsg(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
148 {
149 return m_message(PRIVMSG, "PRIVMSG", client_p, source_p, parc, parv);
150 }
151
152 static int
153 m_notice(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
154 {
155 return m_message(NOTICE, "NOTICE", client_p, source_p, parc, parv);
156 }
157
158 /*
159 * inputs - flag privmsg or notice
160 * - pointer to command "PRIVMSG" or "NOTICE"
161 * - pointer to client_p
162 * - pointer to source_p
163 * - pointer to channel
164 */
165 static int
166 m_message(int p_or_n,
167 const char *command,
168 struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
169 {
170 int i;
171
172 if(parc < 2 || EmptyString(parv[1]))
173 {
174 if(p_or_n != NOTICE)
175 sendto_one(source_p, form_str(ERR_NORECIPIENT), me.name,
176 source_p->name, command);
177 return 0;
178 }
179
180 if(parc < 3 || EmptyString(parv[2]))
181 {
182 if(p_or_n != NOTICE)
183 sendto_one(source_p, form_str(ERR_NOTEXTTOSEND), me.name, source_p->name);
184 return 0;
185 }
186
187 /* Finish the flood grace period if theyre not messaging themselves
188 * as some clients (ircN) do this as a "lag check"
189 */
190 if(MyClient(source_p) && !IsFloodDone(source_p) && irccmp(source_p->name, parv[1]))
191 flood_endgrace(source_p);
192
193 if(build_target_list(p_or_n, command, client_p, source_p, parv[1], parv[2]) < 0)
194 {
195 return 0;
196 }
197
198 for(i = 0; i < ntargets; i++)
199 {
200 switch (targets[i].type)
201 {
202 case ENTITY_CHANNEL:
203 msg_channel(p_or_n, command, client_p, source_p,
204 (struct Channel *) targets[i].ptr, parv[2]);
205 break;
206
207 case ENTITY_CHANOPS_ON_CHANNEL:
208 msg_channel_flags(p_or_n, command, client_p, source_p,
209 (struct Channel *) targets[i].ptr,
210 targets[i].flags, parv[2]);
211 break;
212
213 case ENTITY_CLIENT:
214 msg_client(p_or_n, command, source_p,
215 (struct Client *) targets[i].ptr, parv[2]);
216 break;
217 }
218 }
219
220 return 0;
221 }
222
223 /*
224 * build_target_list
225 *
226 * inputs - pointer to given client_p (server)
227 * - pointer to given source (oper/client etc.)
228 * - pointer to list of nicks/channels
229 * - pointer to table to place results
230 * - pointer to text (only used if source_p is an oper)
231 * output - number of valid entities
232 * side effects - target_table is modified to contain a list of
233 * pointers to channels or clients
234 * if source client is an oper
235 * all the classic old bizzare oper privmsg tricks
236 * are parsed and sent as is, if prefixed with $
237 * to disambiguate.
238 *
239 */
240
241 static int
242 build_target_list(int p_or_n, const char *command, struct Client *client_p,
243 struct Client *source_p, const char *nicks_channels, const char *text)
244 {
245 int type;
246 char *p, *nick, *target_list;
247 struct Channel *chptr = NULL;
248 struct Client *target_p;
249
250 target_list = LOCAL_COPY(nicks_channels); /* skip strcpy for non-lazyleafs */
251
252 ntargets = 0;
253
254 for(nick = rb_strtok_r(target_list, ",", &p); nick; nick = rb_strtok_r(NULL, ",", &p))
255 {
256 char *with_prefix;
257 /*
258 * channels are privmsg'd a lot more than other clients, moved up
259 * here plain old channel msg?
260 */
261
262 if(IsChanPrefix(*nick))
263 {
264 /* ignore send of local channel to a server (should not happen) */
265 if(IsServer(client_p) && *nick == '&')
266 continue;
267
268 if((chptr = find_channel(nick)) != NULL)
269 {
270 if(!duplicate_ptr(chptr))
271 {
272 if(ntargets >= ConfigFileEntry.max_targets)
273 {
274 sendto_one(source_p, form_str(ERR_TOOMANYTARGETS),
275 me.name, source_p->name, nick);
276 return (1);
277 }
278 targets[ntargets].ptr = (void *) chptr;
279 targets[ntargets++].type = ENTITY_CHANNEL;
280 }
281 }
282
283 /* non existant channel */
284 else if(p_or_n != NOTICE)
285 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
286 form_str(ERR_NOSUCHNICK), nick);
287
288 continue;
289 }
290
291 if(MyClient(source_p))
292 target_p = find_named_person(nick);
293 else
294 target_p = find_person(nick);
295
296 /* look for a privmsg to another client */
297 if(target_p)
298 {
299 if(!duplicate_ptr(target_p))
300 {
301 if(ntargets >= ConfigFileEntry.max_targets)
302 {
303 sendto_one(source_p, form_str(ERR_TOOMANYTARGETS),
304 me.name, source_p->name, nick);
305 return (1);
306 }
307 targets[ntargets].ptr = (void *) target_p;
308 targets[ntargets].type = ENTITY_CLIENT;
309 targets[ntargets++].flags = 0;
310 }
311 continue;
312 }
313
314 /* @#channel or +#channel message ? */
315
316 type = 0;
317 with_prefix = nick;
318 /* allow %+@ if someone wants to do that */
319 for(;;)
320 {
321 if(*nick == '@')
322 type |= CHFL_CHANOP;
323 else if(*nick == '+')
324 type |= CHFL_CHANOP | CHFL_VOICE;
325 else
326 break;
327 nick++;
328 }
329
330 if(type != 0)
331 {
332 /* no recipient.. */
333 if(EmptyString(nick))
334 {
335 sendto_one(source_p, form_str(ERR_NORECIPIENT),
336 me.name, source_p->name, command);
337 continue;
338 }
339
340 /* At this point, nick+1 should be a channel name i.e. #foo or &foo
341 * if the channel is found, fine, if not report an error
342 */
343
344 if((chptr = find_channel(nick)) != NULL)
345 {
346 struct membership *msptr;
347
348 msptr = find_channel_membership(chptr, source_p);
349
350 if(!IsServer(source_p) && !IsService(source_p) && !is_chanop_voiced(msptr))
351 {
352 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
353 me.name, source_p->name, with_prefix);
354 return (-1);
355 }
356
357 if(!duplicate_ptr(chptr))
358 {
359 if(ntargets >= ConfigFileEntry.max_targets)
360 {
361 sendto_one(source_p, form_str(ERR_TOOMANYTARGETS),
362 me.name, source_p->name, nick);
363 return (1);
364 }
365 targets[ntargets].ptr = (void *) chptr;
366 targets[ntargets].type = ENTITY_CHANOPS_ON_CHANNEL;
367 targets[ntargets++].flags = type;
368 }
369 }
370 else if(p_or_n != NOTICE)
371 {
372 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
373 form_str(ERR_NOSUCHNICK), nick);
374 }
375
376 continue;
377 }
378
379 if(strchr(nick, '@') || (IsOper(source_p) && (*nick == '$')))
380 {
381 handle_special(p_or_n, command, client_p, source_p, nick, text);
382 continue;
383 }
384
385 /* no matching anything found - error if not NOTICE */
386 if(p_or_n != NOTICE)
387 {
388 /* dont give this numeric when source is local,
389 * because its misleading --anfl
390 */
391 if(!MyClient(source_p) && IsDigit(*nick))
392 sendto_one(source_p, ":%s %d %s * :Target left IRC. "
393 "Failed to deliver: [%.20s]",
394 get_id(&me, source_p), ERR_NOSUCHNICK,
395 get_id(source_p, source_p), text);
396 else
397 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
398 form_str(ERR_NOSUCHNICK), nick);
399 }
400
401 }
402 return (1);
403 }
404
405 /*
406 * duplicate_ptr
407 *
408 * inputs - pointer to check
409 * - pointer to table of entities
410 * - number of valid entities so far
411 * output - YES if duplicate pointer in table, NO if not.
412 * note, this does the canonize using pointers
413 * side effects - NONE
414 */
415 static int
416 duplicate_ptr(void *ptr)
417 {
418 int i;
419 for(i = 0; i < ntargets; i++)
420 if(targets[i].ptr == ptr)
421 return YES;
422 return NO;
423 }
424
425 /*
426 * msg_channel
427 *
428 * inputs - flag privmsg or notice
429 * - pointer to command "PRIVMSG" or "NOTICE"
430 * - pointer to client_p
431 * - pointer to source_p
432 * - pointer to channel
433 * output - NONE
434 * side effects - message given channel
435 *
436 * XXX - We need to rework this a bit, it's a tad ugly. --nenolod
437 */
438 static void
439 msg_channel(int p_or_n, const char *command,
440 struct Client *client_p, struct Client *source_p, struct Channel *chptr,
441 const char *text)
442 {
443 int result;
444 char text2[BUFSIZE];
445
446 if(MyClient(source_p))
447 {
448 /* idle time shouldnt be reset by notices --fl */
449 if(p_or_n != NOTICE)
450 source_p->localClient->last = rb_current_time();
451 }
452
453 if(chptr->mode.mode & MODE_NOCOLOR)
454 {
455 rb_strlcpy(text2, text, BUFSIZE);
456 strip_colour(text2);
457 text = text2;
458 if (EmptyString(text))
459 {
460 /* could be empty after colour stripping and
461 * that would cause problems later */
462 if(p_or_n != NOTICE)
463 sendto_one(source_p, form_str(ERR_NOTEXTTOSEND), me.name, source_p->name);
464 return;
465 }
466 }
467
468 /* chanops and voiced can flood their own channel with impunity */
469 if((result = can_send(chptr, source_p, NULL)))
470 {
471 if(result == CAN_SEND_OPV ||
472 !flood_attack_channel(p_or_n, source_p, chptr, chptr->chname))
473 {
474 sendto_channel_flags(client_p, ALL_MEMBERS, source_p, chptr,
475 "%s %s :%s", command, chptr->chname, text);
476 }
477 }
478 else if(chptr->mode.mode & MODE_OPMODERATE &&
479 chptr->mode.mode & MODE_MODERATED &&
480 IsMember(source_p, chptr))
481 {
482 /* only do +z for +m channels for now, as bans/quiets
483 * aren't tested for remote clients -- jilles */
484 if(!flood_attack_channel(p_or_n, source_p, chptr, chptr->chname))
485 {
486 sendto_channel_flags(client_p, ONLY_CHANOPS, source_p, chptr,
487 "%s %s :%s", command, chptr->chname, text);
488 }
489 }
490 else
491 {
492 if(p_or_n != NOTICE)
493 sendto_one_numeric(source_p, ERR_CANNOTSENDTOCHAN,
494 form_str(ERR_CANNOTSENDTOCHAN), chptr->chname);
495 }
496 }
497
498 /*
499 * msg_channel_flags
500 *
501 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
502 * say NOTICE must not auto reply
503 * - pointer to command, "PRIVMSG" or "NOTICE"
504 * - pointer to client_p
505 * - pointer to source_p
506 * - pointer to channel
507 * - flags
508 * - pointer to text to send
509 * output - NONE
510 * side effects - message given channel either chanop or voice
511 */
512 static void
513 msg_channel_flags(int p_or_n, const char *command, struct Client *client_p,
514 struct Client *source_p, struct Channel *chptr, int flags, const char *text)
515 {
516 int type;
517 char c;
518
519 if(flags & CHFL_VOICE)
520 {
521 type = ONLY_CHANOPSVOICED;
522 c = '+';
523 }
524 else
525 {
526 type = ONLY_CHANOPS;
527 c = '@';
528 }
529
530 if(MyClient(source_p))
531 {
532 /* idletime shouldnt be reset by notice --fl */
533 if(p_or_n != NOTICE)
534 source_p->localClient->last = rb_current_time();
535 }
536
537 sendto_channel_flags(client_p, type, source_p, chptr, "%s %c%s :%s",
538 command, c, chptr->chname, text);
539 }
540
541 #define PREV_FREE_TARGET(x) ((FREE_TARGET(x) == 0) ? 9 : FREE_TARGET(x) - 1)
542 #define PREV_TARGET(i) ((i == 0) ? i = 9 : --i)
543 #define NEXT_TARGET(i) ((i == 9) ? i = 0 : ++i)
544
545 static void
546 expire_tgchange(void *unused)
547 {
548 tgchange *target;
549 rb_dlink_node *ptr, *next_ptr;
550
551 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, tgchange_list.head)
552 {
553 target = ptr->data;
554
555 if(target->expiry < rb_current_time())
556 {
557 rb_dlinkDelete(ptr, &tgchange_list);
558 rb_patricia_remove(tgchange_tree, target->pnode);
559 rb_free(target->ip);
560 rb_free(target);
561 }
562 }
563 }
564
565 static int
566 add_target(struct Client *source_p, struct Client *target_p)
567 {
568 int i, j;
569 uint32_t hashv;
570
571 /* can msg themselves or services without using any target slots */
572 if(source_p == target_p || IsService(target_p))
573 return 1;
574
575 /* special condition for those who have had PRIVMSG crippled to allow them
576 * to talk to IRCops still.
577 *
578 * XXX: is this controversial?
579 */
580 if(source_p->localClient->target_last > rb_current_time() && IsOper(target_p))
581 return 1;
582
583 hashv = fnv_hash_upper((const unsigned char *)use_id(target_p), 32);
584
585 if(USED_TARGETS(source_p))
586 {
587 /* hunt for an existing target */
588 for(i = PREV_FREE_TARGET(source_p), j = USED_TARGETS(source_p);
589 j; --j, PREV_TARGET(i))
590 {
591 if(source_p->localClient->targets[i] == hashv)
592 return 1;
593 }
594
595 /* first message after connect, we may only start clearing
596 * slots after this message --anfl
597 */
598 if(!IsTGChange(source_p))
599 {
600 SetTGChange(source_p);
601 source_p->localClient->target_last = rb_current_time();
602 }
603 /* clear as many targets as we can */
604 else if((i = (rb_current_time() - source_p->localClient->target_last) / 60))
605 {
606 if(i > USED_TARGETS(source_p))
607 USED_TARGETS(source_p) = 0;
608 else
609 USED_TARGETS(source_p) -= i;
610
611 source_p->localClient->target_last = rb_current_time();
612 }
613 /* cant clear any, full target list */
614 else if(USED_TARGETS(source_p) == 10)
615 {
616 ServerStats.is_tgch++;
617 add_tgchange(source_p->sockhost);
618 return 0;
619 }
620 }
621 /* no targets in use, reset their target_last so that they cant
622 * abuse a long idle to get targets back more quickly
623 */
624 else
625 {
626 source_p->localClient->target_last = rb_current_time();
627 SetTGChange(source_p);
628 }
629
630 source_p->localClient->targets[FREE_TARGET(source_p)] = hashv;
631 NEXT_TARGET(FREE_TARGET(source_p));
632 ++USED_TARGETS(source_p);
633 return 1;
634 }
635
636 /*
637 * msg_client
638 *
639 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
640 * say NOTICE must not auto reply
641 * - pointer to command, "PRIVMSG" or "NOTICE"
642 * - pointer to source_p source (struct Client *)
643 * - pointer to target_p target (struct Client *)
644 * - pointer to text
645 * output - NONE
646 * side effects - message given channel either chanop or voice
647 */
648 static void
649 msg_client(int p_or_n, const char *command,
650 struct Client *source_p, struct Client *target_p, const char *text)
651 {
652 int do_floodcount = 0;
653
654 if(MyClient(source_p))
655 {
656 /* reset idle time for message only if its not to self
657 * and its not a notice */
658 if(p_or_n != NOTICE)
659 source_p->localClient->last = rb_current_time();
660
661 /* auto cprivmsg/cnotice */
662 do_floodcount = !IsOper(source_p) &&
663 !find_allowing_channel(source_p, target_p);
664
665 /* target change stuff, dont limit ctcp replies as that
666 * would allow people to start filling up random users
667 * targets just by ctcping them
668 */
669 if((p_or_n != NOTICE || *text != '\001') &&
670 ConfigFileEntry.target_change && do_floodcount)
671 {
672 if(!add_target(source_p, target_p))
673 {
674 sendto_one(source_p, form_str(ERR_TARGCHANGE),
675 me.name, source_p->name, target_p->name);
676 return;
677 }
678 }
679 }
680 else if(source_p->from == target_p->from)
681 {
682 sendto_realops_snomask(SNO_DEBUG, L_ALL,
683 "Send message to %s[%s] dropped from %s(Fake Dir)",
684 target_p->name, target_p->from->name, source_p->name);
685 return;
686 }
687
688 if(MyConnect(source_p) && (p_or_n != NOTICE) && target_p->user && target_p->user->away)
689 sendto_one_numeric(source_p, RPL_AWAY, form_str(RPL_AWAY),
690 target_p->name, target_p->user->away);
691
692 if(MyClient(target_p))
693 {
694 /* XXX Controversial? allow opers always to send through a +g */
695 if(!IsServer(source_p) && (IsSetCallerId(target_p) ||
696 (IsSetRegOnlyMsg(target_p) && !source_p->user->suser[0])))
697 {
698 /* Here is the anti-flood bot/spambot code -db */
699 if(accept_message(source_p, target_p) || IsOper(source_p))
700 {
701 sendto_one(target_p, ":%s!%s@%s %s %s :%s",
702 source_p->name,
703 source_p->username,
704 source_p->host, command, target_p->name, text);
705 }
706 else if (IsSetRegOnlyMsg(target_p) && !source_p->user->suser[0])
707 {
708 if (p_or_n != NOTICE)
709 sendto_one_numeric(source_p, ERR_NONONREG,
710 form_str(ERR_NONONREG),
711 target_p->name);
712 /* Only so opers can watch for floods */
713 if (do_floodcount)
714 (void) flood_attack_client(p_or_n, source_p, target_p);
715 }
716 else
717 {
718 /* check for accept, flag recipient incoming message */
719 if(p_or_n != NOTICE)
720 {
721 sendto_one_numeric(source_p, ERR_TARGUMODEG,
722 form_str(ERR_TARGUMODEG),
723 target_p->name);
724 }
725
726 if((target_p->localClient->last_caller_id_time +
727 ConfigFileEntry.caller_id_wait) < rb_current_time())
728 {
729 if(p_or_n != NOTICE)
730 sendto_one_numeric(source_p, RPL_TARGNOTIFY,
731 form_str(RPL_TARGNOTIFY),
732 target_p->name);
733
734 sendto_one(target_p, form_str(RPL_UMODEGMSG),
735 me.name, target_p->name, source_p->name,
736 source_p->username, source_p->host);
737
738 target_p->localClient->last_caller_id_time = rb_current_time();
739 }
740 /* Only so opers can watch for floods */
741 if (do_floodcount)
742 (void) flood_attack_client(p_or_n, source_p, target_p);
743 }
744 }
745 else
746 {
747 /* If the client is remote, we dont perform a special check for
748 * flooding.. as we wouldnt block their message anyway.. this means
749 * we dont give warnings.. we then check if theyre opered
750 * (to avoid flood warnings), lastly if theyre our client
751 * and flooding -- fl */
752 if(!do_floodcount ||
753 !flood_attack_client(p_or_n, source_p, target_p))
754 sendto_anywhere(target_p, source_p, command, ":%s", text);
755 }
756 }
757 else if(!do_floodcount ||
758 !flood_attack_client(p_or_n, source_p, target_p))
759 sendto_anywhere(target_p, source_p, command, ":%s", text);
760
761 return;
762 }
763
764 static struct Channel *
765 find_allowing_channel(struct Client *source_p, struct Client *target_p)
766 {
767 rb_dlink_node *ptr;
768 struct membership *msptr;
769
770 RB_DLINK_FOREACH(ptr, source_p->user->channel.head)
771 {
772 msptr = ptr->data;
773 if (is_chanop_voiced(msptr) && IsMember(target_p, msptr->chptr))
774 return msptr->chptr;
775 }
776 return NULL;
777 }
778
779 /*
780 * flood_attack_client
781 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
782 * say NOTICE must not auto reply
783 * - pointer to source Client
784 * - pointer to target Client
785 * output - 1 if target is under flood attack
786 * side effects - check for flood attack on target target_p
787 */
788 static int
789 flood_attack_client(int p_or_n, struct Client *source_p, struct Client *target_p)
790 {
791 int delta;
792
793 /* Services could get many messages legitimately and
794 * can be messaged without rate limiting via aliases
795 * and msg user@server.
796 * -- jilles
797 */
798 if(GlobalSetOptions.floodcount && IsClient(source_p) && source_p != target_p && !IsService(target_p))
799 {
800 if((target_p->first_received_message_time + 1) < rb_current_time())
801 {
802 delta = rb_current_time() - target_p->first_received_message_time;
803 target_p->received_number_of_privmsgs -= delta;
804 target_p->first_received_message_time = rb_current_time();
805 if(target_p->received_number_of_privmsgs <= 0)
806 {
807 target_p->received_number_of_privmsgs = 0;
808 target_p->flood_noticed = 0;
809 }
810 }
811
812 if((target_p->received_number_of_privmsgs >=
813 GlobalSetOptions.floodcount) || target_p->flood_noticed)
814 {
815 if(target_p->flood_noticed == 0)
816 {
817 sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
818 "Possible Flooder %s[%s@%s] on %s target: %s",
819 source_p->name, source_p->username,
820 source_p->orighost,
821 source_p->servptr->name, target_p->name);
822 target_p->flood_noticed = 1;
823 /* add a bit of penalty */
824 target_p->received_number_of_privmsgs += 2;
825 }
826 if(MyClient(source_p) && (p_or_n != NOTICE))
827 sendto_one(source_p,
828 ":%s NOTICE %s :*** Message to %s throttled due to flooding",
829 me.name, source_p->name, target_p->name);
830 return 1;
831 }
832 else
833 target_p->received_number_of_privmsgs++;
834 }
835
836 return 0;
837 }
838
839 /*
840 * flood_attack_channel
841 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
842 * says NOTICE must not auto reply
843 * - pointer to source Client
844 * - pointer to target channel
845 * output - 1 if target is under flood attack
846 * side effects - check for flood attack on target chptr
847 */
848 static int
849 flood_attack_channel(int p_or_n, struct Client *source_p, struct Channel *chptr, char *chname)
850 {
851 int delta;
852
853 if(GlobalSetOptions.floodcount && MyClient(source_p))
854 {
855 if((chptr->first_received_message_time + 1) < rb_current_time())
856 {
857 delta = rb_current_time() - chptr->first_received_message_time;
858 chptr->received_number_of_privmsgs -= delta;
859 chptr->first_received_message_time = rb_current_time();
860 if(chptr->received_number_of_privmsgs <= 0)
861 {
862 chptr->received_number_of_privmsgs = 0;
863 chptr->flood_noticed = 0;
864 }
865 }
866
867 if((chptr->received_number_of_privmsgs >= GlobalSetOptions.floodcount)
868 || chptr->flood_noticed)
869 {
870 if(chptr->flood_noticed == 0)
871 {
872 sendto_realops_snomask(SNO_BOTS, *chptr->chname == '&' ? L_ALL : L_NETWIDE,
873 "Possible Flooder %s[%s@%s] on %s target: %s",
874 source_p->name, source_p->username,
875 source_p->orighost,
876 source_p->servptr->name, chptr->chname);
877 chptr->flood_noticed = 1;
878
879 /* Add a bit of penalty */
880 chptr->received_number_of_privmsgs += 2;
881 }
882 if(MyClient(source_p) && (p_or_n != NOTICE))
883 sendto_one(source_p,
884 ":%s NOTICE %s :*** Message to %s throttled due to flooding",
885 me.name, source_p->name, chptr->chname);
886 return 1;
887 }
888 else
889 chptr->received_number_of_privmsgs++;
890 }
891
892 return 0;
893 }
894
895
896 /*
897 * handle_special
898 *
899 * inputs - server pointer
900 * - client pointer
901 * - nick stuff to grok for opers
902 * - text to send if grok
903 * output - none
904 * side effects - all the traditional oper type messages are parsed here.
905 * i.e. "/msg #some.host."
906 * However, syntax has been changed.
907 * previous syntax "/msg #some.host.mask"
908 * now becomes "/msg $#some.host.mask"
909 * previous syntax of: "/msg $some.server.mask" remains
910 * This disambiguates the syntax.
911 */
912 static void
913 handle_special(int p_or_n, const char *command, struct Client *client_p,
914 struct Client *source_p, const char *nick, const char *text)
915 {
916 struct Client *target_p;
917 char *server;
918 char *s;
919 int count;
920
921 /* user[%host]@server addressed?
922 * NOTE: users can send to user@server, but not user%host@server
923 * or opers@server
924 */
925 if((server = strchr(nick, '@')) != NULL)
926 {
927 if((target_p = find_server(source_p, server + 1)) == NULL)
928 {
929 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
930 form_str(ERR_NOSUCHSERVER), server + 1);
931 return;
932 }
933
934 count = 0;
935
936 if(!IsOper(source_p))
937 {
938 if(strchr(nick, '%') || (strncmp(nick, "opers", 5) == 0))
939 {
940 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
941 form_str(ERR_NOSUCHNICK), nick);
942 return;
943 }
944 }
945
946 /* somewhere else.. */
947 if(!IsMe(target_p))
948 {
949 sendto_one(target_p, ":%s %s %s :%s",
950 get_id(source_p, target_p), command, nick, text);
951 return;
952 }
953
954 /* Check if someones msg'ing opers@our.server */
955 if(strncmp(nick, "opers@", 6) == 0)
956 {
957 sendto_realops_snomask(SNO_GENERAL, L_ALL, "To opers: From: %s: %s",
958 source_p->name, text);
959 return;
960 }
961
962 /* This was not very useful except for bypassing certain
963 * restrictions. Note that we still allow sending to
964 * remote servers this way, for messaging pseudoservers
965 * securely whether they have a service{} block or not.
966 * -- jilles
967 */
968 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
969 form_str(ERR_NOSUCHNICK), nick);
970 return;
971 }
972
973 /*
974 * the following two cases allow masks in NOTICEs
975 * (for OPERs only)
976 *
977 * Armin, 8Jun90 (gruner@informatik.tu-muenchen.de)
978 */
979 if(IsOper(source_p) && *nick == '$')
980 {
981 if((*(nick + 1) == '$' || *(nick + 1) == '#'))
982 nick++;
983 else if(MyOper(source_p))
984 {
985 sendto_one(source_p,
986 ":%s NOTICE %s :The command %s %s is no longer supported, please use $%s",
987 me.name, source_p->name, command, nick, nick);
988 return;
989 }
990
991 if(MyClient(source_p) && !IsOperMassNotice(source_p))
992 {
993 sendto_one(source_p, form_str(ERR_NOPRIVS),
994 me.name, source_p->name, "mass_notice");
995 return;
996 }
997
998 if((s = strrchr(nick, '.')) == NULL)
999 {
1000 sendto_one_numeric(source_p, ERR_NOTOPLEVEL,
1001 form_str(ERR_NOTOPLEVEL), nick);
1002 return;
1003 }
1004 while(*++s)
1005 if(*s == '.' || *s == '*' || *s == '?')
1006 break;
1007 if(*s == '*' || *s == '?')
1008 {
1009 sendto_one_numeric(source_p, ERR_WILDTOPLEVEL,
1010 form_str(ERR_WILDTOPLEVEL), nick);
1011 return;
1012 }
1013
1014 sendto_match_butone(IsServer(client_p) ? client_p : NULL, source_p,
1015 nick + 1,
1016 (*nick == '#') ? MATCH_HOST : MATCH_SERVER,
1017 "%s $%s :%s", command, nick, text);
1018 return;
1019 }
1020 }