blob: b425419436e06a9239bbc5db4e8bbb482b7eb937 [file] [log] [blame]
Willy Tarreaucff64112008-11-03 06:26:53 +01001/*
2 * Functions managing stream_interface structures
3 *
Willy Tarreaufb90d942009-09-05 20:57:35 +02004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaucff64112008-11-03 06:26:53 +01005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17
18#include <sys/socket.h>
19#include <sys/stat.h>
20#include <sys/types.h>
21
22#include <common/compat.h>
23#include <common/config.h>
24#include <common/debug.h>
25#include <common/standard.h>
26#include <common/ticks.h>
27#include <common/time.h>
28
29#include <proto/buffers.h>
30#include <proto/client.h>
31#include <proto/fd.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020032#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010033#include <proto/stream_sock.h>
34#include <proto/task.h>
35
36/*
37 * This function only has to be called once after a wakeup event in case of
38 * suspected timeout. It controls the stream interface timeouts and sets
39 * si->flags accordingly. It does NOT close anything, as this timeout may
40 * be used for any purpose. It returns 1 if the timeout fired, otherwise
41 * zero.
42 */
43int stream_int_check_timeouts(struct stream_interface *si)
44{
45 if (tick_is_expired(si->exp, now_ms)) {
46 si->flags |= SI_FL_EXP;
47 return 1;
48 }
49 return 0;
50}
51
Willy Tarreaufe3718a2008-11-30 18:14:12 +010052/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010053void stream_int_report_error(struct stream_interface *si)
54{
55 if (!si->err_type)
56 si->err_type = SI_ET_DATA_ERR;
57
Willy Tarreaucff64112008-11-03 06:26:53 +010058 si->ob->flags |= BF_WRITE_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +010059 si->ib->flags |= BF_READ_ERROR;
60}
61
62/*
Willy Tarreau6f0aa472009-03-08 20:33:29 +010063 * Erase any content from input and output buffers, and return a message into
64 * the output buffer. The message is provided as a "chunk". If it is null,
65 * then an empty message is used.
Willy Tarreau81acfab2008-11-30 19:22:53 +010066 */
67void stream_int_return(struct stream_interface *si, const struct chunk *msg)
68{
Willy Tarreau6f0aa472009-03-08 20:33:29 +010069 buffer_erase(si->ib);
Willy Tarreaucb359e32009-09-15 21:23:54 +020070 buffer_cut_tail(si->ob);
Willy Tarreau81acfab2008-11-30 19:22:53 +010071 if (msg && msg->len)
72 buffer_write(si->ob, msg->str, msg->len);
73}
74
75/*
Willy Tarreaudded32d2008-11-30 19:48:07 +010076 * Returns a message to the client ; the connection is shut down for read,
77 * and the request is cleared so that no server connection can be initiated.
78 * The buffer is marked for read shutdown on the other side to protect the
79 * message, and the buffer write is enabled. The message is contained in a
80 * "chunk". If it is null, then an empty message is used. The reply buffer
81 * doesn't need to be empty before this. The goal of this function is to
82 * return error messages to a client.
83 */
84void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
85{
86 buffer_abort(si->ib);
Willy Tarreau6f0aa472009-03-08 20:33:29 +010087 buffer_erase(si->ob);
Willy Tarreaudded32d2008-11-30 19:48:07 +010088 buffer_shutr_now(si->ob);
89 if (msg && msg->len)
90 buffer_write(si->ob, msg->str, msg->len);
91
92 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau520d95e2009-09-19 21:04:57 +020093 buffer_auto_close(si->ob);
Willy Tarreaudded32d2008-11-30 19:48:07 +010094}
95
Willy Tarreaufb90d942009-09-05 20:57:35 +020096/* default update function for scheduled tasks, not used for embedded tasks */
97void stream_int_update(struct stream_interface *si)
98{
99 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
100 __FUNCTION__,
101 si, si->state, si->ib->flags, si->ob->flags);
102
103 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
104 task_wakeup(si->owner, TASK_WOKEN_IO);
105}
106
107/* default update function for embedded tasks, to be used at the end of the i/o handler */
108void stream_int_update_embedded(struct stream_interface *si)
109{
110 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
111 __FUNCTION__,
112 si, si->state, si->ib->flags, si->ob->flags);
113
114 if (si->state != SI_ST_EST)
115 return;
116
117 if ((si->ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == (BF_OUT_EMPTY|BF_SHUTW_NOW))
118 si->shutw(si);
119
120 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
121 si->flags |= SI_FL_WAIT_DATA;
122
123 if ((si->ib->flags & (BF_FULL|BF_SHUTR)) == BF_FULL)
124 si->flags |= SI_FL_WAIT_ROOM;
125
126 if (si->ob->flags & BF_WRITE_ACTIVITY || si->ib->flags & BF_READ_ACTIVITY) {
127 if (tick_isset(si->ib->rex))
128 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
129 if (tick_isset(si->ob->wex))
130 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
131 }
132
133 if (si->ob->flags & BF_WRITE_PARTIAL)
134 si->ob->prod->chk_rcv(si->ob->prod);
135
136 if (si->ib->flags & BF_READ_PARTIAL)
137 si->ib->cons->chk_snd(si->ib->cons);
138
139 /* Note that we're trying to wake up in two conditions here :
140 * - special event, which needs the holder task attention
141 * - status indicating that the applet can go on working. This
142 * is rather hard because we might be blocking on output and
143 * don't want to wake up on input and vice-versa. The idea is
144 * the to only rely the changes the chk_* might have performed.
145 */
146 if (/* check stream interface changes */
147 (si->flags & SI_FL_ERR) || si->state != SI_ST_EST || si->ib->cons->state != SI_ST_EST ||
148 /* check response buffer changes */
149 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR|BF_READ_DONTWAIT)) ||
150 ((si->ib->flags & BF_READ_ACTIVITY) && !si->ib->to_forward) ||
151 (!(si->ib->flags & BF_FULL) && (si->ib->flags & BF_WRITE_ACTIVITY) && si->ib->to_forward) ||
152 /* check request buffer changes */
153 (si->ob->flags & (BF_WRITE_ERROR)) ||
154 ((si->ob->flags & BF_WRITE_ACTIVITY) && (si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward) ||
155 (si->ob->flags & BF_READ_ACTIVITY)) {
156 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
157 task_wakeup(si->owner, TASK_WOKEN_IO);
158 }
159}
160
161/* default shutr function for scheduled tasks */
162void stream_int_shutr(struct stream_interface *si)
163{
164 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
165 __FUNCTION__,
166 si, si->state, si->ib->flags, si->ob->flags);
167
168 si->ib->flags &= ~BF_SHUTR_NOW;
169 if (si->ib->flags & BF_SHUTR)
170 return;
171 si->ib->flags |= BF_SHUTR;
172 si->ib->rex = TICK_ETERNITY;
173 si->flags &= ~SI_FL_WAIT_ROOM;
174
175 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
176 return;
177
178 if (si->ob->flags & BF_SHUTW) {
179 si->state = SI_ST_DIS;
180 si->exp = TICK_ETERNITY;
181 }
182
183 /* note that if the task exist, it must unregister itself once it runs */
184 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
185 task_wakeup(si->owner, TASK_WOKEN_IO);
186}
187
188/* default shutw function for scheduled tasks */
189void stream_int_shutw(struct stream_interface *si)
190{
191 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
192 __FUNCTION__,
193 si, si->state, si->ib->flags, si->ob->flags);
194
195 si->ob->flags &= ~BF_SHUTW_NOW;
196 if (si->ob->flags & BF_SHUTW)
197 return;
198 si->ob->flags |= BF_SHUTW;
199 si->ob->wex = TICK_ETERNITY;
200 si->flags &= ~SI_FL_WAIT_DATA;
201
202 switch (si->state) {
203 case SI_ST_EST:
204 if (!(si->ib->flags & BF_SHUTR))
205 break;
206
207 /* fall through */
208 case SI_ST_CON:
209 case SI_ST_CER:
210 si->state = SI_ST_DIS;
211 /* fall through */
212 default:
213 si->flags &= ~SI_FL_WAIT_ROOM;
214 si->ib->flags |= BF_SHUTR;
215 si->ib->rex = TICK_ETERNITY;
216 si->exp = TICK_ETERNITY;
217 }
218
219 /* note that if the task exist, it must unregister itself once it runs */
220 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
221 task_wakeup(si->owner, TASK_WOKEN_IO);
222}
223
224/* default chk_rcv function for scheduled tasks */
225void stream_int_chk_rcv(struct stream_interface *si)
226{
227 struct buffer *ib = si->ib;
228
229 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
230 __FUNCTION__,
231 si, si->state, si->ib->flags, si->ob->flags);
232
233 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
234 return;
235
236 if (ib->flags & (BF_FULL|BF_HIJACK)) {
237 /* stop reading */
238 if ((ib->flags & (BF_FULL|BF_HIJACK)) == BF_FULL)
239 si->flags |= SI_FL_WAIT_ROOM;
240 }
241 else {
242 /* (re)start reading */
243 si->flags &= ~SI_FL_WAIT_ROOM;
244 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
245 task_wakeup(si->owner, TASK_WOKEN_IO);
246 }
247}
248
249/* default chk_snd function for scheduled tasks */
250void stream_int_chk_snd(struct stream_interface *si)
251{
252 struct buffer *ob = si->ob;
253
254 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
255 __FUNCTION__,
256 si, si->state, si->ib->flags, si->ob->flags);
257
258 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & BF_SHUTW)))
259 return;
260
261 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
262 (ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
263 return;
264
265 /* Otherwise there are remaining data to be sent in the buffer,
266 * so we tell the handler.
267 */
268 si->flags &= ~SI_FL_WAIT_DATA;
269 if (!tick_isset(ob->wex))
270 ob->wex = tick_add_ifset(now_ms, ob->wto);
271
272 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
273 task_wakeup(si->owner, TASK_WOKEN_IO);
274}
275
276/* Register a function to handle a stream_interface as part of the stream
277 * interface's owner task, which is returned. The SI will wake it up everytime
278 * it is solicited. The task's processing function must call the specified
279 * function before returning. It must be deleted by the task handler using
280 * stream_int_unregister_handler(), possibly from withing the function itself.
281 */
282struct task *stream_int_register_handler(struct stream_interface *si,
283 void (*fct)(struct stream_interface *))
284{
285 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
286
287 si->update = stream_int_update_embedded;
288 si->shutr = stream_int_shutr;
289 si->shutw = stream_int_shutw;
290 si->chk_rcv = stream_int_chk_rcv;
291 si->chk_snd = stream_int_chk_snd;
292 si->connect = NULL;
293 si->iohandler = fct;
294 si->flags |= SI_FL_WAIT_DATA;
295 return si->owner;
296}
297
298/* Register a function to handle a stream_interface as a standalone task. The
299 * new task itself is returned and is assigned as si->owner. The stream_interface
300 * pointer will be pointed to by the task's context. The handler can be detached
301 * by using stream_int_unregister_handler().
302 */
303struct task *stream_int_register_handler_task(struct stream_interface *si,
304 struct task *(*fct)(struct task *))
305{
306 struct task *t;
307
308 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
309
310 si->update = stream_int_update;
311 si->shutr = stream_int_shutr;
312 si->shutw = stream_int_shutw;
313 si->chk_rcv = stream_int_chk_rcv;
314 si->chk_snd = stream_int_chk_snd;
315 si->connect = NULL;
316 si->iohandler = NULL; /* not used when running as an external task */
317 si->flags |= SI_FL_WAIT_DATA;
318
319 t = task_new();
320 si->owner = t;
321 if (!t)
322 return t;
323 t->process = fct;
324 t->context = si;
325 task_wakeup(si->owner, TASK_WOKEN_INIT);
326
327 return t;
328}
329
330/* Unregister a stream interface handler. This must be called by the handler task
331 * itself when it detects that it is in the SI_ST_DIS state. This function can
332 * both detach standalone handlers and embedded handlers.
333 */
334void stream_int_unregister_handler(struct stream_interface *si)
335{
336 if (!si->iohandler && si->owner) {
337 /* external handler : kill the task */
338 task_delete(si->owner);
339 task_free(si->owner);
340 }
341 si->iohandler = NULL;
342 si->owner = NULL;
343}
344
Willy Tarreaudded32d2008-11-30 19:48:07 +0100345/*
Willy Tarreaucff64112008-11-03 06:26:53 +0100346 * Local variables:
347 * c-indent-level: 8
348 * c-basic-offset: 8
349 * End:
350 */