blob: bba52e7e86f2c22fb7ac7041ad2b1e28a53e1b5b [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 Tarreau96199b12012-08-24 00:46:52 +020032#include <proto/pipe.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020033#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010034#include <proto/task.h>
35
Willy Tarreaufd31e532012-07-23 18:24:25 +020036#include <types/pipe.h>
37
Willy Tarreauf873d752012-05-11 17:47:17 +020038/* socket functions used when running a stream interface as a task */
Willy Tarreauf873d752012-05-11 17:47:17 +020039static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020040static void stream_int_chk_rcv(struct stream_interface *si);
41static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020042static void stream_int_update_conn(struct stream_interface *si);
43static void stream_int_chk_rcv_conn(struct stream_interface *si);
44static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020045static void si_conn_recv_cb(struct connection *conn);
46static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020047static int si_conn_wake_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020048
Willy Tarreauc5788912012-08-24 18:12:41 +020049/* stream-interface operations for embedded tasks */
50struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020051 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020052 .chk_rcv = stream_int_chk_rcv,
53 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020054};
55
Willy Tarreauc5788912012-08-24 18:12:41 +020056/* stream-interface operations for connections */
57struct si_ops si_conn_ops = {
58 .update = stream_int_update_conn,
59 .chk_rcv = stream_int_chk_rcv_conn,
60 .chk_snd = stream_int_chk_snd_conn,
61};
62
Willy Tarreau74beec32012-10-03 00:41:04 +020063struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020064 .recv = si_conn_recv_cb,
65 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020066 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +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 Tarreau03cdb7c2012-08-27 23:14:58 +020091 si->ob->flags |= CF_WRITE_ERROR;
92 si->ib->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +010093}
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 Tarreau8263d2b2012-08-28 00:06:31 +0200106 channel_auto_read(si->ib);
107 channel_abort(si->ib);
108 channel_auto_close(si->ib);
109 channel_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 Tarreau8263d2b2012-08-28 00:06:31 +0200116 channel_auto_read(si->ob);
117 channel_auto_close(si->ob);
118 channel_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 embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200122static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200123{
Willy Tarreau3488e252010-08-09 16:24:56 +0200124 int old_flags = si->flags;
125
Willy Tarreaufb90d942009-09-05 20:57:35 +0200126 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
127 __FUNCTION__,
128 si, si->state, si->ib->flags, si->ob->flags);
129
130 if (si->state != SI_ST_EST)
131 return;
132
Willy Tarreaub31c9712012-11-11 23:05:39 +0100133 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200134 channel_is_empty(si->ob))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200135 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200136
Willy Tarreaub31c9712012-11-11 23:05:39 +0100137 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200138 si->flags |= SI_FL_WAIT_DATA;
139
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200140 /* we're almost sure that we need some space if the buffer is not
141 * empty, even if it's not full, because the applets can't fill it.
142 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200143 if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200144 si->flags |= SI_FL_WAIT_ROOM;
145
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200146 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200147 if (tick_isset(si->ob->wex))
148 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
149 }
150
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200151 if (si->ib->flags & CF_READ_ACTIVITY ||
152 (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200153 if (tick_isset(si->ib->rex))
154 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
155 }
156
Willy Tarreau3488e252010-08-09 16:24:56 +0200157 /* save flags to detect changes */
158 old_flags = si->flags;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200159 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200160 !channel_full(si->ob) &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200161 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200162 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200163
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200164 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200165 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200166 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200167 /* check if the consumer has freed some space */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200168 if (!channel_full(si->ib))
Willy Tarreau3488e252010-08-09 16:24:56 +0200169 si->flags &= ~SI_FL_WAIT_ROOM;
170 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200171
172 /* Note that we're trying to wake up in two conditions here :
173 * - special event, which needs the holder task attention
174 * - status indicating that the applet can go on working. This
175 * is rather hard because we might be blocking on output and
176 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200177 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200178 */
179 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200180 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
181
182 /* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200183 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200184 si->state != SI_ST_EST ||
185 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200186 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200187 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
188
189 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200190 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
191 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
192 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200193 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200194 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200195 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
196 task_wakeup(si->owner, TASK_WOKEN_IO);
197 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200198 if (si->ib->flags & CF_READ_ACTIVITY)
199 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200200}
201
Willy Tarreau4a36b562012-08-06 19:31:45 +0200202/*
203 * This function performs a shutdown-read on a stream interface in a connected
204 * or init state (it does nothing for other states). It either shuts the read
205 * side or marks itself as closed. The buffer flags are updated to reflect the
206 * new state. If the stream interface has SI_FL_NOHALF, we also forward the
207 * close to the write side. If a control layer is defined, then it is supposed
208 * to be a socket layer and file descriptors are then shutdown or closed
209 * accordingly. If no control layer is defined, then the SI is supposed to be
210 * an embedded one and the owner task is woken up if it exists. The function
211 * does not disable polling on the FD by itself, it returns non-zero instead
212 * if the caller needs to do so (except when the FD is deleted where this is
213 * implicit).
214 */
215int stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200216{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200217 struct connection *conn = si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200218
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200219 si->ib->flags &= ~CF_SHUTR_NOW;
220 if (si->ib->flags & CF_SHUTR)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200221 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200222 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200223 si->ib->rex = TICK_ETERNITY;
224 si->flags &= ~SI_FL_WAIT_ROOM;
225
226 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200227 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200228
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200229 if (si->ob->flags & CF_SHUTW) {
Willy Tarreau2b199c92012-11-23 17:32:21 +0100230 conn_full_close(si->conn);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200231 si->state = SI_ST_DIS;
232 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200233
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200234 if (si->release)
235 si->release(si);
236 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200237 else if (si->flags & SI_FL_NOHALF) {
238 /* we want to immediately forward this close to the write side */
239 return stream_int_shutw(si);
240 }
241 else if (conn->ctrl) {
242 /* we want the caller to disable polling on this FD */
243 return 1;
244 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200245
Willy Tarreau4a36b562012-08-06 19:31:45 +0200246 /* note that if the task exists, it must unregister itself once it runs */
247 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200248 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200249 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200250}
251
Willy Tarreau4a36b562012-08-06 19:31:45 +0200252/*
253 * This function performs a shutdown-write on a stream interface in a connected or
254 * init state (it does nothing for other states). It either shuts the write side
255 * or marks itself as closed. The buffer flags are updated to reflect the new state.
256 * It does also close everything if the SI was marked as being in error state. If
257 * there is a data-layer shutdown, it is called. If a control layer is defined, then
258 * it is supposed to be a socket layer and file descriptors are then shutdown or
259 * closed accordingly. If no control layer is defined, then the SI is supposed to
260 * be an embedded one and the owner task is woken up if it exists. The function
261 * does not disable polling on the FD by itself, it returns non-zero instead if
262 * the caller needs to do so (except when the FD is deleted where this is implicit).
263 */
264int stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200265{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200266 struct connection *conn = si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200267
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200268 si->ob->flags &= ~CF_SHUTW_NOW;
269 if (si->ob->flags & CF_SHUTW)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200270 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200271 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200272 si->ob->wex = TICK_ETERNITY;
273 si->flags &= ~SI_FL_WAIT_DATA;
274
275 switch (si->state) {
276 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200277 /* we have to shut before closing, otherwise some short messages
278 * may never leave the system, especially when there are remaining
279 * unread data in the socket input buffer, or when nolinger is set.
280 * However, if SI_FL_NOLINGER is explicitly set, we know there is
281 * no risk so we close both sides immediately.
282 */
283 if (si->flags & SI_FL_ERR) {
284 /* quick close, the socket is already shut. Remove pending flags. */
285 si->flags &= ~SI_FL_NOLINGER;
286 } else if (si->flags & SI_FL_NOLINGER) {
287 si->flags &= ~SI_FL_NOLINGER;
288 if (conn->ctrl) {
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100289 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau4a36b562012-08-06 19:31:45 +0200290 (struct linger *) &nolinger, sizeof(struct linger));
291 }
292 /* unclean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200293 if (conn->xprt && conn->xprt->shutw)
294 conn->xprt->shutw(conn, 0);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200295 } else {
296 /* clean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200297 if (conn->xprt && conn->xprt->shutw)
298 conn->xprt->shutw(conn, 1);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200299
300 if (!(si->flags & SI_FL_NOHALF)) {
301 /* We shutdown transport layer */
302 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100303 shutdown(si->conn->t.sock.fd, SHUT_WR);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200304
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200305 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau4a36b562012-08-06 19:31:45 +0200306 /* OK just a shutw, but we want the caller
307 * to disable polling on this FD if exists.
308 */
309 return !!conn->ctrl;
310 }
311 }
312 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200313
314 /* fall through */
315 case SI_ST_CON:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200316 /* we may have to close a pending connection, and mark the
317 * response buffer as shutr
318 */
Willy Tarreau2b199c92012-11-23 17:32:21 +0100319 conn_full_close(si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200320 /* fall through */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200321 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100322 case SI_ST_QUE:
323 case SI_ST_TAR:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200324 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200325
326 if (si->release)
327 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200328 default:
329 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200330 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200331 si->ib->rex = TICK_ETERNITY;
332 si->exp = TICK_ETERNITY;
333 }
334
Willy Tarreau4a36b562012-08-06 19:31:45 +0200335 /* note that if the task exists, it must unregister itself once it runs */
336 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200337 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200338 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200339}
340
341/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200342static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200343{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200344 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200345
346 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
347 __FUNCTION__,
348 si, si->state, si->ib->flags, si->ob->flags);
349
Willy Tarreaub31c9712012-11-11 23:05:39 +0100350 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200351 return;
352
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200353 if (channel_full(ib)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200354 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200355 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200356 }
357 else {
358 /* (re)start reading */
359 si->flags &= ~SI_FL_WAIT_ROOM;
360 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
361 task_wakeup(si->owner, TASK_WOKEN_IO);
362 }
363}
364
365/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200366static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200367{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200368 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200369
370 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
371 __FUNCTION__,
372 si, si->state, si->ib->flags, si->ob->flags);
373
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200374 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200375 return;
376
377 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200378 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200379 return;
380
381 /* Otherwise there are remaining data to be sent in the buffer,
382 * so we tell the handler.
383 */
384 si->flags &= ~SI_FL_WAIT_DATA;
385 if (!tick_isset(ob->wex))
386 ob->wex = tick_add_ifset(now_ms, ob->wto);
387
388 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
389 task_wakeup(si->owner, TASK_WOKEN_IO);
390}
391
Willy Tarreaub24281b2011-02-13 13:16:36 +0100392/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200393 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100394 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200395 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100396 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200397 * It also pre-initializes applet.state to zero and the connection context
398 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200399 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100400struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200401{
Simon Horman7abd00d2011-08-13 08:03:51 +0900402 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200403
Willy Tarreauc5788912012-08-24 18:12:41 +0200404 si_prepare_embedded(si);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100405 si->conn->target = &app->obj_type;
Willy Tarreau128b03c2012-11-11 23:14:16 +0100406 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200407 si->flags |= SI_FL_WAIT_DATA;
408 return si->owner;
409}
410
Willy Tarreaufb90d942009-09-05 20:57:35 +0200411/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100412 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200413 */
414void stream_int_unregister_handler(struct stream_interface *si)
415{
Willy Tarreau128b03c2012-11-11 23:14:16 +0100416 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200417 si->owner = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100418 si->conn->target = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200419}
420
Willy Tarreau2c6be842012-07-06 17:12:34 +0200421/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200422 * established. It returns 0 if it fails in a fatal way or needs to poll to go
423 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200424 * flags (the bit is provided in <flag> by the caller). It is designed to be
425 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200426 */
427int conn_si_send_proxy(struct connection *conn, unsigned int flag)
428{
Willy Tarreaue603e692012-09-27 22:20:41 +0200429 struct stream_interface *si = conn->owner;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200430
431 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200432 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200433 goto out_error;
434
435 /* If we have a PROXY line to send, we'll use this to validate the
436 * connection, in which case the connection is validated only once
437 * we've sent the whole proxy line. Otherwise we use connect().
438 */
439 if (si->send_proxy_ofs) {
440 int ret;
441
442 /* The target server expects a PROXY line to be sent first.
443 * If the send_proxy_ofs is negative, it corresponds to the
444 * offset to start sending from then end of the proxy string
445 * (which is recomputed every time since it's constant). If
446 * it is positive, it means we have to send from the start.
447 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100448 ret = make_proxy_line(trash.str, trash.size, &si->ob->prod->conn->addr.from, &si->ob->prod->conn->addr.to);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200449 if (!ret)
450 goto out_error;
451
452 if (si->send_proxy_ofs > 0)
453 si->send_proxy_ofs = -ret; /* first call */
454
Willy Tarreaua1a74742012-08-24 12:14:49 +0200455 /* we have to send trash from (ret+sp for -sp bytes). If the
456 * data layer has a pending write, we'll also set MSG_MORE.
457 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100458 ret = send(conn->t.sock.fd, trash.str + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200459 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200460
461 if (ret == 0)
462 goto out_wait;
463
464 if (ret < 0) {
465 if (errno == EAGAIN)
466 goto out_wait;
467 goto out_error;
468 }
469
470 si->send_proxy_ofs += ret; /* becomes zero once complete */
471 if (si->send_proxy_ofs != 0)
472 goto out_wait;
473
474 /* OK we've sent the whole line, we're connected */
475 }
476
Willy Tarreaua1a74742012-08-24 12:14:49 +0200477 /* The connection is ready now, simply return and let the connection
478 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200479 */
480 if (conn->flags & CO_FL_WAIT_L4_CONN)
481 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200482 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200483 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200484
485 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200486 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200487 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200488 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200489
490 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200491 __conn_sock_stop_recv(conn);
492 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200493 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200494}
495
Willy Tarreau100c4672012-08-20 12:06:26 +0200496/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200497 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200498 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200499 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200500 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200501 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200502static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200503{
Willy Tarreaue603e692012-09-27 22:20:41 +0200504 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200505
506 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
507 __FUNCTION__,
508 si, si->state, si->ib->flags, si->ob->flags);
509
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200510 if (conn->flags & CO_FL_ERROR)
511 si->flags |= SI_FL_ERR;
512
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200513 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200514 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200515 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200516 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200517 }
518
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200519 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200520 if (channel_is_empty(si->ob)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100521 if (((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200522 (si->state == SI_ST_EST))
523 stream_int_shutw(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200524 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200525 si->ob->wex = TICK_ETERNITY;
526 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200527
Willy Tarreaub31c9712012-11-11 23:05:39 +0100528 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200529 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200530
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200531 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200532 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200533 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200534 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200535 if (tick_isset(si->ob->wex))
536 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200537
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200538 if (!(si->flags & SI_FL_INDEP_STR))
539 if (tick_isset(si->ib->rex))
540 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200541
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200542 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200543 !channel_full(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200544 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
545 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200546 }
547
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200548 /* process producer side.
549 * We might have some data the consumer is waiting for.
550 * We can do fast-forwarding, but we avoid doing this for partial
551 * buffers, because it is very likely that it will be done again
552 * immediately afterwards once the following data is parsed (eg:
553 * HTTP chunking).
554 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200555 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200556 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau9b28e032012-10-12 23:49:43 +0200557 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200558 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200559
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200560 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200561
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200562 /* check if the consumer has freed some space either in the
563 * buffer or in the pipe.
564 */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200565 if (!channel_full(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200566 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
567 si->flags &= ~SI_FL_WAIT_ROOM;
568 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200569
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200570 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200571 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200572 si->ib->rex = TICK_ETERNITY;
573 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200574 else if ((si->ib->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ|CF_READ_NOEXP)) == CF_READ_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200575 !channel_full(si->ib)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100576 /* we must re-enable reading if si_chk_snd() has freed some space */
577 __conn_data_want_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200578 if (tick_isset(si->ib->rex))
579 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200580 }
581
582 /* wake the task up only when needed */
583 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200584 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200585 si->state != SI_ST_EST ||
586 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200587 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200588 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
589
590 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200591 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
592 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
593 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200594 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200595 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200596 task_wakeup(si->owner, TASK_WOKEN_IO);
597 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200598 if (si->ib->flags & CF_READ_ACTIVITY)
599 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200600 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200601}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200602
Willy Tarreau5368d802012-08-21 18:22:06 +0200603/*
604 * This function is called to send buffer data to a stream socket.
605 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200606 * It iterates the transport layer's snd_buf function. It relies on the
Willy Tarreauf16723e2012-08-24 12:52:22 +0200607 * caller to commit polling changes.
Willy Tarreau5368d802012-08-21 18:22:06 +0200608 */
609static int si_conn_send_loop(struct connection *conn)
610{
Willy Tarreaue603e692012-09-27 22:20:41 +0200611 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200612 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200613 int ret;
614
Willy Tarreaucb76e592012-10-12 23:56:57 +0200615 if (chn->pipe && conn->xprt->snd_pipe) {
616 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200617 if (ret > 0)
Willy Tarreaucb76e592012-10-12 23:56:57 +0200618 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200619
Willy Tarreaucb76e592012-10-12 23:56:57 +0200620 if (!chn->pipe->data) {
621 put_pipe(chn->pipe);
622 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200623 }
624
Willy Tarreau96199b12012-08-24 00:46:52 +0200625 if (conn->flags & CO_FL_ERROR)
626 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200627 }
628
629 /* At this point, the pipe is empty, but we may still have data pending
630 * in the normal buffer.
631 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200632 if (!chn->buf->o)
Willy Tarreau5368d802012-08-21 18:22:06 +0200633 return 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200634
635 /* when we're in this loop, we already know that there is no spliced
636 * data left, and that there are sendable buffered data.
637 */
Willy Tarreau56a77e52012-09-02 18:34:44 +0200638 while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH | CO_FL_WAIT_DATA | CO_FL_WAIT_WR | CO_FL_HANDSHAKE))) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200639 /* check if we want to inform the kernel that we're interested in
640 * sending more data after this call. We want this if :
641 * - we're about to close after this last send and want to merge
642 * the ongoing FIN with the last segment.
643 * - we know we can't send everything at once and must get back
644 * here because of unaligned data
645 * - there is still a finite amount of data to forward
646 * The test is arranged so that the most common case does only 2
647 * tests.
648 */
649 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
650
Willy Tarreaucb76e592012-10-12 23:56:57 +0200651 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
652 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
653 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100654 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200655 send_flag |= MSG_MORE;
656
Willy Tarreau9b28e032012-10-12 23:49:43 +0200657 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Willy Tarreau5368d802012-08-21 18:22:06 +0200658 if (ret <= 0)
659 break;
660
Willy Tarreaucb76e592012-10-12 23:56:57 +0200661 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200662
Willy Tarreau9b28e032012-10-12 23:49:43 +0200663 if (!chn->buf->o) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200664 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200665 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Willy Tarreau5368d802012-08-21 18:22:06 +0200666 break;
667 }
668
Willy Tarreaued7f8362012-10-29 23:27:14 +0100669 /* if some data remain in the buffer, it's only because the
670 * system bufers are full, so we don't want to loop again.
671 */
672 break;
Willy Tarreau5368d802012-08-21 18:22:06 +0200673 } /* while */
674
675 if (conn->flags & CO_FL_ERROR)
676 return -1;
677
Willy Tarreau5368d802012-08-21 18:22:06 +0200678 return 0;
679}
680
681
Willy Tarreau100c4672012-08-20 12:06:26 +0200682/* Updates the timers and flags of a stream interface attached to a connection,
683 * depending on the buffers' flags. It should only be called once after the
684 * buffer flags have settled down, and before they are cleared. It doesn't
685 * harm to call it as often as desired (it just slightly hurts performance).
686 * It is only meant to be called by upper layers after buffer flags have been
687 * manipulated by analysers.
688 */
689void stream_int_update_conn(struct stream_interface *si)
690{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200691 struct channel *ib = si->ib;
692 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200693
Willy Tarreau100c4672012-08-20 12:06:26 +0200694 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200695 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200696 /* Read not closed, update FD status and timeout for reads */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100697 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200698 /* stop reading */
699 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100700 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200701 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200702 conn_data_stop_recv(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200703 ib->rex = TICK_ETERNITY;
704 }
705 }
706 else {
707 /* (re)start reading and update timeout. Note: we don't recompute the timeout
708 * everytime we get here, otherwise it would risk never to expire. We only
709 * update it if is was not yet set. The stream socket handler will already
710 * have updated it if there has been a completed I/O.
711 */
712 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200713 conn_data_want_recv(si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200714 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200715 ib->rex = tick_add_ifset(now_ms, ib->rto);
716 }
717 }
718
719 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200720 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200721 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200722 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200723 /* stop writing */
724 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100725 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200726 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200727 conn_data_stop_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200728 ob->wex = TICK_ETERNITY;
729 }
730 }
731 else {
732 /* (re)start writing and update timeout. Note: we don't recompute the timeout
733 * everytime we get here, otherwise it would risk never to expire. We only
734 * update it if is was not yet set. The stream socket handler will already
735 * have updated it if there has been a completed I/O.
736 */
737 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200738 conn_data_want_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200739 if (!tick_isset(ob->wex)) {
740 ob->wex = tick_add_ifset(now_ms, ob->wto);
741 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
742 /* Note: depending on the protocol, we don't know if we're waiting
743 * for incoming data or not. So in order to prevent the socket from
744 * expiring read timeouts during writes, we refresh the read timeout,
745 * except if it was already infinite or if we have explicitly setup
746 * independent streams.
747 */
748 ib->rex = tick_add_ifset(now_ms, ib->rto);
749 }
750 }
751 }
752 }
753}
754
Willy Tarreau46a8d922012-08-20 12:38:36 +0200755/* This function is used for inter-stream-interface calls. It is called by the
756 * consumer to inform the producer side that it may be interested in checking
757 * for free space in the buffer. Note that it intentionally does not update
758 * timeouts, so that we can still check them later at wake-up. This function is
759 * dedicated to connection-based stream interfaces.
760 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200761static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200762{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200763 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200764
Willy Tarreau34ffd772012-09-03 16:51:27 +0200765 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200766 return;
767
Willy Tarreau7d281492012-12-16 19:19:13 +0100768 conn_refresh_polling_flags(si->conn);
769
Willy Tarreaub31c9712012-11-11 23:05:39 +0100770 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200771 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100772 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200773 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau7d281492012-12-16 19:19:13 +0100774 __conn_data_stop_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200775 }
776 else {
777 /* (re)start reading */
778 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau7d281492012-12-16 19:19:13 +0100779 __conn_data_want_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200780 }
Willy Tarreau7d281492012-12-16 19:19:13 +0100781 conn_cond_update_data_polling(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200782}
783
784
Willy Tarreaude5722c2012-08-20 15:01:10 +0200785/* This function is used for inter-stream-interface calls. It is called by the
786 * producer to inform the consumer side that it may be interested in checking
787 * for data in the buffer. Note that it intentionally does not update timeouts,
788 * so that we can still check them later at wake-up.
789 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200790static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200791{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200792 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200793
Willy Tarreau34ffd772012-09-03 16:51:27 +0200794 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200795 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200796
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200797 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200798 return;
799
800 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100801 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200802 return;
803
Willy Tarreaud29a0662012-12-10 16:33:38 +0100804 if (!(si->conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
805 /* Before calling the data-level operations, we have to prepare
806 * the polling flags to ensure we properly detect changes.
Willy Tarreaude5722c2012-08-20 15:01:10 +0200807 */
Willy Tarreaud29a0662012-12-10 16:33:38 +0100808 if (si->conn->ctrl)
809 fd_want_send(si->conn->t.sock.fd);
Willy Tarreau7d281492012-12-16 19:19:13 +0100810
811 conn_refresh_polling_flags(si->conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100812
813 if (si_conn_send_loop(si->conn) < 0) {
814 /* Write error on the file descriptor */
815 fd_stop_both(si->conn->t.sock.fd);
816 __conn_data_stop_both(si->conn);
817 si->flags |= SI_FL_ERR;
818 si->conn->flags |= CO_FL_ERROR;
819 goto out_wakeup;
820 }
Willy Tarreaude5722c2012-08-20 15:01:10 +0200821 }
822
823 /* OK, so now we know that some data might have been sent, and that we may
824 * have to poll first. We have to do that too if the buffer is not empty.
825 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200826 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200827 /* the connection is established but we can't write. Either the
828 * buffer is empty, or we just refrain from sending because the
829 * ->o limit was reached. Maybe we just wrote the last
830 * chunk and need to close.
831 */
Willy Tarreaud29a0662012-12-10 16:33:38 +0100832 __conn_data_stop_send(si->conn);
Willy Tarreaub31c9712012-11-11 23:05:39 +0100833 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200834 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200835 (si->state == SI_ST_EST)) {
836 si_shutw(si);
837 goto out_wakeup;
838 }
839
Willy Tarreaub31c9712012-11-11 23:05:39 +0100840 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200841 si->flags |= SI_FL_WAIT_DATA;
842 ob->wex = TICK_ETERNITY;
843 }
844 else {
845 /* Otherwise there are remaining data to be sent in the buffer,
846 * which means we have to poll before doing so.
847 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200848 __conn_data_want_send(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200849 si->flags &= ~SI_FL_WAIT_DATA;
850 if (!tick_isset(ob->wex))
851 ob->wex = tick_add_ifset(now_ms, ob->wto);
852 }
853
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200854 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200855 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200856 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200857 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200858 ob->wex = tick_add_ifset(now_ms, ob->wto);
859
860 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
861 /* Note: to prevent the client from expiring read timeouts
862 * during writes, we refresh it. We only do this if the
863 * interface is not configured for "independent streams",
864 * because for some applications it's better not to do this,
865 * for instance when continuously exchanging small amounts
866 * of data which can full the socket buffers long before a
867 * write timeout is detected.
868 */
869 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
870 }
871 }
872
873 /* in case of special condition (error, shutdown, end of write...), we
874 * have to notify the task.
875 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200876 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200877 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200878 si->state != SI_ST_EST)) {
879 out_wakeup:
880 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
881 task_wakeup(si->owner, TASK_WOKEN_IO);
882 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200883
884 /* commit possible polling changes */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200885 conn_cond_update_polling(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200886}
887
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200888/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200889 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200890 * into the buffer from the connection. It iterates over the transport layer's
891 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200892 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200893static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200894{
Willy Tarreaue603e692012-09-27 22:20:41 +0200895 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200896 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +0200897 int ret, max, cur_read;
898 int read_poll = MAX_READ_POLL_LOOPS;
899
900 /* stop immediately on errors. Note that we DON'T want to stop on
901 * POLL_ERR, as the poller might report a write error while there
902 * are still data available in the recv buffer. This typically
903 * happens when we send too large a request to a backend server
904 * which rejects it before reading it all.
905 */
906 if (conn->flags & CO_FL_ERROR)
907 goto out_error;
908
909 /* stop here if we reached the end of data */
910 if (conn_data_read0_pending(conn))
911 goto out_shutdown_r;
912
913 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200914 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200915 return;
916
Willy Tarreau96199b12012-08-24 00:46:52 +0200917 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200918
919 /* First, let's see if we may splice data across the channel without
920 * using a buffer.
921 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200922 if (conn->xprt->rcv_pipe &&
Willy Tarreaucb76e592012-10-12 23:56:57 +0200923 chn->to_forward >= MIN_SPLICE_FORWARD && chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200924 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200925 /* We're embarrassed, there are already data pending in
926 * the buffer and we don't want to have them at two
927 * locations at a time. Let's indicate we need some
928 * place and ask the consumer to hurry.
929 */
930 goto abort_splice;
931 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200932
Willy Tarreaucb76e592012-10-12 23:56:57 +0200933 if (unlikely(chn->pipe == NULL)) {
934 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
935 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200936 goto abort_splice;
937 }
938 }
939
Willy Tarreaucb76e592012-10-12 23:56:57 +0200940 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200941 if (ret < 0) {
942 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200943 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200944 goto abort_splice;
945 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200946
Willy Tarreau96199b12012-08-24 00:46:52 +0200947 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +0200948 if (chn->to_forward != CHN_INFINITE_FORWARD)
949 chn->to_forward -= ret;
950 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +0200951 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200952 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +0200953 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200954
955 if (conn_data_read0_pending(conn))
956 goto out_shutdown_r;
957
958 if (conn->flags & CO_FL_ERROR)
959 goto out_error;
960
Willy Tarreau56a77e52012-09-02 18:34:44 +0200961 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
962 si->flags |= SI_FL_WAIT_ROOM;
963
Willy Tarreauce323de2012-08-20 21:41:06 +0200964 /* splice not possible (anymore), let's go on on standard copy */
965 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200966
967 abort_splice:
968 /* release the pipe if we can, which is almost always the case */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200969 if (chn->pipe && !chn->pipe->data) {
970 put_pipe(chn->pipe);
971 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +0200972 }
973
Willy Tarreaucb76e592012-10-12 23:56:57 +0200974 while (!chn->pipe && !(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_RD | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
975 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +0200976
977 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +0200978 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +0200979 break;
980 }
981
Willy Tarreau9b28e032012-10-12 23:49:43 +0200982 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +0200983 if (ret <= 0)
984 break;
985
986 cur_read += ret;
987
988 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200989 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +0200990 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200991 if (chn->to_forward != CHN_INFINITE_FORWARD) {
992 if (fwd > chn->to_forward)
993 fwd = chn->to_forward;
994 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +0200995 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200996 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +0200997 }
998
Willy Tarreaucb76e592012-10-12 23:56:57 +0200999 chn->flags |= CF_READ_PARTIAL;
1000 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001001
Willy Tarreaucb76e592012-10-12 23:56:57 +02001002 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001003 /* The buffer is now full, there's no point in going through
1004 * the loop again.
1005 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001006 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001007 chn->xfer_small = 0;
1008 chn->xfer_large++;
1009 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001010 /* we call this buffer a fast streamer if it manages
1011 * to be filled in one call 3 consecutive times.
1012 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001013 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001014 //fputc('+', stderr);
1015 }
1016 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001017 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001018 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001019 chn->xfer_large = 0;
1020 chn->xfer_small++;
1021 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001022 /* if the buffer has been at least half full twice,
1023 * we receive faster than we send, so at least it
1024 * is not a "fast streamer".
1025 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001026 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001027 //fputc('-', stderr);
1028 }
1029 }
1030 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001031 chn->xfer_small = 0;
1032 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001033 }
1034
Willy Tarreauce323de2012-08-20 21:41:06 +02001035 si->flags |= SI_FL_WAIT_ROOM;
1036 break;
1037 }
1038
Willy Tarreau5fddab02012-11-09 18:27:26 +01001039 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreaud486ef52012-12-10 17:03:52 +01001040 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001041 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001042 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001043
1044 /* if too many bytes were missing from last read, it means that
1045 * it's pointless trying to read again because the system does
1046 * not have them in buffers.
1047 */
1048 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001049 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001050 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001051 chn->xfer_large = 0;
1052 chn->xfer_small++;
1053 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001054 /* we have read less than half of the buffer in
1055 * one pass, and this happened at least 3 times.
1056 * This is definitely not a streamer.
1057 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001058 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001059 //fputc('!', stderr);
1060 }
1061 }
1062
1063 /* if a streamer has read few data, it may be because we
1064 * have exhausted system buffers. It's not worth trying
1065 * again.
1066 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001067 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001068 break;
1069
1070 /* if we read a large block smaller than what we requested,
1071 * it's almost certain we'll never get anything more.
1072 */
1073 if (ret >= global.tune.recv_enough)
1074 break;
1075 }
1076 } /* while !flags */
1077
Willy Tarreau96199b12012-08-24 00:46:52 +02001078 if (conn->flags & CO_FL_ERROR)
1079 goto out_error;
1080
Willy Tarreauce323de2012-08-20 21:41:06 +02001081 if (conn_data_read0_pending(conn))
1082 /* connection closed */
1083 goto out_shutdown_r;
1084
1085 return;
1086
1087 out_shutdown_r:
1088 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001089 chn->flags |= CF_READ_NULL;
1090 if (chn->flags & CF_AUTO_CLOSE)
1091 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001092 stream_sock_read0(si);
1093 conn_data_read0(conn);
1094 return;
1095
1096 out_error:
1097 /* Read error on the connection, report the error and stop I/O */
1098 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001099}
1100
1101/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001102 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001103 * from the buffer to the connection. It iterates over the transport layer's
1104 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001105 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001106static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001107{
Willy Tarreaue603e692012-09-27 22:20:41 +02001108 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001109 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001110
1111 if (conn->flags & CO_FL_ERROR)
1112 goto out_error;
1113
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001114 if (si->conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001115 /* a handshake was requested */
1116 return;
1117
1118 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001119 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001120 return;
1121
1122 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001123 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001124 goto out_error;
1125
1126 /* OK all done */
1127 return;
1128
1129 out_error:
1130 /* Write error on the connection, report the error and stop I/O */
1131 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001132}
1133
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001134/*
1135 * This function propagates a null read received on a socket-based connection.
1136 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1137 * the close is also forwarded to the write side as an abort. This function is
1138 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1139 * state on the socket.
1140 */
1141void stream_sock_read0(struct stream_interface *si)
1142{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001143 si->ib->flags &= ~CF_SHUTR_NOW;
1144 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001145 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001146 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001147 si->ib->rex = TICK_ETERNITY;
1148 si->flags &= ~SI_FL_WAIT_ROOM;
1149
1150 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1151 return;
1152
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001153 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001154 goto do_close;
1155
1156 if (si->flags & SI_FL_NOHALF) {
1157 /* we want to immediately forward this close to the write side */
1158 if (si->flags & SI_FL_NOLINGER) {
1159 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001160 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001161 (struct linger *) &nolinger, sizeof(struct linger));
1162 }
1163 /* force flag on ssl to keep session in cache */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001164 if (si->conn->xprt->shutw)
1165 si->conn->xprt->shutw(si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001166 goto do_close;
1167 }
1168
1169 /* otherwise that's just a normal read shutdown */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001170 __conn_data_stop_recv(si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001171 return;
1172
1173 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001174 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreau2b199c92012-11-23 17:32:21 +01001175 conn_full_close(si->conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001176
1177 si->ib->flags &= ~CF_SHUTR_NOW;
1178 si->ib->flags |= CF_SHUTR;
1179 si->ib->rex = TICK_ETERNITY;
1180
1181 si->ob->flags &= ~CF_SHUTW_NOW;
1182 si->ob->flags |= CF_SHUTW;
1183 si->ob->wex = TICK_ETERNITY;
1184
1185 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1186
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001187 si->state = SI_ST_DIS;
1188 si->exp = TICK_ETERNITY;
1189 if (si->release)
1190 si->release(si);
1191 return;
1192}
1193
Willy Tarreaudded32d2008-11-30 19:48:07 +01001194/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001195 * Local variables:
1196 * c-indent-level: 8
1197 * c-basic-offset: 8
1198 * End:
1199 */