blob: aa8677375b6a21bc19d2f7e84a7bb87f0c166740 [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 Tarreauf2943dc2012-10-26 20:10:28 +0200230 conn_xprt_close(si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200231 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100232 fd_delete(si->conn->t.sock.fd);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200233 si->state = SI_ST_DIS;
234 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200235
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200236 if (si->release)
237 si->release(si);
238 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200239 else if (si->flags & SI_FL_NOHALF) {
240 /* we want to immediately forward this close to the write side */
241 return stream_int_shutw(si);
242 }
243 else if (conn->ctrl) {
244 /* we want the caller to disable polling on this FD */
245 return 1;
246 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200247
Willy Tarreau4a36b562012-08-06 19:31:45 +0200248 /* note that if the task exists, it must unregister itself once it runs */
249 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200250 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200251 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200252}
253
Willy Tarreau4a36b562012-08-06 19:31:45 +0200254/*
255 * This function performs a shutdown-write on a stream interface in a connected or
256 * init state (it does nothing for other states). It either shuts the write side
257 * or marks itself as closed. The buffer flags are updated to reflect the new state.
258 * It does also close everything if the SI was marked as being in error state. If
259 * there is a data-layer shutdown, it is called. If a control layer is defined, then
260 * it is supposed to be a socket layer and file descriptors are then shutdown or
261 * closed accordingly. If no control layer is defined, then the SI is supposed to
262 * be an embedded one and the owner task is woken up if it exists. The function
263 * does not disable polling on the FD by itself, it returns non-zero instead if
264 * the caller needs to do so (except when the FD is deleted where this is implicit).
265 */
266int stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200267{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200268 struct connection *conn = si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200269
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200270 si->ob->flags &= ~CF_SHUTW_NOW;
271 if (si->ob->flags & CF_SHUTW)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200272 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200273 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200274 si->ob->wex = TICK_ETERNITY;
275 si->flags &= ~SI_FL_WAIT_DATA;
276
277 switch (si->state) {
278 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200279 /* we have to shut before closing, otherwise some short messages
280 * may never leave the system, especially when there are remaining
281 * unread data in the socket input buffer, or when nolinger is set.
282 * However, if SI_FL_NOLINGER is explicitly set, we know there is
283 * no risk so we close both sides immediately.
284 */
285 if (si->flags & SI_FL_ERR) {
286 /* quick close, the socket is already shut. Remove pending flags. */
287 si->flags &= ~SI_FL_NOLINGER;
288 } else if (si->flags & SI_FL_NOLINGER) {
289 si->flags &= ~SI_FL_NOLINGER;
290 if (conn->ctrl) {
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100291 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau4a36b562012-08-06 19:31:45 +0200292 (struct linger *) &nolinger, sizeof(struct linger));
293 }
294 /* unclean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200295 if (conn->xprt && conn->xprt->shutw)
296 conn->xprt->shutw(conn, 0);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200297 } else {
298 /* clean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200299 if (conn->xprt && conn->xprt->shutw)
300 conn->xprt->shutw(conn, 1);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200301
302 if (!(si->flags & SI_FL_NOHALF)) {
303 /* We shutdown transport layer */
304 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100305 shutdown(si->conn->t.sock.fd, SHUT_WR);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200306
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200307 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau4a36b562012-08-06 19:31:45 +0200308 /* OK just a shutw, but we want the caller
309 * to disable polling on this FD if exists.
310 */
311 return !!conn->ctrl;
312 }
313 }
314 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200315
316 /* fall through */
317 case SI_ST_CON:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200318 /* we may have to close a pending connection, and mark the
319 * response buffer as shutr
320 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200321 conn_xprt_close(si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200322 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100323 fd_delete(si->conn->t.sock.fd);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200324 /* fall through */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200325 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100326 case SI_ST_QUE:
327 case SI_ST_TAR:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200328 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200329
330 if (si->release)
331 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200332 default:
333 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200334 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200335 si->ib->rex = TICK_ETERNITY;
336 si->exp = TICK_ETERNITY;
337 }
338
Willy Tarreau4a36b562012-08-06 19:31:45 +0200339 /* note that if the task exists, it must unregister itself once it runs */
340 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200341 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200342 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200343}
344
345/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200346static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200347{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200348 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200349
350 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
351 __FUNCTION__,
352 si, si->state, si->ib->flags, si->ob->flags);
353
Willy Tarreaub31c9712012-11-11 23:05:39 +0100354 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200355 return;
356
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200357 if (channel_full(ib)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200358 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200359 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200360 }
361 else {
362 /* (re)start reading */
363 si->flags &= ~SI_FL_WAIT_ROOM;
364 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
365 task_wakeup(si->owner, TASK_WOKEN_IO);
366 }
367}
368
369/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200370static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200371{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200372 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200373
374 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
375 __FUNCTION__,
376 si, si->state, si->ib->flags, si->ob->flags);
377
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200378 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200379 return;
380
381 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200382 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200383 return;
384
385 /* Otherwise there are remaining data to be sent in the buffer,
386 * so we tell the handler.
387 */
388 si->flags &= ~SI_FL_WAIT_DATA;
389 if (!tick_isset(ob->wex))
390 ob->wex = tick_add_ifset(now_ms, ob->wto);
391
392 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
393 task_wakeup(si->owner, TASK_WOKEN_IO);
394}
395
Willy Tarreaub24281b2011-02-13 13:16:36 +0100396/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200397 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100398 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200399 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100400 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200401 * It also pre-initializes applet.state to zero and the connection context
402 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200403 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100404struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200405{
Simon Horman7abd00d2011-08-13 08:03:51 +0900406 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200407
Willy Tarreauc5788912012-08-24 18:12:41 +0200408 si_prepare_embedded(si);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100409 si->conn->target = &app->obj_type;
Willy Tarreau128b03c2012-11-11 23:14:16 +0100410 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200411 si->flags |= SI_FL_WAIT_DATA;
412 return si->owner;
413}
414
Willy Tarreaufb90d942009-09-05 20:57:35 +0200415/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100416 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200417 */
418void stream_int_unregister_handler(struct stream_interface *si)
419{
Willy Tarreau128b03c2012-11-11 23:14:16 +0100420 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200421 si->owner = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100422 si->conn->target = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200423}
424
Willy Tarreau2c6be842012-07-06 17:12:34 +0200425/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200426 * established. It returns 0 if it fails in a fatal way or needs to poll to go
427 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200428 * flags (the bit is provided in <flag> by the caller). It is designed to be
429 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200430 */
431int conn_si_send_proxy(struct connection *conn, unsigned int flag)
432{
Willy Tarreaue603e692012-09-27 22:20:41 +0200433 struct stream_interface *si = conn->owner;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200434
435 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200436 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200437 goto out_error;
438
439 /* If we have a PROXY line to send, we'll use this to validate the
440 * connection, in which case the connection is validated only once
441 * we've sent the whole proxy line. Otherwise we use connect().
442 */
443 if (si->send_proxy_ofs) {
444 int ret;
445
446 /* The target server expects a PROXY line to be sent first.
447 * If the send_proxy_ofs is negative, it corresponds to the
448 * offset to start sending from then end of the proxy string
449 * (which is recomputed every time since it's constant). If
450 * it is positive, it means we have to send from the start.
451 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100452 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 +0200453 if (!ret)
454 goto out_error;
455
456 if (si->send_proxy_ofs > 0)
457 si->send_proxy_ofs = -ret; /* first call */
458
Willy Tarreaua1a74742012-08-24 12:14:49 +0200459 /* we have to send trash from (ret+sp for -sp bytes). If the
460 * data layer has a pending write, we'll also set MSG_MORE.
461 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100462 ret = send(conn->t.sock.fd, trash.str + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200463 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200464
465 if (ret == 0)
466 goto out_wait;
467
468 if (ret < 0) {
469 if (errno == EAGAIN)
470 goto out_wait;
471 goto out_error;
472 }
473
474 si->send_proxy_ofs += ret; /* becomes zero once complete */
475 if (si->send_proxy_ofs != 0)
476 goto out_wait;
477
478 /* OK we've sent the whole line, we're connected */
479 }
480
Willy Tarreaua1a74742012-08-24 12:14:49 +0200481 /* The connection is ready now, simply return and let the connection
482 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200483 */
484 if (conn->flags & CO_FL_WAIT_L4_CONN)
485 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200486 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200487 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200488
489 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200490 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200491 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200492 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200493 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200494
495 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200496 __conn_sock_stop_recv(conn);
497 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200498 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200499}
500
Willy Tarreau100c4672012-08-20 12:06:26 +0200501/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200502 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200503 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200504 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200505 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200506 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200507static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200508{
Willy Tarreaue603e692012-09-27 22:20:41 +0200509 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200510
511 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
512 __FUNCTION__,
513 si, si->state, si->ib->flags, si->ob->flags);
514
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200515 if (conn->flags & CO_FL_ERROR)
516 si->flags |= SI_FL_ERR;
517
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200518 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200519 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200520 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200521 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200522 }
523
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200524 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200525 if (channel_is_empty(si->ob)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100526 if (((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200527 (si->state == SI_ST_EST))
528 stream_int_shutw(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200529 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200530 si->ob->wex = TICK_ETERNITY;
531 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200532
Willy Tarreaub31c9712012-11-11 23:05:39 +0100533 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200534 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200535
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200536 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200537 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200538 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200539 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200540 if (tick_isset(si->ob->wex))
541 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200542
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200543 if (!(si->flags & SI_FL_INDEP_STR))
544 if (tick_isset(si->ib->rex))
545 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200546
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200547 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200548 !channel_full(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200549 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
550 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200551 }
552
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200553 /* process producer side.
554 * We might have some data the consumer is waiting for.
555 * We can do fast-forwarding, but we avoid doing this for partial
556 * buffers, because it is very likely that it will be done again
557 * immediately afterwards once the following data is parsed (eg:
558 * HTTP chunking).
559 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200560 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200561 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau9b28e032012-10-12 23:49:43 +0200562 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200563 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200564
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200565 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200566
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200567 /* check if the consumer has freed some space either in the
568 * buffer or in the pipe.
569 */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200570 if (!channel_full(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200571 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
572 si->flags &= ~SI_FL_WAIT_ROOM;
573 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200574
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200575 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200576 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200577 si->ib->rex = TICK_ETERNITY;
578 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200579 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 +0200580 !channel_full(si->ib)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100581 /* we must re-enable reading if si_chk_snd() has freed some space */
582 __conn_data_want_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200583 if (tick_isset(si->ib->rex))
584 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200585 }
586
587 /* wake the task up only when needed */
588 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200589 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200590 si->state != SI_ST_EST ||
591 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200592 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200593 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
594
595 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200596 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
597 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
598 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200599 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200600 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200601 task_wakeup(si->owner, TASK_WOKEN_IO);
602 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200603 if (si->ib->flags & CF_READ_ACTIVITY)
604 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200605 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200606}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200607
Willy Tarreau5368d802012-08-21 18:22:06 +0200608/*
609 * This function is called to send buffer data to a stream socket.
610 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200611 * It iterates the transport layer's snd_buf function. It relies on the
Willy Tarreauf16723e2012-08-24 12:52:22 +0200612 * caller to commit polling changes.
Willy Tarreau5368d802012-08-21 18:22:06 +0200613 */
614static int si_conn_send_loop(struct connection *conn)
615{
Willy Tarreaue603e692012-09-27 22:20:41 +0200616 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200617 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200618 int ret;
619
Willy Tarreaucb76e592012-10-12 23:56:57 +0200620 if (chn->pipe && conn->xprt->snd_pipe) {
621 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200622 if (ret > 0)
Willy Tarreaucb76e592012-10-12 23:56:57 +0200623 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200624
Willy Tarreaucb76e592012-10-12 23:56:57 +0200625 if (!chn->pipe->data) {
626 put_pipe(chn->pipe);
627 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200628 }
629
Willy Tarreau96199b12012-08-24 00:46:52 +0200630 if (conn->flags & CO_FL_ERROR)
631 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200632 }
633
634 /* At this point, the pipe is empty, but we may still have data pending
635 * in the normal buffer.
636 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200637 if (!chn->buf->o)
Willy Tarreau5368d802012-08-21 18:22:06 +0200638 return 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200639
640 /* when we're in this loop, we already know that there is no spliced
641 * data left, and that there are sendable buffered data.
642 */
Willy Tarreau56a77e52012-09-02 18:34:44 +0200643 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 +0200644 /* check if we want to inform the kernel that we're interested in
645 * sending more data after this call. We want this if :
646 * - we're about to close after this last send and want to merge
647 * the ongoing FIN with the last segment.
648 * - we know we can't send everything at once and must get back
649 * here because of unaligned data
650 * - there is still a finite amount of data to forward
651 * The test is arranged so that the most common case does only 2
652 * tests.
653 */
654 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
655
Willy Tarreaucb76e592012-10-12 23:56:57 +0200656 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
657 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
658 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100659 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200660 send_flag |= MSG_MORE;
661
Willy Tarreau9b28e032012-10-12 23:49:43 +0200662 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Willy Tarreau5368d802012-08-21 18:22:06 +0200663 if (ret <= 0)
664 break;
665
Willy Tarreaucb76e592012-10-12 23:56:57 +0200666 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200667
Willy Tarreau9b28e032012-10-12 23:49:43 +0200668 if (!chn->buf->o) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200669 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200670 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Willy Tarreau5368d802012-08-21 18:22:06 +0200671 break;
672 }
673
Willy Tarreaued7f8362012-10-29 23:27:14 +0100674 /* if some data remain in the buffer, it's only because the
675 * system bufers are full, so we don't want to loop again.
676 */
677 break;
Willy Tarreau5368d802012-08-21 18:22:06 +0200678 } /* while */
679
680 if (conn->flags & CO_FL_ERROR)
681 return -1;
682
Willy Tarreau5368d802012-08-21 18:22:06 +0200683 return 0;
684}
685
686
Willy Tarreau100c4672012-08-20 12:06:26 +0200687/* Updates the timers and flags of a stream interface attached to a connection,
688 * depending on the buffers' flags. It should only be called once after the
689 * buffer flags have settled down, and before they are cleared. It doesn't
690 * harm to call it as often as desired (it just slightly hurts performance).
691 * It is only meant to be called by upper layers after buffer flags have been
692 * manipulated by analysers.
693 */
694void stream_int_update_conn(struct stream_interface *si)
695{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200696 struct channel *ib = si->ib;
697 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200698
Willy Tarreau100c4672012-08-20 12:06:26 +0200699 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200700 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200701 /* Read not closed, update FD status and timeout for reads */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100702 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200703 /* stop reading */
704 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100705 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200706 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200707 conn_data_stop_recv(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200708 ib->rex = TICK_ETERNITY;
709 }
710 }
711 else {
712 /* (re)start reading and update timeout. Note: we don't recompute the timeout
713 * everytime we get here, otherwise it would risk never to expire. We only
714 * update it if is was not yet set. The stream socket handler will already
715 * have updated it if there has been a completed I/O.
716 */
717 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200718 conn_data_want_recv(si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200719 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200720 ib->rex = tick_add_ifset(now_ms, ib->rto);
721 }
722 }
723
724 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200725 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200726 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200727 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200728 /* stop writing */
729 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100730 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200731 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200732 conn_data_stop_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200733 ob->wex = TICK_ETERNITY;
734 }
735 }
736 else {
737 /* (re)start writing and update timeout. Note: we don't recompute the timeout
738 * everytime we get here, otherwise it would risk never to expire. We only
739 * update it if is was not yet set. The stream socket handler will already
740 * have updated it if there has been a completed I/O.
741 */
742 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200743 conn_data_want_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200744 if (!tick_isset(ob->wex)) {
745 ob->wex = tick_add_ifset(now_ms, ob->wto);
746 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
747 /* Note: depending on the protocol, we don't know if we're waiting
748 * for incoming data or not. So in order to prevent the socket from
749 * expiring read timeouts during writes, we refresh the read timeout,
750 * except if it was already infinite or if we have explicitly setup
751 * independent streams.
752 */
753 ib->rex = tick_add_ifset(now_ms, ib->rto);
754 }
755 }
756 }
757 }
758}
759
Willy Tarreau46a8d922012-08-20 12:38:36 +0200760/* This function is used for inter-stream-interface calls. It is called by the
761 * consumer to inform the producer side that it may be interested in checking
762 * for free space in the buffer. Note that it intentionally does not update
763 * timeouts, so that we can still check them later at wake-up. This function is
764 * dedicated to connection-based stream interfaces.
765 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200766static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200767{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200768 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200769
Willy Tarreau34ffd772012-09-03 16:51:27 +0200770 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200771 return;
772
Willy Tarreaub31c9712012-11-11 23:05:39 +0100773 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200774 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100775 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200776 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200777 conn_data_stop_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200778 }
779 else {
780 /* (re)start reading */
781 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200782 conn_data_want_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200783 }
784}
785
786
Willy Tarreaude5722c2012-08-20 15:01:10 +0200787/* This function is used for inter-stream-interface calls. It is called by the
788 * producer to inform the consumer side that it may be interested in checking
789 * for data in the buffer. Note that it intentionally does not update timeouts,
790 * so that we can still check them later at wake-up.
791 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200792static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200793{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200794 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200795
Willy Tarreau34ffd772012-09-03 16:51:27 +0200796 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200797 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200798
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200799 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200800 return;
801
802 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
803 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100804 (fdtab[si->conn->t.sock.fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200805 return;
806
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200807 if (!(si->conn->flags & CO_FL_HANDSHAKE) && si_conn_send_loop(si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200808 /* Write error on the file descriptor. We mark the FD as STERROR so
809 * that we don't use it anymore and we notify the task.
810 */
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100811 fdtab[si->conn->t.sock.fd].ev &= ~FD_POLL_STICKY;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200812 __conn_data_stop_both(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200813 si->flags |= SI_FL_ERR;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200814 si->conn->flags |= CO_FL_ERROR;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200815 goto out_wakeup;
816 }
817
818 /* OK, so now we know that some data might have been sent, and that we may
819 * have to poll first. We have to do that too if the buffer is not empty.
820 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200821 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200822 /* the connection is established but we can't write. Either the
823 * buffer is empty, or we just refrain from sending because the
824 * ->o limit was reached. Maybe we just wrote the last
825 * chunk and need to close.
826 */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100827 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200828 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200829 (si->state == SI_ST_EST)) {
830 si_shutw(si);
831 goto out_wakeup;
832 }
833
Willy Tarreaub31c9712012-11-11 23:05:39 +0100834 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200835 si->flags |= SI_FL_WAIT_DATA;
836 ob->wex = TICK_ETERNITY;
837 }
838 else {
839 /* Otherwise there are remaining data to be sent in the buffer,
840 * which means we have to poll before doing so.
841 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200842 __conn_data_want_send(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200843 si->flags &= ~SI_FL_WAIT_DATA;
844 if (!tick_isset(ob->wex))
845 ob->wex = tick_add_ifset(now_ms, ob->wto);
846 }
847
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200848 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200849 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200850 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200851 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200852 ob->wex = tick_add_ifset(now_ms, ob->wto);
853
854 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
855 /* Note: to prevent the client from expiring read timeouts
856 * during writes, we refresh it. We only do this if the
857 * interface is not configured for "independent streams",
858 * because for some applications it's better not to do this,
859 * for instance when continuously exchanging small amounts
860 * of data which can full the socket buffers long before a
861 * write timeout is detected.
862 */
863 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
864 }
865 }
866
867 /* in case of special condition (error, shutdown, end of write...), we
868 * have to notify the task.
869 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200870 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200871 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200872 si->state != SI_ST_EST)) {
873 out_wakeup:
874 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
875 task_wakeup(si->owner, TASK_WOKEN_IO);
876 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200877
878 /* commit possible polling changes */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200879 conn_cond_update_polling(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200880}
881
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200882/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200883 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200884 * into the buffer from the connection. It iterates over the transport layer's
885 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200886 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200887static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200888{
Willy Tarreaue603e692012-09-27 22:20:41 +0200889 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200890 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +0200891 int ret, max, cur_read;
892 int read_poll = MAX_READ_POLL_LOOPS;
893
894 /* stop immediately on errors. Note that we DON'T want to stop on
895 * POLL_ERR, as the poller might report a write error while there
896 * are still data available in the recv buffer. This typically
897 * happens when we send too large a request to a backend server
898 * which rejects it before reading it all.
899 */
900 if (conn->flags & CO_FL_ERROR)
901 goto out_error;
902
903 /* stop here if we reached the end of data */
904 if (conn_data_read0_pending(conn))
905 goto out_shutdown_r;
906
907 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200908 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200909 return;
910
Willy Tarreau96199b12012-08-24 00:46:52 +0200911 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200912
913 /* First, let's see if we may splice data across the channel without
914 * using a buffer.
915 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200916 if (conn->xprt->rcv_pipe &&
Willy Tarreaucb76e592012-10-12 23:56:57 +0200917 chn->to_forward >= MIN_SPLICE_FORWARD && chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200918 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200919 /* We're embarrassed, there are already data pending in
920 * the buffer and we don't want to have them at two
921 * locations at a time. Let's indicate we need some
922 * place and ask the consumer to hurry.
923 */
924 goto abort_splice;
925 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200926
Willy Tarreaucb76e592012-10-12 23:56:57 +0200927 if (unlikely(chn->pipe == NULL)) {
928 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
929 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200930 goto abort_splice;
931 }
932 }
933
Willy Tarreaucb76e592012-10-12 23:56:57 +0200934 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200935 if (ret < 0) {
936 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200937 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200938 goto abort_splice;
939 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200940
Willy Tarreau96199b12012-08-24 00:46:52 +0200941 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +0200942 if (chn->to_forward != CHN_INFINITE_FORWARD)
943 chn->to_forward -= ret;
944 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +0200945 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200946 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +0200947 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200948
949 if (conn_data_read0_pending(conn))
950 goto out_shutdown_r;
951
952 if (conn->flags & CO_FL_ERROR)
953 goto out_error;
954
Willy Tarreau56a77e52012-09-02 18:34:44 +0200955 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
956 si->flags |= SI_FL_WAIT_ROOM;
957
Willy Tarreauce323de2012-08-20 21:41:06 +0200958 /* splice not possible (anymore), let's go on on standard copy */
959 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200960
961 abort_splice:
962 /* release the pipe if we can, which is almost always the case */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200963 if (chn->pipe && !chn->pipe->data) {
964 put_pipe(chn->pipe);
965 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +0200966 }
967
Willy Tarreaucb76e592012-10-12 23:56:57 +0200968 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))) {
969 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +0200970
971 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +0200972 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +0200973 break;
974 }
975
Willy Tarreau9b28e032012-10-12 23:49:43 +0200976 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +0200977 if (ret <= 0)
978 break;
979
980 cur_read += ret;
981
982 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200983 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +0200984 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200985 if (chn->to_forward != CHN_INFINITE_FORWARD) {
986 if (fwd > chn->to_forward)
987 fwd = chn->to_forward;
988 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +0200989 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200990 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +0200991 }
992
Willy Tarreaucb76e592012-10-12 23:56:57 +0200993 chn->flags |= CF_READ_PARTIAL;
994 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +0200995
Willy Tarreaucb76e592012-10-12 23:56:57 +0200996 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +0200997 /* The buffer is now full, there's no point in going through
998 * the loop again.
999 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001000 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001001 chn->xfer_small = 0;
1002 chn->xfer_large++;
1003 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001004 /* we call this buffer a fast streamer if it manages
1005 * to be filled in one call 3 consecutive times.
1006 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001007 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001008 //fputc('+', stderr);
1009 }
1010 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001011 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001012 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001013 chn->xfer_large = 0;
1014 chn->xfer_small++;
1015 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001016 /* if the buffer has been at least half full twice,
1017 * we receive faster than we send, so at least it
1018 * is not a "fast streamer".
1019 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001020 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001021 //fputc('-', stderr);
1022 }
1023 }
1024 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001025 chn->xfer_small = 0;
1026 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001027 }
1028
Willy Tarreauce323de2012-08-20 21:41:06 +02001029 si->flags |= SI_FL_WAIT_ROOM;
1030 break;
1031 }
1032
Willy Tarreau5fddab02012-11-09 18:27:26 +01001033 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
1034 conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001035 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001036 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001037
1038 /* if too many bytes were missing from last read, it means that
1039 * it's pointless trying to read again because the system does
1040 * not have them in buffers.
1041 */
1042 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001043 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001044 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001045 chn->xfer_large = 0;
1046 chn->xfer_small++;
1047 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001048 /* we have read less than half of the buffer in
1049 * one pass, and this happened at least 3 times.
1050 * This is definitely not a streamer.
1051 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001052 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001053 //fputc('!', stderr);
1054 }
1055 }
1056
1057 /* if a streamer has read few data, it may be because we
1058 * have exhausted system buffers. It's not worth trying
1059 * again.
1060 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001061 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001062 break;
1063
1064 /* if we read a large block smaller than what we requested,
1065 * it's almost certain we'll never get anything more.
1066 */
1067 if (ret >= global.tune.recv_enough)
1068 break;
1069 }
1070 } /* while !flags */
1071
Willy Tarreau96199b12012-08-24 00:46:52 +02001072 if (conn->flags & CO_FL_ERROR)
1073 goto out_error;
1074
Willy Tarreauce323de2012-08-20 21:41:06 +02001075 if (conn_data_read0_pending(conn))
1076 /* connection closed */
1077 goto out_shutdown_r;
1078
1079 return;
1080
1081 out_shutdown_r:
1082 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001083 chn->flags |= CF_READ_NULL;
1084 if (chn->flags & CF_AUTO_CLOSE)
1085 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001086 stream_sock_read0(si);
1087 conn_data_read0(conn);
1088 return;
1089
1090 out_error:
1091 /* Read error on the connection, report the error and stop I/O */
1092 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001093}
1094
1095/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001096 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001097 * from the buffer to the connection. It iterates over the transport layer's
1098 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001099 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001100static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001101{
Willy Tarreaue603e692012-09-27 22:20:41 +02001102 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001103 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001104
1105 if (conn->flags & CO_FL_ERROR)
1106 goto out_error;
1107
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001108 if (si->conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001109 /* a handshake was requested */
1110 return;
1111
1112 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001113 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001114 return;
1115
1116 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001117 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001118 goto out_error;
1119
1120 /* OK all done */
1121 return;
1122
1123 out_error:
1124 /* Write error on the connection, report the error and stop I/O */
1125 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001126}
1127
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001128/*
1129 * This function propagates a null read received on a socket-based connection.
1130 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1131 * the close is also forwarded to the write side as an abort. This function is
1132 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1133 * state on the socket.
1134 */
1135void stream_sock_read0(struct stream_interface *si)
1136{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001137 si->ib->flags &= ~CF_SHUTR_NOW;
1138 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001139 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001140 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001141 si->ib->rex = TICK_ETERNITY;
1142 si->flags &= ~SI_FL_WAIT_ROOM;
1143
1144 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1145 return;
1146
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001147 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001148 goto do_close;
1149
1150 if (si->flags & SI_FL_NOHALF) {
1151 /* we want to immediately forward this close to the write side */
1152 if (si->flags & SI_FL_NOLINGER) {
1153 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001154 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001155 (struct linger *) &nolinger, sizeof(struct linger));
1156 }
1157 /* force flag on ssl to keep session in cache */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001158 if (si->conn->xprt->shutw)
1159 si->conn->xprt->shutw(si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001160 goto do_close;
1161 }
1162
1163 /* otherwise that's just a normal read shutdown */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001164 __conn_data_stop_recv(si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001165 return;
1166
1167 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001168 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001169 conn_xprt_close(si->conn);
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001170 fd_delete(si->conn->t.sock.fd);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001171
1172 si->ib->flags &= ~CF_SHUTR_NOW;
1173 si->ib->flags |= CF_SHUTR;
1174 si->ib->rex = TICK_ETERNITY;
1175
1176 si->ob->flags &= ~CF_SHUTW_NOW;
1177 si->ob->flags |= CF_SHUTW;
1178 si->ob->wex = TICK_ETERNITY;
1179
1180 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1181
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001182 si->state = SI_ST_DIS;
1183 si->exp = TICK_ETERNITY;
1184 if (si->release)
1185 si->release(si);
1186 return;
1187}
1188
Willy Tarreaudded32d2008-11-30 19:48:07 +01001189/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001190 * Local variables:
1191 * c-indent-level: 8
1192 * c-basic-offset: 8
1193 * End:
1194 */