blob: ec8287ece31d14d33e9e2324f4b52ad2789a88d6 [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 Tarreau96199b12012-08-24 00:46:52 +020033#include <proto/pipe.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{
Willy Tarreaufd31e532012-07-23 18:24:25 +0200562 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
563
564 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
565 __FUNCTION__,
566 si, si->state, si->ib->flags, si->ob->flags);
567
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200568 if (conn->flags & CO_FL_ERROR)
569 si->flags |= SI_FL_ERR;
570
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200571 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200572 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200573 si->exp = TICK_ETERNITY;
574 si->ob->flags |= BF_WRITE_NULL;
575 }
576
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200577 /* process consumer side */
578 if (si->ob->flags & BF_OUT_EMPTY) {
579 if (((si->ob->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
580 (si->state == SI_ST_EST))
581 stream_int_shutw(si);
582 if (conn->flags & CO_FL_DATA_WR_ENA)
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200583 conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200584 si->ob->wex = TICK_ETERNITY;
585 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200586
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200587 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
588 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200589
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200590 if (si->ob->flags & BF_WRITE_ACTIVITY) {
591 /* update timeouts if we have written something */
592 if ((si->ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
593 if (tick_isset(si->ob->wex))
594 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200595
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200596 if (!(si->flags & SI_FL_INDEP_STR))
597 if (tick_isset(si->ib->rex))
598 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200599
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200600 if (likely((si->ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
601 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
602 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200603 }
604
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200605 /* process producer side.
606 * We might have some data the consumer is waiting for.
607 * We can do fast-forwarding, but we avoid doing this for partial
608 * buffers, because it is very likely that it will be done again
609 * immediately afterwards once the following data is parsed (eg:
610 * HTTP chunking).
611 */
612 if (((si->ib->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
613 (si->ib->pipe /* always try to send spliced data */ ||
614 (si->ib->buf.i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
615 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200616
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200617 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200618
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200619 /* check if the consumer has freed some space either in the
620 * buffer or in the pipe.
621 */
622 if (!(si->ib->flags & BF_FULL) &&
623 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
624 si->flags &= ~SI_FL_WAIT_ROOM;
625 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200626
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200627 if (si->flags & SI_FL_WAIT_ROOM) {
628 conn_data_stop_recv(conn);
629 si->ib->rex = TICK_ETERNITY;
630 }
631 else if ((si->ib->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL) {
632 if (tick_isset(si->ib->rex))
633 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200634 }
635
636 /* wake the task up only when needed */
637 if (/* changes on the production side */
638 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
639 si->state != SI_ST_EST ||
640 (si->flags & SI_FL_ERR) ||
641 ((si->ib->flags & BF_READ_PARTIAL) &&
642 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
643
644 /* changes on the consumption side */
645 (si->ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR)) ||
646 ((si->ob->flags & BF_WRITE_ACTIVITY) &&
647 ((si->ob->flags & BF_SHUTW) ||
648 si->ob->prod->state != SI_ST_EST ||
649 ((si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward)))) {
650 task_wakeup(si->owner, TASK_WOKEN_IO);
651 }
652 if (si->ib->flags & BF_READ_ACTIVITY)
653 si->ib->flags &= ~BF_READ_DONTWAIT;
654}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200655
Willy Tarreau5368d802012-08-21 18:22:06 +0200656/*
657 * This function is called to send buffer data to a stream socket.
658 * It returns -1 in case of unrecoverable error, otherwise zero.
659 * It iterates the data layer's snd_buf function.
660 */
661static int si_conn_send_loop(struct connection *conn)
662{
663 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
664 struct channel *b = si->ob;
665 int write_poll = MAX_WRITE_POLL_LOOPS;
666 int ret;
667
Willy Tarreau96199b12012-08-24 00:46:52 +0200668 conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM);
Willy Tarreau5368d802012-08-21 18:22:06 +0200669
Willy Tarreau96199b12012-08-24 00:46:52 +0200670 if (b->pipe && conn->data->snd_pipe) {
671 ret = conn->data->snd_pipe(conn, b->pipe);
672 if (ret > 0)
673 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200674
675 if (!b->pipe->data) {
676 put_pipe(b->pipe);
677 b->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200678 }
679
Willy Tarreau96199b12012-08-24 00:46:52 +0200680 if (conn->flags & CO_FL_ERROR)
681 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200682
Willy Tarreau96199b12012-08-24 00:46:52 +0200683 if (conn->flags & CO_FL_WAIT_ROOM) {
684 conn_data_poll_send(conn);
685 return 0;
686 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200687 }
688
689 /* At this point, the pipe is empty, but we may still have data pending
690 * in the normal buffer.
691 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200692 if (!b->buf.o) {
693 b->flags |= BF_OUT_EMPTY;
694 return 0;
695 }
696
697 /* when we're in this loop, we already know that there is no spliced
698 * data left, and that there are sendable buffered data.
699 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200700 while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH | CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
701 /* check if we want to inform the kernel that we're interested in
702 * sending more data after this call. We want this if :
703 * - we're about to close after this last send and want to merge
704 * the ongoing FIN with the last segment.
705 * - we know we can't send everything at once and must get back
706 * here because of unaligned data
707 * - there is still a finite amount of data to forward
708 * The test is arranged so that the most common case does only 2
709 * tests.
710 */
711 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
712
713 if ((!(b->flags & (BF_NEVER_WAIT|BF_SEND_DONTWAIT)) &&
714 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
715 (b->flags & BF_EXPECT_MORE))) ||
716 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW))
717 send_flag |= MSG_MORE;
718
719 ret = conn->data->snd_buf(conn, &b->buf, send_flag);
720 if (ret <= 0)
721 break;
722
723 if (si->conn.flags & CO_FL_WAIT_L4_CONN)
724 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
725
726 b->flags |= BF_WRITE_PARTIAL;
727
728 if (likely(!bi_full(b)))
729 b->flags &= ~BF_FULL;
730
731 if (!b->buf.o) {
732 /* Always clear both flags once everything has been sent, they're one-shot */
733 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
734 if (likely(!b->pipe))
735 b->flags |= BF_OUT_EMPTY;
736 break;
737 }
738
739 if (--write_poll <= 0)
740 break;
741 } /* while */
742
743 if (conn->flags & CO_FL_ERROR)
744 return -1;
745
746 if (conn->flags & CO_FL_WAIT_ROOM) {
747 /* we need to poll before going on */
748 conn_data_poll_send(&si->conn);
749 return 0;
750 }
751 return 0;
752}
753
754
Willy Tarreau100c4672012-08-20 12:06:26 +0200755/* Updates the timers and flags of a stream interface attached to a connection,
756 * depending on the buffers' flags. It should only be called once after the
757 * buffer flags have settled down, and before they are cleared. It doesn't
758 * harm to call it as often as desired (it just slightly hurts performance).
759 * It is only meant to be called by upper layers after buffer flags have been
760 * manipulated by analysers.
761 */
762void stream_int_update_conn(struct stream_interface *si)
763{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200764 struct channel *ib = si->ib;
765 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200766
767 if (si->conn.flags & CO_FL_HANDSHAKE) {
768 /* a handshake is in progress */
769 si->flags &= ~SI_FL_WAIT_DATA;
770 return;
771 }
772
773 /* Check if we need to close the read side */
774 if (!(ib->flags & BF_SHUTR)) {
775 /* Read not closed, update FD status and timeout for reads */
776 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
777 /* stop reading */
778 if (!(si->flags & SI_FL_WAIT_ROOM)) {
779 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
780 si->flags |= SI_FL_WAIT_ROOM;
781 conn_data_stop_recv(&si->conn);
782 ib->rex = TICK_ETERNITY;
783 }
784 }
785 else {
786 /* (re)start reading and update timeout. Note: we don't recompute the timeout
787 * everytime we get here, otherwise it would risk never to expire. We only
788 * update it if is was not yet set. The stream socket handler will already
789 * have updated it if there has been a completed I/O.
790 */
791 si->flags &= ~SI_FL_WAIT_ROOM;
792 conn_data_want_recv(&si->conn);
793 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
794 ib->rex = tick_add_ifset(now_ms, ib->rto);
795 }
796 }
797
798 /* Check if we need to close the write side */
799 if (!(ob->flags & BF_SHUTW)) {
800 /* Write not closed, update FD status and timeout for writes */
801 if (ob->flags & BF_OUT_EMPTY) {
802 /* stop writing */
803 if (!(si->flags & SI_FL_WAIT_DATA)) {
804 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
805 si->flags |= SI_FL_WAIT_DATA;
806 conn_data_stop_send(&si->conn);
807 ob->wex = TICK_ETERNITY;
808 }
809 }
810 else {
811 /* (re)start writing and update timeout. Note: we don't recompute the timeout
812 * everytime we get here, otherwise it would risk never to expire. We only
813 * update it if is was not yet set. The stream socket handler will already
814 * have updated it if there has been a completed I/O.
815 */
816 si->flags &= ~SI_FL_WAIT_DATA;
817 conn_data_want_send(&si->conn);
818 if (!tick_isset(ob->wex)) {
819 ob->wex = tick_add_ifset(now_ms, ob->wto);
820 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
821 /* Note: depending on the protocol, we don't know if we're waiting
822 * for incoming data or not. So in order to prevent the socket from
823 * expiring read timeouts during writes, we refresh the read timeout,
824 * except if it was already infinite or if we have explicitly setup
825 * independent streams.
826 */
827 ib->rex = tick_add_ifset(now_ms, ib->rto);
828 }
829 }
830 }
831 }
832}
833
Willy Tarreau46a8d922012-08-20 12:38:36 +0200834/* This function is used for inter-stream-interface calls. It is called by the
835 * consumer to inform the producer side that it may be interested in checking
836 * for free space in the buffer. Note that it intentionally does not update
837 * timeouts, so that we can still check them later at wake-up. This function is
838 * dedicated to connection-based stream interfaces.
839 */
840void stream_int_chk_rcv_conn(struct stream_interface *si)
841{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200842 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200843
844 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
845 return;
846
847 if (si->conn.flags & CO_FL_HANDSHAKE) {
848 /* a handshake is in progress */
849 return;
850 }
851
852 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
853 /* stop reading */
854 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
855 si->flags |= SI_FL_WAIT_ROOM;
856 conn_data_stop_recv(&si->conn);
857 }
858 else {
859 /* (re)start reading */
860 si->flags &= ~SI_FL_WAIT_ROOM;
861 conn_data_want_recv(&si->conn);
862 }
863}
864
865
Willy Tarreaude5722c2012-08-20 15:01:10 +0200866/* This function is used for inter-stream-interface calls. It is called by the
867 * producer to inform the consumer side that it may be interested in checking
868 * for data in the buffer. Note that it intentionally does not update timeouts,
869 * so that we can still check them later at wake-up.
870 */
871void stream_int_chk_snd_conn(struct stream_interface *si)
872{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200873 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200874
875 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
876 return;
877
878 /* handshake running on producer */
879 if (si->conn.flags & CO_FL_HANDSHAKE) {
880 /* a handshake is in progress */
881 si->flags &= ~SI_FL_WAIT_DATA;
882 return;
883 }
884
885 if (unlikely((ob->flags & BF_OUT_EMPTY))) /* called with nothing to send ! */
886 return;
887
888 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
889 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
890 (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */
891 return;
892
Willy Tarreau5368d802012-08-21 18:22:06 +0200893 if (si_conn_send_loop(&si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200894 /* Write error on the file descriptor. We mark the FD as STERROR so
895 * that we don't use it anymore and we notify the task.
896 */
897 fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY;
898 conn_data_stop_both(&si->conn);
899 si->flags |= SI_FL_ERR;
900 si->conn.flags |= CO_FL_ERROR;
901 goto out_wakeup;
902 }
903
904 /* OK, so now we know that some data might have been sent, and that we may
905 * have to poll first. We have to do that too if the buffer is not empty.
906 */
907 if (ob->flags & BF_OUT_EMPTY) {
908 /* the connection is established but we can't write. Either the
909 * buffer is empty, or we just refrain from sending because the
910 * ->o limit was reached. Maybe we just wrote the last
911 * chunk and need to close.
912 */
913 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
914 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
915 (si->state == SI_ST_EST)) {
916 si_shutw(si);
917 goto out_wakeup;
918 }
919
920 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
921 si->flags |= SI_FL_WAIT_DATA;
922 ob->wex = TICK_ETERNITY;
923 }
924 else {
925 /* Otherwise there are remaining data to be sent in the buffer,
926 * which means we have to poll before doing so.
927 */
928 conn_data_want_send(&si->conn);
929 si->flags &= ~SI_FL_WAIT_DATA;
930 if (!tick_isset(ob->wex))
931 ob->wex = tick_add_ifset(now_ms, ob->wto);
932 }
933
934 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
935 /* update timeout if we have written something */
936 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
937 ob->wex = tick_add_ifset(now_ms, ob->wto);
938
939 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
940 /* Note: to prevent the client from expiring read timeouts
941 * during writes, we refresh it. We only do this if the
942 * interface is not configured for "independent streams",
943 * because for some applications it's better not to do this,
944 * for instance when continuously exchanging small amounts
945 * of data which can full the socket buffers long before a
946 * write timeout is detected.
947 */
948 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
949 }
950 }
951
952 /* in case of special condition (error, shutdown, end of write...), we
953 * have to notify the task.
954 */
955 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
956 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
957 si->state != SI_ST_EST)) {
958 out_wakeup:
959 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
960 task_wakeup(si->owner, TASK_WOKEN_IO);
961 }
962}
963
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200964/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200965 * This is the callback which is called by the connection layer to receive data
966 * into the buffer from the connection. It iterates over the data layer's rcv_buf
967 * function.
968 */
969void si_conn_recv_cb(struct connection *conn)
970{
971 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
972 struct channel *b = si->ib;
973 int ret, max, cur_read;
974 int read_poll = MAX_READ_POLL_LOOPS;
975
976 /* stop immediately on errors. Note that we DON'T want to stop on
977 * POLL_ERR, as the poller might report a write error while there
978 * are still data available in the recv buffer. This typically
979 * happens when we send too large a request to a backend server
980 * which rejects it before reading it all.
981 */
982 if (conn->flags & CO_FL_ERROR)
983 goto out_error;
984
985 /* stop here if we reached the end of data */
986 if (conn_data_read0_pending(conn))
987 goto out_shutdown_r;
988
989 /* maybe we were called immediately after an asynchronous shutr */
990 if (b->flags & BF_SHUTR)
991 return;
992
Willy Tarreau96199b12012-08-24 00:46:52 +0200993 cur_read = 0;
994 conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM);
995
996 /* First, let's see if we may splice data across the channel without
997 * using a buffer.
998 */
999 if (conn->data->rcv_pipe &&
1000 b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
1001 if (buffer_not_empty(&b->buf)) {
1002 /* We're embarrassed, there are already data pending in
1003 * the buffer and we don't want to have them at two
1004 * locations at a time. Let's indicate we need some
1005 * place and ask the consumer to hurry.
1006 */
1007 goto abort_splice;
1008 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001009
Willy Tarreau96199b12012-08-24 00:46:52 +02001010 if (unlikely(b->pipe == NULL)) {
1011 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
1012 b->flags &= ~BF_KERN_SPLICING;
1013 goto abort_splice;
1014 }
1015 }
1016
1017 ret = conn->data->rcv_pipe(conn, b->pipe, b->to_forward);
1018 if (ret < 0) {
1019 /* splice not supported on this end, let's disable it */
1020 b->flags &= ~BF_KERN_SPLICING;
1021 si->flags &= ~SI_FL_CAP_SPLICE;
1022 goto abort_splice;
1023 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001024
Willy Tarreau96199b12012-08-24 00:46:52 +02001025 if (ret > 0) {
1026 if (b->to_forward != BUF_INFINITE_FORWARD)
1027 b->to_forward -= ret;
1028 b->total += ret;
1029 cur_read += ret;
1030 b->flags |= BF_READ_PARTIAL;
1031 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreauce323de2012-08-20 21:41:06 +02001032 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001033
1034 if (conn_data_read0_pending(conn))
1035 goto out_shutdown_r;
1036
1037 if (conn->flags & CO_FL_ERROR)
1038 goto out_error;
1039
Willy Tarreauce323de2012-08-20 21:41:06 +02001040 /* splice not possible (anymore), let's go on on standard copy */
1041 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001042
1043 abort_splice:
1044 /* release the pipe if we can, which is almost always the case */
1045 if (b->pipe && !b->pipe->data) {
1046 put_pipe(b->pipe);
1047 b->pipe = NULL;
1048 }
1049
1050 while (!b->pipe && !(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001051 max = bi_avail(b);
1052
1053 if (!max) {
1054 b->flags |= BF_FULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001055 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001056 break;
1057 }
1058
1059 ret = conn->data->rcv_buf(conn, &b->buf, max);
1060 if (ret <= 0)
1061 break;
1062
1063 cur_read += ret;
1064
1065 /* if we're allowed to directly forward data, we must update ->o */
1066 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
1067 unsigned long fwd = ret;
1068 if (b->to_forward != BUF_INFINITE_FORWARD) {
1069 if (fwd > b->to_forward)
1070 fwd = b->to_forward;
1071 b->to_forward -= fwd;
1072 }
1073 b_adv(b, fwd);
1074 }
1075
1076 if (conn->flags & CO_FL_WAIT_L4_CONN)
1077 conn->flags &= ~CO_FL_WAIT_L4_CONN;
1078
1079 b->flags |= BF_READ_PARTIAL;
1080 b->total += ret;
1081
1082 if (bi_full(b)) {
1083 /* The buffer is now full, there's no point in going through
1084 * the loop again.
1085 */
1086 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(&b->buf))) {
1087 b->xfer_small = 0;
1088 b->xfer_large++;
1089 if (b->xfer_large >= 3) {
1090 /* we call this buffer a fast streamer if it manages
1091 * to be filled in one call 3 consecutive times.
1092 */
1093 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
1094 //fputc('+', stderr);
1095 }
1096 }
1097 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
1098 (cur_read <= b->buf.size / 2)) {
1099 b->xfer_large = 0;
1100 b->xfer_small++;
1101 if (b->xfer_small >= 2) {
1102 /* if the buffer has been at least half full twice,
1103 * we receive faster than we send, so at least it
1104 * is not a "fast streamer".
1105 */
1106 b->flags &= ~BF_STREAMER_FAST;
1107 //fputc('-', stderr);
1108 }
1109 }
1110 else {
1111 b->xfer_small = 0;
1112 b->xfer_large = 0;
1113 }
1114
1115 b->flags |= BF_FULL;
1116 si->flags |= SI_FL_WAIT_ROOM;
1117 break;
1118 }
1119
1120 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
1121 break;
1122
1123 /* if too many bytes were missing from last read, it means that
1124 * it's pointless trying to read again because the system does
1125 * not have them in buffers.
1126 */
1127 if (ret < max) {
1128 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
1129 (cur_read <= b->buf.size / 2)) {
1130 b->xfer_large = 0;
1131 b->xfer_small++;
1132 if (b->xfer_small >= 3) {
1133 /* we have read less than half of the buffer in
1134 * one pass, and this happened at least 3 times.
1135 * This is definitely not a streamer.
1136 */
1137 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
1138 //fputc('!', stderr);
1139 }
1140 }
1141
1142 /* if a streamer has read few data, it may be because we
1143 * have exhausted system buffers. It's not worth trying
1144 * again.
1145 */
1146 if (b->flags & BF_STREAMER)
1147 break;
1148
1149 /* if we read a large block smaller than what we requested,
1150 * it's almost certain we'll never get anything more.
1151 */
1152 if (ret >= global.tune.recv_enough)
1153 break;
1154 }
1155 } /* while !flags */
1156
Willy Tarreau96199b12012-08-24 00:46:52 +02001157 if (conn->flags & CO_FL_ERROR)
1158 goto out_error;
1159
1160 if (conn->flags & CO_FL_WAIT_ROOM) {
1161 /* We might have some data the consumer is waiting for.
1162 * We can do fast-forwarding, but we avoid doing this for partial
1163 * buffers, because it is very likely that it will be done again
1164 * immediately afterwards once the following data is parsed (eg:
1165 * HTTP chunking).
1166 */
1167 if (((b->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
1168 (b->pipe /* always try to send spliced data */ ||
1169 (b->buf.i == 0 && (b->cons->flags & SI_FL_WAIT_DATA)))) {
1170 int last_len = b->pipe ? b->pipe->data : 0;
1171
1172 si_chk_snd(b->cons);
1173
1174 /* check if the consumer has freed some space */
1175 if (!(b->flags & BF_FULL) &&
1176 (!last_len || !b->pipe || b->pipe->data < last_len))
1177 si->flags &= ~SI_FL_WAIT_ROOM;
1178 }
1179
1180 if (si->flags & SI_FL_WAIT_ROOM) {
1181 conn_data_stop_recv(conn);
1182 b->rex = TICK_ETERNITY;
1183 }
1184 else if ((b->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL) {
1185 if (tick_isset(b->rex))
1186 b->rex = tick_add_ifset(now_ms, b->rto);
1187 }
1188 }
1189 else if (conn->flags & CO_FL_WAIT_DATA) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001190 /* we don't automatically ask for polling if we have
1191 * read enough data, as it saves some syscalls with
1192 * speculative pollers.
1193 */
1194 if (cur_read < MIN_RET_FOR_READ_LOOP)
1195 __conn_data_poll_recv(conn);
1196 else
1197 __conn_data_want_recv(conn);
1198 }
1199
Willy Tarreauce323de2012-08-20 21:41:06 +02001200 if (conn_data_read0_pending(conn))
1201 /* connection closed */
1202 goto out_shutdown_r;
1203
1204 return;
1205
1206 out_shutdown_r:
1207 /* we received a shutdown */
1208 b->flags |= BF_READ_NULL;
1209 if (b->flags & BF_AUTO_CLOSE)
1210 buffer_shutw_now(b);
1211 stream_sock_read0(si);
1212 conn_data_read0(conn);
1213 return;
1214
1215 out_error:
1216 /* Read error on the connection, report the error and stop I/O */
1217 conn->flags |= CO_FL_ERROR;
1218 conn_data_stop_both(conn);
1219}
1220
1221/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001222 * This is the callback which is called by the connection layer to send data
1223 * from the buffer to the connection. It iterates over the data layer's snd_buf
1224 * function.
1225 */
1226void si_conn_send_cb(struct connection *conn)
1227{
1228 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau7421efb2012-07-02 15:11:27 +02001229 struct channel *b = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001230
1231 if (conn->flags & CO_FL_ERROR)
1232 goto out_error;
1233
1234 if (si->conn.flags & CO_FL_HANDSHAKE)
1235 /* a handshake was requested */
1236 return;
1237
1238 /* we might have been called just after an asynchronous shutw */
1239 if (b->flags & BF_SHUTW)
1240 return;
1241
1242 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001243 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001244 goto out_error;
1245
1246 /* OK all done */
1247 return;
1248
1249 out_error:
1250 /* Write error on the connection, report the error and stop I/O */
1251 conn->flags |= CO_FL_ERROR;
1252 conn_data_stop_both(conn);
1253}
1254
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001255/*
1256 * This function propagates a null read received on a socket-based connection.
1257 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1258 * the close is also forwarded to the write side as an abort. This function is
1259 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1260 * state on the socket.
1261 */
1262void stream_sock_read0(struct stream_interface *si)
1263{
1264 si->ib->flags &= ~BF_SHUTR_NOW;
1265 if (si->ib->flags & BF_SHUTR)
1266 return;
1267 si->ib->flags |= BF_SHUTR;
1268 si->ib->rex = TICK_ETERNITY;
1269 si->flags &= ~SI_FL_WAIT_ROOM;
1270
1271 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1272 return;
1273
1274 if (si->ob->flags & BF_SHUTW)
1275 goto do_close;
1276
1277 if (si->flags & SI_FL_NOHALF) {
1278 /* we want to immediately forward this close to the write side */
1279 if (si->flags & SI_FL_NOLINGER) {
1280 si->flags &= ~SI_FL_NOLINGER;
1281 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
1282 (struct linger *) &nolinger, sizeof(struct linger));
1283 }
1284 /* force flag on ssl to keep session in cache */
1285 if (si->conn.data->shutw)
1286 si->conn.data->shutw(&si->conn, 0);
1287 goto do_close;
1288 }
1289
1290 /* otherwise that's just a normal read shutdown */
1291 conn_data_stop_recv(&si->conn);
1292 return;
1293
1294 do_close:
1295 conn_data_close(&si->conn);
1296 fd_delete(si_fd(si));
1297 si->state = SI_ST_DIS;
1298 si->exp = TICK_ETERNITY;
1299 if (si->release)
1300 si->release(si);
1301 return;
1302}
1303
Willy Tarreaude5722c2012-08-20 15:01:10 +02001304
Willy Tarreaudded32d2008-11-30 19:48:07 +01001305/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001306 * Local variables:
1307 * c-indent-level: 8
1308 * c-basic-offset: 8
1309 * End:
1310 */