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