blob: c763707f024c573c98c0393d5a57db3007592c0d [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
Willy Tarreaua1a74742012-08-24 12:14:49 +0200479 * flags (the bit is provided in <flag> by the caller). It is designed to be
480 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200481 */
482int conn_si_send_proxy(struct connection *conn, unsigned int flag)
483{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200484 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200485
486 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200487 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200488 goto out_error;
489
490 /* If we have a PROXY line to send, we'll use this to validate the
491 * connection, in which case the connection is validated only once
492 * we've sent the whole proxy line. Otherwise we use connect().
493 */
494 if (si->send_proxy_ofs) {
495 int ret;
496
497 /* The target server expects a PROXY line to be sent first.
498 * If the send_proxy_ofs is negative, it corresponds to the
499 * offset to start sending from then end of the proxy string
500 * (which is recomputed every time since it's constant). If
501 * it is positive, it means we have to send from the start.
502 */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200503 ret = make_proxy_line(trash, trashlen, &si->ob->prod->addr.from, &si->ob->prod->addr.to);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200504 if (!ret)
505 goto out_error;
506
507 if (si->send_proxy_ofs > 0)
508 si->send_proxy_ofs = -ret; /* first call */
509
Willy Tarreaua1a74742012-08-24 12:14:49 +0200510 /* we have to send trash from (ret+sp for -sp bytes). If the
511 * data layer has a pending write, we'll also set MSG_MORE.
512 */
513 ret = send(conn->t.sock.fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
514 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200515
516 if (ret == 0)
517 goto out_wait;
518
519 if (ret < 0) {
520 if (errno == EAGAIN)
521 goto out_wait;
522 goto out_error;
523 }
524
525 si->send_proxy_ofs += ret; /* becomes zero once complete */
526 if (si->send_proxy_ofs != 0)
527 goto out_wait;
528
529 /* OK we've sent the whole line, we're connected */
530 }
531
Willy Tarreaua1a74742012-08-24 12:14:49 +0200532 /* The connection is ready now, simply return and let the connection
533 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200534 */
535 if (conn->flags & CO_FL_WAIT_L4_CONN)
536 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200537 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200538 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200539
540 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200541 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200542 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200543 conn->flags &= ~flag;
Willy Tarreaua1a74742012-08-24 12:14:49 +0200544 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200545 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200546
547 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200548 __conn_sock_stop_recv(conn);
549 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200550 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200551}
552
Willy Tarreau100c4672012-08-20 12:06:26 +0200553/* Callback to be used by connection I/O handlers upon completion. It differs from
554 * the function below in that it is designed to be called by lower layers after I/O
555 * events have been completed. It will also try to wake the associated task up if
556 * an important event requires special handling.
557 */
558void conn_notify_si(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200559{
Willy Tarreaufd31e532012-07-23 18:24:25 +0200560 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
561
562 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
563 __FUNCTION__,
564 si, si->state, si->ib->flags, si->ob->flags);
565
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200566 if (conn->flags & CO_FL_ERROR)
567 si->flags |= SI_FL_ERR;
568
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200569 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200570 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200571 si->exp = TICK_ETERNITY;
572 si->ob->flags |= BF_WRITE_NULL;
573 }
574
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200575 /* process consumer side */
576 if (si->ob->flags & BF_OUT_EMPTY) {
577 if (((si->ob->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
578 (si->state == SI_ST_EST))
579 stream_int_shutw(si);
580 if (conn->flags & CO_FL_DATA_WR_ENA)
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200581 conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200582 si->ob->wex = TICK_ETERNITY;
583 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200584
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200585 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
586 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200587
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200588 if (si->ob->flags & BF_WRITE_ACTIVITY) {
589 /* update timeouts if we have written something */
590 if ((si->ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
591 if (tick_isset(si->ob->wex))
592 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200593
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200594 if (!(si->flags & SI_FL_INDEP_STR))
595 if (tick_isset(si->ib->rex))
596 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200597
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200598 if (likely((si->ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
599 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
600 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200601 }
602
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200603 /* process producer side.
604 * We might have some data the consumer is waiting for.
605 * We can do fast-forwarding, but we avoid doing this for partial
606 * buffers, because it is very likely that it will be done again
607 * immediately afterwards once the following data is parsed (eg:
608 * HTTP chunking).
609 */
610 if (((si->ib->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
611 (si->ib->pipe /* always try to send spliced data */ ||
612 (si->ib->buf.i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
613 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200614
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200615 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200616
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200617 /* check if the consumer has freed some space either in the
618 * buffer or in the pipe.
619 */
620 if (!(si->ib->flags & BF_FULL) &&
621 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
622 si->flags &= ~SI_FL_WAIT_ROOM;
623 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200624
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200625 if (si->flags & SI_FL_WAIT_ROOM) {
626 conn_data_stop_recv(conn);
627 si->ib->rex = TICK_ETERNITY;
628 }
629 else if ((si->ib->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL) {
630 if (tick_isset(si->ib->rex))
631 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200632 }
633
634 /* wake the task up only when needed */
635 if (/* changes on the production side */
636 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
637 si->state != SI_ST_EST ||
638 (si->flags & SI_FL_ERR) ||
639 ((si->ib->flags & BF_READ_PARTIAL) &&
640 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
641
642 /* changes on the consumption side */
643 (si->ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR)) ||
644 ((si->ob->flags & BF_WRITE_ACTIVITY) &&
645 ((si->ob->flags & BF_SHUTW) ||
646 si->ob->prod->state != SI_ST_EST ||
647 ((si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward)))) {
648 task_wakeup(si->owner, TASK_WOKEN_IO);
649 }
650 if (si->ib->flags & BF_READ_ACTIVITY)
651 si->ib->flags &= ~BF_READ_DONTWAIT;
652}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200653
Willy Tarreau5368d802012-08-21 18:22:06 +0200654/*
655 * This function is called to send buffer data to a stream socket.
656 * It returns -1 in case of unrecoverable error, otherwise zero.
657 * It iterates the data layer's snd_buf function.
658 */
659static int si_conn_send_loop(struct connection *conn)
660{
661 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
662 struct channel *b = si->ob;
663 int write_poll = MAX_WRITE_POLL_LOOPS;
664 int ret;
665
Willy Tarreau96199b12012-08-24 00:46:52 +0200666 conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM);
Willy Tarreau5368d802012-08-21 18:22:06 +0200667
Willy Tarreau96199b12012-08-24 00:46:52 +0200668 if (b->pipe && conn->data->snd_pipe) {
669 ret = conn->data->snd_pipe(conn, b->pipe);
670 if (ret > 0)
671 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200672
673 if (!b->pipe->data) {
674 put_pipe(b->pipe);
675 b->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200676 }
677
Willy Tarreau96199b12012-08-24 00:46:52 +0200678 if (conn->flags & CO_FL_ERROR)
679 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200680
Willy Tarreau96199b12012-08-24 00:46:52 +0200681 if (conn->flags & CO_FL_WAIT_ROOM) {
682 conn_data_poll_send(conn);
683 return 0;
684 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200685 }
686
687 /* At this point, the pipe is empty, but we may still have data pending
688 * in the normal buffer.
689 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200690 if (!b->buf.o) {
691 b->flags |= BF_OUT_EMPTY;
692 return 0;
693 }
694
695 /* when we're in this loop, we already know that there is no spliced
696 * data left, and that there are sendable buffered data.
697 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200698 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))) {
699 /* check if we want to inform the kernel that we're interested in
700 * sending more data after this call. We want this if :
701 * - we're about to close after this last send and want to merge
702 * the ongoing FIN with the last segment.
703 * - we know we can't send everything at once and must get back
704 * here because of unaligned data
705 * - there is still a finite amount of data to forward
706 * The test is arranged so that the most common case does only 2
707 * tests.
708 */
709 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
710
711 if ((!(b->flags & (BF_NEVER_WAIT|BF_SEND_DONTWAIT)) &&
712 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
713 (b->flags & BF_EXPECT_MORE))) ||
714 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW))
715 send_flag |= MSG_MORE;
716
717 ret = conn->data->snd_buf(conn, &b->buf, send_flag);
718 if (ret <= 0)
719 break;
720
721 if (si->conn.flags & CO_FL_WAIT_L4_CONN)
722 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
723
724 b->flags |= BF_WRITE_PARTIAL;
725
726 if (likely(!bi_full(b)))
727 b->flags &= ~BF_FULL;
728
729 if (!b->buf.o) {
730 /* Always clear both flags once everything has been sent, they're one-shot */
731 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
732 if (likely(!b->pipe))
733 b->flags |= BF_OUT_EMPTY;
734 break;
735 }
736
737 if (--write_poll <= 0)
738 break;
739 } /* while */
740
741 if (conn->flags & CO_FL_ERROR)
742 return -1;
743
744 if (conn->flags & CO_FL_WAIT_ROOM) {
745 /* we need to poll before going on */
746 conn_data_poll_send(&si->conn);
747 return 0;
748 }
749 return 0;
750}
751
752
Willy Tarreau100c4672012-08-20 12:06:26 +0200753/* Updates the timers and flags of a stream interface attached to a connection,
754 * depending on the buffers' flags. It should only be called once after the
755 * buffer flags have settled down, and before they are cleared. It doesn't
756 * harm to call it as often as desired (it just slightly hurts performance).
757 * It is only meant to be called by upper layers after buffer flags have been
758 * manipulated by analysers.
759 */
760void stream_int_update_conn(struct stream_interface *si)
761{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200762 struct channel *ib = si->ib;
763 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200764
765 if (si->conn.flags & CO_FL_HANDSHAKE) {
766 /* a handshake is in progress */
767 si->flags &= ~SI_FL_WAIT_DATA;
768 return;
769 }
770
771 /* Check if we need to close the read side */
772 if (!(ib->flags & BF_SHUTR)) {
773 /* Read not closed, update FD status and timeout for reads */
774 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
775 /* stop reading */
776 if (!(si->flags & SI_FL_WAIT_ROOM)) {
777 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
778 si->flags |= SI_FL_WAIT_ROOM;
779 conn_data_stop_recv(&si->conn);
780 ib->rex = TICK_ETERNITY;
781 }
782 }
783 else {
784 /* (re)start reading and update timeout. Note: we don't recompute the timeout
785 * everytime we get here, otherwise it would risk never to expire. We only
786 * update it if is was not yet set. The stream socket handler will already
787 * have updated it if there has been a completed I/O.
788 */
789 si->flags &= ~SI_FL_WAIT_ROOM;
790 conn_data_want_recv(&si->conn);
791 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
792 ib->rex = tick_add_ifset(now_ms, ib->rto);
793 }
794 }
795
796 /* Check if we need to close the write side */
797 if (!(ob->flags & BF_SHUTW)) {
798 /* Write not closed, update FD status and timeout for writes */
799 if (ob->flags & BF_OUT_EMPTY) {
800 /* stop writing */
801 if (!(si->flags & SI_FL_WAIT_DATA)) {
802 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
803 si->flags |= SI_FL_WAIT_DATA;
804 conn_data_stop_send(&si->conn);
805 ob->wex = TICK_ETERNITY;
806 }
807 }
808 else {
809 /* (re)start writing and update timeout. Note: we don't recompute the timeout
810 * everytime we get here, otherwise it would risk never to expire. We only
811 * update it if is was not yet set. The stream socket handler will already
812 * have updated it if there has been a completed I/O.
813 */
814 si->flags &= ~SI_FL_WAIT_DATA;
815 conn_data_want_send(&si->conn);
816 if (!tick_isset(ob->wex)) {
817 ob->wex = tick_add_ifset(now_ms, ob->wto);
818 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
819 /* Note: depending on the protocol, we don't know if we're waiting
820 * for incoming data or not. So in order to prevent the socket from
821 * expiring read timeouts during writes, we refresh the read timeout,
822 * except if it was already infinite or if we have explicitly setup
823 * independent streams.
824 */
825 ib->rex = tick_add_ifset(now_ms, ib->rto);
826 }
827 }
828 }
829 }
830}
831
Willy Tarreau46a8d922012-08-20 12:38:36 +0200832/* This function is used for inter-stream-interface calls. It is called by the
833 * consumer to inform the producer side that it may be interested in checking
834 * for free space in the buffer. Note that it intentionally does not update
835 * timeouts, so that we can still check them later at wake-up. This function is
836 * dedicated to connection-based stream interfaces.
837 */
838void stream_int_chk_rcv_conn(struct stream_interface *si)
839{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200840 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200841
842 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
843 return;
844
845 if (si->conn.flags & CO_FL_HANDSHAKE) {
846 /* a handshake is in progress */
847 return;
848 }
849
850 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
851 /* stop reading */
852 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
853 si->flags |= SI_FL_WAIT_ROOM;
854 conn_data_stop_recv(&si->conn);
855 }
856 else {
857 /* (re)start reading */
858 si->flags &= ~SI_FL_WAIT_ROOM;
859 conn_data_want_recv(&si->conn);
860 }
861}
862
863
Willy Tarreaude5722c2012-08-20 15:01:10 +0200864/* This function is used for inter-stream-interface calls. It is called by the
865 * producer to inform the consumer side that it may be interested in checking
866 * for data in the buffer. Note that it intentionally does not update timeouts,
867 * so that we can still check them later at wake-up.
868 */
869void stream_int_chk_snd_conn(struct stream_interface *si)
870{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200871 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200872
873 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
874 return;
875
876 /* handshake running on producer */
877 if (si->conn.flags & CO_FL_HANDSHAKE) {
878 /* a handshake is in progress */
879 si->flags &= ~SI_FL_WAIT_DATA;
880 return;
881 }
882
883 if (unlikely((ob->flags & BF_OUT_EMPTY))) /* called with nothing to send ! */
884 return;
885
886 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
887 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
888 (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */
889 return;
890
Willy Tarreau5368d802012-08-21 18:22:06 +0200891 if (si_conn_send_loop(&si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200892 /* Write error on the file descriptor. We mark the FD as STERROR so
893 * that we don't use it anymore and we notify the task.
894 */
895 fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY;
896 conn_data_stop_both(&si->conn);
897 si->flags |= SI_FL_ERR;
898 si->conn.flags |= CO_FL_ERROR;
899 goto out_wakeup;
900 }
901
902 /* OK, so now we know that some data might have been sent, and that we may
903 * have to poll first. We have to do that too if the buffer is not empty.
904 */
905 if (ob->flags & BF_OUT_EMPTY) {
906 /* the connection is established but we can't write. Either the
907 * buffer is empty, or we just refrain from sending because the
908 * ->o limit was reached. Maybe we just wrote the last
909 * chunk and need to close.
910 */
911 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
912 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
913 (si->state == SI_ST_EST)) {
914 si_shutw(si);
915 goto out_wakeup;
916 }
917
918 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
919 si->flags |= SI_FL_WAIT_DATA;
920 ob->wex = TICK_ETERNITY;
921 }
922 else {
923 /* Otherwise there are remaining data to be sent in the buffer,
924 * which means we have to poll before doing so.
925 */
926 conn_data_want_send(&si->conn);
927 si->flags &= ~SI_FL_WAIT_DATA;
928 if (!tick_isset(ob->wex))
929 ob->wex = tick_add_ifset(now_ms, ob->wto);
930 }
931
932 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
933 /* update timeout if we have written something */
934 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
935 ob->wex = tick_add_ifset(now_ms, ob->wto);
936
937 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
938 /* Note: to prevent the client from expiring read timeouts
939 * during writes, we refresh it. We only do this if the
940 * interface is not configured for "independent streams",
941 * because for some applications it's better not to do this,
942 * for instance when continuously exchanging small amounts
943 * of data which can full the socket buffers long before a
944 * write timeout is detected.
945 */
946 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
947 }
948 }
949
950 /* in case of special condition (error, shutdown, end of write...), we
951 * have to notify the task.
952 */
953 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
954 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
955 si->state != SI_ST_EST)) {
956 out_wakeup:
957 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
958 task_wakeup(si->owner, TASK_WOKEN_IO);
959 }
960}
961
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200962/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200963 * This is the callback which is called by the connection layer to receive data
964 * into the buffer from the connection. It iterates over the data layer's rcv_buf
965 * function.
966 */
967void si_conn_recv_cb(struct connection *conn)
968{
969 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
970 struct channel *b = si->ib;
971 int ret, max, cur_read;
972 int read_poll = MAX_READ_POLL_LOOPS;
973
974 /* stop immediately on errors. Note that we DON'T want to stop on
975 * POLL_ERR, as the poller might report a write error while there
976 * are still data available in the recv buffer. This typically
977 * happens when we send too large a request to a backend server
978 * which rejects it before reading it all.
979 */
980 if (conn->flags & CO_FL_ERROR)
981 goto out_error;
982
983 /* stop here if we reached the end of data */
984 if (conn_data_read0_pending(conn))
985 goto out_shutdown_r;
986
987 /* maybe we were called immediately after an asynchronous shutr */
988 if (b->flags & BF_SHUTR)
989 return;
990
Willy Tarreau96199b12012-08-24 00:46:52 +0200991 cur_read = 0;
992 conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM);
993
994 /* First, let's see if we may splice data across the channel without
995 * using a buffer.
996 */
997 if (conn->data->rcv_pipe &&
998 b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
999 if (buffer_not_empty(&b->buf)) {
1000 /* We're embarrassed, there are already data pending in
1001 * the buffer and we don't want to have them at two
1002 * locations at a time. Let's indicate we need some
1003 * place and ask the consumer to hurry.
1004 */
1005 goto abort_splice;
1006 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001007
Willy Tarreau96199b12012-08-24 00:46:52 +02001008 if (unlikely(b->pipe == NULL)) {
1009 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
1010 b->flags &= ~BF_KERN_SPLICING;
1011 goto abort_splice;
1012 }
1013 }
1014
1015 ret = conn->data->rcv_pipe(conn, b->pipe, b->to_forward);
1016 if (ret < 0) {
1017 /* splice not supported on this end, let's disable it */
1018 b->flags &= ~BF_KERN_SPLICING;
1019 si->flags &= ~SI_FL_CAP_SPLICE;
1020 goto abort_splice;
1021 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001022
Willy Tarreau96199b12012-08-24 00:46:52 +02001023 if (ret > 0) {
1024 if (b->to_forward != BUF_INFINITE_FORWARD)
1025 b->to_forward -= ret;
1026 b->total += ret;
1027 cur_read += ret;
1028 b->flags |= BF_READ_PARTIAL;
1029 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreauce323de2012-08-20 21:41:06 +02001030 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001031
1032 if (conn_data_read0_pending(conn))
1033 goto out_shutdown_r;
1034
1035 if (conn->flags & CO_FL_ERROR)
1036 goto out_error;
1037
Willy Tarreauce323de2012-08-20 21:41:06 +02001038 /* splice not possible (anymore), let's go on on standard copy */
1039 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001040
1041 abort_splice:
1042 /* release the pipe if we can, which is almost always the case */
1043 if (b->pipe && !b->pipe->data) {
1044 put_pipe(b->pipe);
1045 b->pipe = NULL;
1046 }
1047
1048 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 +02001049 max = bi_avail(b);
1050
1051 if (!max) {
1052 b->flags |= BF_FULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001053 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001054 break;
1055 }
1056
1057 ret = conn->data->rcv_buf(conn, &b->buf, max);
1058 if (ret <= 0)
1059 break;
1060
1061 cur_read += ret;
1062
1063 /* if we're allowed to directly forward data, we must update ->o */
1064 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
1065 unsigned long fwd = ret;
1066 if (b->to_forward != BUF_INFINITE_FORWARD) {
1067 if (fwd > b->to_forward)
1068 fwd = b->to_forward;
1069 b->to_forward -= fwd;
1070 }
1071 b_adv(b, fwd);
1072 }
1073
1074 if (conn->flags & CO_FL_WAIT_L4_CONN)
1075 conn->flags &= ~CO_FL_WAIT_L4_CONN;
1076
1077 b->flags |= BF_READ_PARTIAL;
1078 b->total += ret;
1079
1080 if (bi_full(b)) {
1081 /* The buffer is now full, there's no point in going through
1082 * the loop again.
1083 */
1084 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(&b->buf))) {
1085 b->xfer_small = 0;
1086 b->xfer_large++;
1087 if (b->xfer_large >= 3) {
1088 /* we call this buffer a fast streamer if it manages
1089 * to be filled in one call 3 consecutive times.
1090 */
1091 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
1092 //fputc('+', stderr);
1093 }
1094 }
1095 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
1096 (cur_read <= b->buf.size / 2)) {
1097 b->xfer_large = 0;
1098 b->xfer_small++;
1099 if (b->xfer_small >= 2) {
1100 /* if the buffer has been at least half full twice,
1101 * we receive faster than we send, so at least it
1102 * is not a "fast streamer".
1103 */
1104 b->flags &= ~BF_STREAMER_FAST;
1105 //fputc('-', stderr);
1106 }
1107 }
1108 else {
1109 b->xfer_small = 0;
1110 b->xfer_large = 0;
1111 }
1112
1113 b->flags |= BF_FULL;
1114 si->flags |= SI_FL_WAIT_ROOM;
1115 break;
1116 }
1117
1118 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
1119 break;
1120
1121 /* if too many bytes were missing from last read, it means that
1122 * it's pointless trying to read again because the system does
1123 * not have them in buffers.
1124 */
1125 if (ret < max) {
1126 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
1127 (cur_read <= b->buf.size / 2)) {
1128 b->xfer_large = 0;
1129 b->xfer_small++;
1130 if (b->xfer_small >= 3) {
1131 /* we have read less than half of the buffer in
1132 * one pass, and this happened at least 3 times.
1133 * This is definitely not a streamer.
1134 */
1135 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
1136 //fputc('!', stderr);
1137 }
1138 }
1139
1140 /* if a streamer has read few data, it may be because we
1141 * have exhausted system buffers. It's not worth trying
1142 * again.
1143 */
1144 if (b->flags & BF_STREAMER)
1145 break;
1146
1147 /* if we read a large block smaller than what we requested,
1148 * it's almost certain we'll never get anything more.
1149 */
1150 if (ret >= global.tune.recv_enough)
1151 break;
1152 }
1153 } /* while !flags */
1154
Willy Tarreau96199b12012-08-24 00:46:52 +02001155 if (conn->flags & CO_FL_ERROR)
1156 goto out_error;
1157
1158 if (conn->flags & CO_FL_WAIT_ROOM) {
1159 /* We might have some data the consumer is waiting for.
1160 * We can do fast-forwarding, but we avoid doing this for partial
1161 * buffers, because it is very likely that it will be done again
1162 * immediately afterwards once the following data is parsed (eg:
1163 * HTTP chunking).
1164 */
1165 if (((b->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
1166 (b->pipe /* always try to send spliced data */ ||
1167 (b->buf.i == 0 && (b->cons->flags & SI_FL_WAIT_DATA)))) {
1168 int last_len = b->pipe ? b->pipe->data : 0;
1169
1170 si_chk_snd(b->cons);
1171
1172 /* check if the consumer has freed some space */
1173 if (!(b->flags & BF_FULL) &&
1174 (!last_len || !b->pipe || b->pipe->data < last_len))
1175 si->flags &= ~SI_FL_WAIT_ROOM;
1176 }
1177
1178 if (si->flags & SI_FL_WAIT_ROOM) {
1179 conn_data_stop_recv(conn);
1180 b->rex = TICK_ETERNITY;
1181 }
1182 else if ((b->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL) {
1183 if (tick_isset(b->rex))
1184 b->rex = tick_add_ifset(now_ms, b->rto);
1185 }
1186 }
1187 else if (conn->flags & CO_FL_WAIT_DATA) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001188 /* we don't automatically ask for polling if we have
1189 * read enough data, as it saves some syscalls with
1190 * speculative pollers.
1191 */
1192 if (cur_read < MIN_RET_FOR_READ_LOOP)
1193 __conn_data_poll_recv(conn);
1194 else
1195 __conn_data_want_recv(conn);
1196 }
1197
Willy Tarreauce323de2012-08-20 21:41:06 +02001198 if (conn_data_read0_pending(conn))
1199 /* connection closed */
1200 goto out_shutdown_r;
1201
1202 return;
1203
1204 out_shutdown_r:
1205 /* we received a shutdown */
1206 b->flags |= BF_READ_NULL;
1207 if (b->flags & BF_AUTO_CLOSE)
1208 buffer_shutw_now(b);
1209 stream_sock_read0(si);
1210 conn_data_read0(conn);
1211 return;
1212
1213 out_error:
1214 /* Read error on the connection, report the error and stop I/O */
1215 conn->flags |= CO_FL_ERROR;
1216 conn_data_stop_both(conn);
1217}
1218
1219/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001220 * This is the callback which is called by the connection layer to send data
1221 * from the buffer to the connection. It iterates over the data layer's snd_buf
1222 * function.
1223 */
1224void si_conn_send_cb(struct connection *conn)
1225{
1226 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau7421efb2012-07-02 15:11:27 +02001227 struct channel *b = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001228
1229 if (conn->flags & CO_FL_ERROR)
1230 goto out_error;
1231
1232 if (si->conn.flags & CO_FL_HANDSHAKE)
1233 /* a handshake was requested */
1234 return;
1235
1236 /* we might have been called just after an asynchronous shutw */
1237 if (b->flags & BF_SHUTW)
1238 return;
1239
1240 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001241 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001242 goto out_error;
1243
1244 /* OK all done */
1245 return;
1246
1247 out_error:
1248 /* Write error on the connection, report the error and stop I/O */
1249 conn->flags |= CO_FL_ERROR;
1250 conn_data_stop_both(conn);
1251}
1252
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001253/*
1254 * This function propagates a null read received on a socket-based connection.
1255 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1256 * the close is also forwarded to the write side as an abort. This function is
1257 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1258 * state on the socket.
1259 */
1260void stream_sock_read0(struct stream_interface *si)
1261{
1262 si->ib->flags &= ~BF_SHUTR_NOW;
1263 if (si->ib->flags & BF_SHUTR)
1264 return;
1265 si->ib->flags |= BF_SHUTR;
1266 si->ib->rex = TICK_ETERNITY;
1267 si->flags &= ~SI_FL_WAIT_ROOM;
1268
1269 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1270 return;
1271
1272 if (si->ob->flags & BF_SHUTW)
1273 goto do_close;
1274
1275 if (si->flags & SI_FL_NOHALF) {
1276 /* we want to immediately forward this close to the write side */
1277 if (si->flags & SI_FL_NOLINGER) {
1278 si->flags &= ~SI_FL_NOLINGER;
1279 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
1280 (struct linger *) &nolinger, sizeof(struct linger));
1281 }
1282 /* force flag on ssl to keep session in cache */
1283 if (si->conn.data->shutw)
1284 si->conn.data->shutw(&si->conn, 0);
1285 goto do_close;
1286 }
1287
1288 /* otherwise that's just a normal read shutdown */
1289 conn_data_stop_recv(&si->conn);
1290 return;
1291
1292 do_close:
1293 conn_data_close(&si->conn);
1294 fd_delete(si_fd(si));
1295 si->state = SI_ST_DIS;
1296 si->exp = TICK_ETERNITY;
1297 if (si->release)
1298 si->release(si);
1299 return;
1300}
1301
Willy Tarreaude5722c2012-08-20 15:01:10 +02001302
Willy Tarreaudded32d2008-11-30 19:48:07 +01001303/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001304 * Local variables:
1305 * c-indent-level: 8
1306 * c-basic-offset: 8
1307 * End:
1308 */