]> jfr.im git - solanum.git/blame - modules/core/m_message.c
Generate include/serno.h from the hg revision data.
[solanum.git] / modules / core / m_message.c
CommitLineData
212380e3
AC
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 *
63aecfb9 24 * $Id: m_message.c 3173 2007-01-31 23:57:18Z jilles $
212380e3
AC
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 "irc_string.h"
39#include "hash.h"
40#include "class.h"
41#include "msg.h"
42#include "packet.h"
43#include "send.h"
44#include "event.h"
45#include "patricia.h"
46#include "s_newconf.h"
43f8445d 47#include "s_stats.h"
212380e3
AC
48
49static int m_message(int, const char *, struct Client *, struct Client *, int, const char **);
50static int m_privmsg(struct Client *, struct Client *, int, const char **);
51static int m_notice(struct Client *, struct Client *, int, const char **);
52
53static void expire_tgchange(void *unused);
54
55static int
56modinit(void)
57{
58 eventAddIsh("expire_tgchange", expire_tgchange, NULL, 300);
59 expire_tgchange(NULL);
60 return 0;
61}
62
63static void
64moddeinit(void)
65{
66 eventDelete(expire_tgchange, NULL);
67}
68
69struct 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};
73struct 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
78mapi_clist_av1 message_clist[] = { &privmsg_msgtab, &notice_msgtab, NULL };
79
63aecfb9 80DECLARE_MODULE_AV1(message, modinit, moddeinit, message_clist, NULL, NULL, "$Revision: 3173 $");
212380e3
AC
81
82struct entity
83{
84 void *ptr;
85 int type;
86 int flags;
87};
88
89static 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
93static int flood_attack_client(int p_or_n, struct Client *source_p, struct Client *target_p);
94static int flood_attack_channel(int p_or_n, struct Client *source_p,
95 struct Channel *chptr, char *chname);
96static struct Client *find_userhost(const char *, const char *, int *);
97
98#define ENTITY_NONE 0
99#define ENTITY_CHANNEL 1
100#define ENTITY_CHANOPS_ON_CHANNEL 2
101#define ENTITY_CLIENT 3
102
103static struct entity targets[512];
104static int ntargets = 0;
105
106static int duplicate_ptr(void *);
107
108static 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
112static 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
117static void msg_client(int p_or_n, const char *command,
118 struct Client *source_p, struct Client *target_p, const char *text);
119
120static 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
146static int
147m_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
152static int
153m_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 */
165static int
166m_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
241static int
242build_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 = strtoken(&p, target_list, ","); nick; nick = strtoken(&p, NULL, ","))
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 */
415static int
416duplicate_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 */
438static void
439msg_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 = CurrentTime;
451 }
452
453 if(chptr->mode.mode & MODE_NOCOLOR)
454 {
455 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 */
512static void
513msg_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 = CurrentTime;
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
545static void
546expire_tgchange(void *unused)
547{
548 tgchange *target;
549 dlink_node *ptr, *next_ptr;
550
551 DLINK_FOREACH_SAFE(ptr, next_ptr, tgchange_list.head)
552 {
553 target = ptr->data;
554
555 if(target->expiry < CurrentTime)
556 {
557 dlinkDelete(ptr, &tgchange_list);
558 patricia_remove(tgchange_tree, target->pnode);
559 MyFree(target->ip);
560 MyFree(target);
561 }
562 }
563}
564
565static int
566add_target(struct Client *source_p, struct Client *target_p)
567{
568 int i, j;
569
570 /* can msg themselves or services without using any target slots */
571 if(source_p == target_p || IsService(target_p))
572 return 1;
573
574 /* special condition for those who have had PRIVMSG crippled to allow them
575 * to talk to IRCops still.
576 *
577 * XXX: is this controversial?
578 */
579 if(source_p->localClient->target_last > CurrentTime && IsOper(target_p))
580 return 1;
581
582 if(USED_TARGETS(source_p))
583 {
584 /* hunt for an existing target */
585 for(i = PREV_FREE_TARGET(source_p), j = USED_TARGETS(source_p);
586 j; --j, PREV_TARGET(i))
587 {
588 if(source_p->localClient->targets[i] == target_p)
589 return 1;
590 }
591
592 /* first message after connect, we may only start clearing
593 * slots after this message --anfl
594 */
595 if(!IsTGChange(source_p))
596 {
597 SetTGChange(source_p);
598 source_p->localClient->target_last = CurrentTime;
599 }
600 /* clear as many targets as we can */
601 else if((i = (CurrentTime - source_p->localClient->target_last) / 60))
602 {
603 if(i > USED_TARGETS(source_p))
604 USED_TARGETS(source_p) = 0;
605 else
606 USED_TARGETS(source_p) -= i;
607
608 source_p->localClient->target_last = CurrentTime;
609 }
610 /* cant clear any, full target list */
611 else if(USED_TARGETS(source_p) == 10)
612 {
43f8445d 613 ServerStats->is_tgch++;
212380e3
AC
614 add_tgchange(source_p->sockhost);
615 return 0;
616 }
617 }
618 /* no targets in use, reset their target_last so that they cant
619 * abuse a long idle to get targets back more quickly
620 */
621 else
622 {
623 source_p->localClient->target_last = CurrentTime;
624 SetTGChange(source_p);
625 }
626
627 source_p->localClient->targets[FREE_TARGET(source_p)] = target_p;
628 NEXT_TARGET(FREE_TARGET(source_p));
629 ++USED_TARGETS(source_p);
630 return 1;
631}
632
633/*
634 * msg_client
635 *
636 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
637 * say NOTICE must not auto reply
638 * - pointer to command, "PRIVMSG" or "NOTICE"
639 * - pointer to source_p source (struct Client *)
640 * - pointer to target_p target (struct Client *)
641 * - pointer to text
642 * output - NONE
643 * side effects - message given channel either chanop or voice
644 */
645static void
646msg_client(int p_or_n, const char *command,
647 struct Client *source_p, struct Client *target_p, const char *text)
648{
649 if(MyClient(source_p))
650 {
651 /* reset idle time for message only if its not to self
652 * and its not a notice */
653 if(p_or_n != NOTICE)
654 source_p->localClient->last = CurrentTime;
655
656 /* target change stuff, dont limit ctcp replies as that
657 * would allow people to start filling up random users
658 * targets just by ctcping them
659 */
660 if((p_or_n != NOTICE || *text != '\001') &&
661 ConfigFileEntry.target_change && !IsOper(source_p))
662 {
663 if(!add_target(source_p, target_p))
664 {
665 sendto_one(source_p, form_str(ERR_TARGCHANGE),
666 me.name, source_p->name, target_p->name);
667 return;
668 }
669 }
670 }
671 else if(source_p->from == target_p->from)
672 {
673 sendto_realops_snomask(SNO_DEBUG, L_ALL,
674 "Send message to %s[%s] dropped from %s(Fake Dir)",
675 target_p->name, target_p->from->name, source_p->name);
676 return;
677 }
678
679 if(MyConnect(source_p) && (p_or_n != NOTICE) && target_p->user && target_p->user->away)
680 sendto_one_numeric(source_p, RPL_AWAY, form_str(RPL_AWAY),
681 target_p->name, target_p->user->away);
682
683 if(MyClient(target_p))
684 {
685 /* XXX Controversial? allow opers always to send through a +g */
686 if(!IsServer(source_p) && (IsSetCallerId(target_p) ||
687 (IsSetRegOnlyMsg(target_p) && !source_p->user->suser[0])))
688 {
689 /* Here is the anti-flood bot/spambot code -db */
690 if(accept_message(source_p, target_p) || IsOper(source_p))
691 {
692 sendto_one(target_p, ":%s!%s@%s %s %s :%s",
693 source_p->name,
694 source_p->username,
695 source_p->host, command, target_p->name, text);
696 }
697 else if (IsSetRegOnlyMsg(target_p) && !source_p->user->suser[0])
698 {
699 if (p_or_n != NOTICE)
700 sendto_one_numeric(source_p, ERR_NONONREG,
701 form_str(ERR_NONONREG),
702 target_p->name);
703 /* Only so opers can watch for floods */
704 (void) flood_attack_client(p_or_n, source_p, target_p);
705 }
706 else
707 {
708 /* check for accept, flag recipient incoming message */
709 if(p_or_n != NOTICE)
710 {
711 sendto_one_numeric(source_p, ERR_TARGUMODEG,
712 form_str(ERR_TARGUMODEG),
713 target_p->name);
714 }
715
716 if((target_p->localClient->last_caller_id_time +
717 ConfigFileEntry.caller_id_wait) < CurrentTime)
718 {
719 if(p_or_n != NOTICE)
720 sendto_one_numeric(source_p, RPL_TARGNOTIFY,
721 form_str(RPL_TARGNOTIFY),
722 target_p->name);
723
724 sendto_one(target_p, form_str(RPL_UMODEGMSG),
725 me.name, target_p->name, source_p->name,
726 source_p->username, source_p->host);
727
728 target_p->localClient->last_caller_id_time = CurrentTime;
729 }
730 /* Only so opers can watch for floods */
731 (void) flood_attack_client(p_or_n, source_p, target_p);
732 }
733 }
734 else
735 {
736 /* If the client is remote, we dont perform a special check for
737 * flooding.. as we wouldnt block their message anyway.. this means
738 * we dont give warnings.. we then check if theyre opered
739 * (to avoid flood warnings), lastly if theyre our client
740 * and flooding -- fl */
741 if(!MyClient(source_p) || IsOper(source_p) ||
742 !flood_attack_client(p_or_n, source_p, target_p))
743 sendto_anywhere(target_p, source_p, command, ":%s", text);
744 }
745 }
746 else if(!MyClient(source_p) || IsOper(source_p) ||
747 !flood_attack_client(p_or_n, source_p, target_p))
748 sendto_anywhere(target_p, source_p, command, ":%s", text);
749
750 return;
751}
752
753/*
754 * flood_attack_client
755 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
756 * say NOTICE must not auto reply
757 * - pointer to source Client
758 * - pointer to target Client
759 * output - 1 if target is under flood attack
760 * side effects - check for flood attack on target target_p
761 */
762static int
763flood_attack_client(int p_or_n, struct Client *source_p, struct Client *target_p)
764{
765 int delta;
766
767 if(GlobalSetOptions.floodcount && MyConnect(target_p) && IsClient(source_p))
768 {
769 if((target_p->localClient->first_received_message_time + 1) < CurrentTime)
770 {
771 delta = CurrentTime - target_p->localClient->first_received_message_time;
772 target_p->localClient->received_number_of_privmsgs -= delta;
773 target_p->localClient->first_received_message_time = CurrentTime;
774 if(target_p->localClient->received_number_of_privmsgs <= 0)
775 {
776 target_p->localClient->received_number_of_privmsgs = 0;
777 target_p->localClient->flood_noticed = 0;
778 }
779 }
780
781 if((target_p->localClient->received_number_of_privmsgs >=
782 GlobalSetOptions.floodcount) || target_p->localClient->flood_noticed)
783 {
784 if(target_p->localClient->flood_noticed == 0)
785 {
f2c1b06b 786 sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
212380e3
AC
787 "Possible Flooder %s[%s@%s] on %s target: %s",
788 source_p->name, source_p->username,
63aecfb9 789 source_p->orighost,
c88cdb00 790 source_p->servptr->name, target_p->name);
212380e3
AC
791 target_p->localClient->flood_noticed = 1;
792 /* add a bit of penalty */
793 target_p->localClient->received_number_of_privmsgs += 2;
794 }
795 if(MyClient(source_p) && (p_or_n != NOTICE))
796 sendto_one(source_p,
797 ":%s NOTICE %s :*** Message to %s throttled due to flooding",
798 me.name, source_p->name, target_p->name);
799 return 1;
800 }
801 else
802 target_p->localClient->received_number_of_privmsgs++;
803 }
804
805 return 0;
806}
807
808/*
809 * flood_attack_channel
810 * inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
811 * says NOTICE must not auto reply
812 * - pointer to source Client
813 * - pointer to target channel
814 * output - 1 if target is under flood attack
815 * side effects - check for flood attack on target chptr
816 */
817static int
818flood_attack_channel(int p_or_n, struct Client *source_p, struct Channel *chptr, char *chname)
819{
820 int delta;
821
822 if(GlobalSetOptions.floodcount && MyClient(source_p))
823 {
824 if((chptr->first_received_message_time + 1) < CurrentTime)
825 {
826 delta = CurrentTime - chptr->first_received_message_time;
827 chptr->received_number_of_privmsgs -= delta;
828 chptr->first_received_message_time = CurrentTime;
829 if(chptr->received_number_of_privmsgs <= 0)
830 {
831 chptr->received_number_of_privmsgs = 0;
832 chptr->flood_noticed = 0;
833 }
834 }
835
836 if((chptr->received_number_of_privmsgs >= GlobalSetOptions.floodcount)
837 || chptr->flood_noticed)
838 {
839 if(chptr->flood_noticed == 0)
840 {
f2c1b06b 841 sendto_realops_snomask(SNO_BOTS, *chptr->chname == '&' ? L_ALL : L_NETWIDE,
212380e3
AC
842 "Possible Flooder %s[%s@%s] on %s target: %s",
843 source_p->name, source_p->username,
63aecfb9 844 source_p->orighost,
c88cdb00 845 source_p->servptr->name, chptr->chname);
212380e3
AC
846 chptr->flood_noticed = 1;
847
848 /* Add a bit of penalty */
849 chptr->received_number_of_privmsgs += 2;
850 }
851 if(MyClient(source_p) && (p_or_n != NOTICE))
852 sendto_one(source_p,
853 ":%s NOTICE %s :*** Message to %s throttled due to flooding",
854 me.name, source_p->name, chptr->chname);
855 return 1;
856 }
857 else
858 chptr->received_number_of_privmsgs++;
859 }
860
861 return 0;
862}
863
864
865/*
866 * handle_special
867 *
868 * inputs - server pointer
869 * - client pointer
870 * - nick stuff to grok for opers
871 * - text to send if grok
872 * output - none
873 * side effects - all the traditional oper type messages are parsed here.
874 * i.e. "/msg #some.host."
875 * However, syntax has been changed.
876 * previous syntax "/msg #some.host.mask"
877 * now becomes "/msg $#some.host.mask"
878 * previous syntax of: "/msg $some.server.mask" remains
879 * This disambiguates the syntax.
880 */
881static void
882handle_special(int p_or_n, const char *command, struct Client *client_p,
883 struct Client *source_p, const char *nick, const char *text)
884{
885 struct Client *target_p;
886 char *host;
887 char *server;
888 char *s;
889 int count;
890
891 /* user[%host]@server addressed?
892 * NOTE: users can send to user@server, but not user%host@server
893 * or opers@server
894 */
895 if((server = strchr(nick, '@')) != NULL)
896 {
897 if((target_p = find_server(source_p, server + 1)) == NULL)
898 {
899 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
900 form_str(ERR_NOSUCHSERVER), server + 1);
901 return;
902 }
903
904 count = 0;
905
906 if(!IsOper(source_p))
907 {
908 if(strchr(nick, '%') || (strncmp(nick, "opers", 5) == 0))
909 {
910 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
911 form_str(ERR_NOSUCHNICK), nick);
912 return;
913 }
914 }
915
916 /* somewhere else.. */
917 if(!IsMe(target_p))
918 {
919 sendto_one(target_p, ":%s %s %s :%s",
920 get_id(source_p, target_p), command, nick, text);
921 return;
922 }
923
924 *server = '\0';
925
926 if((host = strchr(nick, '%')) != NULL)
927 *host++ = '\0';
928
929 /* Check if someones msg'ing opers@our.server */
930 if(strcmp(nick, "opers") == 0)
931 {
932 sendto_realops_snomask(SNO_GENERAL, L_ALL, "To opers: From: %s: %s",
933 source_p->name, text);
934 return;
935 }
936
937 /*
938 * Look for users which match the destination host
939 * (no host == wildcard) and if one and one only is
940 * found connected to me, deliver message!
941 */
942 target_p = find_userhost(nick, host, &count);
943
944 if(target_p != NULL)
945 {
946 if(server != NULL)
947 *server = '@';
948 if(host != NULL)
949 *--host = '%';
950
951 if(count == 1)
952 sendto_anywhere(target_p, source_p, command, ":%s", text);
953 else
954 sendto_one(source_p, form_str(ERR_TOOMANYTARGETS),
955 get_id(&me, source_p), get_id(source_p, source_p), nick);
956 }
957 }
958
959 /*
960 * the following two cases allow masks in NOTICEs
961 * (for OPERs only)
962 *
963 * Armin, 8Jun90 (gruner@informatik.tu-muenchen.de)
964 */
965 if(IsOper(source_p) && *nick == '$')
966 {
967 if((*(nick + 1) == '$' || *(nick + 1) == '#'))
968 nick++;
969 else if(MyOper(source_p))
970 {
971 sendto_one(source_p,
972 ":%s NOTICE %s :The command %s %s is no longer supported, please use $%s",
973 me.name, source_p->name, command, nick, nick);
974 return;
975 }
976
a6f4368b
JT
977 if(MyClient(source_p) && !IsOperMassNotice(source_p))
978 {
979 sendto_one(source_p, form_str(ERR_NOPRIVS),
980 me.name, source_p->name, "mass_notice");
981 return;
982 }
983
212380e3
AC
984 if((s = strrchr(nick, '.')) == NULL)
985 {
986 sendto_one_numeric(source_p, ERR_NOTOPLEVEL,
987 form_str(ERR_NOTOPLEVEL), nick);
988 return;
989 }
990 while(*++s)
991 if(*s == '.' || *s == '*' || *s == '?')
992 break;
993 if(*s == '*' || *s == '?')
994 {
995 sendto_one_numeric(source_p, ERR_WILDTOPLEVEL,
996 form_str(ERR_WILDTOPLEVEL), nick);
997 return;
998 }
999
1000 sendto_match_butone(IsServer(client_p) ? client_p : NULL, source_p,
1001 nick + 1,
1002 (*nick == '#') ? MATCH_HOST : MATCH_SERVER,
1003 "%s $%s :%s", command, nick, text);
1004 return;
1005 }
1006}
1007
1008/*
1009 * find_userhost - find a user@host (server or user).
1010 * inputs - user name to look for
1011 * - host name to look for
1012 * - pointer to count of number of matches found
1013 * outputs - pointer to client if found
1014 * - count is updated
1015 * side effects - none
1016 *
1017 */
1018static struct Client *
1019find_userhost(const char *user, const char *host, int *count)
1020{
1021 struct Client *c2ptr;
1022 struct Client *res = NULL;
1023 char *u = LOCAL_COPY(user);
1024 dlink_node *ptr;
1025 *count = 0;
1026 if(collapse(u) != NULL)
1027 {
1028 DLINK_FOREACH(ptr, global_client_list.head)
1029 {
1030 c2ptr = ptr->data;
1031 if(!MyClient(c2ptr)) /* implies mine and an user */
1032 continue;
1033 if((!host || match(host, c2ptr->host)) && irccmp(u, c2ptr->username) == 0)
1034 {
1035 (*count)++;
1036 res = c2ptr;
1037 }
1038 }
1039 }
1040 return (res);
1041}