]> jfr.im git - solanum.git/blame - ircd/tgchange.c
Correct order of chunking and encoding steps.
[solanum.git] / ircd / tgchange.c
CommitLineData
4f2685f3 1/*
a6f63a82 2 * Solanum: a slightly advanced ircd
4f2685f3
JT
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"
dfbf41a0 31#include "s_conf.h"
4f2685f3 32#include "s_newconf.h"
bc4dea69 33#include "s_serv.h"
77d3d2db 34#include "send.h"
4f2685f3 35
717238d2
JT
36static int add_hashed_target(struct Client *source_p, uint32_t hashv);
37
4f2685f3
JT
38struct Channel *
39find_allowing_channel(struct Client *source_p, struct Client *target_p)
40{
e8a8d7a4
EK
41 rb_dlink_node *ps, *pt;
42 struct membership *ms, *mt;
43 struct Channel *chptr;
4f2685f3 44
e8a8d7a4 45 ITER_COMM_CHANNELS(ps, pt, source_p->user->channel.head, target_p->user->channel.head, ms, mt, chptr)
4f2685f3 46 {
e8a8d7a4
EK
47 if (ms != NULL && mt != NULL && is_chanop_voiced(ms))
48 return chptr;
4f2685f3
JT
49 }
50 return NULL;
51}
52
53int
54add_target(struct Client *source_p, struct Client *target_p)
55{
4f2685f3 56 uint32_t hashv;
4f2685f3
JT
57
58 /* can msg themselves or services without using any target slots */
59 if(source_p == target_p || IsService(target_p))
60 return 1;
61
62 /* special condition for those who have had PRIVMSG crippled to allow them
63 * to talk to IRCops still.
64 *
65 * XXX: is this controversial?
66 */
67 if(source_p->localClient->target_last > rb_current_time() && IsOper(target_p))
68 return 1;
69
70 hashv = fnv_hash_upper((const unsigned char *)use_id(target_p), 32);
717238d2
JT
71 return add_hashed_target(source_p, hashv);
72}
73
74int
75add_channel_target(struct Client *source_p, struct Channel *chptr)
76{
77 uint32_t hashv;
78
dfbf41a0
JT
79 if(!ConfigChannel.channel_target_change)
80 return 1;
81
717238d2
JT
82 hashv = fnv_hash_upper((const unsigned char *)chptr->chname, 32);
83 return add_hashed_target(source_p, hashv);
84}
85
86static int
87add_hashed_target(struct Client *source_p, uint32_t hashv)
88{
89 int i, j;
90 uint32_t *targets;
91
4f2685f3
JT
92 targets = source_p->localClient->targets;
93
94 /* check for existing target, and move it to the head */
95 for(i = 0; i < TGCHANGE_NUM + TGCHANGE_REPLY; i++)
96 {
97 if(targets[i] == hashv)
98 {
99 for(j = i; j > 0; j--)
100 targets[j] = targets[j - 1];
101 targets[0] = hashv;
102 return 1;
103 }
104 }
105
106 if(source_p->localClient->targets_free < TGCHANGE_NUM)
107 {
108 /* first message after connect, we may only start clearing
109 * slots after this message --anfl
110 */
111 if(!IsTGChange(source_p))
112 {
113 SetTGChange(source_p);
114 source_p->localClient->target_last = rb_current_time();
115 }
116 /* clear as many targets as we can */
117 else if((i = (rb_current_time() - source_p->localClient->target_last) / 60))
118 {
119 if(i + source_p->localClient->targets_free > TGCHANGE_NUM)
120 source_p->localClient->targets_free = TGCHANGE_NUM;
121 else
122 source_p->localClient->targets_free += i;
123
124 source_p->localClient->target_last = rb_current_time();
125 }
126 /* cant clear any, full target list */
127 else if(source_p->localClient->targets_free == 0)
128 {
129 ServerStats.is_tgch++;
130 add_tgchange(source_p->sockhost);
ab894d74
KB
131
132 if (!IsTGExcessive(source_p))
133 {
134 SetTGExcessive(source_p);
bc4dea69
KB
135 /* This is sent to L_ALL because it's regenerated on all servers
136 * that have the TGINFO module loaded.
137 */
138 sendto_realops_snomask(SNO_BOTS, L_ALL,
ab894d74
KB
139 "Excessive target change from %s (%s@%s)",
140 source_p->name, source_p->username,
141 source_p->orighost);
142 }
143
bc4dea69
KB
144 sendto_match_servs(source_p, "*", CAP_ENCAP, NOCAPS,
145 "ENCAP * TGINFO 0");
146
4f2685f3
JT
147 return 0;
148 }
149 }
150 /* no targets in use, reset their target_last so that they cant
151 * abuse a long idle to get targets back more quickly
152 */
153 else
154 {
155 source_p->localClient->target_last = rb_current_time();
156 SetTGChange(source_p);
157 }
158
159 for(i = TGCHANGE_NUM + TGCHANGE_REPLY - 1; i > 0; i--)
160 targets[i] = targets[i - 1];
161 targets[0] = hashv;
162 source_p->localClient->targets_free--;
163 return 1;
164}
165
166void
167add_reply_target(struct Client *source_p, struct Client *target_p)
168{
169 int i, j;
170 uint32_t hashv;
171 uint32_t *targets;
172
173 /* can msg themselves or services without using any target slots */
174 if(source_p == target_p || IsService(target_p))
175 return;
176
177 hashv = fnv_hash_upper((const unsigned char *)use_id(target_p), 32);
178 targets = source_p->localClient->targets;
179
180 /* check for existing target, and move it to the first reply slot
181 * if it is in a reply slot
182 */
183 for(i = 0; i < TGCHANGE_NUM + TGCHANGE_REPLY; i++)
184 {
185 if(targets[i] == hashv)
186 {
187 if(i > TGCHANGE_NUM)
188 {
189 for(j = i; j > TGCHANGE_NUM; j--)
190 targets[j] = targets[j - 1];
191 targets[TGCHANGE_NUM] = hashv;
192 }
193 return;
194 }
195 }
196 for(i = TGCHANGE_NUM + TGCHANGE_REPLY - 1; i > TGCHANGE_NUM; i--)
197 targets[i] = targets[i - 1];
198 targets[TGCHANGE_NUM] = hashv;
199}