blob: 83e085920cd6f92e3205894b8093da99a2fa08d2 [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 Tarreau2c6be842012-07-06 17:12:34 +020032#include <proto/frontend.h>
Willy Tarreau96199b12012-08-24 00:46:52 +020033#include <proto/pipe.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020034#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010035#include <proto/task.h>
36
Willy Tarreaufd31e532012-07-23 18:24:25 +020037#include <types/pipe.h>
38
Willy Tarreauf873d752012-05-11 17:47:17 +020039/* socket functions used when running a stream interface as a task */
40static void stream_int_update(struct stream_interface *si);
41static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020042static void stream_int_chk_rcv(struct stream_interface *si);
43static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020044static void stream_int_update_conn(struct stream_interface *si);
45static void stream_int_chk_rcv_conn(struct stream_interface *si);
46static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020047static void si_conn_recv_cb(struct connection *conn);
48static void si_conn_send_cb(struct connection *conn);
49static void si_conn_wake_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020050
Willy Tarreauc5788912012-08-24 18:12:41 +020051/* stream-interface operations for embedded tasks */
52struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020053 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020054 .chk_rcv = stream_int_chk_rcv,
55 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020056};
57
Willy Tarreauc5788912012-08-24 18:12:41 +020058/* stream-interface operations for external tasks */
59struct si_ops si_task_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020060 .update = stream_int_update,
Willy Tarreau5c979a92012-05-07 17:15:39 +020061 .chk_rcv = stream_int_chk_rcv,
62 .chk_snd = stream_int_chk_snd,
Willy Tarreau5c979a92012-05-07 17:15:39 +020063};
64
Willy Tarreauc5788912012-08-24 18:12:41 +020065/* stream-interface operations for connections */
66struct si_ops si_conn_ops = {
67 .update = stream_int_update_conn,
68 .chk_rcv = stream_int_chk_rcv_conn,
69 .chk_snd = stream_int_chk_snd_conn,
70};
71
Willy Tarreau74beec32012-10-03 00:41:04 +020072struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020073 .recv = si_conn_recv_cb,
74 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020075 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020076};
77
Willy Tarreaucff64112008-11-03 06:26:53 +010078/*
79 * This function only has to be called once after a wakeup event in case of
80 * suspected timeout. It controls the stream interface timeouts and sets
81 * si->flags accordingly. It does NOT close anything, as this timeout may
82 * be used for any purpose. It returns 1 if the timeout fired, otherwise
83 * zero.
84 */
85int stream_int_check_timeouts(struct stream_interface *si)
86{
87 if (tick_is_expired(si->exp, now_ms)) {
88 si->flags |= SI_FL_EXP;
89 return 1;
90 }
91 return 0;
92}
93
Willy Tarreaufe3718a2008-11-30 18:14:12 +010094/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010095void stream_int_report_error(struct stream_interface *si)
96{
97 if (!si->err_type)
98 si->err_type = SI_ET_DATA_ERR;
99
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200100 si->ob->flags |= CF_WRITE_ERROR;
101 si->ib->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100102}
103
104/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100105 * Returns a message to the client ; the connection is shut down for read,
106 * and the request is cleared so that no server connection can be initiated.
107 * The buffer is marked for read shutdown on the other side to protect the
108 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100109 * "chunk". If it is null, then an empty message is used. The reply buffer does
110 * not need to be empty before this, and its contents will not be overwritten.
111 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100112 */
113void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
114{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200115 channel_auto_read(si->ib);
116 channel_abort(si->ib);
117 channel_auto_close(si->ib);
118 channel_erase(si->ib);
Willy Tarreau798e1282010-12-12 13:06:00 +0100119
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200120 bi_erase(si->ob);
Willy Tarreau148d0992010-01-10 10:21:21 +0100121 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200122 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100123
124 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200125 channel_auto_read(si->ob);
126 channel_auto_close(si->ob);
127 channel_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100128}
129
Willy Tarreaufb90d942009-09-05 20:57:35 +0200130/* default update function for scheduled tasks, not used for embedded tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200131static void stream_int_update(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200132{
133 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
134 __FUNCTION__,
135 si, si->state, si->ib->flags, si->ob->flags);
136
137 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
138 task_wakeup(si->owner, TASK_WOKEN_IO);
139}
140
141/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200142static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200143{
Willy Tarreau3488e252010-08-09 16:24:56 +0200144 int old_flags = si->flags;
145
Willy Tarreaufb90d942009-09-05 20:57:35 +0200146 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
147 __FUNCTION__,
148 si, si->state, si->ib->flags, si->ob->flags);
149
150 if (si->state != SI_ST_EST)
151 return;
152
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200153 if ((si->ob->flags & (CF_SHUTW|CF_HIJACK|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200154 channel_is_empty(si->ob))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200155 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200156
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200157 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0 && !channel_full(si->ob))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200158 si->flags |= SI_FL_WAIT_DATA;
159
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200160 /* we're almost sure that we need some space if the buffer is not
161 * empty, even if it's not full, because the applets can't fill it.
162 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200163 if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200164 si->flags |= SI_FL_WAIT_ROOM;
165
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200166 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200167 if (tick_isset(si->ob->wex))
168 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
169 }
170
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200171 if (si->ib->flags & CF_READ_ACTIVITY ||
172 (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200173 if (tick_isset(si->ib->rex))
174 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
175 }
176
Willy Tarreau3488e252010-08-09 16:24:56 +0200177 /* save flags to detect changes */
178 old_flags = si->flags;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200179 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200180 !channel_full(si->ob) &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200181 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200182 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200183
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200184 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200185 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200186 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200187 /* check if the consumer has freed some space */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200188 if (!channel_full(si->ib))
Willy Tarreau3488e252010-08-09 16:24:56 +0200189 si->flags &= ~SI_FL_WAIT_ROOM;
190 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200191
192 /* Note that we're trying to wake up in two conditions here :
193 * - special event, which needs the holder task attention
194 * - status indicating that the applet can go on working. This
195 * is rather hard because we might be blocking on output and
196 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200197 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200198 */
199 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200200 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
201
202 /* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200203 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200204 si->state != SI_ST_EST ||
205 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200206 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200207 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
208
209 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200210 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
211 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
212 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200213 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200214 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200215 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
216 task_wakeup(si->owner, TASK_WOKEN_IO);
217 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200218 if (si->ib->flags & CF_READ_ACTIVITY)
219 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200220}
221
Willy Tarreau4a36b562012-08-06 19:31:45 +0200222/*
223 * This function performs a shutdown-read on a stream interface in a connected
224 * or init state (it does nothing for other states). It either shuts the read
225 * side or marks itself as closed. The buffer flags are updated to reflect the
226 * new state. If the stream interface has SI_FL_NOHALF, we also forward the
227 * close to the write side. If a control layer is defined, then it is supposed
228 * to be a socket layer and file descriptors are then shutdown or closed
229 * accordingly. If no control layer is defined, then the SI is supposed to be
230 * an embedded one and the owner task is woken up if it exists. The function
231 * does not disable polling on the FD by itself, it returns non-zero instead
232 * if the caller needs to do so (except when the FD is deleted where this is
233 * implicit).
234 */
235int stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200236{
Willy Tarreau4a36b562012-08-06 19:31:45 +0200237 struct connection *conn = &si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200238
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200239 si->ib->flags &= ~CF_SHUTR_NOW;
240 if (si->ib->flags & CF_SHUTR)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200241 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200242 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200243 si->ib->rex = TICK_ETERNITY;
244 si->flags &= ~SI_FL_WAIT_ROOM;
245
246 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200247 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200248
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200249 if (si->ob->flags & CF_SHUTW) {
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200250 conn_xprt_close(&si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200251 if (conn->ctrl)
252 fd_delete(si_fd(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200253 si->state = SI_ST_DIS;
254 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200255
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200256 if (si->release)
257 si->release(si);
258 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200259 else if (si->flags & SI_FL_NOHALF) {
260 /* we want to immediately forward this close to the write side */
261 return stream_int_shutw(si);
262 }
263 else if (conn->ctrl) {
264 /* we want the caller to disable polling on this FD */
265 return 1;
266 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200267
Willy Tarreau4a36b562012-08-06 19:31:45 +0200268 /* note that if the task exists, it must unregister itself once it runs */
269 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200270 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200271 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200272}
273
Willy Tarreau4a36b562012-08-06 19:31:45 +0200274/*
275 * This function performs a shutdown-write on a stream interface in a connected or
276 * init state (it does nothing for other states). It either shuts the write side
277 * or marks itself as closed. The buffer flags are updated to reflect the new state.
278 * It does also close everything if the SI was marked as being in error state. If
279 * there is a data-layer shutdown, it is called. If a control layer is defined, then
280 * it is supposed to be a socket layer and file descriptors are then shutdown or
281 * closed accordingly. If no control layer is defined, then the SI is supposed to
282 * be an embedded one and the owner task is woken up if it exists. The function
283 * does not disable polling on the FD by itself, it returns non-zero instead if
284 * the caller needs to do so (except when the FD is deleted where this is implicit).
285 */
286int stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200287{
Willy Tarreau4a36b562012-08-06 19:31:45 +0200288 struct connection *conn = &si->conn;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200289
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200290 si->ob->flags &= ~CF_SHUTW_NOW;
291 if (si->ob->flags & CF_SHUTW)
Willy Tarreau4a36b562012-08-06 19:31:45 +0200292 return 0;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200293 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200294 si->ob->wex = TICK_ETERNITY;
295 si->flags &= ~SI_FL_WAIT_DATA;
296
297 switch (si->state) {
298 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200299 /* we have to shut before closing, otherwise some short messages
300 * may never leave the system, especially when there are remaining
301 * unread data in the socket input buffer, or when nolinger is set.
302 * However, if SI_FL_NOLINGER is explicitly set, we know there is
303 * no risk so we close both sides immediately.
304 */
305 if (si->flags & SI_FL_ERR) {
306 /* quick close, the socket is already shut. Remove pending flags. */
307 si->flags &= ~SI_FL_NOLINGER;
308 } else if (si->flags & SI_FL_NOLINGER) {
309 si->flags &= ~SI_FL_NOLINGER;
310 if (conn->ctrl) {
311 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
312 (struct linger *) &nolinger, sizeof(struct linger));
313 }
314 /* unclean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200315 if (conn->xprt && conn->xprt->shutw)
316 conn->xprt->shutw(conn, 0);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200317 } else {
318 /* clean data-layer shutdown */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200319 if (conn->xprt && conn->xprt->shutw)
320 conn->xprt->shutw(conn, 1);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200321
322 if (!(si->flags & SI_FL_NOHALF)) {
323 /* We shutdown transport layer */
324 if (conn->ctrl)
325 shutdown(si_fd(si), SHUT_WR);
326
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200327 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau4a36b562012-08-06 19:31:45 +0200328 /* OK just a shutw, but we want the caller
329 * to disable polling on this FD if exists.
330 */
331 return !!conn->ctrl;
332 }
333 }
334 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200335
336 /* fall through */
337 case SI_ST_CON:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200338 /* we may have to close a pending connection, and mark the
339 * response buffer as shutr
340 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200341 conn_xprt_close(&si->conn);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200342 if (conn->ctrl)
343 fd_delete(si_fd(si));
344 /* fall through */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200345 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100346 case SI_ST_QUE:
347 case SI_ST_TAR:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200348 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200349
350 if (si->release)
351 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200352 default:
353 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200354 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200355 si->ib->rex = TICK_ETERNITY;
356 si->exp = TICK_ETERNITY;
357 }
358
Willy Tarreau4a36b562012-08-06 19:31:45 +0200359 /* note that if the task exists, it must unregister itself once it runs */
360 if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200361 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau4a36b562012-08-06 19:31:45 +0200362 return 0;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200363}
364
365/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200366static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200367{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200368 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200369
370 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
371 __FUNCTION__,
372 si, si->state, si->ib->flags, si->ob->flags);
373
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200374 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_HIJACK|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200375 return;
376
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200377 if (channel_full(ib)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200378 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200379 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200380 }
381 else {
382 /* (re)start reading */
383 si->flags &= ~SI_FL_WAIT_ROOM;
384 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
385 task_wakeup(si->owner, TASK_WOKEN_IO);
386 }
387}
388
389/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200390static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200391{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200392 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200393
394 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
395 __FUNCTION__,
396 si, si->state, si->ib->flags, si->ob->flags);
397
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200398 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200399 return;
400
401 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200402 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200403 return;
404
405 /* Otherwise there are remaining data to be sent in the buffer,
406 * so we tell the handler.
407 */
408 si->flags &= ~SI_FL_WAIT_DATA;
409 if (!tick_isset(ob->wex))
410 ob->wex = tick_add_ifset(now_ms, ob->wto);
411
412 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
413 task_wakeup(si->owner, TASK_WOKEN_IO);
414}
415
Willy Tarreaub24281b2011-02-13 13:16:36 +0100416/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200417 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100418 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200419 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100420 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200421 * It also pre-initializes applet.state to zero and the connection context
422 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200423 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100424struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200425{
Simon Horman7abd00d2011-08-13 08:03:51 +0900426 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200427
Willy Tarreauc5788912012-08-24 18:12:41 +0200428 si_prepare_embedded(si);
Willy Tarreau3cefd522012-08-30 15:49:18 +0200429 set_target_applet(&si->conn.target, app);
Aman Gupta9a13e842012-04-02 18:57:53 -0700430 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200431 si->flags |= SI_FL_WAIT_DATA;
432 return si->owner;
433}
434
435/* Register a function to handle a stream_interface as a standalone task. The
436 * new task itself is returned and is assigned as si->owner. The stream_interface
437 * pointer will be pointed to by the task's context. The handler can be detached
438 * by using stream_int_unregister_handler().
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100439 * FIXME: the code should be updated to ensure that we don't change si->owner
440 * anymore as this is not needed. However, process_session still relies on it.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200441 */
442struct task *stream_int_register_handler_task(struct stream_interface *si,
443 struct task *(*fct)(struct task *))
444{
445 struct task *t;
446
447 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner);
448
Willy Tarreauc5788912012-08-24 18:12:41 +0200449 si_prepare_task(si);
Willy Tarreau3cefd522012-08-30 15:49:18 +0200450 clear_target(&si->conn.target);
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200451 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200452 si->flags |= SI_FL_WAIT_DATA;
453
454 t = task_new();
455 si->owner = t;
456 if (!t)
457 return t;
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100458
Willy Tarreau3cefd522012-08-30 15:49:18 +0200459 set_target_task(&si->conn.target, t);
Willy Tarreau7c0a1512011-03-10 11:17:02 +0100460
Willy Tarreaufb90d942009-09-05 20:57:35 +0200461 t->process = fct;
462 t->context = si;
463 task_wakeup(si->owner, TASK_WOKEN_INIT);
464
465 return t;
466}
467
468/* Unregister a stream interface handler. This must be called by the handler task
469 * itself when it detects that it is in the SI_ST_DIS state. This function can
470 * both detach standalone handlers and embedded handlers.
471 */
472void stream_int_unregister_handler(struct stream_interface *si)
473{
Willy Tarreau3cefd522012-08-30 15:49:18 +0200474 if (si->conn.target.type == TARG_TYPE_TASK) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200475 /* external handler : kill the task */
Willy Tarreau3cefd522012-08-30 15:49:18 +0200476 task_delete(si->conn.target.ptr.t);
477 task_free(si->conn.target.ptr.t);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200478 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200479 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200480 si->owner = NULL;
Willy Tarreau3cefd522012-08-30 15:49:18 +0200481 clear_target(&si->conn.target);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200482}
483
Willy Tarreau2c6be842012-07-06 17:12:34 +0200484/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200485 * established. It returns 0 if it fails in a fatal way or needs to poll to go
486 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200487 * flags (the bit is provided in <flag> by the caller). It is designed to be
488 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200489 */
490int conn_si_send_proxy(struct connection *conn, unsigned int flag)
491{
Willy Tarreaue603e692012-09-27 22:20:41 +0200492 struct stream_interface *si = conn->owner;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200493
494 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200495 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200496 goto out_error;
497
498 /* If we have a PROXY line to send, we'll use this to validate the
499 * connection, in which case the connection is validated only once
500 * we've sent the whole proxy line. Otherwise we use connect().
501 */
502 if (si->send_proxy_ofs) {
503 int ret;
504
505 /* The target server expects a PROXY line to be sent first.
506 * If the send_proxy_ofs is negative, it corresponds to the
507 * offset to start sending from then end of the proxy string
508 * (which is recomputed every time since it's constant). If
509 * it is positive, it means we have to send from the start.
510 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200511 ret = make_proxy_line(trash, trashlen, &si->ob->prod->conn.addr.from, &si->ob->prod->conn.addr.to);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200512 if (!ret)
513 goto out_error;
514
515 if (si->send_proxy_ofs > 0)
516 si->send_proxy_ofs = -ret; /* first call */
517
Willy Tarreaua1a74742012-08-24 12:14:49 +0200518 /* we have to send trash from (ret+sp for -sp bytes). If the
519 * data layer has a pending write, we'll also set MSG_MORE.
520 */
521 ret = send(conn->t.sock.fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
522 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200523
524 if (ret == 0)
525 goto out_wait;
526
527 if (ret < 0) {
528 if (errno == EAGAIN)
529 goto out_wait;
530 goto out_error;
531 }
532
533 si->send_proxy_ofs += ret; /* becomes zero once complete */
534 if (si->send_proxy_ofs != 0)
535 goto out_wait;
536
537 /* OK we've sent the whole line, we're connected */
538 }
539
Willy Tarreaua1a74742012-08-24 12:14:49 +0200540 /* The connection is ready now, simply return and let the connection
541 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200542 */
543 if (conn->flags & CO_FL_WAIT_L4_CONN)
544 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200545 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200546 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200547
548 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200549 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200550 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200551 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200552 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200553
554 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200555 __conn_sock_stop_recv(conn);
556 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200557 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200558}
559
Willy Tarreau100c4672012-08-20 12:06:26 +0200560/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200561 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200562 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200563 * an important event requires special handling. It relies on the connection handler
564 * to commit any polling updates.
Willy Tarreau100c4672012-08-20 12:06:26 +0200565 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200566static void si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200567{
Willy Tarreaue603e692012-09-27 22:20:41 +0200568 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200569
570 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
571 __FUNCTION__,
572 si, si->state, si->ib->flags, si->ob->flags);
573
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200574 if (conn->flags & CO_FL_ERROR)
575 si->flags |= SI_FL_ERR;
576
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200577 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200578 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200579 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200580 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200581 }
582
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200583 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200584 if (channel_is_empty(si->ob)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200585 if (((si->ob->flags & (CF_SHUTW|CF_HIJACK|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200586 (si->state == SI_ST_EST))
587 stream_int_shutw(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200588 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200589 si->ob->wex = TICK_ETERNITY;
590 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200591
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200592 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0 && !channel_full(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200593 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200594
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200595 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200596 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200597 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200598 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200599 if (tick_isset(si->ob->wex))
600 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200601
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200602 if (!(si->flags & SI_FL_INDEP_STR))
603 if (tick_isset(si->ib->rex))
604 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200605
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200606 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200607 !channel_full(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200608 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
609 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200610 }
611
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200612 /* process producer side.
613 * We might have some data the consumer is waiting for.
614 * We can do fast-forwarding, but we avoid doing this for partial
615 * buffers, because it is very likely that it will be done again
616 * immediately afterwards once the following data is parsed (eg:
617 * HTTP chunking).
618 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200619 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200620 (si->ib->pipe /* always try to send spliced data */ ||
621 (si->ib->buf.i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
622 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200623
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200624 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200625
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200626 /* check if the consumer has freed some space either in the
627 * buffer or in the pipe.
628 */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200629 if (!channel_full(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200630 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
631 si->flags &= ~SI_FL_WAIT_ROOM;
632 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200633
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200634 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200635 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200636 si->ib->rex = TICK_ETERNITY;
637 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200638 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 +0200639 !channel_full(si->ib)) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200640 if (tick_isset(si->ib->rex))
641 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200642 }
643
644 /* wake the task up only when needed */
645 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200646 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200647 si->state != SI_ST_EST ||
648 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200649 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200650 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
651
652 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200653 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
654 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
655 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200656 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200657 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200658 task_wakeup(si->owner, TASK_WOKEN_IO);
659 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200660 if (si->ib->flags & CF_READ_ACTIVITY)
661 si->ib->flags &= ~CF_READ_DONTWAIT;
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 Tarreau5368d802012-08-21 18:22:06 +0200673 struct channel *b = si->ob;
674 int write_poll = MAX_WRITE_POLL_LOOPS;
675 int ret;
676
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200677 if (b->pipe && conn->xprt->snd_pipe) {
678 ret = conn->xprt->snd_pipe(conn, b->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200679 if (ret > 0)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200680 b->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200681
682 if (!b->pipe->data) {
683 put_pipe(b->pipe);
684 b->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200685 }
686
Willy Tarreau96199b12012-08-24 00:46:52 +0200687 if (conn->flags & CO_FL_ERROR)
688 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200689 }
690
691 /* At this point, the pipe is empty, but we may still have data pending
692 * in the normal buffer.
693 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200694 if (!b->buf.o)
Willy Tarreau5368d802012-08-21 18:22:06 +0200695 return 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200696
697 /* when we're in this loop, we already know that there is no spliced
698 * data left, and that there are sendable buffered data.
699 */
Willy Tarreau56a77e52012-09-02 18:34:44 +0200700 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 +0200701 /* check if we want to inform the kernel that we're interested in
702 * sending more data after this call. We want this if :
703 * - we're about to close after this last send and want to merge
704 * the ongoing FIN with the last segment.
705 * - we know we can't send everything at once and must get back
706 * here because of unaligned data
707 * - there is still a finite amount of data to forward
708 * The test is arranged so that the most common case does only 2
709 * tests.
710 */
711 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
712
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200713 if ((!(b->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
714 ((b->to_forward && b->to_forward != CHN_INFINITE_FORWARD) ||
715 (b->flags & CF_EXPECT_MORE))) ||
716 ((b->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200717 send_flag |= MSG_MORE;
718
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200719 ret = conn->xprt->snd_buf(conn, &b->buf, send_flag);
Willy Tarreau5368d802012-08-21 18:22:06 +0200720 if (ret <= 0)
721 break;
722
723 if (si->conn.flags & CO_FL_WAIT_L4_CONN)
724 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
725
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200726 b->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200727
Willy Tarreau5368d802012-08-21 18:22:06 +0200728 if (!b->buf.o) {
729 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200730 b->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Willy Tarreau5368d802012-08-21 18:22:06 +0200731 break;
732 }
733
734 if (--write_poll <= 0)
735 break;
736 } /* while */
737
738 if (conn->flags & CO_FL_ERROR)
739 return -1;
740
Willy Tarreau5368d802012-08-21 18:22:06 +0200741 return 0;
742}
743
744
Willy Tarreau100c4672012-08-20 12:06:26 +0200745/* Updates the timers and flags of a stream interface attached to a connection,
746 * depending on the buffers' flags. It should only be called once after the
747 * buffer flags have settled down, and before they are cleared. It doesn't
748 * harm to call it as often as desired (it just slightly hurts performance).
749 * It is only meant to be called by upper layers after buffer flags have been
750 * manipulated by analysers.
751 */
752void stream_int_update_conn(struct stream_interface *si)
753{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200754 struct channel *ib = si->ib;
755 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200756
Willy Tarreau100c4672012-08-20 12:06:26 +0200757 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200758 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200759 /* Read not closed, update FD status and timeout for reads */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200760 if ((ib->flags & (CF_HIJACK|CF_DONT_READ)) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200761 /* stop reading */
762 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200763 if (!(ib->flags & (CF_HIJACK|CF_DONT_READ))) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200764 si->flags |= SI_FL_WAIT_ROOM;
765 conn_data_stop_recv(&si->conn);
766 ib->rex = TICK_ETERNITY;
767 }
768 }
769 else {
770 /* (re)start reading and update timeout. Note: we don't recompute the timeout
771 * everytime we get here, otherwise it would risk never to expire. We only
772 * update it if is was not yet set. The stream socket handler will already
773 * have updated it if there has been a completed I/O.
774 */
775 si->flags &= ~SI_FL_WAIT_ROOM;
776 conn_data_want_recv(&si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200777 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200778 ib->rex = tick_add_ifset(now_ms, ib->rto);
779 }
780 }
781
782 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200783 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200784 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200785 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200786 /* stop writing */
787 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200788 if ((ob->flags & (CF_HIJACK|CF_SHUTW_NOW)) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200789 si->flags |= SI_FL_WAIT_DATA;
790 conn_data_stop_send(&si->conn);
791 ob->wex = TICK_ETERNITY;
792 }
793 }
794 else {
795 /* (re)start writing and update timeout. Note: we don't recompute the timeout
796 * everytime we get here, otherwise it would risk never to expire. We only
797 * update it if is was not yet set. The stream socket handler will already
798 * have updated it if there has been a completed I/O.
799 */
800 si->flags &= ~SI_FL_WAIT_DATA;
801 conn_data_want_send(&si->conn);
802 if (!tick_isset(ob->wex)) {
803 ob->wex = tick_add_ifset(now_ms, ob->wto);
804 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
805 /* Note: depending on the protocol, we don't know if we're waiting
806 * for incoming data or not. So in order to prevent the socket from
807 * expiring read timeouts during writes, we refresh the read timeout,
808 * except if it was already infinite or if we have explicitly setup
809 * independent streams.
810 */
811 ib->rex = tick_add_ifset(now_ms, ib->rto);
812 }
813 }
814 }
815 }
816}
817
Willy Tarreau46a8d922012-08-20 12:38:36 +0200818/* This function is used for inter-stream-interface calls. It is called by the
819 * consumer to inform the producer side that it may be interested in checking
820 * for free space in the buffer. Note that it intentionally does not update
821 * timeouts, so that we can still check them later at wake-up. This function is
822 * dedicated to connection-based stream interfaces.
823 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200824static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200825{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200826 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200827
Willy Tarreau34ffd772012-09-03 16:51:27 +0200828 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200829 return;
830
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200831 if ((ib->flags & (CF_HIJACK|CF_DONT_READ)) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200832 /* stop reading */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200833 if (!(ib->flags & (CF_HIJACK|CF_DONT_READ))) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200834 si->flags |= SI_FL_WAIT_ROOM;
835 conn_data_stop_recv(&si->conn);
836 }
837 else {
838 /* (re)start reading */
839 si->flags &= ~SI_FL_WAIT_ROOM;
840 conn_data_want_recv(&si->conn);
841 }
842}
843
844
Willy Tarreaude5722c2012-08-20 15:01:10 +0200845/* This function is used for inter-stream-interface calls. It is called by the
846 * producer to inform the consumer side that it may be interested in checking
847 * for data in the buffer. Note that it intentionally does not update timeouts,
848 * so that we can still check them later at wake-up.
849 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200850static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200851{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200852 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200853
Willy Tarreau34ffd772012-09-03 16:51:27 +0200854 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200855 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200856
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200857 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200858 return;
859
860 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
861 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
862 (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */
863 return;
864
Willy Tarreau34ffd772012-09-03 16:51:27 +0200865 if (!(si->conn.flags & CO_FL_HANDSHAKE) && si_conn_send_loop(&si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200866 /* Write error on the file descriptor. We mark the FD as STERROR so
867 * that we don't use it anymore and we notify the task.
868 */
869 fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY;
Willy Tarreauf16723e2012-08-24 12:52:22 +0200870 __conn_data_stop_both(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200871 si->flags |= SI_FL_ERR;
872 si->conn.flags |= CO_FL_ERROR;
873 goto out_wakeup;
874 }
875
876 /* OK, so now we know that some data might have been sent, and that we may
877 * have to poll first. We have to do that too if the buffer is not empty.
878 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200879 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200880 /* the connection is established but we can't write. Either the
881 * buffer is empty, or we just refrain from sending because the
882 * ->o limit was reached. Maybe we just wrote the last
883 * chunk and need to close.
884 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200885 if (((ob->flags & (CF_SHUTW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
886 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200887 (si->state == SI_ST_EST)) {
888 si_shutw(si);
889 goto out_wakeup;
890 }
891
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200892 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200893 si->flags |= SI_FL_WAIT_DATA;
894 ob->wex = TICK_ETERNITY;
895 }
896 else {
897 /* Otherwise there are remaining data to be sent in the buffer,
898 * which means we have to poll before doing so.
899 */
Willy Tarreauf16723e2012-08-24 12:52:22 +0200900 __conn_data_want_send(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200901 si->flags &= ~SI_FL_WAIT_DATA;
902 if (!tick_isset(ob->wex))
903 ob->wex = tick_add_ifset(now_ms, ob->wto);
904 }
905
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200906 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200907 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200908 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200909 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200910 ob->wex = tick_add_ifset(now_ms, ob->wto);
911
912 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
913 /* Note: to prevent the client from expiring read timeouts
914 * during writes, we refresh it. We only do this if the
915 * interface is not configured for "independent streams",
916 * because for some applications it's better not to do this,
917 * for instance when continuously exchanging small amounts
918 * of data which can full the socket buffers long before a
919 * write timeout is detected.
920 */
921 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
922 }
923 }
924
925 /* in case of special condition (error, shutdown, end of write...), we
926 * have to notify the task.
927 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200928 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200929 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200930 si->state != SI_ST_EST)) {
931 out_wakeup:
932 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
933 task_wakeup(si->owner, TASK_WOKEN_IO);
934 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200935
936 /* commit possible polling changes */
937 conn_cond_update_polling(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200938}
939
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200940/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200941 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200942 * into the buffer from the connection. It iterates over the transport layer's
943 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200944 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200945static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200946{
Willy Tarreaue603e692012-09-27 22:20:41 +0200947 struct stream_interface *si = conn->owner;
Willy Tarreauce323de2012-08-20 21:41:06 +0200948 struct channel *b = si->ib;
949 int ret, max, cur_read;
950 int read_poll = MAX_READ_POLL_LOOPS;
951
952 /* stop immediately on errors. Note that we DON'T want to stop on
953 * POLL_ERR, as the poller might report a write error while there
954 * are still data available in the recv buffer. This typically
955 * happens when we send too large a request to a backend server
956 * which rejects it before reading it all.
957 */
958 if (conn->flags & CO_FL_ERROR)
959 goto out_error;
960
961 /* stop here if we reached the end of data */
962 if (conn_data_read0_pending(conn))
963 goto out_shutdown_r;
964
965 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200966 if (b->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200967 return;
968
Willy Tarreau96199b12012-08-24 00:46:52 +0200969 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200970
971 /* First, let's see if we may splice data across the channel without
972 * using a buffer.
973 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200974 if (conn->xprt->rcv_pipe &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200975 b->to_forward >= MIN_SPLICE_FORWARD && b->flags & CF_KERN_SPLICING) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200976 if (buffer_not_empty(&b->buf)) {
977 /* We're embarrassed, there are already data pending in
978 * the buffer and we don't want to have them at two
979 * locations at a time. Let's indicate we need some
980 * place and ask the consumer to hurry.
981 */
982 goto abort_splice;
983 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200984
Willy Tarreau96199b12012-08-24 00:46:52 +0200985 if (unlikely(b->pipe == NULL)) {
986 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200987 b->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200988 goto abort_splice;
989 }
990 }
991
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200992 ret = conn->xprt->rcv_pipe(conn, b->pipe, b->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200993 if (ret < 0) {
994 /* splice not supported on this end, let's disable it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200995 b->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200996 goto abort_splice;
997 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200998
Willy Tarreau96199b12012-08-24 00:46:52 +0200999 if (ret > 0) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001000 if (b->to_forward != CHN_INFINITE_FORWARD)
Willy Tarreau96199b12012-08-24 00:46:52 +02001001 b->to_forward -= ret;
1002 b->total += ret;
1003 cur_read += ret;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001004 b->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001005 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001006
1007 if (conn_data_read0_pending(conn))
1008 goto out_shutdown_r;
1009
1010 if (conn->flags & CO_FL_ERROR)
1011 goto out_error;
1012
Willy Tarreau56a77e52012-09-02 18:34:44 +02001013 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
1014 si->flags |= SI_FL_WAIT_ROOM;
1015
Willy Tarreauce323de2012-08-20 21:41:06 +02001016 /* splice not possible (anymore), let's go on on standard copy */
1017 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001018
1019 abort_splice:
1020 /* release the pipe if we can, which is almost always the case */
1021 if (b->pipe && !b->pipe->data) {
1022 put_pipe(b->pipe);
1023 b->pipe = NULL;
1024 }
1025
Willy Tarreau56a77e52012-09-02 18:34:44 +02001026 while (!b->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))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001027 max = bi_avail(b);
1028
1029 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001030 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001031 break;
1032 }
1033
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001034 ret = conn->xprt->rcv_buf(conn, &b->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001035 if (ret <= 0)
1036 break;
1037
1038 cur_read += ret;
1039
1040 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001041 if (b->to_forward && !(b->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001042 unsigned long fwd = ret;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001043 if (b->to_forward != CHN_INFINITE_FORWARD) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001044 if (fwd > b->to_forward)
1045 fwd = b->to_forward;
1046 b->to_forward -= fwd;
1047 }
Willy Tarreaua75bcef2012-08-24 22:56:11 +02001048 b_adv(&b->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001049 }
1050
1051 if (conn->flags & CO_FL_WAIT_L4_CONN)
1052 conn->flags &= ~CO_FL_WAIT_L4_CONN;
1053
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001054 b->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001055 b->total += ret;
1056
Willy Tarreauad1cc3d2012-08-27 18:54:20 +02001057 if (channel_full(b)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001058 /* The buffer is now full, there's no point in going through
1059 * the loop again.
1060 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001061 if (!(b->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(&b->buf))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001062 b->xfer_small = 0;
1063 b->xfer_large++;
1064 if (b->xfer_large >= 3) {
1065 /* we call this buffer a fast streamer if it manages
1066 * to be filled in one call 3 consecutive times.
1067 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001068 b->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001069 //fputc('+', stderr);
1070 }
1071 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001072 else if ((b->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreauce323de2012-08-20 21:41:06 +02001073 (cur_read <= b->buf.size / 2)) {
1074 b->xfer_large = 0;
1075 b->xfer_small++;
1076 if (b->xfer_small >= 2) {
1077 /* if the buffer has been at least half full twice,
1078 * we receive faster than we send, so at least it
1079 * is not a "fast streamer".
1080 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001081 b->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001082 //fputc('-', stderr);
1083 }
1084 }
1085 else {
1086 b->xfer_small = 0;
1087 b->xfer_large = 0;
1088 }
1089
Willy Tarreauce323de2012-08-20 21:41:06 +02001090 si->flags |= SI_FL_WAIT_ROOM;
1091 break;
1092 }
1093
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001094 if ((b->flags & CF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreauce323de2012-08-20 21:41:06 +02001095 break;
1096
1097 /* if too many bytes were missing from last read, it means that
1098 * it's pointless trying to read again because the system does
1099 * not have them in buffers.
1100 */
1101 if (ret < max) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001102 if ((b->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreauce323de2012-08-20 21:41:06 +02001103 (cur_read <= b->buf.size / 2)) {
1104 b->xfer_large = 0;
1105 b->xfer_small++;
1106 if (b->xfer_small >= 3) {
1107 /* we have read less than half of the buffer in
1108 * one pass, and this happened at least 3 times.
1109 * This is definitely not a streamer.
1110 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001111 b->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001112 //fputc('!', stderr);
1113 }
1114 }
1115
1116 /* if a streamer has read few data, it may be because we
1117 * have exhausted system buffers. It's not worth trying
1118 * again.
1119 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001120 if (b->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001121 break;
1122
1123 /* if we read a large block smaller than what we requested,
1124 * it's almost certain we'll never get anything more.
1125 */
1126 if (ret >= global.tune.recv_enough)
1127 break;
1128 }
1129 } /* while !flags */
1130
Willy Tarreau96199b12012-08-24 00:46:52 +02001131 if (conn->flags & CO_FL_ERROR)
1132 goto out_error;
1133
Willy Tarreauce323de2012-08-20 21:41:06 +02001134 if (conn_data_read0_pending(conn))
1135 /* connection closed */
1136 goto out_shutdown_r;
1137
1138 return;
1139
1140 out_shutdown_r:
1141 /* we received a shutdown */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001142 b->flags |= CF_READ_NULL;
1143 if (b->flags & CF_AUTO_CLOSE)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001144 channel_shutw_now(b);
Willy Tarreauce323de2012-08-20 21:41:06 +02001145 stream_sock_read0(si);
1146 conn_data_read0(conn);
1147 return;
1148
1149 out_error:
1150 /* Read error on the connection, report the error and stop I/O */
1151 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001152}
1153
1154/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001155 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001156 * from the buffer to the connection. It iterates over the transport layer's
1157 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001158 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001159static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001160{
Willy Tarreaue603e692012-09-27 22:20:41 +02001161 struct stream_interface *si = conn->owner;
Willy Tarreau7421efb2012-07-02 15:11:27 +02001162 struct channel *b = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001163
1164 if (conn->flags & CO_FL_ERROR)
1165 goto out_error;
1166
1167 if (si->conn.flags & CO_FL_HANDSHAKE)
1168 /* a handshake was requested */
1169 return;
1170
1171 /* we might have been called just after an asynchronous shutw */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001172 if (b->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001173 return;
1174
1175 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001176 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001177 goto out_error;
1178
1179 /* OK all done */
1180 return;
1181
1182 out_error:
1183 /* Write error on the connection, report the error and stop I/O */
1184 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001185}
1186
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001187/*
1188 * This function propagates a null read received on a socket-based connection.
1189 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1190 * the close is also forwarded to the write side as an abort. This function is
1191 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1192 * state on the socket.
1193 */
1194void stream_sock_read0(struct stream_interface *si)
1195{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001196 si->ib->flags &= ~CF_SHUTR_NOW;
1197 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001198 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001199 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001200 si->ib->rex = TICK_ETERNITY;
1201 si->flags &= ~SI_FL_WAIT_ROOM;
1202
1203 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1204 return;
1205
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001206 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001207 goto do_close;
1208
1209 if (si->flags & SI_FL_NOHALF) {
1210 /* we want to immediately forward this close to the write side */
1211 if (si->flags & SI_FL_NOLINGER) {
1212 si->flags &= ~SI_FL_NOLINGER;
1213 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
1214 (struct linger *) &nolinger, sizeof(struct linger));
1215 }
1216 /* force flag on ssl to keep session in cache */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001217 if (si->conn.xprt->shutw)
1218 si->conn.xprt->shutw(&si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001219 goto do_close;
1220 }
1221
1222 /* otherwise that's just a normal read shutdown */
Willy Tarreauf16723e2012-08-24 12:52:22 +02001223 __conn_data_stop_recv(&si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001224 return;
1225
1226 do_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001227 conn_xprt_close(&si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001228 fd_delete(si_fd(si));
1229 si->state = SI_ST_DIS;
1230 si->exp = TICK_ETERNITY;
1231 if (si->release)
1232 si->release(si);
1233 return;
1234}
1235
Willy Tarreaudded32d2008-11-30 19:48:07 +01001236/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001237 * Local variables:
1238 * c-indent-level: 8
1239 * c-basic-offset: 8
1240 * End:
1241 */