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