]> jfr.im git - solanum.git/blame - src/tgchange.c
Add listen::defer_accept option for controlling usage of TCP_DEFER_ACCEPT option.
[solanum.git] / src / tgchange.c
CommitLineData
4f2685f3
JT
1/*
2 * charybdis: an advanced Internet Relay Chat Daemon(ircd).
3 * tgchange.c - code for restricting private messages
4 *
5 * Copyright (C) 2004-2005 Lee Hardy <lee@leeh.co.uk>
6 * Copyright (C) 2005-2010 Jilles Tjoelker <jilles@stack.nl>
7 * Copyright (C) 2004-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 "tgchange.h"
27#include "channel.h"
28#include "client.h"
29#include "s_stats.h"
30#include "hash.h"
31#include "s_newconf.h"
32
717238d2
JT
33static int add_hashed_target(struct Client *source_p, uint32_t hashv);
34
4f2685f3
JT
35struct Channel *
36find_allowing_channel(struct Client *source_p, struct Client *target_p)
37{
38 rb_dlink_node *ptr;
39 struct membership *msptr;
40
41 RB_DLINK_FOREACH(ptr, source_p->user->channel.head)
42 {
43 msptr = ptr->data;
44 if (is_chanop_voiced(msptr) && IsMember(target_p, msptr->chptr))
45 return msptr->chptr;
46 }
47 return NULL;
48}
49
50int
51add_target(struct Client *source_p, struct Client *target_p)
52{
4f2685f3 53 uint32_t hashv;
4f2685f3
JT
54
55 /* can msg themselves or services without using any target slots */
56 if(source_p == target_p || IsService(target_p))
57 return 1;
58
59 /* special condition for those who have had PRIVMSG crippled to allow them
60 * to talk to IRCops still.
61 *
62 * XXX: is this controversial?
63 */
64 if(source_p->localClient->target_last > rb_current_time() && IsOper(target_p))
65 return 1;
66
67 hashv = fnv_hash_upper((const unsigned char *)use_id(target_p), 32);
717238d2
JT
68 return add_hashed_target(source_p, hashv);
69}
70
71int
72add_channel_target(struct Client *source_p, struct Channel *chptr)
73{
74 uint32_t hashv;
75
76 hashv = fnv_hash_upper((const unsigned char *)chptr->chname, 32);
77 return add_hashed_target(source_p, hashv);
78}
79
80static int
81add_hashed_target(struct Client *source_p, uint32_t hashv)
82{
83 int i, j;
84 uint32_t *targets;
85
4f2685f3
JT
86 targets = source_p->localClient->targets;
87
88 /* check for existing target, and move it to the head */
89 for(i = 0; i < TGCHANGE_NUM + TGCHANGE_REPLY; i++)
90 {
91 if(targets[i] == hashv)
92 {
93 for(j = i; j > 0; j--)
94 targets[j] = targets[j - 1];
95 targets[0] = hashv;
96 return 1;
97 }
98 }
99
100 if(source_p->localClient->targets_free < TGCHANGE_NUM)
101 {
102 /* first message after connect, we may only start clearing
103 * slots after this message --anfl
104 */
105 if(!IsTGChange(source_p))
106 {
107 SetTGChange(source_p);
108 source_p->localClient->target_last = rb_current_time();
109 }
110 /* clear as many targets as we can */
111 else if((i = (rb_current_time() - source_p->localClient->target_last) / 60))
112 {
113 if(i + source_p->localClient->targets_free > TGCHANGE_NUM)
114 source_p->localClient->targets_free = TGCHANGE_NUM;
115 else
116 source_p->localClient->targets_free += i;
117
118 source_p->localClient->target_last = rb_current_time();
119 }
120 /* cant clear any, full target list */
121 else if(source_p->localClient->targets_free == 0)
122 {
123 ServerStats.is_tgch++;
124 add_tgchange(source_p->sockhost);
ab894d74
KB
125
126 if (!IsTGExcessive(source_p))
127 {
128 SetTGExcessive(source_p);
129 sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
130 "Excessive target change from %s (%s@%s)",
131 source_p->name, source_p->username,
132 source_p->orighost);
133 }
134
4f2685f3
JT
135 return 0;
136 }
137 }
138 /* no targets in use, reset their target_last so that they cant
139 * abuse a long idle to get targets back more quickly
140 */
141 else
142 {
143 source_p->localClient->target_last = rb_current_time();
144 SetTGChange(source_p);
145 }
146
147 for(i = TGCHANGE_NUM + TGCHANGE_REPLY - 1; i > 0; i--)
148 targets[i] = targets[i - 1];
149 targets[0] = hashv;
150 source_p->localClient->targets_free--;
151 return 1;
152}
153
154void
155add_reply_target(struct Client *source_p, struct Client *target_p)
156{
157 int i, j;
158 uint32_t hashv;
159 uint32_t *targets;
160
161 /* can msg themselves or services without using any target slots */
162 if(source_p == target_p || IsService(target_p))
163 return;
164
165 hashv = fnv_hash_upper((const unsigned char *)use_id(target_p), 32);
166 targets = source_p->localClient->targets;
167
168 /* check for existing target, and move it to the first reply slot
169 * if it is in a reply slot
170 */
171 for(i = 0; i < TGCHANGE_NUM + TGCHANGE_REPLY; i++)
172 {
173 if(targets[i] == hashv)
174 {
175 if(i > TGCHANGE_NUM)
176 {
177 for(j = i; j > TGCHANGE_NUM; j--)
178 targets[j] = targets[j - 1];
179 targets[TGCHANGE_NUM] = hashv;
180 }
181 return;
182 }
183 }
184 for(i = TGCHANGE_NUM + TGCHANGE_REPLY - 1; i > TGCHANGE_NUM; i--)
185 targets[i] = targets[i - 1];
186 targets[TGCHANGE_NUM] = hashv;
187}