blob: bcedcb095a3378180969c016850fd1392099eea5 [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 Tarreauf2943dc2012-10-26 20:10:28 +0200409 set_target_applet(&si->conn->target, app);
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 Tarreauf2943dc2012-10-26 20:10:28 +0200422 clear_target(&si->conn->target);
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 Tarreau44b5dc62012-08-24 12:12:53 +0200581 if (tick_isset(si->ib->rex))
582 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200583 }
584
585 /* wake the task up only when needed */
586 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200587 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200588 si->state != SI_ST_EST ||
589 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200590 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200591 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
592
593 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200594 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
595 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
596 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200597 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200598 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200599 task_wakeup(si->owner, TASK_WOKEN_IO);
600 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200601 if (si->ib->flags & CF_READ_ACTIVITY)
602 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200603 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200604}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200605
Willy Tarreau5368d802012-08-21 18:22:06 +0200606/*
607 * This function is called to send buffer data to a stream socket.
608 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200609 * It iterates the transport layer's snd_buf function. It relies on the
Willy Tarreauf16723e2012-08-24 12:52:22 +0200610 * caller to commit polling changes.
Willy Tarreau5368d802012-08-21 18:22:06 +0200611 */
612static int si_conn_send_loop(struct connection *conn)
613{
Willy Tarreaue603e692012-09-27 22:20:41 +0200614 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200615 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200616 int ret;
617
Willy Tarreaucb76e592012-10-12 23:56:57 +0200618 if (chn->pipe && conn->xprt->snd_pipe) {
619 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200620 if (ret > 0)
Willy Tarreaucb76e592012-10-12 23:56:57 +0200621 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200622
Willy Tarreaucb76e592012-10-12 23:56:57 +0200623 if (!chn->pipe->data) {
624 put_pipe(chn->pipe);
625 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200626 }
627
Willy Tarreau96199b12012-08-24 00:46:52 +0200628 if (conn->flags & CO_FL_ERROR)
629 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200630 }
631
632 /* At this point, the pipe is empty, but we may still have data pending
633 * in the normal buffer.
634 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200635 if (!chn->buf->o)
Willy Tarreau5368d802012-08-21 18:22:06 +0200636 return 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200637
638 /* when we're in this loop, we already know that there is no spliced
639 * data left, and that there are sendable buffered data.
640 */
Willy Tarreau56a77e52012-09-02 18:34:44 +0200641 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 +0200642 /* check if we want to inform the kernel that we're interested in
643 * sending more data after this call. We want this if :
644 * - we're about to close after this last send and want to merge
645 * the ongoing FIN with the last segment.
646 * - we know we can't send everything at once and must get back
647 * here because of unaligned data
648 * - there is still a finite amount of data to forward
649 * The test is arranged so that the most common case does only 2
650 * tests.
651 */
652 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
653
Willy Tarreaucb76e592012-10-12 23:56:57 +0200654 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
655 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
656 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100657 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200658 send_flag |= MSG_MORE;
659
Willy Tarreau9b28e032012-10-12 23:49:43 +0200660 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Willy Tarreau5368d802012-08-21 18:22:06 +0200661 if (ret <= 0)
662 break;
663
Willy Tarreaucb76e592012-10-12 23:56:57 +0200664 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200665
Willy Tarreau9b28e032012-10-12 23:49:43 +0200666 if (!chn->buf->o) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200667 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200668 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Willy Tarreau5368d802012-08-21 18:22:06 +0200669 break;
670 }
671
Willy Tarreaued7f8362012-10-29 23:27:14 +0100672 /* if some data remain in the buffer, it's only because the
673 * system bufers are full, so we don't want to loop again.
674 */
675 break;
Willy Tarreau5368d802012-08-21 18:22:06 +0200676 } /* while */
677
678 if (conn->flags & CO_FL_ERROR)
679 return -1;
680
Willy Tarreau5368d802012-08-21 18:22:06 +0200681 return 0;
682}
683
684
Willy Tarreau100c4672012-08-20 12:06:26 +0200685/* Updates the timers and flags of a stream interface attached to a connection,
686 * depending on the buffers' flags. It should only be called once after the
687 * buffer flags have settled down, and before they are cleared. It doesn't
688 * harm to call it as often as desired (it just slightly hurts performance).
689 * It is only meant to be called by upper layers after buffer flags have been
690 * manipulated by analysers.
691 */
692void stream_int_update_conn(struct stream_interface *si)
693{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200694 struct channel *ib = si->ib;
695 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200696
Willy Tarreau100c4672012-08-20 12:06:26 +0200697 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200698 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200699 /* Read not closed, update FD status and timeout for reads */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100700 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200701 /* stop reading */
702 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100703 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200704 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200705 conn_data_stop_recv(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200706 ib->rex = TICK_ETERNITY;
707 }
708 }
709 else {
710 /* (re)start reading and update timeout. Note: we don't recompute the timeout
711 * everytime we get here, otherwise it would risk never to expire. We only
712 * update it if is was not yet set. The stream socket handler will already
713 * have updated it if there has been a completed I/O.
714 */
715 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200716 conn_data_want_recv(si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200717 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200718 ib->rex = tick_add_ifset(now_ms, ib->rto);
719 }
720 }
721
722 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200723 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200724 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200725 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200726 /* stop writing */
727 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100728 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200729 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200730 conn_data_stop_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200731 ob->wex = TICK_ETERNITY;
732 }
733 }
734 else {
735 /* (re)start writing and update timeout. Note: we don't recompute the timeout
736 * everytime we get here, otherwise it would risk never to expire. We only
737 * update it if is was not yet set. The stream socket handler will already
738 * have updated it if there has been a completed I/O.
739 */
740 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200741 conn_data_want_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200742 if (!tick_isset(ob->wex)) {
743 ob->wex = tick_add_ifset(now_ms, ob->wto);
744 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
745 /* Note: depending on the protocol, we don't know if we're waiting
746 * for incoming data or not. So in order to prevent the socket from
747 * expiring read timeouts during writes, we refresh the read timeout,
748 * except if it was already infinite or if we have explicitly setup
749 * independent streams.
750 */
751 ib->rex = tick_add_ifset(now_ms, ib->rto);
752 }
753 }
754 }
755 }
756}
757
Willy Tarreau46a8d922012-08-20 12:38:36 +0200758/* This function is used for inter-stream-interface calls. It is called by the
759 * consumer to inform the producer side that it may be interested in checking
760 * for free space in the buffer. Note that it intentionally does not update
761 * timeouts, so that we can still check them later at wake-up. This function is
762 * dedicated to connection-based stream interfaces.
763 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200764static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200765{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200766 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200767
Willy Tarreau34ffd772012-09-03 16:51:27 +0200768 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200769 return;
770
Willy Tarreaub31c9712012-11-11 23:05:39 +0100771 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200772 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100773 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200774 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200775 conn_data_stop_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200776 }
777 else {
778 /* (re)start reading */
779 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200780 conn_data_want_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200781 }
782}
783
784
Willy Tarreaude5722c2012-08-20 15:01:10 +0200785/* This function is used for inter-stream-interface calls. It is called by the
786 * producer to inform the consumer side that it may be interested in checking
787 * for data in the buffer. Note that it intentionally does not update timeouts,
788 * so that we can still check them later at wake-up.
789 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200790static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200791{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200792 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200793
Willy Tarreau34ffd772012-09-03 16:51:27 +0200794 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200795 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200796
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200797 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200798 return;
799
800 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
801 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100802 (fdtab[si->conn->t.sock.fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200803 return;
804
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200805 if (!(si->conn->flags & CO_FL_HANDSHAKE) && si_conn_send_loop(si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200806 /* Write error on the file descriptor. We mark the FD as STERROR so
807 * that we don't use it anymore and we notify the task.
808 */
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100809 fdtab[si->conn->t.sock.fd].ev &= ~FD_POLL_STICKY;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200810 __conn_data_stop_both(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200811 si->flags |= SI_FL_ERR;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200812 si->conn->flags |= CO_FL_ERROR;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200813 goto out_wakeup;
814 }
815
816 /* OK, so now we know that some data might have been sent, and that we may
817 * have to poll first. We have to do that too if the buffer is not empty.
818 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200819 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200820 /* the connection is established but we can't write. Either the
821 * buffer is empty, or we just refrain from sending because the
822 * ->o limit was reached. Maybe we just wrote the last
823 * chunk and need to close.
824 */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100825 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200826 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200827 (si->state == SI_ST_EST)) {
828 si_shutw(si);
829 goto out_wakeup;
830 }
831
Willy Tarreaub31c9712012-11-11 23:05:39 +0100832 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200833 si->flags |= SI_FL_WAIT_DATA;
834 ob->wex = TICK_ETERNITY;
835 }
836 else {
837 /* Otherwise there are remaining data to be sent in the buffer,
838 * which means we have to poll before doing so.
839 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200840 __conn_data_want_send(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200841 si->flags &= ~SI_FL_WAIT_DATA;
842 if (!tick_isset(ob->wex))
843 ob->wex = tick_add_ifset(now_ms, ob->wto);
844 }
845
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200846 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200847 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200848 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200849 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200850 ob->wex = tick_add_ifset(now_ms, ob->wto);
851
852 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
853 /* Note: to prevent the client from expiring read timeouts
854 * during writes, we refresh it. We only do this if the
855 * interface is not configured for "independent streams",
856 * because for some applications it's better not to do this,
857 * for instance when continuously exchanging small amounts
858 * of data which can full the socket buffers long before a
859 * write timeout is detected.
860 */
861 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
862 }
863 }
864
865 /* in case of special condition (error, shutdown, end of write...), we
866 * have to notify the task.
867 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200868 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200869 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200870 si->state != SI_ST_EST)) {
871 out_wakeup:
872 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
873 task_wakeup(si->owner, TASK_WOKEN_IO);
874 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200875
876 /* commit possible polling changes */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200877 conn_cond_update_polling(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200878}
879
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200880/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200881 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200882 * into the buffer from the connection. It iterates over the transport layer's
883 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200884 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200885static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200886{
Willy Tarreaue603e692012-09-27 22:20:41 +0200887 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200888 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +0200889 int ret, max, cur_read;
890 int read_poll = MAX_READ_POLL_LOOPS;
891
892 /* stop immediately on errors. Note that we DON'T want to stop on
893 * POLL_ERR, as the poller might report a write error while there
894 * are still data available in the recv buffer. This typically
895 * happens when we send too large a request to a backend server
896 * which rejects it before reading it all.
897 */
898 if (conn->flags & CO_FL_ERROR)
899 goto out_error;
900
901 /* stop here if we reached the end of data */
902 if (conn_data_read0_pending(conn))
903 goto out_shutdown_r;
904
905 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200906 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200907 return;
908
Willy Tarreau96199b12012-08-24 00:46:52 +0200909 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200910
911 /* First, let's see if we may splice data across the channel without
912 * using a buffer.
913 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200914 if (conn->xprt->rcv_pipe &&
Willy Tarreaucb76e592012-10-12 23:56:57 +0200915 chn->to_forward >= MIN_SPLICE_FORWARD && chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200916 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200917 /* We're embarrassed, there are already data pending in
918 * the buffer and we don't want to have them at two
919 * locations at a time. Let's indicate we need some
920 * place and ask the consumer to hurry.
921 */
922 goto abort_splice;
923 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200924
Willy Tarreaucb76e592012-10-12 23:56:57 +0200925 if (unlikely(chn->pipe == NULL)) {
926 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
927 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200928 goto abort_splice;
929 }
930 }
931
Willy Tarreaucb76e592012-10-12 23:56:57 +0200932 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200933 if (ret < 0) {
934 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200935 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200936 goto abort_splice;
937 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200938
Willy Tarreau96199b12012-08-24 00:46:52 +0200939 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +0200940 if (chn->to_forward != CHN_INFINITE_FORWARD)
941 chn->to_forward -= ret;
942 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +0200943 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200944 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +0200945 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200946
947 if (conn_data_read0_pending(conn))
948 goto out_shutdown_r;
949
950 if (conn->flags & CO_FL_ERROR)
951 goto out_error;
952
Willy Tarreau56a77e52012-09-02 18:34:44 +0200953 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
954 si->flags |= SI_FL_WAIT_ROOM;
955
Willy Tarreauce323de2012-08-20 21:41:06 +0200956 /* splice not possible (anymore), let's go on on standard copy */
957 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200958
959 abort_splice:
960 /* release the pipe if we can, which is almost always the case */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200961 if (chn->pipe && !chn->pipe->data) {
962 put_pipe(chn->pipe);
963 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +0200964 }
965
Willy Tarreaucb76e592012-10-12 23:56:57 +0200966 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))) {
967 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +0200968
969 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +0200970 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +0200971 break;
972 }
973
Willy Tarreau9b28e032012-10-12 23:49:43 +0200974 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +0200975 if (ret <= 0)
976 break;
977
978 cur_read += ret;
979
980 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200981 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +0200982 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200983 if (chn->to_forward != CHN_INFINITE_FORWARD) {
984 if (fwd > chn->to_forward)
985 fwd = chn->to_forward;
986 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +0200987 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200988 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +0200989 }
990
Willy Tarreaucb76e592012-10-12 23:56:57 +0200991 chn->flags |= CF_READ_PARTIAL;
992 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +0200993
Willy Tarreaucb76e592012-10-12 23:56:57 +0200994 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +0200995 /* The buffer is now full, there's no point in going through
996 * the loop again.
997 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200998 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +0200999 chn->xfer_small = 0;
1000 chn->xfer_large++;
1001 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001002 /* we call this buffer a fast streamer if it manages
1003 * to be filled in one call 3 consecutive times.
1004 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001005 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001006 //fputc('+', stderr);
1007 }
1008 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001009 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001010 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001011 chn->xfer_large = 0;
1012 chn->xfer_small++;
1013 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001014 /* if the buffer has been at least half full twice,
1015 * we receive faster than we send, so at least it
1016 * is not a "fast streamer".
1017 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001018 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001019 //fputc('-', stderr);
1020 }
1021 }
1022 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001023 chn->xfer_small = 0;
1024 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001025 }
1026
Willy Tarreauce323de2012-08-20 21:41:06 +02001027 si->flags |= SI_FL_WAIT_ROOM;
1028 break;
1029 }
1030
Willy Tarreau5fddab02012-11-09 18:27:26 +01001031 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
1032 conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001033 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001034 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001035
1036 /* if too many bytes were missing from last read, it means that
1037 * it's pointless trying to read again because the system does
1038 * not have them in buffers.
1039 */
1040 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001041 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001042 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001043 chn->xfer_large = 0;
1044 chn->xfer_small++;
1045 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001046 /* we have read less than half of the buffer in
1047 * one pass, and this happened at least 3 times.
1048 * This is definitely not a streamer.
1049 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001050 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001051 //fputc('!', stderr);
1052 }
1053 }
1054
1055 /* if a streamer has read few data, it may be because we
1056 * have exhausted system buffers. It's not worth trying
1057 * again.
1058 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001059 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001060 break;
1061
1062 /* if we read a large block smaller than what we requested,
1063 * it's almost certain we'll never get anything more.
1064 */
1065 if (ret >= global.tune.recv_enough)
1066 break;
1067 }
1068 } /* while !flags */
1069
Willy Tarreau96199b12012-08-24 00:46:52 +02001070 if (conn->flags & CO_FL_ERROR)
1071 goto out_error;
1072
Willy Tarreauce323de2012-08-20 21:41:06 +02001073 if (conn_data_read0_pending(conn))
1074 /* connection closed */
1075 goto out_shutdown_r;
1076
1077 return;
1078
1079 out_shutdown_r:
1080 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001081 chn->flags |= CF_READ_NULL;
1082 if (chn->flags & CF_AUTO_CLOSE)
1083 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001084 stream_sock_read0(si);
1085 conn_data_read0(conn);
1086 return;
1087
1088 out_error:
1089 /* Read error on the connection, report the error and stop I/O */
1090 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001091}
1092
1093/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001094 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001095 * from the buffer to the connection. It iterates over the transport layer's
1096 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001097 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001098static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001099{
Willy Tarreaue603e692012-09-27 22:20:41 +02001100 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001101 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001102
1103 if (conn->flags & CO_FL_ERROR)
1104 goto out_error;
1105
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001106 if (si->conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001107 /* a handshake was requested */
1108 return;
1109
1110 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001111 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001112 return;
1113
1114 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001115 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001116 goto out_error;
1117
1118 /* OK all done */
1119 return;
1120
1121 out_error:
1122 /* Write error on the connection, report the error and stop I/O */
1123 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001124}
1125
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001126/*
1127 * This function propagates a null read received on a socket-based connection.
1128 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1129 * the close is also forwarded to the write side as an abort. This function is
1130 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1131 * state on the socket.
1132 */
1133void stream_sock_read0(struct stream_interface *si)
1134{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001135 si->ib->flags &= ~CF_SHUTR_NOW;
1136 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001137 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001138 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001139 si->ib->rex = TICK_ETERNITY;
1140 si->flags &= ~SI_FL_WAIT_ROOM;
1141
1142 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1143 return;
1144
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001145 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001146 goto do_close;
1147
1148 if (si->flags & SI_FL_NOHALF) {
1149 /* we want to immediately forward this close to the write side */
1150 if (si->flags & SI_FL_NOLINGER) {
1151 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001152 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001153 (struct linger *) &nolinger, sizeof(struct linger));
1154 }
1155 /* force flag on ssl to keep session in cache */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001156 if (si->conn->xprt->shutw)
1157 si->conn->xprt->shutw(si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001158 goto do_close;
1159 }
1160
1161 /* otherwise that's just a normal read shutdown */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001162 __conn_data_stop_recv(si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001163 return;
1164
1165 do_close:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001166 conn_xprt_close(si->conn);
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001167 fd_delete(si->conn->t.sock.fd);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001168 si->state = SI_ST_DIS;
1169 si->exp = TICK_ETERNITY;
1170 if (si->release)
1171 si->release(si);
1172 return;
1173}
1174
Willy Tarreaudded32d2008-11-30 19:48:07 +01001175/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001176 * Local variables:
1177 * c-indent-level: 8
1178 * c-basic-offset: 8
1179 * End:
1180 */