blob: fe80b91c1db418b274e90dc55494a2930db23530 [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
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <proto/channel.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);
Willy Tarreauc5788912012-08-24 18:12:41 +020044static void stream_int_update_conn(struct stream_interface *si);
45static void stream_int_chk_rcv_conn(struct stream_interface *si);
46static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020047
Willy Tarreauc5788912012-08-24 18:12:41 +020048/* stream-interface operations for embedded tasks */
49struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020050 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020051 .chk_rcv = stream_int_chk_rcv,
52 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020053};
54
Willy Tarreauc5788912012-08-24 18:12:41 +020055/* stream-interface operations for external tasks */
56struct si_ops si_task_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020057 .update = stream_int_update,
Willy Tarreau5c979a92012-05-07 17:15:39 +020058 .chk_rcv = stream_int_chk_rcv,
59 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020060};
61
Willy Tarreauc5788912012-08-24 18:12:41 +020062/* stream-interface operations for connections */
63struct si_ops si_conn_ops = {
64 .update = stream_int_update_conn,
65 .chk_rcv = stream_int_chk_rcv_conn,
66 .chk_snd = stream_int_chk_snd_conn,
67};
68
69struct app_cb si_conn_cb = {
70 .recv = si_conn_recv_cb,
71 .send = si_conn_send_cb,
72};
73
Willy Tarreaucff64112008-11-03 06:26:53 +010074/*
75 * This function only has to be called once after a wakeup event in case of
76 * suspected timeout. It controls the stream interface timeouts and sets
77 * si->flags accordingly. It does NOT close anything, as this timeout may
78 * be used for any purpose. It returns 1 if the timeout fired, otherwise
79 * zero.
80 */
81int stream_int_check_timeouts(struct stream_interface *si)
82{
83 if (tick_is_expired(si->exp, now_ms)) {
84 si->flags |= SI_FL_EXP;
85 return 1;
86 }
87 return 0;
88}
89
Willy Tarreaufe3718a2008-11-30 18:14:12 +010090/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010091void stream_int_report_error(struct stream_interface *si)
92{
93 if (!si->err_type)
94 si->err_type = SI_ET_DATA_ERR;
95
Willy Tarreaucff64112008-11-03 06:26:53 +010096 si->ob->flags |= BF_WRITE_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +010097 si->ib->flags |= BF_READ_ERROR;
98}
99
100/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100101 * Returns a message to the client ; the connection is shut down for read,
102 * and the request is cleared so that no server connection can be initiated.
103 * The buffer is marked for read shutdown on the other side to protect the
104 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100105 * "chunk". If it is null, then an empty message is used. The reply buffer does
106 * not need to be empty before this, and its contents will not be overwritten.
107 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100108 */
109void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
110{
Willy Tarreau148d0992010-01-10 10:21:21 +0100111 buffer_auto_read(si->ib);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100112 buffer_abort(si->ib);
Willy Tarreau148d0992010-01-10 10:21:21 +0100113 buffer_auto_close(si->ib);
114 buffer_erase(si->ib);
Willy Tarreau798e1282010-12-12 13:06:00 +0100115
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200116 bi_erase(si->ob);
Willy Tarreau148d0992010-01-10 10:21:21 +0100117 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200118 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100119
120 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau148d0992010-01-10 10:21:21 +0100121 buffer_auto_read(si->ob);
Willy Tarreau520d95e2009-09-19 21:04:57 +0200122 buffer_auto_close(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100123 buffer_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100124}
125
Willy Tarreaufb90d942009-09-05 20:57:35 +0200126/* default update function for scheduled tasks, not used for embedded tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200127static void stream_int_update(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200128{
129 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
130 __FUNCTION__,
131 si, si->state, si->ib->flags, si->ob->flags);
132
133 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
134 task_wakeup(si->owner, TASK_WOKEN_IO);
135}
136
137/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200138static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200139{
Willy Tarreau3488e252010-08-09 16:24:56 +0200140 int old_flags = si->flags;
141
Willy Tarreaufb90d942009-09-05 20:57:35 +0200142 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
143 __FUNCTION__,
144 si, si->state, si->ib->flags, si->ob->flags);
145
146 if (si->state != SI_ST_EST)
147 return;
148
149 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 +0200150 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200151
152 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
153 si->flags |= SI_FL_WAIT_DATA;
154
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200155 /* we're almost sure that we need some space if the buffer is not
156 * empty, even if it's not full, because the applets can't fill it.
157 */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200158 if ((si->ib->flags & (BF_SHUTR|BF_OUT_EMPTY|BF_DONT_READ)) == 0)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200159 si->flags |= SI_FL_WAIT_ROOM;
160
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200161 if (si->ob->flags & BF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200162 if (tick_isset(si->ob->wex))
163 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
164 }
165
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200166 if (si->ib->flags & BF_READ_ACTIVITY ||
167 (si->ob->flags & BF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
168 if (tick_isset(si->ib->rex))
169 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
170 }
171
Willy Tarreau3488e252010-08-09 16:24:56 +0200172 /* save flags to detect changes */
173 old_flags = si->flags;
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200174 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 +0200175 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200176 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200177
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200178 if (((si->ib->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200179 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200180 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200181 /* check if the consumer has freed some space */
182 if (!(si->ib->flags & BF_FULL))
183 si->flags &= ~SI_FL_WAIT_ROOM;
184 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200185
186 /* Note that we're trying to wake up in two conditions here :
187 * - special event, which needs the holder task attention
188 * - status indicating that the applet can go on working. This
189 * is rather hard because we might be blocking on output and
190 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200191 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200192 */
193 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200194 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
195
196 /* changes on the production side */
197 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
198 si->state != SI_ST_EST ||
199 (si->flags & SI_FL_ERR) ||
200 ((si->ib->flags & BF_READ_PARTIAL) &&
201 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
202
203 /* changes on the consumption side */
204 (si->ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR)) ||
205 ((si->ob->flags & BF_WRITE_ACTIVITY) &&
206 ((si->ob->flags & BF_SHUTW) ||
207 si->ob->prod->state != SI_ST_EST ||
208 ((si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200209 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
210 task_wakeup(si->owner, TASK_WOKEN_IO);
211 }
Willy Tarreau3488e252010-08-09 16:24:56 +0200212 if (si->ib->flags & BF_READ_ACTIVITY)
213 si->ib->flags &= ~BF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200214}
215
Willy Tarreau4a36b562012-08-06 19:31:45 +0200216/*
217 * This function performs a shutdown-read on a stream interface in a connected
218 * or init state (it does nothing for other states). It either shuts the read
219 * side or marks itself as closed. The buffer flags are updated to reflect the
220 * new state. If the stream interface has SI_FL_NOHALF, we also forward the
221 * close to the write side. If a control layer is defined, then it is supposed
222 * to be a socket layer and file descriptors are then shutdown or closed
223 * accordingly. If no control layer is defined, then the SI is supposed to be
224 * an embedded one and the owner task is woken up if it exists. The function
225 * does not disable polling on the FD by itself, it returns non-zero instead
226 * if the caller needs to do so (except when the FD is deleted where this is
227 * implicit).
228 */
229int stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200230{
Willy Tarreau4a36b562012-08-06 19:31:45 +0200231 struct connection *conn = &si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200232
233 si->ib->flags &= ~BF_SHUTR_NOW;
234 if (si->ib->flags & BF_SHUTR)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200235 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200236 si->ib->flags |= BF_SHUTR;
237 si->ib->rex = TICK_ETERNITY;
238 si->flags &= ~SI_FL_WAIT_ROOM;
239
240 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200241 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200242
243 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau4a36b562012-08-06 19:31:45 +0200244 conn_data_close(&si->conn);
245 if (conn->ctrl)
246 fd_delete(si_fd(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200247 si->state = SI_ST_DIS;
248 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200249
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200250 if (si->release)
251 si->release(si);
252 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200253 else if (si->flags & SI_FL_NOHALF) {
254 /* we want to immediately forward this close to the write side */
255 return stream_int_shutw(si);
256 }
257 else if (conn->ctrl) {
258 /* we want the caller to disable polling on this FD */
259 return 1;
260 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200261
Willy Tarreau4a36b562012-08-06 19:31:45 +0200262 /* note that if the task exists, it must unregister itself once it runs */
263 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200264 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200265 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200266}
267
Willy Tarreau4a36b562012-08-06 19:31:45 +0200268/*
269 * This function performs a shutdown-write on a stream interface in a connected or
270 * init state (it does nothing for other states). It either shuts the write side
271 * or marks itself as closed. The buffer flags are updated to reflect the new state.
272 * It does also close everything if the SI was marked as being in error state. If
273 * there is a data-layer shutdown, it is called. If a control layer is defined, then
274 * it is supposed to be a socket layer and file descriptors are then shutdown or
275 * closed accordingly. If no control layer is defined, then the SI is supposed to
276 * be an embedded one and the owner task is woken up if it exists. The function
277 * does not disable polling on the FD by itself, it returns non-zero instead if
278 * the caller needs to do so (except when the FD is deleted where this is implicit).
279 */
280int stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200281{
Willy Tarreau4a36b562012-08-06 19:31:45 +0200282 struct connection *conn = &si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200283
284 si->ob->flags &= ~BF_SHUTW_NOW;
285 if (si->ob->flags & BF_SHUTW)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200286 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200287 si->ob->flags |= BF_SHUTW;
288 si->ob->wex = TICK_ETERNITY;
289 si->flags &= ~SI_FL_WAIT_DATA;
290
291 switch (si->state) {
292 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200293 /* we have to shut before closing, otherwise some short messages
294 * may never leave the system, especially when there are remaining
295 * unread data in the socket input buffer, or when nolinger is set.
296 * However, if SI_FL_NOLINGER is explicitly set, we know there is
297 * no risk so we close both sides immediately.
298 */
299 if (si->flags & SI_FL_ERR) {
300 /* quick close, the socket is already shut. Remove pending flags. */
301 si->flags &= ~SI_FL_NOLINGER;
302 } else if (si->flags & SI_FL_NOLINGER) {
303 si->flags &= ~SI_FL_NOLINGER;
304 if (conn->ctrl) {
305 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
306 (struct linger *) &nolinger, sizeof(struct linger));
307 }
308 /* unclean data-layer shutdown */
309 if (conn->data && conn->data->shutw)
310 conn->data->shutw(conn, 0);
311 } else {
312 /* clean data-layer shutdown */
313 if (conn->data && conn->data->shutw)
314 conn->data->shutw(conn, 1);
315
316 if (!(si->flags & SI_FL_NOHALF)) {
317 /* We shutdown transport layer */
318 if (conn->ctrl)
319 shutdown(si_fd(si), SHUT_WR);
320
321 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ))) {
322 /* OK just a shutw, but we want the caller
323 * to disable polling on this FD if exists.
324 */
325 return !!conn->ctrl;
326 }
327 }
328 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200329
330 /* fall through */
331 case SI_ST_CON:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200332 /* we may have to close a pending connection, and mark the
333 * response buffer as shutr
334 */
335 conn_data_close(&si->conn);
336 if (conn->ctrl)
337 fd_delete(si_fd(si));
338 /* fall through */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200339 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100340 case SI_ST_QUE:
341 case SI_ST_TAR:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200342 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200343
344 if (si->release)
345 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200346 default:
347 si->flags &= ~SI_FL_WAIT_ROOM;
348 si->ib->flags |= BF_SHUTR;
349 si->ib->rex = TICK_ETERNITY;
350 si->exp = TICK_ETERNITY;
351 }
352
Willy Tarreau4a36b562012-08-06 19:31:45 +0200353 /* note that if the task exists, it must unregister itself once it runs */
354 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200355 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200356 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200357}
358
359/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200360static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200361{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200362 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200363
364 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
365 __FUNCTION__,
366 si, si->state, si->ib->flags, si->ob->flags);
367
368 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
369 return;
370
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200371 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200372 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200373 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200374 si->flags |= SI_FL_WAIT_ROOM;
375 }
376 else {
377 /* (re)start reading */
378 si->flags &= ~SI_FL_WAIT_ROOM;
379 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
380 task_wakeup(si->owner, TASK_WOKEN_IO);
381 }
382}
383
384/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200385static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200386{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200387 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200388
389 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
390 __FUNCTION__,
391 si, si->state, si->ib->flags, si->ob->flags);
392
393 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & BF_SHUTW)))
394 return;
395
396 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
397 (ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
398 return;
399
400 /* Otherwise there are remaining data to be sent in the buffer,
401 * so we tell the handler.
402 */
403 si->flags &= ~SI_FL_WAIT_DATA;
404 if (!tick_isset(ob->wex))
405 ob->wex = tick_add_ifset(now_ms, ob->wto);
406
407 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
408 task_wakeup(si->owner, TASK_WOKEN_IO);
409}
410
Willy Tarreaub24281b2011-02-13 13:16:36 +0100411/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200412 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100413 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200414 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100415 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200416 * It also pre-initializes applet.state to zero and the connection context
417 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200418 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100419struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200420{
Simon Horman7abd00d2011-08-13 08:03:51 +0900421 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200422
Willy Tarreauc5788912012-08-24 18:12:41 +0200423 si_prepare_embedded(si);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100424 set_target_applet(&si->target, app);
Aman Gupta9a13e842012-04-02 18:57:53 -0700425 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200426 si->flags |= SI_FL_WAIT_DATA;
427 return si->owner;
428}
429
430/* Register a function to handle a stream_interface as a standalone task. The
431 * new task itself is returned and is assigned as si->owner. The stream_interface
432 * pointer will be pointed to by the task's context. The handler can be detached
433 * by using stream_int_unregister_handler().
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100434 * FIXME: the code should be updated to ensure that we don't change si->owner
435 * anymore as this is not needed. However, process_session still relies on it.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200436 */
437struct task *stream_int_register_handler_task(struct stream_interface *si,
438 struct task *(*fct)(struct task *))
439{
440 struct task *t;
441
442 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
443
Willy Tarreauc5788912012-08-24 18:12:41 +0200444 si_prepare_task(si);
Willy Tarreau9e000c62011-03-10 14:03:36 +0100445 clear_target(&si->target);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200446 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200447 si->flags |= SI_FL_WAIT_DATA;
448
449 t = task_new();
450 si->owner = t;
451 if (!t)
452 return t;
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100453
Willy Tarreau9e000c62011-03-10 14:03:36 +0100454 set_target_task(&si->target, t);
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100455
Willy Tarreaufb90d942009-09-05 20:57:35 +0200456 t->process = fct;
457 t->context = si;
458 task_wakeup(si->owner, TASK_WOKEN_INIT);
459
460 return t;
461}
462
463/* Unregister a stream interface handler. This must be called by the handler task
464 * itself when it detects that it is in the SI_ST_DIS state. This function can
465 * both detach standalone handlers and embedded handlers.
466 */
467void stream_int_unregister_handler(struct stream_interface *si)
468{
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100469 if (si->target.type == TARG_TYPE_TASK) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200470 /* external handler : kill the task */
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100471 task_delete(si->target.ptr.t);
472 task_free(si->target.ptr.t);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200473 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200474 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200475 si->owner = NULL;
Willy Tarreau9e000c62011-03-10 14:03:36 +0100476 clear_target(&si->target);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200477}
478
Willy Tarreau2c6be842012-07-06 17:12:34 +0200479/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200480 * established. It returns 0 if it fails in a fatal way or needs to poll to go
481 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200482 * flags (the bit is provided in <flag> by the caller). It is designed to be
483 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200484 */
485int conn_si_send_proxy(struct connection *conn, unsigned int flag)
486{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200487 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200488
489 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200490 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200491 goto out_error;
492
493 /* If we have a PROXY line to send, we'll use this to validate the
494 * connection, in which case the connection is validated only once
495 * we've sent the whole proxy line. Otherwise we use connect().
496 */
497 if (si->send_proxy_ofs) {
498 int ret;
499
500 /* The target server expects a PROXY line to be sent first.
501 * If the send_proxy_ofs is negative, it corresponds to the
502 * offset to start sending from then end of the proxy string
503 * (which is recomputed every time since it's constant). If
504 * it is positive, it means we have to send from the start.
505 */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200506 ret = make_proxy_line(trash, trashlen, &si->ob->prod->addr.from, &si->ob->prod->addr.to);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200507 if (!ret)
508 goto out_error;
509
510 if (si->send_proxy_ofs > 0)
511 si->send_proxy_ofs = -ret; /* first call */
512
Willy Tarreaua1a74742012-08-24 12:14:49 +0200513 /* we have to send trash from (ret+sp for -sp bytes). If the
514 * data layer has a pending write, we'll also set MSG_MORE.
515 */
516 ret = send(conn->t.sock.fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
517 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200518
519 if (ret == 0)
520 goto out_wait;
521
522 if (ret < 0) {
523 if (errno == EAGAIN)
524 goto out_wait;
525 goto out_error;
526 }
527
528 si->send_proxy_ofs += ret; /* becomes zero once complete */
529 if (si->send_proxy_ofs != 0)
530 goto out_wait;
531
532 /* OK we've sent the whole line, we're connected */
533 }
534
Willy Tarreaua1a74742012-08-24 12:14:49 +0200535 /* The connection is ready now, simply return and let the connection
536 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200537 */
538 if (conn->flags & CO_FL_WAIT_L4_CONN)
539 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200540 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200541 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200542
543 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200544 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200545 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200546 conn->flags &= ~flag;
Willy Tarreaua1a74742012-08-24 12:14:49 +0200547 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200548 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200549
550 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200551 __conn_sock_stop_recv(conn);
552 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200553 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200554}
555
Willy Tarreau100c4672012-08-20 12:06:26 +0200556/* Callback to be used by connection I/O handlers upon completion. It differs from
557 * the function below in that it is designed to be called by lower layers after I/O
558 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200559 * an important event requires special handling. It relies on the connection handler
560 * to commit any polling updates.
Willy Tarreau100c4672012-08-20 12:06:26 +0200561 */
562void conn_notify_si(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200563{
Willy Tarreaufd31e532012-07-23 18:24:25 +0200564 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
565
566 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
567 __FUNCTION__,
568 si, si->state, si->ib->flags, si->ob->flags);
569
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200570 if (conn->flags & CO_FL_ERROR)
571 si->flags |= SI_FL_ERR;
572
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200573 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200574 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200575 si->exp = TICK_ETERNITY;
576 si->ob->flags |= BF_WRITE_NULL;
577 }
578
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200579 /* process consumer side */
580 if (si->ob->flags & BF_OUT_EMPTY) {
581 if (((si->ob->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
582 (si->state == SI_ST_EST))
583 stream_int_shutw(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200584 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200585 si->ob->wex = TICK_ETERNITY;
586 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200587
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200588 if ((si->ob->flags & (BF_FULL|BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == 0)
589 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200590
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200591 if (si->ob->flags & BF_WRITE_ACTIVITY) {
592 /* update timeouts if we have written something */
593 if ((si->ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
594 if (tick_isset(si->ob->wex))
595 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200596
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200597 if (!(si->flags & SI_FL_INDEP_STR))
598 if (tick_isset(si->ib->rex))
599 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200600
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200601 if (likely((si->ob->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
602 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
603 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200604 }
605
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200606 /* process producer side.
607 * We might have some data the consumer is waiting for.
608 * We can do fast-forwarding, but we avoid doing this for partial
609 * buffers, because it is very likely that it will be done again
610 * immediately afterwards once the following data is parsed (eg:
611 * HTTP chunking).
612 */
613 if (((si->ib->flags & (BF_READ_PARTIAL|BF_OUT_EMPTY)) == BF_READ_PARTIAL) &&
614 (si->ib->pipe /* always try to send spliced data */ ||
615 (si->ib->buf.i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
616 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200617
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200618 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200619
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200620 /* check if the consumer has freed some space either in the
621 * buffer or in the pipe.
622 */
623 if (!(si->ib->flags & BF_FULL) &&
624 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
625 si->flags &= ~SI_FL_WAIT_ROOM;
626 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200627
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200628 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200629 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200630 si->ib->rex = TICK_ETERNITY;
631 }
632 else if ((si->ib->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL) {
633 if (tick_isset(si->ib->rex))
634 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200635 }
636
637 /* wake the task up only when needed */
638 if (/* changes on the production side */
639 (si->ib->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
640 si->state != SI_ST_EST ||
641 (si->flags & SI_FL_ERR) ||
642 ((si->ib->flags & BF_READ_PARTIAL) &&
643 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
644
645 /* changes on the consumption side */
646 (si->ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR)) ||
647 ((si->ob->flags & BF_WRITE_ACTIVITY) &&
648 ((si->ob->flags & BF_SHUTW) ||
649 si->ob->prod->state != SI_ST_EST ||
650 ((si->ob->flags & BF_OUT_EMPTY) && !si->ob->to_forward)))) {
651 task_wakeup(si->owner, TASK_WOKEN_IO);
652 }
653 if (si->ib->flags & BF_READ_ACTIVITY)
654 si->ib->flags &= ~BF_READ_DONTWAIT;
655}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200656
Willy Tarreau5368d802012-08-21 18:22:06 +0200657/*
658 * This function is called to send buffer data to a stream socket.
659 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreauf16723e2012-08-24 12:52:22 +0200660 * It iterates the data layer's snd_buf function. It relies on the
661 * caller to commit polling changes.
Willy Tarreau5368d802012-08-21 18:22:06 +0200662 */
663static int si_conn_send_loop(struct connection *conn)
664{
665 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
666 struct channel *b = si->ob;
667 int write_poll = MAX_WRITE_POLL_LOOPS;
668 int ret;
669
Willy Tarreau96199b12012-08-24 00:46:52 +0200670 conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM);
Willy Tarreau5368d802012-08-21 18:22:06 +0200671
Willy Tarreau96199b12012-08-24 00:46:52 +0200672 if (b->pipe && conn->data->snd_pipe) {
673 ret = conn->data->snd_pipe(conn, b->pipe);
674 if (ret > 0)
675 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200676
677 if (!b->pipe->data) {
678 put_pipe(b->pipe);
679 b->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200680 }
681
Willy Tarreau96199b12012-08-24 00:46:52 +0200682 if (conn->flags & CO_FL_ERROR)
683 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200684
Willy Tarreau96199b12012-08-24 00:46:52 +0200685 if (conn->flags & CO_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200686 __conn_data_poll_send(conn);
Willy Tarreau96199b12012-08-24 00:46:52 +0200687 return 0;
688 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200689 }
690
691 /* At this point, the pipe is empty, but we may still have data pending
692 * in the normal buffer.
693 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200694 if (!b->buf.o) {
695 b->flags |= BF_OUT_EMPTY;
696 return 0;
697 }
698
699 /* when we're in this loop, we already know that there is no spliced
700 * data left, and that there are sendable buffered data.
701 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200702 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))) {
703 /* check if we want to inform the kernel that we're interested in
704 * sending more data after this call. We want this if :
705 * - we're about to close after this last send and want to merge
706 * the ongoing FIN with the last segment.
707 * - we know we can't send everything at once and must get back
708 * here because of unaligned data
709 * - there is still a finite amount of data to forward
710 * The test is arranged so that the most common case does only 2
711 * tests.
712 */
713 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
714
715 if ((!(b->flags & (BF_NEVER_WAIT|BF_SEND_DONTWAIT)) &&
716 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
717 (b->flags & BF_EXPECT_MORE))) ||
718 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW))
719 send_flag |= MSG_MORE;
720
721 ret = conn->data->snd_buf(conn, &b->buf, send_flag);
722 if (ret <= 0)
723 break;
724
725 if (si->conn.flags & CO_FL_WAIT_L4_CONN)
726 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
727
728 b->flags |= BF_WRITE_PARTIAL;
729
730 if (likely(!bi_full(b)))
731 b->flags &= ~BF_FULL;
732
733 if (!b->buf.o) {
734 /* Always clear both flags once everything has been sent, they're one-shot */
735 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
736 if (likely(!b->pipe))
737 b->flags |= BF_OUT_EMPTY;
738 break;
739 }
740
741 if (--write_poll <= 0)
742 break;
743 } /* while */
744
745 if (conn->flags & CO_FL_ERROR)
746 return -1;
747
748 if (conn->flags & CO_FL_WAIT_ROOM) {
749 /* we need to poll before going on */
Willy Tarreauf16723e2012-08-24 12:52:22 +0200750 __conn_data_poll_send(&si->conn);
Willy Tarreau5368d802012-08-21 18:22:06 +0200751 return 0;
752 }
753 return 0;
754}
755
756
Willy Tarreau100c4672012-08-20 12:06:26 +0200757/* Updates the timers and flags of a stream interface attached to a connection,
758 * depending on the buffers' flags. It should only be called once after the
759 * buffer flags have settled down, and before they are cleared. It doesn't
760 * harm to call it as often as desired (it just slightly hurts performance).
761 * It is only meant to be called by upper layers after buffer flags have been
762 * manipulated by analysers.
763 */
764void stream_int_update_conn(struct stream_interface *si)
765{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200766 struct channel *ib = si->ib;
767 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200768
769 if (si->conn.flags & CO_FL_HANDSHAKE) {
770 /* a handshake is in progress */
Willy Tarreau100c4672012-08-20 12:06:26 +0200771 return;
772 }
773
774 /* Check if we need to close the read side */
775 if (!(ib->flags & BF_SHUTR)) {
776 /* Read not closed, update FD status and timeout for reads */
777 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
778 /* stop reading */
779 if (!(si->flags & SI_FL_WAIT_ROOM)) {
780 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
781 si->flags |= SI_FL_WAIT_ROOM;
782 conn_data_stop_recv(&si->conn);
783 ib->rex = TICK_ETERNITY;
784 }
785 }
786 else {
787 /* (re)start reading and update timeout. Note: we don't recompute the timeout
788 * everytime we get here, otherwise it would risk never to expire. We only
789 * update it if is was not yet set. The stream socket handler will already
790 * have updated it if there has been a completed I/O.
791 */
792 si->flags &= ~SI_FL_WAIT_ROOM;
793 conn_data_want_recv(&si->conn);
794 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
795 ib->rex = tick_add_ifset(now_ms, ib->rto);
796 }
797 }
798
799 /* Check if we need to close the write side */
800 if (!(ob->flags & BF_SHUTW)) {
801 /* Write not closed, update FD status and timeout for writes */
802 if (ob->flags & BF_OUT_EMPTY) {
803 /* stop writing */
804 if (!(si->flags & SI_FL_WAIT_DATA)) {
805 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
806 si->flags |= SI_FL_WAIT_DATA;
807 conn_data_stop_send(&si->conn);
808 ob->wex = TICK_ETERNITY;
809 }
810 }
811 else {
812 /* (re)start writing and update timeout. Note: we don't recompute the timeout
813 * everytime we get here, otherwise it would risk never to expire. We only
814 * update it if is was not yet set. The stream socket handler will already
815 * have updated it if there has been a completed I/O.
816 */
817 si->flags &= ~SI_FL_WAIT_DATA;
818 conn_data_want_send(&si->conn);
819 if (!tick_isset(ob->wex)) {
820 ob->wex = tick_add_ifset(now_ms, ob->wto);
821 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
822 /* Note: depending on the protocol, we don't know if we're waiting
823 * for incoming data or not. So in order to prevent the socket from
824 * expiring read timeouts during writes, we refresh the read timeout,
825 * except if it was already infinite or if we have explicitly setup
826 * independent streams.
827 */
828 ib->rex = tick_add_ifset(now_ms, ib->rto);
829 }
830 }
831 }
832 }
833}
834
Willy Tarreau46a8d922012-08-20 12:38:36 +0200835/* This function is used for inter-stream-interface calls. It is called by the
836 * consumer to inform the producer side that it may be interested in checking
837 * for free space in the buffer. Note that it intentionally does not update
838 * timeouts, so that we can still check them later at wake-up. This function is
839 * dedicated to connection-based stream interfaces.
840 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200841static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200842{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200843 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200844
845 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
846 return;
847
848 if (si->conn.flags & CO_FL_HANDSHAKE) {
849 /* a handshake is in progress */
850 return;
851 }
852
853 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
854 /* stop reading */
855 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
856 si->flags |= SI_FL_WAIT_ROOM;
857 conn_data_stop_recv(&si->conn);
858 }
859 else {
860 /* (re)start reading */
861 si->flags &= ~SI_FL_WAIT_ROOM;
862 conn_data_want_recv(&si->conn);
863 }
864}
865
866
Willy Tarreaude5722c2012-08-20 15:01:10 +0200867/* This function is used for inter-stream-interface calls. It is called by the
868 * producer to inform the consumer side that it may be interested in checking
869 * for data in the buffer. Note that it intentionally does not update timeouts,
870 * so that we can still check them later at wake-up.
871 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200872static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200873{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200874 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200875
876 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
877 return;
878
879 /* handshake running on producer */
880 if (si->conn.flags & CO_FL_HANDSHAKE) {
881 /* a handshake is in progress */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200882 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;
Willy Tarreauf16723e2012-08-24 12:52:22 +0200898 __conn_data_stop_both(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200899 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 */
Willy Tarreauf16723e2012-08-24 12:52:22 +0200928 __conn_data_want_send(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200929 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 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200962
963 /* commit possible polling changes */
964 conn_cond_update_polling(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200965}
966
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200967/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200968 * This is the callback which is called by the connection layer to receive data
969 * into the buffer from the connection. It iterates over the data layer's rcv_buf
970 * function.
971 */
972void si_conn_recv_cb(struct connection *conn)
973{
974 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
975 struct channel *b = si->ib;
976 int ret, max, cur_read;
977 int read_poll = MAX_READ_POLL_LOOPS;
978
979 /* stop immediately on errors. Note that we DON'T want to stop on
980 * POLL_ERR, as the poller might report a write error while there
981 * are still data available in the recv buffer. This typically
982 * happens when we send too large a request to a backend server
983 * which rejects it before reading it all.
984 */
985 if (conn->flags & CO_FL_ERROR)
986 goto out_error;
987
988 /* stop here if we reached the end of data */
989 if (conn_data_read0_pending(conn))
990 goto out_shutdown_r;
991
992 /* maybe we were called immediately after an asynchronous shutr */
993 if (b->flags & BF_SHUTR)
994 return;
995
Willy Tarreau96199b12012-08-24 00:46:52 +0200996 cur_read = 0;
997 conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM);
998
999 /* First, let's see if we may splice data across the channel without
1000 * using a buffer.
1001 */
1002 if (conn->data->rcv_pipe &&
1003 b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
1004 if (buffer_not_empty(&b->buf)) {
1005 /* We're embarrassed, there are already data pending in
1006 * the buffer and we don't want to have them at two
1007 * locations at a time. Let's indicate we need some
1008 * place and ask the consumer to hurry.
1009 */
1010 goto abort_splice;
1011 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001012
Willy Tarreau96199b12012-08-24 00:46:52 +02001013 if (unlikely(b->pipe == NULL)) {
1014 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
1015 b->flags &= ~BF_KERN_SPLICING;
1016 goto abort_splice;
1017 }
1018 }
1019
1020 ret = conn->data->rcv_pipe(conn, b->pipe, b->to_forward);
1021 if (ret < 0) {
1022 /* splice not supported on this end, let's disable it */
1023 b->flags &= ~BF_KERN_SPLICING;
1024 si->flags &= ~SI_FL_CAP_SPLICE;
1025 goto abort_splice;
1026 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001027
Willy Tarreau96199b12012-08-24 00:46:52 +02001028 if (ret > 0) {
1029 if (b->to_forward != BUF_INFINITE_FORWARD)
1030 b->to_forward -= ret;
1031 b->total += ret;
1032 cur_read += ret;
1033 b->flags |= BF_READ_PARTIAL;
1034 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreauce323de2012-08-20 21:41:06 +02001035 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001036
1037 if (conn_data_read0_pending(conn))
1038 goto out_shutdown_r;
1039
1040 if (conn->flags & CO_FL_ERROR)
1041 goto out_error;
1042
Willy Tarreauce323de2012-08-20 21:41:06 +02001043 /* splice not possible (anymore), let's go on on standard copy */
1044 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001045
1046 abort_splice:
1047 /* release the pipe if we can, which is almost always the case */
1048 if (b->pipe && !b->pipe->data) {
1049 put_pipe(b->pipe);
1050 b->pipe = NULL;
1051 }
1052
1053 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 +02001054 max = bi_avail(b);
1055
1056 if (!max) {
1057 b->flags |= BF_FULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001058 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001059 break;
1060 }
1061
1062 ret = conn->data->rcv_buf(conn, &b->buf, max);
1063 if (ret <= 0)
1064 break;
1065
1066 cur_read += ret;
1067
1068 /* if we're allowed to directly forward data, we must update ->o */
1069 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
1070 unsigned long fwd = ret;
1071 if (b->to_forward != BUF_INFINITE_FORWARD) {
1072 if (fwd > b->to_forward)
1073 fwd = b->to_forward;
1074 b->to_forward -= fwd;
1075 }
1076 b_adv(b, fwd);
1077 }
1078
1079 if (conn->flags & CO_FL_WAIT_L4_CONN)
1080 conn->flags &= ~CO_FL_WAIT_L4_CONN;
1081
1082 b->flags |= BF_READ_PARTIAL;
1083 b->total += ret;
1084
1085 if (bi_full(b)) {
1086 /* The buffer is now full, there's no point in going through
1087 * the loop again.
1088 */
1089 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(&b->buf))) {
1090 b->xfer_small = 0;
1091 b->xfer_large++;
1092 if (b->xfer_large >= 3) {
1093 /* we call this buffer a fast streamer if it manages
1094 * to be filled in one call 3 consecutive times.
1095 */
1096 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
1097 //fputc('+', stderr);
1098 }
1099 }
1100 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
1101 (cur_read <= b->buf.size / 2)) {
1102 b->xfer_large = 0;
1103 b->xfer_small++;
1104 if (b->xfer_small >= 2) {
1105 /* if the buffer has been at least half full twice,
1106 * we receive faster than we send, so at least it
1107 * is not a "fast streamer".
1108 */
1109 b->flags &= ~BF_STREAMER_FAST;
1110 //fputc('-', stderr);
1111 }
1112 }
1113 else {
1114 b->xfer_small = 0;
1115 b->xfer_large = 0;
1116 }
1117
1118 b->flags |= BF_FULL;
1119 si->flags |= SI_FL_WAIT_ROOM;
1120 break;
1121 }
1122
1123 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
1124 break;
1125
1126 /* if too many bytes were missing from last read, it means that
1127 * it's pointless trying to read again because the system does
1128 * not have them in buffers.
1129 */
1130 if (ret < max) {
1131 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
1132 (cur_read <= b->buf.size / 2)) {
1133 b->xfer_large = 0;
1134 b->xfer_small++;
1135 if (b->xfer_small >= 3) {
1136 /* we have read less than half of the buffer in
1137 * one pass, and this happened at least 3 times.
1138 * This is definitely not a streamer.
1139 */
1140 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
1141 //fputc('!', stderr);
1142 }
1143 }
1144
1145 /* if a streamer has read few data, it may be because we
1146 * have exhausted system buffers. It's not worth trying
1147 * again.
1148 */
1149 if (b->flags & BF_STREAMER)
1150 break;
1151
1152 /* if we read a large block smaller than what we requested,
1153 * it's almost certain we'll never get anything more.
1154 */
1155 if (ret >= global.tune.recv_enough)
1156 break;
1157 }
1158 } /* while !flags */
1159
Willy Tarreau96199b12012-08-24 00:46:52 +02001160 if (conn->flags & CO_FL_ERROR)
1161 goto out_error;
1162
1163 if (conn->flags & CO_FL_WAIT_ROOM) {
Willy Tarreau2c052082012-08-24 12:53:56 +02001164 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau96199b12012-08-24 00:46:52 +02001165 }
1166 else if (conn->flags & CO_FL_WAIT_DATA) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001167 /* we don't automatically ask for polling if we have
1168 * read enough data, as it saves some syscalls with
1169 * speculative pollers.
1170 */
1171 if (cur_read < MIN_RET_FOR_READ_LOOP)
1172 __conn_data_poll_recv(conn);
1173 else
1174 __conn_data_want_recv(conn);
1175 }
1176
Willy Tarreauce323de2012-08-20 21:41:06 +02001177 if (conn_data_read0_pending(conn))
1178 /* connection closed */
1179 goto out_shutdown_r;
1180
1181 return;
1182
1183 out_shutdown_r:
1184 /* we received a shutdown */
1185 b->flags |= BF_READ_NULL;
1186 if (b->flags & BF_AUTO_CLOSE)
1187 buffer_shutw_now(b);
1188 stream_sock_read0(si);
1189 conn_data_read0(conn);
1190 return;
1191
1192 out_error:
1193 /* Read error on the connection, report the error and stop I/O */
1194 conn->flags |= CO_FL_ERROR;
Willy Tarreauf16723e2012-08-24 12:52:22 +02001195 __conn_data_stop_both(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001196}
1197
1198/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001199 * This is the callback which is called by the connection layer to send data
1200 * from the buffer to the connection. It iterates over the data layer's snd_buf
1201 * function.
1202 */
1203void si_conn_send_cb(struct connection *conn)
1204{
1205 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau7421efb2012-07-02 15:11:27 +02001206 struct channel *b = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001207
1208 if (conn->flags & CO_FL_ERROR)
1209 goto out_error;
1210
1211 if (si->conn.flags & CO_FL_HANDSHAKE)
1212 /* a handshake was requested */
1213 return;
1214
1215 /* we might have been called just after an asynchronous shutw */
1216 if (b->flags & BF_SHUTW)
1217 return;
1218
1219 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001220 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001221 goto out_error;
1222
1223 /* OK all done */
1224 return;
1225
1226 out_error:
1227 /* Write error on the connection, report the error and stop I/O */
1228 conn->flags |= CO_FL_ERROR;
Willy Tarreauf16723e2012-08-24 12:52:22 +02001229 __conn_data_stop_both(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001230}
1231
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001232/*
1233 * This function propagates a null read received on a socket-based connection.
1234 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1235 * the close is also forwarded to the write side as an abort. This function is
1236 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1237 * state on the socket.
1238 */
1239void stream_sock_read0(struct stream_interface *si)
1240{
1241 si->ib->flags &= ~BF_SHUTR_NOW;
1242 if (si->ib->flags & BF_SHUTR)
1243 return;
1244 si->ib->flags |= BF_SHUTR;
1245 si->ib->rex = TICK_ETERNITY;
1246 si->flags &= ~SI_FL_WAIT_ROOM;
1247
1248 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1249 return;
1250
1251 if (si->ob->flags & BF_SHUTW)
1252 goto do_close;
1253
1254 if (si->flags & SI_FL_NOHALF) {
1255 /* we want to immediately forward this close to the write side */
1256 if (si->flags & SI_FL_NOLINGER) {
1257 si->flags &= ~SI_FL_NOLINGER;
1258 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
1259 (struct linger *) &nolinger, sizeof(struct linger));
1260 }
1261 /* force flag on ssl to keep session in cache */
1262 if (si->conn.data->shutw)
1263 si->conn.data->shutw(&si->conn, 0);
1264 goto do_close;
1265 }
1266
1267 /* otherwise that's just a normal read shutdown */
Willy Tarreauf16723e2012-08-24 12:52:22 +02001268 __conn_data_stop_recv(&si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001269 return;
1270
1271 do_close:
1272 conn_data_close(&si->conn);
1273 fd_delete(si_fd(si));
1274 si->state = SI_ST_DIS;
1275 si->exp = TICK_ETERNITY;
1276 if (si->release)
1277 si->release(si);
1278 return;
1279}
1280
Willy Tarreaudded32d2008-11-30 19:48:07 +01001281/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001282 * Local variables:
1283 * c-indent-level: 8
1284 * c-basic-offset: 8
1285 * End:
1286 */