blob: 8bc5bbbb253cb82e7d6d5e0ec58c71ab2c863fdb [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);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020049static int 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
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200564 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200565 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200566static int 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 Tarreau2396c1c2012-10-03 21:12:16 +0200662 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200663}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200664
Willy Tarreau5368d802012-08-21 18:22:06 +0200665/*
666 * This function is called to send buffer data to a stream socket.
667 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200668 * It iterates the transport layer's snd_buf function. It relies on the
Willy Tarreauf16723e2012-08-24 12:52:22 +0200669 * caller to commit polling changes.
Willy Tarreau5368d802012-08-21 18:22:06 +0200670 */
671static int si_conn_send_loop(struct connection *conn)
672{
Willy Tarreaue603e692012-09-27 22:20:41 +0200673 struct stream_interface *si = conn->owner;
Willy Tarreau5368d802012-08-21 18:22:06 +0200674 struct channel *b = si->ob;
675 int write_poll = MAX_WRITE_POLL_LOOPS;
676 int ret;
677
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200678 if (b->pipe && conn->xprt->snd_pipe) {
679 ret = conn->xprt->snd_pipe(conn, b->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200680 if (ret > 0)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200681 b->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200682
683 if (!b->pipe->data) {
684 put_pipe(b->pipe);
685 b->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200686 }
687
Willy Tarreau96199b12012-08-24 00:46:52 +0200688 if (conn->flags & CO_FL_ERROR)
689 return -1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200690 }
691
692 /* At this point, the pipe is empty, but we may still have data pending
693 * in the normal buffer.
694 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200695 if (!b->buf.o)
Willy Tarreau5368d802012-08-21 18:22:06 +0200696 return 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200697
698 /* when we're in this loop, we already know that there is no spliced
699 * data left, and that there are sendable buffered data.
700 */
Willy Tarreau56a77e52012-09-02 18:34:44 +0200701 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 +0200702 /* check if we want to inform the kernel that we're interested in
703 * sending more data after this call. We want this if :
704 * - we're about to close after this last send and want to merge
705 * the ongoing FIN with the last segment.
706 * - we know we can't send everything at once and must get back
707 * here because of unaligned data
708 * - there is still a finite amount of data to forward
709 * The test is arranged so that the most common case does only 2
710 * tests.
711 */
712 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
713
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200714 if ((!(b->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
715 ((b->to_forward && b->to_forward != CHN_INFINITE_FORWARD) ||
716 (b->flags & CF_EXPECT_MORE))) ||
717 ((b->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200718 send_flag |= MSG_MORE;
719
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200720 ret = conn->xprt->snd_buf(conn, &b->buf, send_flag);
Willy Tarreau5368d802012-08-21 18:22:06 +0200721 if (ret <= 0)
722 break;
723
724 if (si->conn.flags & CO_FL_WAIT_L4_CONN)
725 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
726
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200727 b->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200728
Willy Tarreau5368d802012-08-21 18:22:06 +0200729 if (!b->buf.o) {
730 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200731 b->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Willy Tarreau5368d802012-08-21 18:22:06 +0200732 break;
733 }
734
735 if (--write_poll <= 0)
736 break;
737 } /* while */
738
739 if (conn->flags & CO_FL_ERROR)
740 return -1;
741
Willy Tarreau5368d802012-08-21 18:22:06 +0200742 return 0;
743}
744
745
Willy Tarreau100c4672012-08-20 12:06:26 +0200746/* Updates the timers and flags of a stream interface attached to a connection,
747 * depending on the buffers' flags. It should only be called once after the
748 * buffer flags have settled down, and before they are cleared. It doesn't
749 * harm to call it as often as desired (it just slightly hurts performance).
750 * It is only meant to be called by upper layers after buffer flags have been
751 * manipulated by analysers.
752 */
753void stream_int_update_conn(struct stream_interface *si)
754{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200755 struct channel *ib = si->ib;
756 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200757
Willy Tarreau100c4672012-08-20 12:06:26 +0200758 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200759 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200760 /* Read not closed, update FD status and timeout for reads */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200761 if ((ib->flags & (CF_HIJACK|CF_DONT_READ)) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200762 /* stop reading */
763 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200764 if (!(ib->flags & (CF_HIJACK|CF_DONT_READ))) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200765 si->flags |= SI_FL_WAIT_ROOM;
766 conn_data_stop_recv(&si->conn);
767 ib->rex = TICK_ETERNITY;
768 }
769 }
770 else {
771 /* (re)start reading and update timeout. Note: we don't recompute the timeout
772 * everytime we get here, otherwise it would risk never to expire. We only
773 * update it if is was not yet set. The stream socket handler will already
774 * have updated it if there has been a completed I/O.
775 */
776 si->flags &= ~SI_FL_WAIT_ROOM;
777 conn_data_want_recv(&si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200778 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200779 ib->rex = tick_add_ifset(now_ms, ib->rto);
780 }
781 }
782
783 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200784 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200785 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200786 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200787 /* stop writing */
788 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200789 if ((ob->flags & (CF_HIJACK|CF_SHUTW_NOW)) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200790 si->flags |= SI_FL_WAIT_DATA;
791 conn_data_stop_send(&si->conn);
792 ob->wex = TICK_ETERNITY;
793 }
794 }
795 else {
796 /* (re)start writing and update timeout. Note: we don't recompute the timeout
797 * everytime we get here, otherwise it would risk never to expire. We only
798 * update it if is was not yet set. The stream socket handler will already
799 * have updated it if there has been a completed I/O.
800 */
801 si->flags &= ~SI_FL_WAIT_DATA;
802 conn_data_want_send(&si->conn);
803 if (!tick_isset(ob->wex)) {
804 ob->wex = tick_add_ifset(now_ms, ob->wto);
805 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
806 /* Note: depending on the protocol, we don't know if we're waiting
807 * for incoming data or not. So in order to prevent the socket from
808 * expiring read timeouts during writes, we refresh the read timeout,
809 * except if it was already infinite or if we have explicitly setup
810 * independent streams.
811 */
812 ib->rex = tick_add_ifset(now_ms, ib->rto);
813 }
814 }
815 }
816 }
817}
818
Willy Tarreau46a8d922012-08-20 12:38:36 +0200819/* This function is used for inter-stream-interface calls. It is called by the
820 * consumer to inform the producer side that it may be interested in checking
821 * for free space in the buffer. Note that it intentionally does not update
822 * timeouts, so that we can still check them later at wake-up. This function is
823 * dedicated to connection-based stream interfaces.
824 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200825static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200826{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200827 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200828
Willy Tarreau34ffd772012-09-03 16:51:27 +0200829 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200830 return;
831
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200832 if ((ib->flags & (CF_HIJACK|CF_DONT_READ)) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200833 /* stop reading */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200834 if (!(ib->flags & (CF_HIJACK|CF_DONT_READ))) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200835 si->flags |= SI_FL_WAIT_ROOM;
836 conn_data_stop_recv(&si->conn);
837 }
838 else {
839 /* (re)start reading */
840 si->flags &= ~SI_FL_WAIT_ROOM;
841 conn_data_want_recv(&si->conn);
842 }
843}
844
845
Willy Tarreaude5722c2012-08-20 15:01:10 +0200846/* This function is used for inter-stream-interface calls. It is called by the
847 * producer to inform the consumer side that it may be interested in checking
848 * for data in the buffer. Note that it intentionally does not update timeouts,
849 * so that we can still check them later at wake-up.
850 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200851static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200852{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200853 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200854
Willy Tarreau34ffd772012-09-03 16:51:27 +0200855 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200856 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200857
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200858 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200859 return;
860
861 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
862 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
863 (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */
864 return;
865
Willy Tarreau34ffd772012-09-03 16:51:27 +0200866 if (!(si->conn.flags & CO_FL_HANDSHAKE) && si_conn_send_loop(&si->conn) < 0) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200867 /* Write error on the file descriptor. We mark the FD as STERROR so
868 * that we don't use it anymore and we notify the task.
869 */
870 fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY;
Willy Tarreauf16723e2012-08-24 12:52:22 +0200871 __conn_data_stop_both(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200872 si->flags |= SI_FL_ERR;
873 si->conn.flags |= CO_FL_ERROR;
874 goto out_wakeup;
875 }
876
877 /* OK, so now we know that some data might have been sent, and that we may
878 * have to poll first. We have to do that too if the buffer is not empty.
879 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200880 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200881 /* the connection is established but we can't write. Either the
882 * buffer is empty, or we just refrain from sending because the
883 * ->o limit was reached. Maybe we just wrote the last
884 * chunk and need to close.
885 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200886 if (((ob->flags & (CF_SHUTW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
887 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200888 (si->state == SI_ST_EST)) {
889 si_shutw(si);
890 goto out_wakeup;
891 }
892
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200893 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200894 si->flags |= SI_FL_WAIT_DATA;
895 ob->wex = TICK_ETERNITY;
896 }
897 else {
898 /* Otherwise there are remaining data to be sent in the buffer,
899 * which means we have to poll before doing so.
900 */
Willy Tarreauf16723e2012-08-24 12:52:22 +0200901 __conn_data_want_send(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200902 si->flags &= ~SI_FL_WAIT_DATA;
903 if (!tick_isset(ob->wex))
904 ob->wex = tick_add_ifset(now_ms, ob->wto);
905 }
906
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200907 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200908 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200909 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200910 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200911 ob->wex = tick_add_ifset(now_ms, ob->wto);
912
913 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
914 /* Note: to prevent the client from expiring read timeouts
915 * during writes, we refresh it. We only do this if the
916 * interface is not configured for "independent streams",
917 * because for some applications it's better not to do this,
918 * for instance when continuously exchanging small amounts
919 * of data which can full the socket buffers long before a
920 * write timeout is detected.
921 */
922 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
923 }
924 }
925
926 /* in case of special condition (error, shutdown, end of write...), we
927 * have to notify the task.
928 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200929 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200930 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200931 si->state != SI_ST_EST)) {
932 out_wakeup:
933 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
934 task_wakeup(si->owner, TASK_WOKEN_IO);
935 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200936
937 /* commit possible polling changes */
938 conn_cond_update_polling(&si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200939}
940
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200941/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200942 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200943 * into the buffer from the connection. It iterates over the transport layer's
944 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200945 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200946static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200947{
Willy Tarreaue603e692012-09-27 22:20:41 +0200948 struct stream_interface *si = conn->owner;
Willy Tarreauce323de2012-08-20 21:41:06 +0200949 struct channel *b = si->ib;
950 int ret, max, cur_read;
951 int read_poll = MAX_READ_POLL_LOOPS;
952
953 /* stop immediately on errors. Note that we DON'T want to stop on
954 * POLL_ERR, as the poller might report a write error while there
955 * are still data available in the recv buffer. This typically
956 * happens when we send too large a request to a backend server
957 * which rejects it before reading it all.
958 */
959 if (conn->flags & CO_FL_ERROR)
960 goto out_error;
961
962 /* stop here if we reached the end of data */
963 if (conn_data_read0_pending(conn))
964 goto out_shutdown_r;
965
966 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200967 if (b->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +0200968 return;
969
Willy Tarreau96199b12012-08-24 00:46:52 +0200970 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +0200971
972 /* First, let's see if we may splice data across the channel without
973 * using a buffer.
974 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200975 if (conn->xprt->rcv_pipe &&
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200976 b->to_forward >= MIN_SPLICE_FORWARD && b->flags & CF_KERN_SPLICING) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200977 if (buffer_not_empty(&b->buf)) {
978 /* We're embarrassed, there are already data pending in
979 * the buffer and we don't want to have them at two
980 * locations at a time. Let's indicate we need some
981 * place and ask the consumer to hurry.
982 */
983 goto abort_splice;
984 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200985
Willy Tarreau96199b12012-08-24 00:46:52 +0200986 if (unlikely(b->pipe == NULL)) {
987 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200988 b->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200989 goto abort_splice;
990 }
991 }
992
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200993 ret = conn->xprt->rcv_pipe(conn, b->pipe, b->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +0200994 if (ret < 0) {
995 /* splice not supported on this end, let's disable it */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200996 b->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +0200997 goto abort_splice;
998 }
Willy Tarreauce323de2012-08-20 21:41:06 +0200999
Willy Tarreau96199b12012-08-24 00:46:52 +02001000 if (ret > 0) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001001 if (b->to_forward != CHN_INFINITE_FORWARD)
Willy Tarreau96199b12012-08-24 00:46:52 +02001002 b->to_forward -= ret;
1003 b->total += ret;
1004 cur_read += ret;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001005 b->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001006 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001007
1008 if (conn_data_read0_pending(conn))
1009 goto out_shutdown_r;
1010
1011 if (conn->flags & CO_FL_ERROR)
1012 goto out_error;
1013
Willy Tarreau56a77e52012-09-02 18:34:44 +02001014 if (conn->flags & CO_FL_WAIT_ROOM) /* most likely the pipe is full */
1015 si->flags |= SI_FL_WAIT_ROOM;
1016
Willy Tarreauce323de2012-08-20 21:41:06 +02001017 /* splice not possible (anymore), let's go on on standard copy */
1018 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001019
1020 abort_splice:
1021 /* release the pipe if we can, which is almost always the case */
1022 if (b->pipe && !b->pipe->data) {
1023 put_pipe(b->pipe);
1024 b->pipe = NULL;
1025 }
1026
Willy Tarreau56a77e52012-09-02 18:34:44 +02001027 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 +02001028 max = bi_avail(b);
1029
1030 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001031 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001032 break;
1033 }
1034
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001035 ret = conn->xprt->rcv_buf(conn, &b->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001036 if (ret <= 0)
1037 break;
1038
1039 cur_read += ret;
1040
1041 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001042 if (b->to_forward && !(b->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001043 unsigned long fwd = ret;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001044 if (b->to_forward != CHN_INFINITE_FORWARD) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001045 if (fwd > b->to_forward)
1046 fwd = b->to_forward;
1047 b->to_forward -= fwd;
1048 }
Willy Tarreaua75bcef2012-08-24 22:56:11 +02001049 b_adv(&b->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001050 }
1051
1052 if (conn->flags & CO_FL_WAIT_L4_CONN)
1053 conn->flags &= ~CO_FL_WAIT_L4_CONN;
1054
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001055 b->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001056 b->total += ret;
1057
Willy Tarreauad1cc3d2012-08-27 18:54:20 +02001058 if (channel_full(b)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001059 /* The buffer is now full, there's no point in going through
1060 * the loop again.
1061 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001062 if (!(b->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(&b->buf))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001063 b->xfer_small = 0;
1064 b->xfer_large++;
1065 if (b->xfer_large >= 3) {
1066 /* we call this buffer a fast streamer if it manages
1067 * to be filled in one call 3 consecutive times.
1068 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001069 b->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001070 //fputc('+', stderr);
1071 }
1072 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001073 else if ((b->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreauce323de2012-08-20 21:41:06 +02001074 (cur_read <= b->buf.size / 2)) {
1075 b->xfer_large = 0;
1076 b->xfer_small++;
1077 if (b->xfer_small >= 2) {
1078 /* if the buffer has been at least half full twice,
1079 * we receive faster than we send, so at least it
1080 * is not a "fast streamer".
1081 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001082 b->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001083 //fputc('-', stderr);
1084 }
1085 }
1086 else {
1087 b->xfer_small = 0;
1088 b->xfer_large = 0;
1089 }
1090
Willy Tarreauce323de2012-08-20 21:41:06 +02001091 si->flags |= SI_FL_WAIT_ROOM;
1092 break;
1093 }
1094
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001095 if ((b->flags & CF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreauce323de2012-08-20 21:41:06 +02001096 break;
1097
1098 /* if too many bytes were missing from last read, it means that
1099 * it's pointless trying to read again because the system does
1100 * not have them in buffers.
1101 */
1102 if (ret < max) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001103 if ((b->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreauce323de2012-08-20 21:41:06 +02001104 (cur_read <= b->buf.size / 2)) {
1105 b->xfer_large = 0;
1106 b->xfer_small++;
1107 if (b->xfer_small >= 3) {
1108 /* we have read less than half of the buffer in
1109 * one pass, and this happened at least 3 times.
1110 * This is definitely not a streamer.
1111 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001112 b->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001113 //fputc('!', stderr);
1114 }
1115 }
1116
1117 /* if a streamer has read few data, it may be because we
1118 * have exhausted system buffers. It's not worth trying
1119 * again.
1120 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001121 if (b->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001122 break;
1123
1124 /* if we read a large block smaller than what we requested,
1125 * it's almost certain we'll never get anything more.
1126 */
1127 if (ret >= global.tune.recv_enough)
1128 break;
1129 }
1130 } /* while !flags */
1131
Willy Tarreau96199b12012-08-24 00:46:52 +02001132 if (conn->flags & CO_FL_ERROR)
1133 goto out_error;
1134
Willy Tarreauce323de2012-08-20 21:41:06 +02001135 if (conn_data_read0_pending(conn))
1136 /* connection closed */
1137 goto out_shutdown_r;
1138
1139 return;
1140
1141 out_shutdown_r:
1142 /* we received a shutdown */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001143 b->flags |= CF_READ_NULL;
1144 if (b->flags & CF_AUTO_CLOSE)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001145 channel_shutw_now(b);
Willy Tarreauce323de2012-08-20 21:41:06 +02001146 stream_sock_read0(si);
1147 conn_data_read0(conn);
1148 return;
1149
1150 out_error:
1151 /* Read error on the connection, report the error and stop I/O */
1152 conn->flags |= CO_FL_ERROR;
Willy Tarreauce323de2012-08-20 21:41:06 +02001153}
1154
1155/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001156 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001157 * from the buffer to the connection. It iterates over the transport layer's
1158 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001159 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001160static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001161{
Willy Tarreaue603e692012-09-27 22:20:41 +02001162 struct stream_interface *si = conn->owner;
Willy Tarreau7421efb2012-07-02 15:11:27 +02001163 struct channel *b = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001164
1165 if (conn->flags & CO_FL_ERROR)
1166 goto out_error;
1167
1168 if (si->conn.flags & CO_FL_HANDSHAKE)
1169 /* a handshake was requested */
1170 return;
1171
1172 /* we might have been called just after an asynchronous shutw */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001173 if (b->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001174 return;
1175
1176 /* OK there are data waiting to be sent */
Willy Tarreau5368d802012-08-21 18:22:06 +02001177 if (si_conn_send_loop(conn) < 0)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001178 goto out_error;
1179
1180 /* OK all done */
1181 return;
1182
1183 out_error:
1184 /* Write error on the connection, report the error and stop I/O */
1185 conn->flags |= CO_FL_ERROR;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001186}
1187
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001188/*
1189 * This function propagates a null read received on a socket-based connection.
1190 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1191 * the close is also forwarded to the write side as an abort. This function is
1192 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1193 * state on the socket.
1194 */
1195void stream_sock_read0(struct stream_interface *si)
1196{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001197 si->ib->flags &= ~CF_SHUTR_NOW;
1198 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001199 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001200 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001201 si->ib->rex = TICK_ETERNITY;
1202 si->flags &= ~SI_FL_WAIT_ROOM;
1203
1204 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1205 return;
1206
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001207 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001208 goto do_close;
1209
1210 if (si->flags & SI_FL_NOHALF) {
1211 /* we want to immediately forward this close to the write side */
1212 if (si->flags & SI_FL_NOLINGER) {
1213 si->flags &= ~SI_FL_NOLINGER;
1214 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
1215 (struct linger *) &nolinger, sizeof(struct linger));
1216 }
1217 /* force flag on ssl to keep session in cache */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001218 if (si->conn.xprt->shutw)
1219 si->conn.xprt->shutw(&si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001220 goto do_close;
1221 }
1222
1223 /* otherwise that's just a normal read shutdown */
Willy Tarreauf16723e2012-08-24 12:52:22 +02001224 __conn_data_stop_recv(&si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001225 return;
1226
1227 do_close:
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001228 conn_xprt_close(&si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001229 fd_delete(si_fd(si));
1230 si->state = SI_ST_DIS;
1231 si->exp = TICK_ETERNITY;
1232 if (si->release)
1233 si->release(si);
1234 return;
1235}
1236
Willy Tarreaudded32d2008-11-30 19:48:07 +01001237/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001238 * Local variables:
1239 * c-indent-level: 8
1240 * c-basic-offset: 8
1241 * End:
1242 */