blob: bdbf2e7fa418a3c15a84d0b179754379186c337f [file] [log] [blame]
Willy Tarreaucff64112008-11-03 06:26:53 +01001/*
2 * Functions managing stream_interface structures
3 *
Willy Tarreauf873d752012-05-11 17:47:17 +02004 * Copyright 2000-2012 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>
Willy Tarreau8b117082012-08-06 15:06:49 +020030#include <proto/connection.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010031#include <proto/fd.h>
Willy Tarreau2c6be842012-07-06 17:12:34 +020032#include <proto/frontend.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020033#include <proto/sock_raw.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020034#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010035#include <proto/task.h>
36
Willy Tarreaufd31e532012-07-23 18:24:25 +020037#include <types/pipe.h>
38
Willy Tarreauf873d752012-05-11 17:47:17 +020039/* socket functions used when running a stream interface as a task */
40static void stream_int_update(struct stream_interface *si);
41static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020042static void stream_int_chk_rcv(struct stream_interface *si);
43static void stream_int_chk_snd(struct stream_interface *si);
44
Willy Tarreau5c979a92012-05-07 17:15:39 +020045/* socket operations for embedded tasks */
46struct sock_ops stream_int_embedded = {
47 .update = stream_int_update_embedded,
Willy Tarreau4a36b562012-08-06 19:31:45 +020048 .shutr = NULL,
49 .shutw = NULL,
Willy Tarreau5c979a92012-05-07 17:15:39 +020050 .chk_rcv = stream_int_chk_rcv,
51 .chk_snd = stream_int_chk_snd,
52 .read = NULL,
53 .write = NULL,
Willy Tarreau24208272012-05-21 17:28:50 +020054 .close = NULL,
Willy Tarreau5c979a92012-05-07 17:15:39 +020055};
56
57/* socket operations for external tasks */
58struct sock_ops stream_int_task = {
59 .update = stream_int_update,
Willy Tarreau4a36b562012-08-06 19:31:45 +020060 .shutr = NULL,
61 .shutw = NULL,
Willy Tarreau5c979a92012-05-07 17:15:39 +020062 .chk_rcv = stream_int_chk_rcv,
63 .chk_snd = stream_int_chk_snd,
64 .read = NULL,
65 .write = NULL,
Willy Tarreau24208272012-05-21 17:28:50 +020066 .close = NULL,
Willy Tarreau5c979a92012-05-07 17:15:39 +020067};
68
Willy Tarreaucff64112008-11-03 06:26:53 +010069/*
70 * This function only has to be called once after a wakeup event in case of
71 * suspected timeout. It controls the stream interface timeouts and sets
72 * si->flags accordingly. It does NOT close anything, as this timeout may
73 * be used for any purpose. It returns 1 if the timeout fired, otherwise
74 * zero.
75 */
76int stream_int_check_timeouts(struct stream_interface *si)
77{
78 if (tick_is_expired(si->exp, now_ms)) {
79 si->flags |= SI_FL_EXP;
80 return 1;
81 }
82 return 0;
83}
84
Willy Tarreaufe3718a2008-11-30 18:14:12 +010085/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010086void stream_int_report_error(struct stream_interface *si)
87{
88 if (!si->err_type)
89 si->err_type = SI_ET_DATA_ERR;
90
Willy Tarreaucff64112008-11-03 06:26:53 +010091 si->ob->flags |= BF_WRITE_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +010092 si->ib->flags |= BF_READ_ERROR;
93}
94
95/*
Willy Tarreaudded32d2008-11-30 19:48:07 +010096 * Returns a message to the client ; the connection is shut down for read,
97 * and the request is cleared so that no server connection can be initiated.
98 * The buffer is marked for read shutdown on the other side to protect the
99 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100100 * "chunk". If it is null, then an empty message is used. The reply buffer does
101 * not need to be empty before this, and its contents will not be overwritten.
102 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100103 */
104void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
105{
Willy Tarreau148d0992010-01-10 10:21:21 +0100106 buffer_auto_read(si->ib);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100107 buffer_abort(si->ib);
Willy Tarreau148d0992010-01-10 10:21:21 +0100108 buffer_auto_close(si->ib);
109 buffer_erase(si->ib);
Willy Tarreau798e1282010-12-12 13:06:00 +0100110
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200111 bi_erase(si->ob);
Willy Tarreau148d0992010-01-10 10:21:21 +0100112 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200113 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100114
115 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau148d0992010-01-10 10:21:21 +0100116 buffer_auto_read(si->ob);
Willy Tarreau520d95e2009-09-19 21:04:57 +0200117 buffer_auto_close(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100118 buffer_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100119}
120
Willy Tarreaufb90d942009-09-05 20:57:35 +0200121/* default update function for scheduled tasks, not used for embedded tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200122static void stream_int_update(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200123{
124 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
125 __FUNCTION__,
126 si, si->state, si->ib->flags, si->ob->flags);
127
128 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
129 task_wakeup(si->owner, TASK_WOKEN_IO);
130}
131
132/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200133static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200134{
Willy Tarreau3488e252010-08-09 16:24:56 +0200135 int old_flags = si->flags;
136
Willy Tarreaufb90d942009-09-05 20:57:35 +0200137 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
138 __FUNCTION__,
139 si, si->state, si->ib->flags, si->ob->flags);
140
141 if (si->state != SI_ST_EST)
142 return;
143
144 if ((si->ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == (BF_OUT_EMPTY|BF_SHUTW_NOW))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200145 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200146
147 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
148 si->flags |= SI_FL_WAIT_DATA;
149
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200150 /* we're almost sure that we need some space if the buffer is not
151 * empty, even if it's not full, because the applets can't fill it.
152 */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200153 if ((si->ib->flags & (BF_SHUTR|BF_OUT_EMPTY|BF_DONT_READ)) == 0)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200154 si->flags |= SI_FL_WAIT_ROOM;
155
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200156 if (si->ob->flags & BF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200157 if (tick_isset(si->ob->wex))
158 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
159 }
160
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200161 if (si->ib->flags & BF_READ_ACTIVITY ||
162 (si->ob->flags & BF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
163 if (tick_isset(si->ib->rex))
164 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
165 }
166
Willy Tarreau3488e252010-08-09 16:24:56 +0200167 /* save flags to detect changes */
168 old_flags = si->flags;
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200169 if (likely((si->ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200170 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200171 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200172
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200173 if (((si->ib->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200174 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200175 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200176 /* check if the consumer has freed some space */
177 if (!(si->ib->flags & BF_FULL))
178 si->flags &= ~SI_FL_WAIT_ROOM;
179 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200180
181 /* Note that we're trying to wake up in two conditions here :
182 * - special event, which needs the holder task attention
183 * - status indicating that the applet can go on working. This
184 * is rather hard because we might be blocking on output and
185 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200186 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200187 */
188 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200189 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
190
191 /* changes on the production side */
192 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
193 si->state != SI_ST_EST ||
194 (si->flags & SI_FL_ERR) ||
195 ((si->ib->flags & BF_READ_PARTIAL) &&
196 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
197
198 /* changes on the consumption side */
199 (si->ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR)) ||
200 ((si->ob->flags & BF_WRITE_ACTIVITY) &&
201 ((si->ob->flags & BF_SHUTW) ||
202 si->ob->prod->state != SI_ST_EST ||
203 ((si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200204 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
205 task_wakeup(si->owner, TASK_WOKEN_IO);
206 }
Willy Tarreau3488e252010-08-09 16:24:56 +0200207 if (si->ib->flags & BF_READ_ACTIVITY)
208 si->ib->flags &= ~BF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200209}
210
Willy Tarreau4a36b562012-08-06 19:31:45 +0200211/*
212 * This function performs a shutdown-read on a stream interface in a connected
213 * or init state (it does nothing for other states). It either shuts the read
214 * side or marks itself as closed. The buffer flags are updated to reflect the
215 * new state. If the stream interface has SI_FL_NOHALF, we also forward the
216 * close to the write side. If a control layer is defined, then it is supposed
217 * to be a socket layer and file descriptors are then shutdown or closed
218 * accordingly. If no control layer is defined, then the SI is supposed to be
219 * an embedded one and the owner task is woken up if it exists. The function
220 * does not disable polling on the FD by itself, it returns non-zero instead
221 * if the caller needs to do so (except when the FD is deleted where this is
222 * implicit).
223 */
224int stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200225{
Willy Tarreau4a36b562012-08-06 19:31:45 +0200226 struct connection *conn = &si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200227
228 si->ib->flags &= ~BF_SHUTR_NOW;
229 if (si->ib->flags & BF_SHUTR)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200230 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200231 si->ib->flags |= BF_SHUTR;
232 si->ib->rex = TICK_ETERNITY;
233 si->flags &= ~SI_FL_WAIT_ROOM;
234
235 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200236 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200237
238 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau4a36b562012-08-06 19:31:45 +0200239 conn_data_close(&si->conn);
240 if (conn->ctrl)
241 fd_delete(si_fd(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200242 si->state = SI_ST_DIS;
243 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200244
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200245 if (si->release)
246 si->release(si);
247 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200248 else if (si->flags & SI_FL_NOHALF) {
249 /* we want to immediately forward this close to the write side */
250 return stream_int_shutw(si);
251 }
252 else if (conn->ctrl) {
253 /* we want the caller to disable polling on this FD */
254 return 1;
255 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200256
Willy Tarreau4a36b562012-08-06 19:31:45 +0200257 /* note that if the task exists, it must unregister itself once it runs */
258 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200259 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200260 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200261}
262
Willy Tarreau4a36b562012-08-06 19:31:45 +0200263/*
264 * This function performs a shutdown-write on a stream interface in a connected or
265 * init state (it does nothing for other states). It either shuts the write side
266 * or marks itself as closed. The buffer flags are updated to reflect the new state.
267 * It does also close everything if the SI was marked as being in error state. If
268 * there is a data-layer shutdown, it is called. If a control layer is defined, then
269 * it is supposed to be a socket layer and file descriptors are then shutdown or
270 * closed accordingly. If no control layer is defined, then the SI is supposed to
271 * be an embedded one and the owner task is woken up if it exists. The function
272 * does not disable polling on the FD by itself, it returns non-zero instead if
273 * the caller needs to do so (except when the FD is deleted where this is implicit).
274 */
275int stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200276{
Willy Tarreau4a36b562012-08-06 19:31:45 +0200277 struct connection *conn = &si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200278
279 si->ob->flags &= ~BF_SHUTW_NOW;
280 if (si->ob->flags & BF_SHUTW)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200281 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200282 si->ob->flags |= BF_SHUTW;
283 si->ob->wex = TICK_ETERNITY;
284 si->flags &= ~SI_FL_WAIT_DATA;
285
286 switch (si->state) {
287 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200288 /* we have to shut before closing, otherwise some short messages
289 * may never leave the system, especially when there are remaining
290 * unread data in the socket input buffer, or when nolinger is set.
291 * However, if SI_FL_NOLINGER is explicitly set, we know there is
292 * no risk so we close both sides immediately.
293 */
294 if (si->flags & SI_FL_ERR) {
295 /* quick close, the socket is already shut. Remove pending flags. */
296 si->flags &= ~SI_FL_NOLINGER;
297 } else if (si->flags & SI_FL_NOLINGER) {
298 si->flags &= ~SI_FL_NOLINGER;
299 if (conn->ctrl) {
300 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
301 (struct linger *) &nolinger, sizeof(struct linger));
302 }
303 /* unclean data-layer shutdown */
304 if (conn->data && conn->data->shutw)
305 conn->data->shutw(conn, 0);
306 } else {
307 /* clean data-layer shutdown */
308 if (conn->data && conn->data->shutw)
309 conn->data->shutw(conn, 1);
310
311 if (!(si->flags & SI_FL_NOHALF)) {
312 /* We shutdown transport layer */
313 if (conn->ctrl)
314 shutdown(si_fd(si), SHUT_WR);
315
316 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ))) {
317 /* OK just a shutw, but we want the caller
318 * to disable polling on this FD if exists.
319 */
320 return !!conn->ctrl;
321 }
322 }
323 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200324
325 /* fall through */
326 case SI_ST_CON:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200327 /* we may have to close a pending connection, and mark the
328 * response buffer as shutr
329 */
330 conn_data_close(&si->conn);
331 if (conn->ctrl)
332 fd_delete(si_fd(si));
333 /* fall through */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200334 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100335 case SI_ST_QUE:
336 case SI_ST_TAR:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200337 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200338
339 if (si->release)
340 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200341 default:
342 si->flags &= ~SI_FL_WAIT_ROOM;
343 si->ib->flags |= BF_SHUTR;
344 si->ib->rex = TICK_ETERNITY;
345 si->exp = TICK_ETERNITY;
346 }
347
Willy Tarreau4a36b562012-08-06 19:31:45 +0200348 /* note that if the task exists, it must unregister itself once it runs */
349 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200350 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200351 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200352}
353
354/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200355static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200356{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200357 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200358
359 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
360 __FUNCTION__,
361 si, si->state, si->ib->flags, si->ob->flags);
362
363 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
364 return;
365
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200366 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200367 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200368 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200369 si->flags |= SI_FL_WAIT_ROOM;
370 }
371 else {
372 /* (re)start reading */
373 si->flags &= ~SI_FL_WAIT_ROOM;
374 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
375 task_wakeup(si->owner, TASK_WOKEN_IO);
376 }
377}
378
379/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200380static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200381{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200382 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200383
384 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
385 __FUNCTION__,
386 si, si->state, si->ib->flags, si->ob->flags);
387
388 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & BF_SHUTW)))
389 return;
390
391 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
392 (ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
393 return;
394
395 /* Otherwise there are remaining data to be sent in the buffer,
396 * so we tell the handler.
397 */
398 si->flags &= ~SI_FL_WAIT_DATA;
399 if (!tick_isset(ob->wex))
400 ob->wex = tick_add_ifset(now_ms, ob->wto);
401
402 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
403 task_wakeup(si->owner, TASK_WOKEN_IO);
404}
405
Willy Tarreaub24281b2011-02-13 13:16:36 +0100406/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200407 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100408 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200409 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100410 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200411 * It also pre-initializes applet.state to zero and the connection context
412 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200413 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100414struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200415{
Simon Horman7abd00d2011-08-13 08:03:51 +0900416 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200417
Willy Tarreau5c979a92012-05-07 17:15:39 +0200418 stream_interface_prepare(si, &stream_int_embedded);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200419 si->conn.ctrl = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100420 set_target_applet(&si->target, app);
Aman Gupta9a13e842012-04-02 18:57:53 -0700421 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200422 si->flags |= SI_FL_WAIT_DATA;
423 return si->owner;
424}
425
426/* Register a function to handle a stream_interface as a standalone task. The
427 * new task itself is returned and is assigned as si->owner. The stream_interface
428 * pointer will be pointed to by the task's context. The handler can be detached
429 * by using stream_int_unregister_handler().
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100430 * FIXME: the code should be updated to ensure that we don't change si->owner
431 * anymore as this is not needed. However, process_session still relies on it.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200432 */
433struct task *stream_int_register_handler_task(struct stream_interface *si,
434 struct task *(*fct)(struct task *))
435{
436 struct task *t;
437
438 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
439
Willy Tarreau5c979a92012-05-07 17:15:39 +0200440 stream_interface_prepare(si, &stream_int_task);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200441 si->conn.ctrl = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100442 clear_target(&si->target);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200443 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200444 si->flags |= SI_FL_WAIT_DATA;
445
446 t = task_new();
447 si->owner = t;
448 if (!t)
449 return t;
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100450
Willy Tarreau9e000c62011-03-10 14:03:36 +0100451 set_target_task(&si->target, t);
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100452
Willy Tarreaufb90d942009-09-05 20:57:35 +0200453 t->process = fct;
454 t->context = si;
455 task_wakeup(si->owner, TASK_WOKEN_INIT);
456
457 return t;
458}
459
460/* Unregister a stream interface handler. This must be called by the handler task
461 * itself when it detects that it is in the SI_ST_DIS state. This function can
462 * both detach standalone handlers and embedded handlers.
463 */
464void stream_int_unregister_handler(struct stream_interface *si)
465{
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100466 if (si->target.type == TARG_TYPE_TASK) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200467 /* external handler : kill the task */
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100468 task_delete(si->target.ptr.t);
469 task_free(si->target.ptr.t);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200470 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200471 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200472 si->owner = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100473 clear_target(&si->target);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200474}
475
Willy Tarreau2c6be842012-07-06 17:12:34 +0200476/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200477 * established. It returns 0 if it fails in a fatal way or needs to poll to go
478 * further, otherwise it returns non-zero and removes itself from the connection's
479 * flags (the bit is provided in <flag> by the caller).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200480 */
481int conn_si_send_proxy(struct connection *conn, unsigned int flag)
482{
483 int fd = conn->t.sock.fd;
484 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau7421efb2012-07-02 15:11:27 +0200485 struct channel *b = si->ob;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200486
487 /* we might have been called just after an asynchronous shutw */
488 if (b->flags & BF_SHUTW)
489 goto out_error;
490
491 /* If we have a PROXY line to send, we'll use this to validate the
492 * connection, in which case the connection is validated only once
493 * we've sent the whole proxy line. Otherwise we use connect().
494 */
495 if (si->send_proxy_ofs) {
496 int ret;
497
498 /* The target server expects a PROXY line to be sent first.
499 * If the send_proxy_ofs is negative, it corresponds to the
500 * offset to start sending from then end of the proxy string
501 * (which is recomputed every time since it's constant). If
502 * it is positive, it means we have to send from the start.
503 */
504 ret = make_proxy_line(trash, trashlen, &b->prod->addr.from, &b->prod->addr.to);
505 if (!ret)
506 goto out_error;
507
508 if (si->send_proxy_ofs > 0)
509 si->send_proxy_ofs = -ret; /* first call */
510
511 /* we have to send trash from (ret+sp for -sp bytes) */
512 ret = send(fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
513 (b->flags & BF_OUT_EMPTY) ? 0 : MSG_MORE);
514
515 if (ret == 0)
516 goto out_wait;
517
518 if (ret < 0) {
519 if (errno == EAGAIN)
520 goto out_wait;
521 goto out_error;
522 }
523
524 si->send_proxy_ofs += ret; /* becomes zero once complete */
525 if (si->send_proxy_ofs != 0)
526 goto out_wait;
527
528 /* OK we've sent the whole line, we're connected */
529 }
530
531 /* The FD is ready now, simply return and let the connection handler
532 * notify upper layers if needed.
533 */
534 if (conn->flags & CO_FL_WAIT_L4_CONN)
535 conn->flags &= ~CO_FL_WAIT_L4_CONN;
536 b->flags |= BF_WRITE_NULL;
537 si->exp = TICK_ETERNITY;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200538 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200539 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200540
541 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200542 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200543 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200544 conn->flags &= ~flag;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200545 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200546 conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200547 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200548
549 out_wait:
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200550 conn_sock_stop_recv(conn);
551 conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200552 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200553}
554
Willy Tarreau100c4672012-08-20 12:06:26 +0200555/* Callback to be used by connection I/O handlers upon completion. It differs from
556 * the function below in that it is designed to be called by lower layers after I/O
557 * events have been completed. It will also try to wake the associated task up if
558 * an important event requires special handling.
559 */
560void conn_notify_si(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200561{
562 int fd = conn->t.sock.fd;
563 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
564
565 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
566 __FUNCTION__,
567 si, si->state, si->ib->flags, si->ob->flags);
568
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200569 if (conn->flags & CO_FL_ERROR)
570 si->flags |= SI_FL_ERR;
571
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200572 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200573 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200574 si->exp = TICK_ETERNITY;
575 si->ob->flags |= BF_WRITE_NULL;
576 }
577
Willy Tarreaufd31e532012-07-23 18:24:25 +0200578 /* process consumer side, only once if possible */
579 if (fdtab[fd].ev & (FD_POLL_OUT | FD_POLL_ERR)) {
580 if (si->ob->flags & BF_OUT_EMPTY) {
581 if (((si->ob->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
582 (si->state == SI_ST_EST))
Willy Tarreau4a36b562012-08-06 19:31:45 +0200583 stream_int_shutw(si);
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200584 conn_data_stop_send(conn);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200585 si->ob->wex = TICK_ETERNITY;
586 }
587
588 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
589 si->flags |= SI_FL_WAIT_DATA;
590
591 if (si->ob->flags & BF_WRITE_ACTIVITY) {
592 /* update timeouts if we have written something */
593 if ((si->ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
594 if (tick_isset(si->ob->wex))
595 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
596
597 if (!(si->flags & SI_FL_INDEP_STR))
598 if (tick_isset(si->ib->rex))
599 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
600
601 if (likely((si->ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
602 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
603 si_chk_rcv(si->ob->prod);
604 }
605 }
606
607 /* process producer side, only once if possible */
608 if (fdtab[fd].ev & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR)) {
609 /* We might have some data the consumer is waiting for.
610 * We can do fast-forwarding, but we avoid doing this for partial
611 * buffers, because it is very likely that it will be done again
612 * immediately afterwards once the following data is parsed (eg:
613 * HTTP chunking).
614 */
615 if (((si->ib->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
616 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau572bf902012-07-02 17:01:20 +0200617 (si->ib->buf.i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200618 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
619
620 si_chk_snd(si->ib->cons);
621
622 /* check if the consumer has freed some space */
623 if (!(si->ib->flags & BF_FULL) &&
624 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
625 si->flags &= ~SI_FL_WAIT_ROOM;
626 }
627
628 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200629 conn_data_stop_recv(conn);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200630 si->ib->rex = TICK_ETERNITY;
631 }
632 else if ((si->ib->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL) {
633 if (tick_isset(si->ib->rex))
634 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
635 }
636 }
637
638 /* wake the task up only when needed */
639 if (/* changes on the production side */
640 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
641 si->state != SI_ST_EST ||
642 (si->flags & SI_FL_ERR) ||
643 ((si->ib->flags & BF_READ_PARTIAL) &&
644 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
645
646 /* changes on the consumption side */
647 (si->ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR)) ||
648 ((si->ob->flags & BF_WRITE_ACTIVITY) &&
649 ((si->ob->flags & BF_SHUTW) ||
650 si->ob->prod->state != SI_ST_EST ||
651 ((si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward)))) {
652 task_wakeup(si->owner, TASK_WOKEN_IO);
653 }
654 if (si->ib->flags & BF_READ_ACTIVITY)
655 si->ib->flags &= ~BF_READ_DONTWAIT;
656}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200657
Willy Tarreau100c4672012-08-20 12:06:26 +0200658/* Updates the timers and flags of a stream interface attached to a connection,
659 * depending on the buffers' flags. It should only be called once after the
660 * buffer flags have settled down, and before they are cleared. It doesn't
661 * harm to call it as often as desired (it just slightly hurts performance).
662 * It is only meant to be called by upper layers after buffer flags have been
663 * manipulated by analysers.
664 */
665void stream_int_update_conn(struct stream_interface *si)
666{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200667 struct channel *ib = si->ib;
668 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200669
670 if (si->conn.flags & CO_FL_HANDSHAKE) {
671 /* a handshake is in progress */
672 si->flags &= ~SI_FL_WAIT_DATA;
673 return;
674 }
675
676 /* Check if we need to close the read side */
677 if (!(ib->flags & BF_SHUTR)) {
678 /* Read not closed, update FD status and timeout for reads */
679 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
680 /* stop reading */
681 if (!(si->flags & SI_FL_WAIT_ROOM)) {
682 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
683 si->flags |= SI_FL_WAIT_ROOM;
684 conn_data_stop_recv(&si->conn);
685 ib->rex = TICK_ETERNITY;
686 }
687 }
688 else {
689 /* (re)start reading and update timeout. Note: we don't recompute the timeout
690 * everytime we get here, otherwise it would risk never to expire. We only
691 * update it if is was not yet set. The stream socket handler will already
692 * have updated it if there has been a completed I/O.
693 */
694 si->flags &= ~SI_FL_WAIT_ROOM;
695 conn_data_want_recv(&si->conn);
696 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
697 ib->rex = tick_add_ifset(now_ms, ib->rto);
698 }
699 }
700
701 /* Check if we need to close the write side */
702 if (!(ob->flags & BF_SHUTW)) {
703 /* Write not closed, update FD status and timeout for writes */
704 if (ob->flags & BF_OUT_EMPTY) {
705 /* stop writing */
706 if (!(si->flags & SI_FL_WAIT_DATA)) {
707 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
708 si->flags |= SI_FL_WAIT_DATA;
709 conn_data_stop_send(&si->conn);
710 ob->wex = TICK_ETERNITY;
711 }
712 }
713 else {
714 /* (re)start writing and update timeout. Note: we don't recompute the timeout
715 * everytime we get here, otherwise it would risk never to expire. We only
716 * update it if is was not yet set. The stream socket handler will already
717 * have updated it if there has been a completed I/O.
718 */
719 si->flags &= ~SI_FL_WAIT_DATA;
720 conn_data_want_send(&si->conn);
721 if (!tick_isset(ob->wex)) {
722 ob->wex = tick_add_ifset(now_ms, ob->wto);
723 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
724 /* Note: depending on the protocol, we don't know if we're waiting
725 * for incoming data or not. So in order to prevent the socket from
726 * expiring read timeouts during writes, we refresh the read timeout,
727 * except if it was already infinite or if we have explicitly setup
728 * independent streams.
729 */
730 ib->rex = tick_add_ifset(now_ms, ib->rto);
731 }
732 }
733 }
734 }
735}
736
Willy Tarreau46a8d922012-08-20 12:38:36 +0200737/* This function is used for inter-stream-interface calls. It is called by the
738 * consumer to inform the producer side that it may be interested in checking
739 * for free space in the buffer. Note that it intentionally does not update
740 * timeouts, so that we can still check them later at wake-up. This function is
741 * dedicated to connection-based stream interfaces.
742 */
743void stream_int_chk_rcv_conn(struct stream_interface *si)
744{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200745 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200746
747 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
748 return;
749
750 if (si->conn.flags & CO_FL_HANDSHAKE) {
751 /* a handshake is in progress */
752 return;
753 }
754
755 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
756 /* stop reading */
757 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
758 si->flags |= SI_FL_WAIT_ROOM;
759 conn_data_stop_recv(&si->conn);
760 }
761 else {
762 /* (re)start reading */
763 si->flags &= ~SI_FL_WAIT_ROOM;
764 conn_data_want_recv(&si->conn);
765 }
766}
767
768
Willy Tarreaude5722c2012-08-20 15:01:10 +0200769/* This function is used for inter-stream-interface calls. It is called by the
770 * producer to inform the consumer side that it may be interested in checking
771 * for data in the buffer. Note that it intentionally does not update timeouts,
772 * so that we can still check them later at wake-up.
773 */
774void stream_int_chk_snd_conn(struct stream_interface *si)
775{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200776 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200777
778 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
779 return;
780
781 /* handshake running on producer */
782 if (si->conn.flags & CO_FL_HANDSHAKE) {
783 /* a handshake is in progress */
784 si->flags &= ~SI_FL_WAIT_DATA;
785 return;
786 }
787
788 if (unlikely((ob->flags & BF_OUT_EMPTY))) /* called with nothing to send ! */
789 return;
790
791 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
792 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
793 (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */
794 return;
795
796 if (conn_data_snd_buf(&si->conn) < 0) {
797 /* Write error on the file descriptor. We mark the FD as STERROR so
798 * that we don't use it anymore and we notify the task.
799 */
800 fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY;
801 conn_data_stop_both(&si->conn);
802 si->flags |= SI_FL_ERR;
803 si->conn.flags |= CO_FL_ERROR;
804 goto out_wakeup;
805 }
806
807 /* OK, so now we know that some data might have been sent, and that we may
808 * have to poll first. We have to do that too if the buffer is not empty.
809 */
810 if (ob->flags & BF_OUT_EMPTY) {
811 /* the connection is established but we can't write. Either the
812 * buffer is empty, or we just refrain from sending because the
813 * ->o limit was reached. Maybe we just wrote the last
814 * chunk and need to close.
815 */
816 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
817 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
818 (si->state == SI_ST_EST)) {
819 si_shutw(si);
820 goto out_wakeup;
821 }
822
823 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
824 si->flags |= SI_FL_WAIT_DATA;
825 ob->wex = TICK_ETERNITY;
826 }
827 else {
828 /* Otherwise there are remaining data to be sent in the buffer,
829 * which means we have to poll before doing so.
830 */
831 conn_data_want_send(&si->conn);
832 si->flags &= ~SI_FL_WAIT_DATA;
833 if (!tick_isset(ob->wex))
834 ob->wex = tick_add_ifset(now_ms, ob->wto);
835 }
836
837 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
838 /* update timeout if we have written something */
839 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
840 ob->wex = tick_add_ifset(now_ms, ob->wto);
841
842 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
843 /* Note: to prevent the client from expiring read timeouts
844 * during writes, we refresh it. We only do this if the
845 * interface is not configured for "independent streams",
846 * because for some applications it's better not to do this,
847 * for instance when continuously exchanging small amounts
848 * of data which can full the socket buffers long before a
849 * write timeout is detected.
850 */
851 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
852 }
853 }
854
855 /* in case of special condition (error, shutdown, end of write...), we
856 * have to notify the task.
857 */
858 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
859 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
860 si->state != SI_ST_EST)) {
861 out_wakeup:
862 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
863 task_wakeup(si->owner, TASK_WOKEN_IO);
864 }
865}
866
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200867/*
868 * This is the callback which is called by the connection layer to send data
869 * from the buffer to the connection. It iterates over the data layer's snd_buf
870 * function.
871 */
872void si_conn_send_cb(struct connection *conn)
873{
874 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau7421efb2012-07-02 15:11:27 +0200875 struct channel *b = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200876
877 if (conn->flags & CO_FL_ERROR)
878 goto out_error;
879
880 if (si->conn.flags & CO_FL_HANDSHAKE)
881 /* a handshake was requested */
882 return;
883
884 /* we might have been called just after an asynchronous shutw */
885 if (b->flags & BF_SHUTW)
886 return;
887
888 /* OK there are data waiting to be sent */
889 if (conn_data_snd_buf(conn) < 0)
890 goto out_error;
891
892 /* OK all done */
893 return;
894
895 out_error:
896 /* Write error on the connection, report the error and stop I/O */
897 conn->flags |= CO_FL_ERROR;
898 conn_data_stop_both(conn);
899}
900
Willy Tarreau9bf9c142012-08-20 15:38:41 +0200901/*
902 * This function propagates a null read received on a socket-based connection.
903 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
904 * the close is also forwarded to the write side as an abort. This function is
905 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
906 * state on the socket.
907 */
908void stream_sock_read0(struct stream_interface *si)
909{
910 si->ib->flags &= ~BF_SHUTR_NOW;
911 if (si->ib->flags & BF_SHUTR)
912 return;
913 si->ib->flags |= BF_SHUTR;
914 si->ib->rex = TICK_ETERNITY;
915 si->flags &= ~SI_FL_WAIT_ROOM;
916
917 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
918 return;
919
920 if (si->ob->flags & BF_SHUTW)
921 goto do_close;
922
923 if (si->flags & SI_FL_NOHALF) {
924 /* we want to immediately forward this close to the write side */
925 if (si->flags & SI_FL_NOLINGER) {
926 si->flags &= ~SI_FL_NOLINGER;
927 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
928 (struct linger *) &nolinger, sizeof(struct linger));
929 }
930 /* force flag on ssl to keep session in cache */
931 if (si->conn.data->shutw)
932 si->conn.data->shutw(&si->conn, 0);
933 goto do_close;
934 }
935
936 /* otherwise that's just a normal read shutdown */
937 conn_data_stop_recv(&si->conn);
938 return;
939
940 do_close:
941 conn_data_close(&si->conn);
942 fd_delete(si_fd(si));
943 si->state = SI_ST_DIS;
944 si->exp = TICK_ETERNITY;
945 if (si->release)
946 si->release(si);
947 return;
948}
949
Willy Tarreaude5722c2012-08-20 15:01:10 +0200950
Willy Tarreaudded32d2008-11-30 19:48:07 +0100951/*
Willy Tarreaucff64112008-11-03 06:26:53 +0100952 * Local variables:
953 * c-indent-level: 8
954 * c-basic-offset: 8
955 * End:
956 */