blob: 1834b627bbde3556d76c1f03fcc7fd88206a72a4 [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 */
39static void stream_int_update(struct stream_interface *si);
40static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020041static void stream_int_chk_rcv(struct stream_interface *si);
42static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020043static void stream_int_update_conn(struct stream_interface *si);
44static void stream_int_chk_rcv_conn(struct stream_interface *si);
45static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020046static void si_conn_recv_cb(struct connection *conn);
47static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020048static int si_conn_wake_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020049
Willy Tarreauc5788912012-08-24 18:12:41 +020050/* stream-interface operations for embedded tasks */
51struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020052 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020053 .chk_rcv = stream_int_chk_rcv,
54 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020055};
56
Willy Tarreauc5788912012-08-24 18:12:41 +020057/* stream-interface operations for external tasks */
58struct si_ops si_task_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020059 .update = stream_int_update,
Willy Tarreau5c979a92012-05-07 17:15:39 +020060 .chk_rcv = stream_int_chk_rcv,
61 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020062};
63
Willy Tarreauc5788912012-08-24 18:12:41 +020064/* stream-interface operations for connections */
65struct si_ops si_conn_ops = {
66 .update = stream_int_update_conn,
67 .chk_rcv = stream_int_chk_rcv_conn,
68 .chk_snd = stream_int_chk_snd_conn,
69};
70
Willy Tarreau74beec32012-10-03 00:41:04 +020071struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020072 .recv = si_conn_recv_cb,
73 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020074 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020075};
76
Willy Tarreaucff64112008-11-03 06:26:53 +010077/*
78 * This function only has to be called once after a wakeup event in case of
79 * suspected timeout. It controls the stream interface timeouts and sets
80 * si->flags accordingly. It does NOT close anything, as this timeout may
81 * be used for any purpose. It returns 1 if the timeout fired, otherwise
82 * zero.
83 */
84int stream_int_check_timeouts(struct stream_interface *si)
85{
86 if (tick_is_expired(si->exp, now_ms)) {
87 si->flags |= SI_FL_EXP;
88 return 1;
89 }
90 return 0;
91}
92
Willy Tarreaufe3718a2008-11-30 18:14:12 +010093/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010094void stream_int_report_error(struct stream_interface *si)
95{
96 if (!si->err_type)
97 si->err_type = SI_ET_DATA_ERR;
98
Willy Tarreau03cdb7c2012-08-27 23:14:58 +020099 si->ob->flags |= CF_WRITE_ERROR;
100 si->ib->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100101}
102
103/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100104 * Returns a message to the client ; the connection is shut down for read,
105 * and the request is cleared so that no server connection can be initiated.
106 * The buffer is marked for read shutdown on the other side to protect the
107 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100108 * "chunk". If it is null, then an empty message is used. The reply buffer does
109 * not need to be empty before this, and its contents will not be overwritten.
110 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100111 */
112void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
113{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200114 channel_auto_read(si->ib);
115 channel_abort(si->ib);
116 channel_auto_close(si->ib);
117 channel_erase(si->ib);
Willy Tarreau798e1282010-12-12 13:06:00 +0100118
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200119 bi_erase(si->ob);
Willy Tarreau148d0992010-01-10 10:21:21 +0100120 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200121 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100122
123 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200124 channel_auto_read(si->ob);
125 channel_auto_close(si->ob);
126 channel_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100127}
128
Willy Tarreaufb90d942009-09-05 20:57:35 +0200129/* default update function for scheduled tasks, not used for embedded tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200130static void stream_int_update(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200131{
132 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
133 __FUNCTION__,
134 si, si->state, si->ib->flags, si->ob->flags);
135
136 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
137 task_wakeup(si->owner, TASK_WOKEN_IO);
138}
139
140/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200141static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200142{
Willy Tarreau3488e252010-08-09 16:24:56 +0200143 int old_flags = si->flags;
144
Willy Tarreaufb90d942009-09-05 20:57:35 +0200145 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
146 __FUNCTION__,
147 si, si->state, si->ib->flags, si->ob->flags);
148
149 if (si->state != SI_ST_EST)
150 return;
151
Willy Tarreaub31c9712012-11-11 23:05:39 +0100152 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200153 channel_is_empty(si->ob))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200154 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200155
Willy Tarreaub31c9712012-11-11 23:05:39 +0100156 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200157 si->flags |= SI_FL_WAIT_DATA;
158
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200159 /* we're almost sure that we need some space if the buffer is not
160 * empty, even if it's not full, because the applets can't fill it.
161 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200162 if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200163 si->flags |= SI_FL_WAIT_ROOM;
164
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200165 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200166 if (tick_isset(si->ob->wex))
167 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
168 }
169
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200170 if (si->ib->flags & CF_READ_ACTIVITY ||
171 (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200172 if (tick_isset(si->ib->rex))
173 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
174 }
175
Willy Tarreau3488e252010-08-09 16:24:56 +0200176 /* save flags to detect changes */
177 old_flags = si->flags;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200178 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200179 !channel_full(si->ob) &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200180 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200181 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200182
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200183 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200184 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200185 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200186 /* check if the consumer has freed some space */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200187 if (!channel_full(si->ib))
Willy Tarreau3488e252010-08-09 16:24:56 +0200188 si->flags &= ~SI_FL_WAIT_ROOM;
189 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200190
191 /* Note that we're trying to wake up in two conditions here :
192 * - special event, which needs the holder task attention
193 * - status indicating that the applet can go on working. This
194 * is rather hard because we might be blocking on output and
195 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200196 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200197 */
198 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200199 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
200
201 /* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200202 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200203 si->state != SI_ST_EST ||
204 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200205 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200206 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
207
208 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200209 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
210 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
211 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200212 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200213 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200214 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
215 task_wakeup(si->owner, TASK_WOKEN_IO);
216 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200217 if (si->ib->flags & CF_READ_ACTIVITY)
218 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200219}
220
Willy Tarreau4a36b562012-08-06 19:31:45 +0200221/*
222 * This function performs a shutdown-read on a stream interface in a connected
223 * or init state (it does nothing for other states). It either shuts the read
224 * side or marks itself as closed. The buffer flags are updated to reflect the
225 * new state. If the stream interface has SI_FL_NOHALF, we also forward the
226 * close to the write side. If a control layer is defined, then it is supposed
227 * to be a socket layer and file descriptors are then shutdown or closed
228 * accordingly. If no control layer is defined, then the SI is supposed to be
229 * an embedded one and the owner task is woken up if it exists. The function
230 * does not disable polling on the FD by itself, it returns non-zero instead
231 * if the caller needs to do so (except when the FD is deleted where this is
232 * implicit).
233 */
234int stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200235{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200236 struct connection *conn = si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200237
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200238 si->ib->flags &= ~CF_SHUTR_NOW;
239 if (si->ib->flags & CF_SHUTR)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200240 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200241 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200242 si->ib->rex = TICK_ETERNITY;
243 si->flags &= ~SI_FL_WAIT_ROOM;
244
245 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200246 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200247
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200248 if (si->ob->flags & CF_SHUTW) {
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200249 conn_xprt_close(si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200250 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100251 fd_delete(si->conn->t.sock.fd);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200252 si->state = SI_ST_DIS;
253 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200254
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200255 if (si->release)
256 si->release(si);
257 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200258 else if (si->flags & SI_FL_NOHALF) {
259 /* we want to immediately forward this close to the write side */
260 return stream_int_shutw(si);
261 }
262 else if (conn->ctrl) {
263 /* we want the caller to disable polling on this FD */
264 return 1;
265 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200266
Willy Tarreau4a36b562012-08-06 19:31:45 +0200267 /* note that if the task exists, it must unregister itself once it runs */
268 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200269 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200270 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200271}
272
Willy Tarreau4a36b562012-08-06 19:31:45 +0200273/*
274 * This function performs a shutdown-write on a stream interface in a connected or
275 * init state (it does nothing for other states). It either shuts the write side
276 * or marks itself as closed. The buffer flags are updated to reflect the new state.
277 * It does also close everything if the SI was marked as being in error state. If
278 * there is a data-layer shutdown, it is called. If a control layer is defined, then
279 * it is supposed to be a socket layer and file descriptors are then shutdown or
280 * closed accordingly. If no control layer is defined, then the SI is supposed to
281 * be an embedded one and the owner task is woken up if it exists. The function
282 * does not disable polling on the FD by itself, it returns non-zero instead if
283 * the caller needs to do so (except when the FD is deleted where this is implicit).
284 */
285int stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200286{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200287 struct connection *conn = si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200288
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200289 si->ob->flags &= ~CF_SHUTW_NOW;
290 if (si->ob->flags & CF_SHUTW)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200291 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200292 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200293 si->ob->wex = TICK_ETERNITY;
294 si->flags &= ~SI_FL_WAIT_DATA;
295
296 switch (si->state) {
297 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200298 /* we have to shut before closing, otherwise some short messages
299 * may never leave the system, especially when there are remaining
300 * unread data in the socket input buffer, or when nolinger is set.
301 * However, if SI_FL_NOLINGER is explicitly set, we know there is
302 * no risk so we close both sides immediately.
303 */
304 if (si->flags & SI_FL_ERR) {
305 /* quick close, the socket is already shut. Remove pending flags. */
306 si->flags &= ~SI_FL_NOLINGER;
307 } else if (si->flags & SI_FL_NOLINGER) {
308 si->flags &= ~SI_FL_NOLINGER;
309 if (conn->ctrl) {
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100310 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau4a36b562012-08-06 19:31:45 +0200311 (struct linger *) &nolinger, sizeof(struct linger));
312 }
313 /* unclean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200314 if (conn->xprt && conn->xprt->shutw)
315 conn->xprt->shutw(conn, 0);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200316 } else {
317 /* clean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200318 if (conn->xprt && conn->xprt->shutw)
319 conn->xprt->shutw(conn, 1);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200320
321 if (!(si->flags & SI_FL_NOHALF)) {
322 /* We shutdown transport layer */
323 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100324 shutdown(si->conn->t.sock.fd, SHUT_WR);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200325
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200326 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau4a36b562012-08-06 19:31:45 +0200327 /* OK just a shutw, but we want the caller
328 * to disable polling on this FD if exists.
329 */
330 return !!conn->ctrl;
331 }
332 }
333 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200334
335 /* fall through */
336 case SI_ST_CON:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200337 /* we may have to close a pending connection, and mark the
338 * response buffer as shutr
339 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200340 conn_xprt_close(si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200341 if (conn->ctrl)
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100342 fd_delete(si->conn->t.sock.fd);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200343 /* fall through */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200344 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100345 case SI_ST_QUE:
346 case SI_ST_TAR:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200347 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200348
349 if (si->release)
350 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200351 default:
352 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200353 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200354 si->ib->rex = TICK_ETERNITY;
355 si->exp = TICK_ETERNITY;
356 }
357
Willy Tarreau4a36b562012-08-06 19:31:45 +0200358 /* note that if the task exists, it must unregister itself once it runs */
359 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200360 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200361 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200362}
363
364/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200365static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200366{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200367 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200368
369 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
370 __FUNCTION__,
371 si, si->state, si->ib->flags, si->ob->flags);
372
Willy Tarreaub31c9712012-11-11 23:05:39 +0100373 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200374 return;
375
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200376 if (channel_full(ib)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200377 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200378 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200379 }
380 else {
381 /* (re)start reading */
382 si->flags &= ~SI_FL_WAIT_ROOM;
383 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
384 task_wakeup(si->owner, TASK_WOKEN_IO);
385 }
386}
387
388/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200389static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200390{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200391 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200392
393 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
394 __FUNCTION__,
395 si, si->state, si->ib->flags, si->ob->flags);
396
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200397 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200398 return;
399
400 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200401 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200402 return;
403
404 /* Otherwise there are remaining data to be sent in the buffer,
405 * so we tell the handler.
406 */
407 si->flags &= ~SI_FL_WAIT_DATA;
408 if (!tick_isset(ob->wex))
409 ob->wex = tick_add_ifset(now_ms, ob->wto);
410
411 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
412 task_wakeup(si->owner, TASK_WOKEN_IO);
413}
414
Willy Tarreaub24281b2011-02-13 13:16:36 +0100415/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200416 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100417 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200418 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100419 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200420 * It also pre-initializes applet.state to zero and the connection context
421 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200422 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100423struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200424{
Simon Horman7abd00d2011-08-13 08:03:51 +0900425 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200426
Willy Tarreauc5788912012-08-24 18:12:41 +0200427 si_prepare_embedded(si);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200428 set_target_applet(&si->conn->target, app);
Aman Gupta9a13e842012-04-02 18:57:53 -0700429 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200430 si->flags |= SI_FL_WAIT_DATA;
431 return si->owner;
432}
433
434/* Register a function to handle a stream_interface as a standalone task. The
435 * new task itself is returned and is assigned as si->owner. The stream_interface
436 * pointer will be pointed to by the task's context. The handler can be detached
437 * by using stream_int_unregister_handler().
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100438 * FIXME: the code should be updated to ensure that we don't change si->owner
439 * anymore as this is not needed. However, process_session still relies on it.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200440 */
441struct task *stream_int_register_handler_task(struct stream_interface *si,
442 struct task *(*fct)(struct task *))
443{
444 struct task *t;
445
446 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
447
Willy Tarreauc5788912012-08-24 18:12:41 +0200448 si_prepare_task(si);
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200449 clear_target(&si->conn->target);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200450 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200451 si->flags |= SI_FL_WAIT_DATA;
452
453 t = task_new();
454 si->owner = t;
455 if (!t)
456 return t;
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100457
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200458 set_target_task(&si->conn->target, t);
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100459
Willy Tarreaufb90d942009-09-05 20:57:35 +0200460 t->process = fct;
461 t->context = si;
462 task_wakeup(si->owner, TASK_WOKEN_INIT);
463
464 return t;
465}
466
467/* Unregister a stream interface handler. This must be called by the handler task
468 * itself when it detects that it is in the SI_ST_DIS state. This function can
469 * both detach standalone handlers and embedded handlers.
470 */
471void stream_int_unregister_handler(struct stream_interface *si)
472{
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200473 if (si->conn->target.type == TARG_TYPE_TASK) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200474 /* external handler : kill the task */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200475 task_delete(si->conn->target.ptr.t);
476 task_free(si->conn->target.ptr.t);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200477 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200478 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200479 si->owner = NULL;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200480 clear_target(&si->conn->target);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200481}
482
Willy Tarreau2c6be842012-07-06 17:12:34 +0200483/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200484 * established. It returns 0 if it fails in a fatal way or needs to poll to go
485 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200486 * flags (the bit is provided in <flag> by the caller). It is designed to be
487 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200488 */
489int conn_si_send_proxy(struct connection *conn, unsigned int flag)
490{
Willy Tarreaue603e692012-09-27 22:20:41 +0200491 struct stream_interface *si = conn->owner;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200492
493 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200494 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200495 goto out_error;
496
497 /* If we have a PROXY line to send, we'll use this to validate the
498 * connection, in which case the connection is validated only once
499 * we've sent the whole proxy line. Otherwise we use connect().
500 */
501 if (si->send_proxy_ofs) {
502 int ret;
503
504 /* The target server expects a PROXY line to be sent first.
505 * If the send_proxy_ofs is negative, it corresponds to the
506 * offset to start sending from then end of the proxy string
507 * (which is recomputed every time since it's constant). If
508 * it is positive, it means we have to send from the start.
509 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100510 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 +0200511 if (!ret)
512 goto out_error;
513
514 if (si->send_proxy_ofs > 0)
515 si->send_proxy_ofs = -ret; /* first call */
516
Willy Tarreaua1a74742012-08-24 12:14:49 +0200517 /* we have to send trash from (ret+sp for -sp bytes). If the
518 * data layer has a pending write, we'll also set MSG_MORE.
519 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100520 ret = send(conn->t.sock.fd, trash.str + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200521 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200522
523 if (ret == 0)
524 goto out_wait;
525
526 if (ret < 0) {
527 if (errno == EAGAIN)
528 goto out_wait;
529 goto out_error;
530 }
531
532 si->send_proxy_ofs += ret; /* becomes zero once complete */
533 if (si->send_proxy_ofs != 0)
534 goto out_wait;
535
536 /* OK we've sent the whole line, we're connected */
537 }
538
Willy Tarreaua1a74742012-08-24 12:14:49 +0200539 /* The connection is ready now, simply return and let the connection
540 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200541 */
542 if (conn->flags & CO_FL_WAIT_L4_CONN)
543 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200544 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200545 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200546
547 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200548 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200549 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200550 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200551 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200552
553 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200554 __conn_sock_stop_recv(conn);
555 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200556 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200557}
558
Willy Tarreau100c4672012-08-20 12:06:26 +0200559/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200560 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200561 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200562 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200563 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200564 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200565static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200566{
Willy Tarreaue603e692012-09-27 22:20:41 +0200567 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200568
569 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
570 __FUNCTION__,
571 si, si->state, si->ib->flags, si->ob->flags);
572
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200573 if (conn->flags & CO_FL_ERROR)
574 si->flags |= SI_FL_ERR;
575
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200576 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200577 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200578 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200579 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200580 }
581
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200582 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200583 if (channel_is_empty(si->ob)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100584 if (((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200585 (si->state == SI_ST_EST))
586 stream_int_shutw(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200587 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200588 si->ob->wex = TICK_ETERNITY;
589 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200590
Willy Tarreaub31c9712012-11-11 23:05:39 +0100591 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200592 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200593
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200594 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200595 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200596 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200597 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200598 if (tick_isset(si->ob->wex))
599 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200600
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200601 if (!(si->flags & SI_FL_INDEP_STR))
602 if (tick_isset(si->ib->rex))
603 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200604
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200605 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200606 !channel_full(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200607 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
608 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200609 }
610
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200611 /* process producer side.
612 * We might have some data the consumer is waiting for.
613 * We can do fast-forwarding, but we avoid doing this for partial
614 * buffers, because it is very likely that it will be done again
615 * immediately afterwards once the following data is parsed (eg:
616 * HTTP chunking).
617 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200618 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200619 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau9b28e032012-10-12 23:49:43 +0200620 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200621 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200622
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200623 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200624
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200625 /* check if the consumer has freed some space either in the
626 * buffer or in the pipe.
627 */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200628 if (!channel_full(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200629 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
630 si->flags &= ~SI_FL_WAIT_ROOM;
631 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200632
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200633 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200634 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200635 si->ib->rex = TICK_ETERNITY;
636 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200637 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 +0200638 !channel_full(si->ib)) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200639 if (tick_isset(si->ib->rex))
640 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200641 }
642
643 /* wake the task up only when needed */
644 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200645 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200646 si->state != SI_ST_EST ||
647 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200648 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200649 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
650
651 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200652 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
653 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
654 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200655 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200656 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200657 task_wakeup(si->owner, TASK_WOKEN_IO);
658 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200659 if (si->ib->flags & CF_READ_ACTIVITY)
660 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200661 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200662}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200663
Willy Tarreau5368d802012-08-21 18:22:06 +0200664/*
665 * This function is called to send buffer data to a stream socket.
666 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200667 * It iterates the transport layer's snd_buf function. It relies on the
Willy Tarreauf16723e2012-08-24 12:52:22 +0200668 * caller to commit polling changes.
Willy Tarreau5368d802012-08-21 18:22:06 +0200669 */
670static int si_conn_send_loop(struct connection *conn)
671{
Willy Tarreaue603e692012-09-27 22:20:41 +0200672 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200673 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200674 int ret;
675
Willy Tarreaucb76e592012-10-12 23:56:57 +0200676 if (chn->pipe && conn->xprt->snd_pipe) {
677 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200678 if (ret > 0)
Willy Tarreaucb76e592012-10-12 23:56:57 +0200679 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200680
Willy Tarreaucb76e592012-10-12 23:56:57 +0200681 if (!chn->pipe->data) {
682 put_pipe(chn->pipe);
683 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200684 }
685
Willy Tarreau96199b12012-08-24 00:46:52 +0200686 if (conn->flags & CO_FL_ERROR)
687 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200688 }
689
690 /* At this point, the pipe is empty, but we may still have data pending
691 * in the normal buffer.
692 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200693 if (!chn->buf->o)
Willy Tarreau5368d802012-08-21 18:22:06 +0200694 return 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200695
696 /* when we're in this loop, we already know that there is no spliced
697 * data left, and that there are sendable buffered data.
698 */
Willy Tarreau56a77e52012-09-02 18:34:44 +0200699 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 +0200700 /* check if we want to inform the kernel that we're interested in
701 * sending more data after this call. We want this if :
702 * - we're about to close after this last send and want to merge
703 * the ongoing FIN with the last segment.
704 * - we know we can't send everything at once and must get back
705 * here because of unaligned data
706 * - there is still a finite amount of data to forward
707 * The test is arranged so that the most common case does only 2
708 * tests.
709 */
710 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
711
Willy Tarreaucb76e592012-10-12 23:56:57 +0200712 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
713 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
714 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100715 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200716 send_flag |= MSG_MORE;
717
Willy Tarreau9b28e032012-10-12 23:49:43 +0200718 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Willy Tarreau5368d802012-08-21 18:22:06 +0200719 if (ret <= 0)
720 break;
721
Willy Tarreaucb76e592012-10-12 23:56:57 +0200722 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200723
Willy Tarreau9b28e032012-10-12 23:49:43 +0200724 if (!chn->buf->o) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200725 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200726 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Willy Tarreau5368d802012-08-21 18:22:06 +0200727 break;
728 }
729
Willy Tarreaued7f8362012-10-29 23:27:14 +0100730 /* if some data remain in the buffer, it's only because the
731 * system bufers are full, so we don't want to loop again.
732 */
733 break;
Willy Tarreau5368d802012-08-21 18:22:06 +0200734 } /* while */
735
736 if (conn->flags & CO_FL_ERROR)
737 return -1;
738
Willy Tarreau5368d802012-08-21 18:22:06 +0200739 return 0;
740}
741
742
Willy Tarreau100c4672012-08-20 12:06:26 +0200743/* Updates the timers and flags of a stream interface attached to a connection,
744 * depending on the buffers' flags. It should only be called once after the
745 * buffer flags have settled down, and before they are cleared. It doesn't
746 * harm to call it as often as desired (it just slightly hurts performance).
747 * It is only meant to be called by upper layers after buffer flags have been
748 * manipulated by analysers.
749 */
750void stream_int_update_conn(struct stream_interface *si)
751{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200752 struct channel *ib = si->ib;
753 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200754
Willy Tarreau100c4672012-08-20 12:06:26 +0200755 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200756 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200757 /* Read not closed, update FD status and timeout for reads */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100758 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200759 /* stop reading */
760 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100761 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200762 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200763 conn_data_stop_recv(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200764 ib->rex = TICK_ETERNITY;
765 }
766 }
767 else {
768 /* (re)start reading and update timeout. Note: we don't recompute the timeout
769 * everytime we get here, otherwise it would risk never to expire. We only
770 * update it if is was not yet set. The stream socket handler will already
771 * have updated it if there has been a completed I/O.
772 */
773 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200774 conn_data_want_recv(si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200775 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200776 ib->rex = tick_add_ifset(now_ms, ib->rto);
777 }
778 }
779
780 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200781 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200782 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200783 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200784 /* stop writing */
785 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100786 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200787 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200788 conn_data_stop_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200789 ob->wex = TICK_ETERNITY;
790 }
791 }
792 else {
793 /* (re)start writing and update timeout. Note: we don't recompute the timeout
794 * everytime we get here, otherwise it would risk never to expire. We only
795 * update it if is was not yet set. The stream socket handler will already
796 * have updated it if there has been a completed I/O.
797 */
798 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200799 conn_data_want_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200800 if (!tick_isset(ob->wex)) {
801 ob->wex = tick_add_ifset(now_ms, ob->wto);
802 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
803 /* Note: depending on the protocol, we don't know if we're waiting
804 * for incoming data or not. So in order to prevent the socket from
805 * expiring read timeouts during writes, we refresh the read timeout,
806 * except if it was already infinite or if we have explicitly setup
807 * independent streams.
808 */
809 ib->rex = tick_add_ifset(now_ms, ib->rto);
810 }
811 }
812 }
813 }
814}
815
Willy Tarreau46a8d922012-08-20 12:38:36 +0200816/* This function is used for inter-stream-interface calls. It is called by the
817 * consumer to inform the producer side that it may be interested in checking
818 * for free space in the buffer. Note that it intentionally does not update
819 * timeouts, so that we can still check them later at wake-up. This function is
820 * dedicated to connection-based stream interfaces.
821 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200822static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200823{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200824 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200825
Willy Tarreau34ffd772012-09-03 16:51:27 +0200826 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200827 return;
828
Willy Tarreaub31c9712012-11-11 23:05:39 +0100829 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200830 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100831 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200832 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200833 conn_data_stop_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200834 }
835 else {
836 /* (re)start reading */
837 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200838 conn_data_want_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200839 }
840}
841
842
Willy Tarreaude5722c2012-08-20 15:01:10 +0200843/* This function is used for inter-stream-interface calls. It is called by the
844 * producer to inform the consumer side that it may be interested in checking
845 * for data in the buffer. Note that it intentionally does not update timeouts,
846 * so that we can still check them later at wake-up.
847 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200848static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200849{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200850 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200851
Willy Tarreau34ffd772012-09-03 16:51:27 +0200852 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200853 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200854
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200855 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200856 return;
857
858 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
859 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100860 (fdtab[si->conn->t.sock.fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200861 return;
862
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200863 if (!(si->conn->flags & CO_FL_HANDSHAKE) && si_conn_send_loop(si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200864 /* Write error on the file descriptor. We mark the FD as STERROR so
865 * that we don't use it anymore and we notify the task.
866 */
Willy Tarreau7f7ad912012-11-11 19:27:15 +0100867 fdtab[si->conn->t.sock.fd].ev &= ~FD_POLL_STICKY;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200868 __conn_data_stop_both(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200869 si->flags |= SI_FL_ERR;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200870 si->conn->flags |= CO_FL_ERROR;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200871 goto out_wakeup;
872 }
873
874 /* OK, so now we know that some data might have been sent, and that we may
875 * have to poll first. We have to do that too if the buffer is not empty.
876 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200877 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200878 /* the connection is established but we can't write. Either the
879 * buffer is empty, or we just refrain from sending because the
880 * ->o limit was reached. Maybe we just wrote the last
881 * chunk and need to close.
882 */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100883 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200884 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200885 (si->state == SI_ST_EST)) {
886 si_shutw(si);
887 goto out_wakeup;
888 }
889
Willy Tarreaub31c9712012-11-11 23:05:39 +0100890 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200891 si->flags |= SI_FL_WAIT_DATA;
892 ob->wex = TICK_ETERNITY;
893 }
894 else {
895 /* Otherwise there are remaining data to be sent in the buffer,
896 * which means we have to poll before doing so.
897 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200898 __conn_data_want_send(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200899 si->flags &= ~SI_FL_WAIT_DATA;
900 if (!tick_isset(ob->wex))
901 ob->wex = tick_add_ifset(now_ms, ob->wto);
902 }
903
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200904 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200905 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200906 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200907 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200908 ob->wex = tick_add_ifset(now_ms, ob->wto);
909
910 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
911 /* Note: to prevent the client from expiring read timeouts
912 * during writes, we refresh it. We only do this if the
913 * interface is not configured for "independent streams",
914 * because for some applications it's better not to do this,
915 * for instance when continuously exchanging small amounts
916 * of data which can full the socket buffers long before a
917 * write timeout is detected.
918 */
919 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
920 }
921 }
922
923 /* in case of special condition (error, shutdown, end of write...), we
924 * have to notify the task.
925 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200926 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200927 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200928 si->state != SI_ST_EST)) {
929 out_wakeup:
930 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
931 task_wakeup(si->owner, TASK_WOKEN_IO);
932 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200933
934 /* commit possible polling changes */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200935 conn_cond_update_polling(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200936}
937
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200938/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200939 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200940 * into the buffer from the connection. It iterates over the transport layer's
941 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200942 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200943static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200944{
Willy Tarreaue603e692012-09-27 22:20:41 +0200945 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200946 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +0200947 int ret, max, cur_read;
948 int read_poll = MAX_READ_POLL_LOOPS;
949
950 /* stop immediately on errors. Note that we DON'T want to stop on
951 * POLL_ERR, as the poller might report a write error while there
952 * are still data available in the recv buffer. This typically
953 * happens when we send too large a request to a backend server
954 * which rejects it before reading it all.
955 */
956 if (conn->flags & CO_FL_ERROR)
957 goto out_error;
958
959 /* stop here if we reached the end of data */
960 if (conn_data_read0_pending(conn))
961 goto out_shutdown_r;
962
963 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200964 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200965 return;
966
Willy Tarreau96199b12012-08-24 00:46:52 +0200967 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200968
969 /* First, let's see if we may splice data across the channel without
970 * using a buffer.
971 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200972 if (conn->xprt->rcv_pipe &&
Willy Tarreaucb76e592012-10-12 23:56:57 +0200973 chn->to_forward >= MIN_SPLICE_FORWARD && chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200974 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200975 /* We're embarrassed, there are already data pending in
976 * the buffer and we don't want to have them at two
977 * locations at a time. Let's indicate we need some
978 * place and ask the consumer to hurry.
979 */
980 goto abort_splice;
981 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200982
Willy Tarreaucb76e592012-10-12 23:56:57 +0200983 if (unlikely(chn->pipe == NULL)) {
984 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
985 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200986 goto abort_splice;
987 }
988 }
989
Willy Tarreaucb76e592012-10-12 23:56:57 +0200990 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200991 if (ret < 0) {
992 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +0200993 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200994 goto abort_splice;
995 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200996
Willy Tarreau96199b12012-08-24 00:46:52 +0200997 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +0200998 if (chn->to_forward != CHN_INFINITE_FORWARD)
999 chn->to_forward -= ret;
1000 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001001 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001002 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001003 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001004
1005 if (conn_data_read0_pending(conn))
1006 goto out_shutdown_r;
1007
1008 if (conn->flags & CO_FL_ERROR)
1009 goto out_error;
1010
Willy Tarreau56a77e52012-09-02 18:34:44 +02001011 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
1012 si->flags |= SI_FL_WAIT_ROOM;
1013
Willy Tarreauce323de2012-08-20 21:41:06 +02001014 /* splice not possible (anymore), let's go on on standard copy */
1015 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001016
1017 abort_splice:
1018 /* release the pipe if we can, which is almost always the case */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001019 if (chn->pipe && !chn->pipe->data) {
1020 put_pipe(chn->pipe);
1021 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001022 }
1023
Willy Tarreaucb76e592012-10-12 23:56:57 +02001024 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))) {
1025 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001026
1027 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001028 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001029 break;
1030 }
1031
Willy Tarreau9b28e032012-10-12 23:49:43 +02001032 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001033 if (ret <= 0)
1034 break;
1035
1036 cur_read += ret;
1037
1038 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001039 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001040 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001041 if (chn->to_forward != CHN_INFINITE_FORWARD) {
1042 if (fwd > chn->to_forward)
1043 fwd = chn->to_forward;
1044 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001045 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02001046 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001047 }
1048
Willy Tarreaucb76e592012-10-12 23:56:57 +02001049 chn->flags |= CF_READ_PARTIAL;
1050 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001051
Willy Tarreaucb76e592012-10-12 23:56:57 +02001052 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001053 /* The buffer is now full, there's no point in going through
1054 * the loop again.
1055 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001056 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001057 chn->xfer_small = 0;
1058 chn->xfer_large++;
1059 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001060 /* we call this buffer a fast streamer if it manages
1061 * to be filled in one call 3 consecutive times.
1062 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001063 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001064 //fputc('+', stderr);
1065 }
1066 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001067 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001068 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001069 chn->xfer_large = 0;
1070 chn->xfer_small++;
1071 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001072 /* if the buffer has been at least half full twice,
1073 * we receive faster than we send, so at least it
1074 * is not a "fast streamer".
1075 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001076 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001077 //fputc('-', stderr);
1078 }
1079 }
1080 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001081 chn->xfer_small = 0;
1082 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001083 }
1084
Willy Tarreauce323de2012-08-20 21:41:06 +02001085 si->flags |= SI_FL_WAIT_ROOM;
1086 break;
1087 }
1088
Willy Tarreau5fddab02012-11-09 18:27:26 +01001089 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
1090 conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001091 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001092 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001093
1094 /* if too many bytes were missing from last read, it means that
1095 * it's pointless trying to read again because the system does
1096 * not have them in buffers.
1097 */
1098 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001099 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001100 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001101 chn->xfer_large = 0;
1102 chn->xfer_small++;
1103 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001104 /* we have read less than half of the buffer in
1105 * one pass, and this happened at least 3 times.
1106 * This is definitely not a streamer.
1107 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001108 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001109 //fputc('!', stderr);
1110 }
1111 }
1112
1113 /* if a streamer has read few data, it may be because we
1114 * have exhausted system buffers. It's not worth trying
1115 * again.
1116 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001117 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001118 break;
1119
1120 /* if we read a large block smaller than what we requested,
1121 * it's almost certain we'll never get anything more.
1122 */
1123 if (ret >= global.tune.recv_enough)
1124 break;
1125 }
1126 } /* while !flags */
1127
Willy Tarreau96199b12012-08-24 00:46:52 +02001128 if (conn->flags & CO_FL_ERROR)
1129 goto out_error;
1130
Willy Tarreauce323de2012-08-20 21:41:06 +02001131 if (conn_data_read0_pending(conn))
1132 /* connection closed */
1133 goto out_shutdown_r;
1134
1135 return;
1136
1137 out_shutdown_r:
1138 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001139 chn->flags |= CF_READ_NULL;
1140 if (chn->flags & CF_AUTO_CLOSE)
1141 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001142 stream_sock_read0(si);
1143 conn_data_read0(conn);
1144 return;
1145
1146 out_error:
1147 /* Read error on the connection, report the error and stop I/O */
1148 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001149}
1150
1151/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001152 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001153 * from the buffer to the connection. It iterates over the transport layer's
1154 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001155 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001156static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001157{
Willy Tarreaue603e692012-09-27 22:20:41 +02001158 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001159 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001160
1161 if (conn->flags & CO_FL_ERROR)
1162 goto out_error;
1163
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001164 if (si->conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001165 /* a handshake was requested */
1166 return;
1167
1168 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001169 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001170 return;
1171
1172 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001173 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001174 goto out_error;
1175
1176 /* OK all done */
1177 return;
1178
1179 out_error:
1180 /* Write error on the connection, report the error and stop I/O */
1181 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001182}
1183
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001184/*
1185 * This function propagates a null read received on a socket-based connection.
1186 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1187 * the close is also forwarded to the write side as an abort. This function is
1188 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1189 * state on the socket.
1190 */
1191void stream_sock_read0(struct stream_interface *si)
1192{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001193 si->ib->flags &= ~CF_SHUTR_NOW;
1194 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001195 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001196 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001197 si->ib->rex = TICK_ETERNITY;
1198 si->flags &= ~SI_FL_WAIT_ROOM;
1199
1200 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1201 return;
1202
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001203 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001204 goto do_close;
1205
1206 if (si->flags & SI_FL_NOHALF) {
1207 /* we want to immediately forward this close to the write side */
1208 if (si->flags & SI_FL_NOLINGER) {
1209 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001210 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001211 (struct linger *) &nolinger, sizeof(struct linger));
1212 }
1213 /* force flag on ssl to keep session in cache */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001214 if (si->conn->xprt->shutw)
1215 si->conn->xprt->shutw(si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001216 goto do_close;
1217 }
1218
1219 /* otherwise that's just a normal read shutdown */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001220 __conn_data_stop_recv(si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001221 return;
1222
1223 do_close:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001224 conn_xprt_close(si->conn);
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001225 fd_delete(si->conn->t.sock.fd);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001226 si->state = SI_ST_DIS;
1227 si->exp = TICK_ETERNITY;
1228 if (si->release)
1229 si->release(si);
1230 return;
1231}
1232
Willy Tarreaudded32d2008-11-30 19:48:07 +01001233/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001234 * Local variables:
1235 * c-indent-level: 8
1236 * c-basic-offset: 8
1237 * End:
1238 */