]> jfr.im git - solanum.git/blame - ircd/packet.c
Implement hook priorities
[solanum.git] / ircd / packet.c
CommitLineData
54ac8b60
VY
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * packet.c: Packet handlers.
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
54ac8b60
VY
23 */
24#include "stdinc.h"
25#include "s_conf.h"
26#include "s_serv.h"
27#include "client.h"
54ac8b60
VY
28#include "ircd.h"
29#include "parse.h"
30#include "packet.h"
4562c604 31#include "match.h"
54ac8b60
VY
32#include "hook.h"
33#include "send.h"
77d3d2db 34#include "s_assert.h"
54ac8b60
VY
35
36static char readBuf[READBUF_SIZE];
37static void client_dopacket(struct Client *client_p, char *buffer, size_t length);
38
54ac8b60
VY
39/*
40 * parse_client_queued - parse client queued messages
41 */
42static void
43parse_client_queued(struct Client *client_p)
44{
45 int dolen = 0;
d182b854 46 int allow_read;
54ac8b60
VY
47
48 if(IsAnyDead(client_p))
49 return;
50
51 if(IsUnknown(client_p))
52 {
d182b854 53 allow_read = ConfigFileEntry.client_flood_burst_max;
54ac8b60
VY
54 for (;;)
55 {
d182b854 56 if(client_p->localClient->sent_parsed >= allow_read)
54ac8b60
VY
57 break;
58
60eb0cdc 59 dolen = rb_linebuf_get(&client_p->localClient->
54ac8b60
VY
60 buf_recvq, readBuf, READBUF_SIZE,
61 LINEBUF_COMPLETE, LINEBUF_PARSED);
62
63 if(dolen <= 0 || IsDead(client_p))
64 break;
65
66 client_dopacket(client_p, readBuf, dolen);
67 client_p->localClient->sent_parsed++;
68
69 /* He's dead cap'n */
70 if(IsAnyDead(client_p))
71 return;
72 /* if theyve dropped out of the unknown state, break and move
73 * to the parsing for their appropriate status. --fl
74 */
75 if(!IsUnknown(client_p))
76 {
77 /* reset their flood limits, they're now
78 * graced to flood
79 */
80 client_p->localClient->sent_parsed = 0;
81 break;
82 }
83
84 }
5a72f20c
JT
85 /* If sent_parsed is impossibly high, drop it down.
86 * This is useful if the configuration is changed.
87 */
88 if(client_p->localClient->sent_parsed > allow_read)
89 client_p->localClient->sent_parsed = allow_read;
54ac8b60
VY
90 }
91
92 if(IsAnyServer(client_p) || IsExemptFlood(client_p))
93 {
60eb0cdc 94 while (!IsAnyDead(client_p) && (dolen = rb_linebuf_get(&client_p->localClient->buf_recvq,
54ac8b60
VY
95 readBuf, READBUF_SIZE, LINEBUF_COMPLETE,
96 LINEBUF_PARSED)) > 0)
97 {
98 client_dopacket(client_p, readBuf, dolen);
99 }
100 }
101 else if(IsClient(client_p))
102 {
d182b854
JT
103 if(IsFloodDone(client_p))
104 allow_read = ConfigFileEntry.client_flood_burst_max;
105 else
106 allow_read = ConfigFileEntry.client_flood_burst_rate;
a75bf40d 107 allow_read *= ConfigFileEntry.client_flood_message_time;
d182b854
JT
108 /* allow opers 4 times the amount of messages as users. why 4?
109 * why not. :) --fl_
110 */
54ac8b60 111 if(IsOper(client_p) && ConfigFileEntry.no_oper_flood)
d182b854 112 allow_read *= 4;
54ac8b60
VY
113 /*
114 * Handle flood protection here - if we exceed our flood limit on
115 * messages in this loop, we simply drop out of the loop prematurely.
116 * -- adrian
117 */
118 for (;;)
119 {
120 /* This flood protection works as follows:
121 *
122 * A client is given allow_read lines to send to the server. Every
123 * time a line is parsed, sent_parsed is increased. sent_parsed
124 * is decreased by 1 every time flood_recalc is called.
125 *
126 * Thus a client can 'burst' allow_read lines to the server, any
127 * excess lines will be parsed one per flood_recalc() call.
128 *
129 * Therefore a client will be penalised more if they keep flooding,
130 * as sent_parsed will always hover around the allow_read limit
131 * and no 'bursts' will be permitted.
132 */
d182b854 133 if(client_p->localClient->sent_parsed >= allow_read)
54ac8b60
VY
134 break;
135
60eb0cdc 136 dolen = rb_linebuf_get(&client_p->localClient->
54ac8b60
VY
137 buf_recvq, readBuf, READBUF_SIZE,
138 LINEBUF_COMPLETE, LINEBUF_PARSED);
139
140 if(!dolen)
141 break;
142
143 client_dopacket(client_p, readBuf, dolen);
144 if(IsAnyDead(client_p))
145 return;
e6e54763
SB
146
147 client_p->localClient->sent_parsed += ConfigFileEntry.client_flood_message_time;
54ac8b60 148 }
5a72f20c
JT
149 /* If sent_parsed is impossibly high, drop it down.
150 * This is useful if the configuration is changed.
151 */
152 if(client_p->localClient->sent_parsed > allow_read +
153 ConfigFileEntry.client_flood_message_time - 1)
154 client_p->localClient->sent_parsed = allow_read +
155 ConfigFileEntry.client_flood_message_time - 1;
54ac8b60
VY
156 }
157}
158
159/* flood_endgrace()
160 *
161 * marks the end of the clients grace period
162 */
163void
164flood_endgrace(struct Client *client_p)
165{
166 SetFloodDone(client_p);
167
d182b854
JT
168 /* sent_parsed could be way over client_flood_burst_max but under
169 * client_flood_burst_rate so reset it.
54ac8b60
VY
170 */
171 client_p->localClient->sent_parsed = 0;
172}
173
1087485c
JT
174/*
175 * flood_recalc
176 *
177 * recalculate the number of allowed flood lines. this should be called
178 * once a second on any given client. We then attempt to flush some data.
179 */
180void
181flood_recalc(void *unused)
182{
183 rb_dlink_node *ptr, *next;
184 struct Client *client_p;
185
186 RB_DLINK_FOREACH_SAFE(ptr, next, lclient_list.head)
187 {
188 client_p = ptr->data;
189
af41336a 190 if(rb_unlikely(IsMe(client_p)))
1087485c 191 continue;
55abcbb2 192
af41336a 193 if(rb_unlikely(client_p->localClient == NULL))
1087485c 194 continue;
55abcbb2 195
1087485c 196 if(IsFloodDone(client_p))
e6e54763 197 client_p->localClient->sent_parsed -= ConfigFileEntry.client_flood_message_num;
1087485c
JT
198 else
199 client_p->localClient->sent_parsed = 0;
55abcbb2 200
1087485c
JT
201 if(client_p->localClient->sent_parsed < 0)
202 client_p->localClient->sent_parsed = 0;
203
1087485c 204 parse_client_queued(client_p);
55abcbb2 205
af41336a 206 if(rb_unlikely(IsAnyDead(client_p)))
1087485c
JT
207 continue;
208
209 }
210
211 RB_DLINK_FOREACH_SAFE(ptr, next, unknown_list.head)
212 {
213 client_p = ptr->data;
214
215 if(client_p->localClient == NULL)
216 continue;
217
218 client_p->localClient->sent_parsed--;
219
220 if(client_p->localClient->sent_parsed < 0)
221 client_p->localClient->sent_parsed = 0;
222
1087485c
JT
223 parse_client_queued(client_p);
224 }
54ac8b60
VY
225}
226
54ac8b60
VY
227/*
228 * read_packet - Read a 'packet' of data from a connection and process it.
229 */
230void
d91ce397 231read_packet(rb_fde_t * F, void *data)
54ac8b60
VY
232{
233 struct Client *client_p = data;
54ac8b60 234 int length = 0;
54ac8b60 235 int binary = 0;
54ac8b60 236
d91ce397 237 while(1)
54ac8b60 238 {
d91ce397
VY
239 if(IsAnyDead(client_p))
240 return;
241
242 /*
243 * Read some data. We *used to* do anti-flood protection here, but
244 * I personally think it makes the code too hairy to make sane.
245 * -- adrian
246 */
247 length = rb_read(client_p->localClient->F, readBuf, READBUF_SIZE);
248
9f316874 249 if(length < 0)
54ac8b60 250 {
9f316874 251 if(rb_ignore_errno(errno))
55abcbb2 252 rb_setselect(client_p->localClient->F,
d91ce397 253 RB_SELECT_READ, read_packet, client_p);
9f316874 254 else
d91ce397
VY
255 error_exit_client(client_p, length);
256 return;
257 }
9f316874 258 else if(length == 0)
d91ce397
VY
259 {
260 error_exit_client(client_p, length);
54ac8b60
VY
261 return;
262 }
54ac8b60 263
d91ce397
VY
264 if(client_p->localClient->lasttime < rb_current_time())
265 client_p->localClient->lasttime = rb_current_time();
266 client_p->flags &= ~FLAGS_PINGSENT;
54ac8b60 267
d91ce397
VY
268 /*
269 * Before we even think of parsing what we just read, stick
270 * it on the end of the receive queue and do it when its
271 * turn comes around.
272 */
273 if(IsHandshake(client_p) || IsUnknown(client_p))
274 binary = 1;
54ac8b60 275
32fb5895 276 (void) rb_linebuf_parse(&client_p->localClient->buf_recvq, readBuf, length, binary);
54ac8b60 277
d91ce397
VY
278 if(IsAnyDead(client_p))
279 return;
55abcbb2 280
d91ce397
VY
281 /* Attempt to parse what we have */
282 parse_client_queued(client_p);
54ac8b60 283
d91ce397 284 if(IsAnyDead(client_p))
54ac8b60 285 return;
55abcbb2 286
d91ce397
VY
287 /* Check to make sure we're not flooding */
288 if(!IsAnyServer(client_p) &&
e6e54763 289 (rb_linebuf_alloclen(&client_p->localClient->buf_recvq) > ConfigFileEntry.client_flood_max_lines))
d91ce397
VY
290 {
291 if(!(ConfigFileEntry.no_oper_flood && IsOper(client_p)))
292 {
293 exit_client(client_p, client_p, client_p, "Excess Flood");
294 return;
295 }
54ac8b60 296 }
54ac8b60 297
c6ad9b0c
SA
298 /* bail if short read, but not for SCTP as it returns data in packets */
299 if (length < READBUF_SIZE && !(rb_get_type(client_p->localClient->F) & RB_FD_SCTP)) {
d91ce397
VY
300 rb_setselect(client_p->localClient->F, RB_SELECT_READ, read_packet, client_p);
301 return;
302 }
54ac8b60
VY
303 }
304}
305
306/*
307 * client_dopacket - copy packet to client buf and parse it
308 * client_p - pointer to client structure for which the buffer data
309 * applies.
310 * buffer - pointr to the buffer containing the newly read data
311 * length - number of valid bytes of data in the buffer
312 *
313 * Note:
314 * It is implicitly assumed that dopacket is called only
315 * with client_p of "local" variation, which contains all the
316 * necessary fields (buffer etc..)
317 */
318void
319client_dopacket(struct Client *client_p, char *buffer, size_t length)
320{
321 s_assert(client_p != NULL);
322 s_assert(buffer != NULL);
323
324 if(client_p == NULL || buffer == NULL)
325 return;
326 if(IsAnyDead(client_p))
327 return;
55abcbb2 328 /*
54ac8b60
VY
329 * Update messages received
330 */
331 ++me.localClient->receiveM;
332 ++client_p->localClient->receiveM;
333
55abcbb2 334 /*
54ac8b60
VY
335 * Update bytes received
336 */
337 client_p->localClient->receiveB += length;
338
339 if(client_p->localClient->receiveB > 1023)
340 {
341 client_p->localClient->receiveK += (client_p->localClient->receiveB >> 10);
342 client_p->localClient->receiveB &= 0x03ff; /* 2^10 = 1024, 3ff = 1023 */
343 }
344
345 me.localClient->receiveB += length;
346
347 if(me.localClient->receiveB > 1023)
348 {
349 me.localClient->receiveK += (me.localClient->receiveB >> 10);
350 me.localClient->receiveB &= 0x03ff;
351 }
352
353 parse(client_p, buffer, buffer + length);
354}