blob: 5f6d85d65e591c6c4965c6d16ab75e040de34b84 [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 Tarreaub31c9712012-11-11 23:05:39 +0100768 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200769 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100770 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200771 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200772 conn_data_stop_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200773 }
774 else {
775 /* (re)start reading */
776 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200777 conn_data_want_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200778 }
779}
780
781
Willy Tarreaude5722c2012-08-20 15:01:10 +0200782/* This function is used for inter-stream-interface calls. It is called by the
783 * producer to inform the consumer side that it may be interested in checking
784 * for data in the buffer. Note that it intentionally does not update timeouts,
785 * so that we can still check them later at wake-up.
786 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200787static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200788{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200789 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200790
Willy Tarreau34ffd772012-09-03 16:51:27 +0200791 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200792 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200793
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200794 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200795 return;
796
797 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100798 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200799 return;
800
Willy Tarreaud29a0662012-12-10 16:33:38 +0100801 if (!(si->conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
802 /* Before calling the data-level operations, we have to prepare
803 * the polling flags to ensure we properly detect changes.
Willy Tarreaude5722c2012-08-20 15:01:10 +0200804 */
Willy Tarreaud29a0662012-12-10 16:33:38 +0100805 if (si->conn->ctrl)
806 fd_want_send(si->conn->t.sock.fd);
807 si->conn->flags &= ~(CO_FL_WAIT_DATA|CO_FL_WAIT_ROOM|CO_FL_WAIT_RD|CO_FL_WAIT_WR);
Willy Tarreauca00fbc2012-12-15 09:18:05 +0100808 if (fd_ev_is_set(si->conn->t.sock.fd, DIR_WR))
809 si->conn->flags |= CO_FL_CURR_WR_ENA;
Willy Tarreaud29a0662012-12-10 16:33:38 +0100810
811 if (si_conn_send_loop(si->conn) < 0) {
812 /* Write error on the file descriptor */
813 fd_stop_both(si->conn->t.sock.fd);
814 __conn_data_stop_both(si->conn);
815 si->flags |= SI_FL_ERR;
816 si->conn->flags |= CO_FL_ERROR;
817 goto out_wakeup;
818 }
Willy Tarreaude5722c2012-08-20 15:01:10 +0200819 }
820
821 /* OK, so now we know that some data might have been sent, and that we may
822 * have to poll first. We have to do that too if the buffer is not empty.
823 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200824 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200825 /* the connection is established but we can't write. Either the
826 * buffer is empty, or we just refrain from sending because the
827 * ->o limit was reached. Maybe we just wrote the last
828 * chunk and need to close.
829 */
Willy Tarreaud29a0662012-12-10 16:33:38 +0100830 __conn_data_stop_send(si->conn);
Willy Tarreaub31c9712012-11-11 23:05:39 +0100831 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200832 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200833 (si->state == SI_ST_EST)) {
834 si_shutw(si);
835 goto out_wakeup;
836 }
837
Willy Tarreaub31c9712012-11-11 23:05:39 +0100838 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200839 si->flags |= SI_FL_WAIT_DATA;
840 ob->wex = TICK_ETERNITY;
841 }
842 else {
843 /* Otherwise there are remaining data to be sent in the buffer,
844 * which means we have to poll before doing so.
845 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200846 __conn_data_want_send(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200847 si->flags &= ~SI_FL_WAIT_DATA;
848 if (!tick_isset(ob->wex))
849 ob->wex = tick_add_ifset(now_ms, ob->wto);
850 }
851
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200852 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200853 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200854 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200855 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200856 ob->wex = tick_add_ifset(now_ms, ob->wto);
857
858 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
859 /* Note: to prevent the client from expiring read timeouts
860 * during writes, we refresh it. We only do this if the
861 * interface is not configured for "independent streams",
862 * because for some applications it's better not to do this,
863 * for instance when continuously exchanging small amounts
864 * of data which can full the socket buffers long before a
865 * write timeout is detected.
866 */
867 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
868 }
869 }
870
871 /* in case of special condition (error, shutdown, end of write...), we
872 * have to notify the task.
873 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200874 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200875 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200876 si->state != SI_ST_EST)) {
877 out_wakeup:
878 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
879 task_wakeup(si->owner, TASK_WOKEN_IO);
880 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200881
882 /* commit possible polling changes */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200883 conn_cond_update_polling(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200884}
885
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200886/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200887 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200888 * into the buffer from the connection. It iterates over the transport layer's
889 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200890 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200891static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200892{
Willy Tarreaue603e692012-09-27 22:20:41 +0200893 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200894 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +0200895 int ret, max, cur_read;
896 int read_poll = MAX_READ_POLL_LOOPS;
897
898 /* stop immediately on errors. Note that we DON'T want to stop on
899 * POLL_ERR, as the poller might report a write error while there
900 * are still data available in the recv buffer. This typically
901 * happens when we send too large a request to a backend server
902 * which rejects it before reading it all.
903 */
904 if (conn->flags & CO_FL_ERROR)
905 goto out_error;
906
907 /* stop here if we reached the end of data */
908 if (conn_data_read0_pending(conn))
909 goto out_shutdown_r;
910
911 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200912 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200913 return;
914
Willy Tarreau96199b12012-08-24 00:46:52 +0200915 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200916
917 /* First, let's see if we may splice data across the channel without
918 * using a buffer.
919 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200920 if (conn->xprt->rcv_pipe &&
Willy Tarreaucb76e592012-10-12 23:56:57 +0200921 chn->to_forward >= MIN_SPLICE_FORWARD && chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200922 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200923 /* We're embarrassed, there are already data pending in
924 * the buffer and we don't want to have them at two
925 * locations at a time. Let's indicate we need some
926 * place and ask the consumer to hurry.
927 */
928 goto abort_splice;
929 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200930
Willy Tarreaucb76e592012-10-12 23:56:57 +0200931 if (unlikely(chn->pipe == NULL)) {
932 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
933 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200934 goto abort_splice;
935 }
936 }
937
Willy Tarreaucb76e592012-10-12 23:56:57 +0200938 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200939 if (ret < 0) {
940 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200941 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200942 goto abort_splice;
943 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200944
Willy Tarreau96199b12012-08-24 00:46:52 +0200945 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +0200946 if (chn->to_forward != CHN_INFINITE_FORWARD)
947 chn->to_forward -= ret;
948 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +0200949 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200950 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +0200951 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200952
953 if (conn_data_read0_pending(conn))
954 goto out_shutdown_r;
955
956 if (conn->flags & CO_FL_ERROR)
957 goto out_error;
958
Willy Tarreau56a77e52012-09-02 18:34:44 +0200959 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
960 si->flags |= SI_FL_WAIT_ROOM;
961
Willy Tarreauce323de2012-08-20 21:41:06 +0200962 /* splice not possible (anymore), let's go on on standard copy */
963 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200964
965 abort_splice:
966 /* release the pipe if we can, which is almost always the case */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200967 if (chn->pipe && !chn->pipe->data) {
968 put_pipe(chn->pipe);
969 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +0200970 }
971
Willy Tarreaucb76e592012-10-12 23:56:57 +0200972 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))) {
973 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +0200974
975 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +0200976 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +0200977 break;
978 }
979
Willy Tarreau9b28e032012-10-12 23:49:43 +0200980 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +0200981 if (ret <= 0)
982 break;
983
984 cur_read += ret;
985
986 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200987 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +0200988 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200989 if (chn->to_forward != CHN_INFINITE_FORWARD) {
990 if (fwd > chn->to_forward)
991 fwd = chn->to_forward;
992 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +0200993 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200994 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +0200995 }
996
Willy Tarreaucb76e592012-10-12 23:56:57 +0200997 chn->flags |= CF_READ_PARTIAL;
998 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +0200999
Willy Tarreaucb76e592012-10-12 23:56:57 +02001000 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001001 /* The buffer is now full, there's no point in going through
1002 * the loop again.
1003 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001004 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001005 chn->xfer_small = 0;
1006 chn->xfer_large++;
1007 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001008 /* we call this buffer a fast streamer if it manages
1009 * to be filled in one call 3 consecutive times.
1010 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001011 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001012 //fputc('+', stderr);
1013 }
1014 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001015 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001016 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001017 chn->xfer_large = 0;
1018 chn->xfer_small++;
1019 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001020 /* if the buffer has been at least half full twice,
1021 * we receive faster than we send, so at least it
1022 * is not a "fast streamer".
1023 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001024 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001025 //fputc('-', stderr);
1026 }
1027 }
1028 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001029 chn->xfer_small = 0;
1030 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001031 }
1032
Willy Tarreauce323de2012-08-20 21:41:06 +02001033 si->flags |= SI_FL_WAIT_ROOM;
1034 break;
1035 }
1036
Willy Tarreau5fddab02012-11-09 18:27:26 +01001037 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreaud486ef52012-12-10 17:03:52 +01001038 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001039 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001040 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001041
1042 /* if too many bytes were missing from last read, it means that
1043 * it's pointless trying to read again because the system does
1044 * not have them in buffers.
1045 */
1046 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001047 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001048 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001049 chn->xfer_large = 0;
1050 chn->xfer_small++;
1051 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001052 /* we have read less than half of the buffer in
1053 * one pass, and this happened at least 3 times.
1054 * This is definitely not a streamer.
1055 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001056 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001057 //fputc('!', stderr);
1058 }
1059 }
1060
1061 /* if a streamer has read few data, it may be because we
1062 * have exhausted system buffers. It's not worth trying
1063 * again.
1064 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001065 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001066 break;
1067
1068 /* if we read a large block smaller than what we requested,
1069 * it's almost certain we'll never get anything more.
1070 */
1071 if (ret >= global.tune.recv_enough)
1072 break;
1073 }
1074 } /* while !flags */
1075
Willy Tarreau96199b12012-08-24 00:46:52 +02001076 if (conn->flags & CO_FL_ERROR)
1077 goto out_error;
1078
Willy Tarreauce323de2012-08-20 21:41:06 +02001079 if (conn_data_read0_pending(conn))
1080 /* connection closed */
1081 goto out_shutdown_r;
1082
1083 return;
1084
1085 out_shutdown_r:
1086 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001087 chn->flags |= CF_READ_NULL;
1088 if (chn->flags & CF_AUTO_CLOSE)
1089 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001090 stream_sock_read0(si);
1091 conn_data_read0(conn);
1092 return;
1093
1094 out_error:
1095 /* Read error on the connection, report the error and stop I/O */
1096 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001097}
1098
1099/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001100 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001101 * from the buffer to the connection. It iterates over the transport layer's
1102 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001103 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001104static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001105{
Willy Tarreaue603e692012-09-27 22:20:41 +02001106 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001107 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001108
1109 if (conn->flags & CO_FL_ERROR)
1110 goto out_error;
1111
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001112 if (si->conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001113 /* a handshake was requested */
1114 return;
1115
1116 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001117 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001118 return;
1119
1120 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001121 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001122 goto out_error;
1123
1124 /* OK all done */
1125 return;
1126
1127 out_error:
1128 /* Write error on the connection, report the error and stop I/O */
1129 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001130}
1131
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001132/*
1133 * This function propagates a null read received on a socket-based connection.
1134 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1135 * the close is also forwarded to the write side as an abort. This function is
1136 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1137 * state on the socket.
1138 */
1139void stream_sock_read0(struct stream_interface *si)
1140{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001141 si->ib->flags &= ~CF_SHUTR_NOW;
1142 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001143 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001144 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001145 si->ib->rex = TICK_ETERNITY;
1146 si->flags &= ~SI_FL_WAIT_ROOM;
1147
1148 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1149 return;
1150
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001151 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001152 goto do_close;
1153
1154 if (si->flags & SI_FL_NOHALF) {
1155 /* we want to immediately forward this close to the write side */
1156 if (si->flags & SI_FL_NOLINGER) {
1157 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001158 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001159 (struct linger *) &nolinger, sizeof(struct linger));
1160 }
1161 /* force flag on ssl to keep session in cache */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001162 if (si->conn->xprt->shutw)
1163 si->conn->xprt->shutw(si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001164 goto do_close;
1165 }
1166
1167 /* otherwise that's just a normal read shutdown */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001168 __conn_data_stop_recv(si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001169 return;
1170
1171 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001172 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreau2b199c92012-11-23 17:32:21 +01001173 conn_full_close(si->conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001174
1175 si->ib->flags &= ~CF_SHUTR_NOW;
1176 si->ib->flags |= CF_SHUTR;
1177 si->ib->rex = TICK_ETERNITY;
1178
1179 si->ob->flags &= ~CF_SHUTW_NOW;
1180 si->ob->flags |= CF_SHUTW;
1181 si->ob->wex = TICK_ETERNITY;
1182
1183 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1184
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001185 si->state = SI_ST_DIS;
1186 si->exp = TICK_ETERNITY;
1187 if (si->release)
1188 si->release(si);
1189 return;
1190}
1191
Willy Tarreaudded32d2008-11-30 19:48:07 +01001192/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001193 * Local variables:
1194 * c-indent-level: 8
1195 * c-basic-offset: 8
1196 * End:
1197 */