blob: a38f53adfbd534640679790276a23622a9df2845 [file] [log] [blame]
Willy Tarreaucff64112008-11-03 06:26:53 +01001/*
2 * Functions managing stream_interface structures
3 *
Willy Tarreauf873d752012-05-11 17:47:17 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Willy Tarreaucff64112008-11-03 06:26:53 +01005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17
18#include <sys/socket.h>
19#include <sys/stat.h>
20#include <sys/types.h>
21
22#include <common/compat.h>
23#include <common/config.h>
24#include <common/debug.h>
25#include <common/standard.h>
26#include <common/ticks.h>
27#include <common/time.h>
28
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <proto/channel.h>
Willy Tarreau8b117082012-08-06 15:06:49 +020030#include <proto/connection.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010031#include <proto/fd.h>
Willy Tarreau96199b12012-08-24 00:46:52 +020032#include <proto/pipe.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020033#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010034#include <proto/task.h>
35
Willy Tarreaufd31e532012-07-23 18:24:25 +020036#include <types/pipe.h>
37
Willy Tarreauf873d752012-05-11 17:47:17 +020038/* socket functions used when running a stream interface as a task */
Willy Tarreauf873d752012-05-11 17:47:17 +020039static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020040static void stream_int_shutr(struct stream_interface *si);
41static void stream_int_shutw(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);
Willy Tarreau6fe15412013-09-29 15:16:03 +020045static void stream_int_shutr_conn(struct stream_interface *si);
46static void stream_int_shutw_conn(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020047static void stream_int_chk_rcv_conn(struct stream_interface *si);
48static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020049static void si_conn_recv_cb(struct connection *conn);
50static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020051static int si_conn_wake_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020052
Willy Tarreauc5788912012-08-24 18:12:41 +020053/* stream-interface operations for embedded tasks */
54struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020055 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020056 .chk_rcv = stream_int_chk_rcv,
57 .chk_snd = stream_int_chk_snd,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020058 .shutr = stream_int_shutr,
59 .shutw = stream_int_shutw,
Willy Tarreau5c979a92012-05-07 17:15:39 +020060};
61
Willy Tarreauc5788912012-08-24 18:12:41 +020062/* stream-interface operations for connections */
63struct si_ops si_conn_ops = {
64 .update = stream_int_update_conn,
65 .chk_rcv = stream_int_chk_rcv_conn,
66 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020067 .shutr = stream_int_shutr_conn,
68 .shutw = stream_int_shutw_conn,
Willy Tarreauc5788912012-08-24 18:12:41 +020069};
70
Willy Tarreau74beec32012-10-03 00:41:04 +020071struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020072 .recv = si_conn_recv_cb,
73 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020074 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020075};
76
Willy Tarreaucff64112008-11-03 06:26:53 +010077/*
78 * This function only has to be called once after a wakeup event in case of
79 * suspected timeout. It controls the stream interface timeouts and sets
80 * si->flags accordingly. It does NOT close anything, as this timeout may
81 * be used for any purpose. It returns 1 if the timeout fired, otherwise
82 * zero.
83 */
84int stream_int_check_timeouts(struct stream_interface *si)
85{
86 if (tick_is_expired(si->exp, now_ms)) {
87 si->flags |= SI_FL_EXP;
88 return 1;
89 }
90 return 0;
91}
92
Willy Tarreaufe3718a2008-11-30 18:14:12 +010093/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010094void stream_int_report_error(struct stream_interface *si)
95{
96 if (!si->err_type)
97 si->err_type = SI_ET_DATA_ERR;
98
Willy Tarreau03cdb7c2012-08-27 23:14:58 +020099 si->ob->flags |= CF_WRITE_ERROR;
100 si->ib->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100101}
102
103/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100104 * Returns a message to the client ; the connection is shut down for read,
105 * and the request is cleared so that no server connection can be initiated.
106 * The buffer is marked for read shutdown on the other side to protect the
107 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100108 * "chunk". If it is null, then an empty message is used. The reply buffer does
109 * not need to be empty before this, and its contents will not be overwritten.
110 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100111 */
112void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
113{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200114 channel_auto_read(si->ib);
115 channel_abort(si->ib);
116 channel_auto_close(si->ib);
117 channel_erase(si->ib);
Willy Tarreau798e1282010-12-12 13:06:00 +0100118
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200119 bi_erase(si->ob);
Willy Tarreau148d0992010-01-10 10:21:21 +0100120 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200121 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100122
123 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200124 channel_auto_read(si->ob);
125 channel_auto_close(si->ob);
126 channel_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100127}
128
Willy Tarreaufb90d942009-09-05 20:57:35 +0200129/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200130static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200131{
Willy Tarreau3488e252010-08-09 16:24:56 +0200132 int old_flags = si->flags;
133
Willy Tarreaufb90d942009-09-05 20:57:35 +0200134 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
135 __FUNCTION__,
136 si, si->state, si->ib->flags, si->ob->flags);
137
138 if (si->state != SI_ST_EST)
139 return;
140
Willy Tarreaub31c9712012-11-11 23:05:39 +0100141 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200142 channel_is_empty(si->ob))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200143 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200144
Willy Tarreaub31c9712012-11-11 23:05:39 +0100145 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200146 si->flags |= SI_FL_WAIT_DATA;
147
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200148 /* we're almost sure that we need some space if the buffer is not
149 * empty, even if it's not full, because the applets can't fill it.
150 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200151 if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200152 si->flags |= SI_FL_WAIT_ROOM;
153
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200154 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200155 if (tick_isset(si->ob->wex))
156 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
157 }
158
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200159 if (si->ib->flags & CF_READ_ACTIVITY ||
160 (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200161 if (tick_isset(si->ib->rex))
162 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
163 }
164
Willy Tarreau3488e252010-08-09 16:24:56 +0200165 /* save flags to detect changes */
166 old_flags = si->flags;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200167 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200168 !channel_full(si->ob) &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200169 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200170 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200171
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200172 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200173 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200174 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200175 /* check if the consumer has freed some space */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200176 if (!channel_full(si->ib))
Willy Tarreau3488e252010-08-09 16:24:56 +0200177 si->flags &= ~SI_FL_WAIT_ROOM;
178 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200179
180 /* Note that we're trying to wake up in two conditions here :
181 * - special event, which needs the holder task attention
182 * - status indicating that the applet can go on working. This
183 * is rather hard because we might be blocking on output and
184 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200185 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200186 */
187 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200188 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
189
190 /* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200191 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200192 si->state != SI_ST_EST ||
193 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200194 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200195 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
196
197 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200198 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
199 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
200 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200201 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200202 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200203 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
204 task_wakeup(si->owner, TASK_WOKEN_IO);
205 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200206 if (si->ib->flags & CF_READ_ACTIVITY)
207 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200208}
209
Willy Tarreau4a36b562012-08-06 19:31:45 +0200210/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200211 * This function performs a shutdown-read on a stream interface attached to an
212 * applet in a connected or init state (it does nothing for other states). It
213 * either shuts the read side or marks itself as closed. The buffer flags are
214 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
215 * we also forward the close to the write side. The owner task is woken up if
Willy Tarreau6fe15412013-09-29 15:16:03 +0200216 * it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200217 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200218static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200219{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200220 si->ib->flags &= ~CF_SHUTR_NOW;
221 if (si->ib->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200222 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200223 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200224 si->ib->rex = TICK_ETERNITY;
225 si->flags &= ~SI_FL_WAIT_ROOM;
226
227 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200228 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200229
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200230 if (si->ob->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200231 si->state = SI_ST_DIS;
232 si->exp = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200233
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200234 if (si->release)
235 si->release(si);
236 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200237 else if (si->flags & SI_FL_NOHALF) {
238 /* we want to immediately forward this close to the write side */
239 return stream_int_shutw(si);
240 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200241
Willy Tarreau4a36b562012-08-06 19:31:45 +0200242 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200243 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200244 task_wakeup(si->owner, TASK_WOKEN_IO);
245}
246
Willy Tarreau4a36b562012-08-06 19:31:45 +0200247/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200248 * This function performs a shutdown-write on a stream interface attached to an
249 * applet in a connected or init state (it does nothing for other states). It
250 * either shuts the write side or marks itself as closed. The buffer flags are
251 * updated to reflect the new state. It does also close everything if the SI
252 * was marked as being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200253 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200254static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200255{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200256 si->ob->flags &= ~CF_SHUTW_NOW;
257 if (si->ob->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200258 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200259 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200260 si->ob->wex = TICK_ETERNITY;
261 si->flags &= ~SI_FL_WAIT_DATA;
262
263 switch (si->state) {
264 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200265 /* we have to shut before closing, otherwise some short messages
266 * may never leave the system, especially when there are remaining
267 * unread data in the socket input buffer, or when nolinger is set.
268 * However, if SI_FL_NOLINGER is explicitly set, we know there is
269 * no risk so we close both sides immediately.
270 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200271 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
272 !(si->ib->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200273 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200274
275 /* fall through */
276 case SI_ST_CON:
277 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100278 case SI_ST_QUE:
279 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200280 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200281 si->state = SI_ST_DIS;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200282
283 if (si->release)
284 si->release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200285 default:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200286 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
287 si->ib->flags &= ~CF_SHUTR_NOW;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200288 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200289 si->ib->rex = TICK_ETERNITY;
290 si->exp = TICK_ETERNITY;
291 }
292
Willy Tarreau4a36b562012-08-06 19:31:45 +0200293 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200294 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200295 task_wakeup(si->owner, TASK_WOKEN_IO);
296}
297
298/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200299static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200300{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200301 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200302
303 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
304 __FUNCTION__,
305 si, si->state, si->ib->flags, si->ob->flags);
306
Willy Tarreaub31c9712012-11-11 23:05:39 +0100307 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200308 return;
309
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200310 if (channel_full(ib)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200311 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200312 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200313 }
314 else {
315 /* (re)start reading */
316 si->flags &= ~SI_FL_WAIT_ROOM;
317 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
318 task_wakeup(si->owner, TASK_WOKEN_IO);
319 }
320}
321
322/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200323static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200324{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200325 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200326
327 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
328 __FUNCTION__,
329 si, si->state, si->ib->flags, si->ob->flags);
330
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200331 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200332 return;
333
334 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200335 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200336 return;
337
338 /* Otherwise there are remaining data to be sent in the buffer,
339 * so we tell the handler.
340 */
341 si->flags &= ~SI_FL_WAIT_DATA;
342 if (!tick_isset(ob->wex))
343 ob->wex = tick_add_ifset(now_ms, ob->wto);
344
345 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
346 task_wakeup(si->owner, TASK_WOKEN_IO);
347}
348
Willy Tarreaub24281b2011-02-13 13:16:36 +0100349/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200350 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100351 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200352 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100353 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200354 * It also pre-initializes applet.state to zero and the connection context
355 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200356 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100357struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200358{
Simon Horman7abd00d2011-08-13 08:03:51 +0900359 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200360
Willy Tarreauc5788912012-08-24 18:12:41 +0200361 si_prepare_embedded(si);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100362 si->conn->target = &app->obj_type;
Willy Tarreau128b03c2012-11-11 23:14:16 +0100363 si->release = app->release;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200364 si->flags |= SI_FL_WAIT_DATA;
365 return si->owner;
366}
367
Willy Tarreaufb90d942009-09-05 20:57:35 +0200368/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100369 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200370 */
371void stream_int_unregister_handler(struct stream_interface *si)
372{
Willy Tarreau128b03c2012-11-11 23:14:16 +0100373 si->release = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200374 si->owner = NULL;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100375 si->conn->target = NULL;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200376}
377
Willy Tarreau2c6be842012-07-06 17:12:34 +0200378/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200379 * established. It returns 0 if it fails in a fatal way or needs to poll to go
380 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200381 * flags (the bit is provided in <flag> by the caller). It is designed to be
382 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200383 */
384int conn_si_send_proxy(struct connection *conn, unsigned int flag)
385{
Willy Tarreaue603e692012-09-27 22:20:41 +0200386 struct stream_interface *si = conn->owner;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200387
388 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200389 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200390 goto out_error;
391
392 /* If we have a PROXY line to send, we'll use this to validate the
393 * connection, in which case the connection is validated only once
394 * we've sent the whole proxy line. Otherwise we use connect().
395 */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100396 while (si->send_proxy_ofs) {
Willy Tarreau2c6be842012-07-06 17:12:34 +0200397 int ret;
398
399 /* The target server expects a PROXY line to be sent first.
400 * If the send_proxy_ofs is negative, it corresponds to the
401 * offset to start sending from then end of the proxy string
402 * (which is recomputed every time since it's constant). If
403 * it is positive, it means we have to send from the start.
404 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100405 ret = make_proxy_line(trash.str, trash.size, &si->ob->prod->conn->addr.from, &si->ob->prod->conn->addr.to);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200406 if (!ret)
407 goto out_error;
408
409 if (si->send_proxy_ofs > 0)
410 si->send_proxy_ofs = -ret; /* first call */
411
Willy Tarreaua1a74742012-08-24 12:14:49 +0200412 /* we have to send trash from (ret+sp for -sp bytes). If the
413 * data layer has a pending write, we'll also set MSG_MORE.
414 */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100415 ret = send(conn->t.sock.fd, trash.str + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200416 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200417
418 if (ret == 0)
419 goto out_wait;
420
421 if (ret < 0) {
Willy Tarreau95742a42013-09-03 09:02:11 +0200422 if (errno == EAGAIN || errno == ENOTCONN)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200423 goto out_wait;
Willy Tarreau7fe45692013-12-04 23:37:56 +0100424 if (errno == EINTR)
425 continue;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100426 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200427 goto out_error;
428 }
429
430 si->send_proxy_ofs += ret; /* becomes zero once complete */
431 if (si->send_proxy_ofs != 0)
432 goto out_wait;
433
434 /* OK we've sent the whole line, we're connected */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100435 break;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200436 }
437
Willy Tarreaua1a74742012-08-24 12:14:49 +0200438 /* The connection is ready now, simply return and let the connection
439 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200440 */
441 if (conn->flags & CO_FL_WAIT_L4_CONN)
442 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200443 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200444 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200445
446 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200447 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200448 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200449 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200450
451 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200452 __conn_sock_stop_recv(conn);
453 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200454 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200455}
456
Willy Tarreau100c4672012-08-20 12:06:26 +0200457/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200458 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200459 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200460 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200461 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200462 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200463static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200464{
Willy Tarreaue603e692012-09-27 22:20:41 +0200465 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200466
467 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
468 __FUNCTION__,
469 si, si->state, si->ib->flags, si->ob->flags);
470
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200471 if (conn->flags & CO_FL_ERROR)
472 si->flags |= SI_FL_ERR;
473
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200474 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200475 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200476 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200477 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200478 }
479
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200480 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200481 if (channel_is_empty(si->ob)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100482 if (((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200483 (si->state == SI_ST_EST))
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200484 stream_int_shutw_conn(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200485 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200486 si->ob->wex = TICK_ETERNITY;
487 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200488
Willy Tarreaub31c9712012-11-11 23:05:39 +0100489 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200490 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200491
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200492 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200493 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200494 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200495 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200496 if (tick_isset(si->ob->wex))
497 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200498
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200499 if (!(si->flags & SI_FL_INDEP_STR))
500 if (tick_isset(si->ib->rex))
501 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200502
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200503 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200504 !channel_full(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200505 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
506 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200507 }
508
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200509 /* process producer side.
510 * We might have some data the consumer is waiting for.
511 * We can do fast-forwarding, but we avoid doing this for partial
512 * buffers, because it is very likely that it will be done again
513 * immediately afterwards once the following data is parsed (eg:
514 * HTTP chunking).
515 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200516 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200517 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau9b28e032012-10-12 23:49:43 +0200518 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200519 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200520
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200521 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200522
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200523 /* check if the consumer has freed some space either in the
524 * buffer or in the pipe.
525 */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200526 if (!channel_full(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200527 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
528 si->flags &= ~SI_FL_WAIT_ROOM;
529 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200530
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200531 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200532 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200533 si->ib->rex = TICK_ETERNITY;
534 }
Willy Tarreau66572762012-12-19 17:34:17 +0100535 else if ((si->ib->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200536 !channel_full(si->ib)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100537 /* we must re-enable reading if si_chk_snd() has freed some space */
538 __conn_data_want_recv(conn);
Willy Tarreau66572762012-12-19 17:34:17 +0100539 if (!(si->ib->flags & CF_READ_NOEXP) && tick_isset(si->ib->rex))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200540 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200541 }
542
543 /* wake the task up only when needed */
544 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200545 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200546 si->state != SI_ST_EST ||
547 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200548 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200549 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
550
551 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200552 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
553 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
554 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200555 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200556 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200557 task_wakeup(si->owner, TASK_WOKEN_IO);
558 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200559 if (si->ib->flags & CF_READ_ACTIVITY)
560 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200561 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200562}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200563
Willy Tarreau5368d802012-08-21 18:22:06 +0200564/*
565 * This function is called to send buffer data to a stream socket.
Godbache68e02d2013-10-11 15:48:29 +0800566 * It calls the transport layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800567 * caller to commit polling changes. The caller should check conn->flags
568 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200569 */
Godbach4f489902013-12-04 17:24:06 +0800570static void si_conn_send(struct connection *conn)
Willy Tarreau5368d802012-08-21 18:22:06 +0200571{
Willy Tarreaue603e692012-09-27 22:20:41 +0200572 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200573 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200574 int ret;
575
Willy Tarreaucb76e592012-10-12 23:56:57 +0200576 if (chn->pipe && conn->xprt->snd_pipe) {
577 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200578 if (ret > 0)
Willy Tarreaucb76e592012-10-12 23:56:57 +0200579 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200580
Willy Tarreaucb76e592012-10-12 23:56:57 +0200581 if (!chn->pipe->data) {
582 put_pipe(chn->pipe);
583 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200584 }
585
Willy Tarreau96199b12012-08-24 00:46:52 +0200586 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +0800587 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200588 }
589
590 /* At this point, the pipe is empty, but we may still have data pending
591 * in the normal buffer.
592 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200593 if (!chn->buf->o)
Godbach4f489902013-12-04 17:24:06 +0800594 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200595
Godbache68e02d2013-10-11 15:48:29 +0800596 /* when we're here, we already know that there is no spliced
Willy Tarreau5368d802012-08-21 18:22:06 +0200597 * data left, and that there are sendable buffered data.
598 */
Godbache68e02d2013-10-11 15:48:29 +0800599 if (!(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 +0200600 /* check if we want to inform the kernel that we're interested in
601 * sending more data after this call. We want this if :
602 * - we're about to close after this last send and want to merge
603 * the ongoing FIN with the last segment.
604 * - we know we can't send everything at once and must get back
605 * here because of unaligned data
606 * - there is still a finite amount of data to forward
607 * The test is arranged so that the most common case does only 2
608 * tests.
609 */
610 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
611
Willy Tarreaucb76e592012-10-12 23:56:57 +0200612 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
613 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
614 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100615 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200616 send_flag |= MSG_MORE;
617
Willy Tarreau9b28e032012-10-12 23:49:43 +0200618 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800619 if (ret > 0) {
620 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200621
Godbache68e02d2013-10-11 15:48:29 +0800622 if (!chn->buf->o) {
623 /* Always clear both flags once everything has been sent, they're one-shot */
624 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
625 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200626
Godbache68e02d2013-10-11 15:48:29 +0800627 /* if some data remain in the buffer, it's only because the
628 * system buffers are full, we will try next time.
629 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200630 }
Godbache68e02d2013-10-11 15:48:29 +0800631 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200632
Godbach4f489902013-12-04 17:24:06 +0800633 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200634}
635
636
Willy Tarreau100c4672012-08-20 12:06:26 +0200637/* Updates the timers and flags of a stream interface attached to a connection,
638 * depending on the buffers' flags. It should only be called once after the
639 * buffer flags have settled down, and before they are cleared. It doesn't
640 * harm to call it as often as desired (it just slightly hurts performance).
641 * It is only meant to be called by upper layers after buffer flags have been
642 * manipulated by analysers.
643 */
644void stream_int_update_conn(struct stream_interface *si)
645{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200646 struct channel *ib = si->ib;
647 struct channel *ob = si->ob;
Willy Tarreau100c4672012-08-20 12:06:26 +0200648
Willy Tarreau100c4672012-08-20 12:06:26 +0200649 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200650 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200651 /* Read not closed, update FD status and timeout for reads */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100652 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200653 /* stop reading */
654 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100655 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200656 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200657 conn_data_stop_recv(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200658 ib->rex = TICK_ETERNITY;
659 }
660 }
661 else {
662 /* (re)start reading and update timeout. Note: we don't recompute the timeout
663 * everytime we get here, otherwise it would risk never to expire. We only
664 * update it if is was not yet set. The stream socket handler will already
665 * have updated it if there has been a completed I/O.
666 */
667 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200668 conn_data_want_recv(si->conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200669 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200670 ib->rex = tick_add_ifset(now_ms, ib->rto);
671 }
672 }
673
674 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200675 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200676 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200677 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200678 /* stop writing */
679 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100680 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200681 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200682 conn_data_stop_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200683 ob->wex = TICK_ETERNITY;
684 }
685 }
686 else {
687 /* (re)start writing and update timeout. Note: we don't recompute the timeout
688 * everytime we get here, otherwise it would risk never to expire. We only
689 * update it if is was not yet set. The stream socket handler will already
690 * have updated it if there has been a completed I/O.
691 */
692 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200693 conn_data_want_send(si->conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200694 if (!tick_isset(ob->wex)) {
695 ob->wex = tick_add_ifset(now_ms, ob->wto);
696 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
697 /* Note: depending on the protocol, we don't know if we're waiting
698 * for incoming data or not. So in order to prevent the socket from
699 * expiring read timeouts during writes, we refresh the read timeout,
700 * except if it was already infinite or if we have explicitly setup
701 * independent streams.
702 */
703 ib->rex = tick_add_ifset(now_ms, ib->rto);
704 }
705 }
706 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200707 }
708}
709
710/*
711 * This function performs a shutdown-read on a stream interface attached to
712 * a connection in a connected or init state (it does nothing for other
713 * states). It either shuts the read side or marks itself as closed. The buffer
714 * flags are updated to reflect the new state. If the stream interface has
715 * SI_FL_NOHALF, we also forward the close to the write side. If a control
716 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200717 * descriptors are then shutdown or closed accordingly. The function
718 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200719 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200720static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200721{
722 struct connection *conn = si->conn;
723
724 si->ib->flags &= ~CF_SHUTR_NOW;
725 if (si->ib->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200726 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200727 si->ib->flags |= CF_SHUTR;
728 si->ib->rex = TICK_ETERNITY;
729 si->flags &= ~SI_FL_WAIT_ROOM;
730
731 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200732 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200733
734 if (si->ob->flags & CF_SHUTW) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200735 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200736 si->state = SI_ST_DIS;
737 si->exp = TICK_ETERNITY;
738
739 if (si->release)
740 si->release(si);
741 }
742 else if (si->flags & SI_FL_NOHALF) {
743 /* we want to immediately forward this close to the write side */
744 return stream_int_shutw_conn(si);
745 }
746 else if (conn->ctrl) {
747 /* we want the caller to disable polling on this FD */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200748 conn_data_stop_recv(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200749 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200750}
751
752/*
753 * This function performs a shutdown-write on a stream interface attached to
754 * a connection in a connected or init state (it does nothing for other
755 * states). It either shuts the write side or marks itself as closed. The
756 * buffer flags are updated to reflect the new state. It does also close
757 * everything if the SI was marked as being in error state. If there is a
758 * data-layer shutdown, it is called. If a control layer is defined, then it is
759 * supposed to be a socket layer and file descriptors are then shutdown or
Willy Tarreau6fe15412013-09-29 15:16:03 +0200760 * closed accordingly. The function automatically disables polling if needed.
761 * Note: at the moment, we continue to check conn->ctrl eventhough we *know* it
762 * is valid. This will help selecting the proper shutdown() and setsockopt()
763 * calls if/when we implement remote sockets later.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200764 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200765static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200766{
767 struct connection *conn = si->conn;
768
769 si->ob->flags &= ~CF_SHUTW_NOW;
770 if (si->ob->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200771 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200772 si->ob->flags |= CF_SHUTW;
773 si->ob->wex = TICK_ETERNITY;
774 si->flags &= ~SI_FL_WAIT_DATA;
775
776 switch (si->state) {
777 case SI_ST_EST:
778 /* we have to shut before closing, otherwise some short messages
779 * may never leave the system, especially when there are remaining
780 * unread data in the socket input buffer, or when nolinger is set.
781 * However, if SI_FL_NOLINGER is explicitly set, we know there is
782 * no risk so we close both sides immediately.
783 */
784 if (si->flags & SI_FL_ERR) {
785 /* quick close, the socket is alredy shut anyway */
786 }
787 else if (si->flags & SI_FL_NOLINGER) {
788 if (conn->ctrl) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200789 setsockopt(conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200790 (struct linger *) &nolinger, sizeof(struct linger));
791 }
792 /* unclean data-layer shutdown */
793 if (conn->xprt && conn->xprt->shutw)
794 conn->xprt->shutw(conn, 0);
795 }
796 else {
797 /* clean data-layer shutdown */
798 if (conn->xprt && conn->xprt->shutw)
799 conn->xprt->shutw(conn, 1);
800
801 /* If the stream interface is configured to disable half-open
802 * connections, we'll skip the shutdown(), but only if the
803 * read size is already closed. Otherwise we can't support
804 * closed write with pending read (eg: abortonclose while
805 * waiting for the server).
806 */
807 if (!(si->flags & SI_FL_NOHALF) || !(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
808 /* We shutdown transport layer */
809 if (conn->ctrl)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200810 shutdown(conn->t.sock.fd, SHUT_WR);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200811
812 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
813 /* OK just a shutw, but we want the caller
814 * to disable polling on this FD if exists.
815 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200816 if (conn->ctrl)
817 conn_data_stop_send(conn);
818 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200819 }
820 }
821 }
822
823 /* fall through */
824 case SI_ST_CON:
825 /* we may have to close a pending connection, and mark the
826 * response buffer as shutr
827 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200828 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200829 /* fall through */
830 case SI_ST_CER:
831 case SI_ST_QUE:
832 case SI_ST_TAR:
833 si->state = SI_ST_DIS;
834
835 if (si->release)
836 si->release(si);
837 default:
838 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
839 si->ib->flags &= ~CF_SHUTR_NOW;
840 si->ib->flags |= CF_SHUTR;
841 si->ib->rex = TICK_ETERNITY;
842 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200843 }
844}
845
Willy Tarreau46a8d922012-08-20 12:38:36 +0200846/* This function is used for inter-stream-interface calls. It is called by the
847 * consumer to inform the producer side that it may be interested in checking
848 * for free space in the buffer. Note that it intentionally does not update
849 * timeouts, so that we can still check them later at wake-up. This function is
850 * dedicated to connection-based stream interfaces.
851 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200852static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200853{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200854 struct channel *ib = si->ib;
Willy Tarreau46a8d922012-08-20 12:38:36 +0200855
Willy Tarreau34ffd772012-09-03 16:51:27 +0200856 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200857 return;
858
Willy Tarreau7d281492012-12-16 19:19:13 +0100859 conn_refresh_polling_flags(si->conn);
860
Willy Tarreaub31c9712012-11-11 23:05:39 +0100861 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200862 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100863 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200864 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau7d281492012-12-16 19:19:13 +0100865 __conn_data_stop_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200866 }
867 else {
868 /* (re)start reading */
869 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau7d281492012-12-16 19:19:13 +0100870 __conn_data_want_recv(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200871 }
Willy Tarreau7d281492012-12-16 19:19:13 +0100872 conn_cond_update_data_polling(si->conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200873}
874
875
Willy Tarreaude5722c2012-08-20 15:01:10 +0200876/* This function is used for inter-stream-interface calls. It is called by the
877 * producer to inform the consumer side that it may be interested in checking
878 * for data in the buffer. Note that it intentionally does not update timeouts,
879 * so that we can still check them later at wake-up.
880 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200881static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200882{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200883 struct channel *ob = si->ob;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200884
Willy Tarreau34ffd772012-09-03 16:51:27 +0200885 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200886 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200887
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200888 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200889 return;
890
891 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100892 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200893 return;
894
Willy Tarreau5007d2a2013-07-18 22:09:48 +0200895 if (si->conn->flags & (CO_FL_DATA_WR_ENA|CO_FL_CURR_WR_ENA)) {
896 /* already subscribed to write notifications, will be called
897 * anyway, so let's avoid calling it especially if the reader
898 * is not ready.
899 */
900 return;
901 }
902
Willy Tarreaud29a0662012-12-10 16:33:38 +0100903 if (!(si->conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
904 /* Before calling the data-level operations, we have to prepare
905 * the polling flags to ensure we properly detect changes.
Willy Tarreaude5722c2012-08-20 15:01:10 +0200906 */
Willy Tarreaud29a0662012-12-10 16:33:38 +0100907 if (si->conn->ctrl)
908 fd_want_send(si->conn->t.sock.fd);
Willy Tarreau7d281492012-12-16 19:19:13 +0100909
910 conn_refresh_polling_flags(si->conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100911
Godbach4f489902013-12-04 17:24:06 +0800912 si_conn_send(si->conn);
913 if (si->conn->flags & CO_FL_ERROR) {
Willy Tarreaud29a0662012-12-10 16:33:38 +0100914 /* Write error on the file descriptor */
915 fd_stop_both(si->conn->t.sock.fd);
916 __conn_data_stop_both(si->conn);
917 si->flags |= SI_FL_ERR;
Willy Tarreaud29a0662012-12-10 16:33:38 +0100918 goto out_wakeup;
919 }
Willy Tarreaude5722c2012-08-20 15:01:10 +0200920 }
921
922 /* OK, so now we know that some data might have been sent, and that we may
923 * have to poll first. We have to do that too if the buffer is not empty.
924 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200925 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200926 /* the connection is established but we can't write. Either the
927 * buffer is empty, or we just refrain from sending because the
928 * ->o limit was reached. Maybe we just wrote the last
929 * chunk and need to close.
930 */
Willy Tarreaud29a0662012-12-10 16:33:38 +0100931 __conn_data_stop_send(si->conn);
Willy Tarreaub31c9712012-11-11 23:05:39 +0100932 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200933 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200934 (si->state == SI_ST_EST)) {
935 si_shutw(si);
936 goto out_wakeup;
937 }
938
Willy Tarreaub31c9712012-11-11 23:05:39 +0100939 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200940 si->flags |= SI_FL_WAIT_DATA;
941 ob->wex = TICK_ETERNITY;
942 }
943 else {
944 /* Otherwise there are remaining data to be sent in the buffer,
945 * which means we have to poll before doing so.
946 */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200947 __conn_data_want_send(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200948 si->flags &= ~SI_FL_WAIT_DATA;
949 if (!tick_isset(ob->wex))
950 ob->wex = tick_add_ifset(now_ms, ob->wto);
951 }
952
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200953 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200954 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200955 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200956 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200957 ob->wex = tick_add_ifset(now_ms, ob->wto);
958
959 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
960 /* Note: to prevent the client from expiring read timeouts
961 * during writes, we refresh it. We only do this if the
962 * interface is not configured for "independent streams",
963 * because for some applications it's better not to do this,
964 * for instance when continuously exchanging small amounts
965 * of data which can full the socket buffers long before a
966 * write timeout is detected.
967 */
968 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
969 }
970 }
971
972 /* in case of special condition (error, shutdown, end of write...), we
973 * have to notify the task.
974 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200975 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200976 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200977 si->state != SI_ST_EST)) {
978 out_wakeup:
979 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
980 task_wakeup(si->owner, TASK_WOKEN_IO);
981 }
Willy Tarreauf16723e2012-08-24 12:52:22 +0200982
983 /* commit possible polling changes */
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200984 conn_cond_update_polling(si->conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200985}
986
Willy Tarreaueecf6ca2012-08-20 15:09:53 +0200987/*
Willy Tarreauce323de2012-08-20 21:41:06 +0200988 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200989 * into the buffer from the connection. It iterates over the transport layer's
990 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +0200991 */
Willy Tarreau4aa36832012-10-02 20:07:22 +0200992static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +0200993{
Willy Tarreaue603e692012-09-27 22:20:41 +0200994 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200995 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +0200996 int ret, max, cur_read;
997 int read_poll = MAX_READ_POLL_LOOPS;
998
999 /* stop immediately on errors. Note that we DON'T want to stop on
1000 * POLL_ERR, as the poller might report a write error while there
1001 * are still data available in the recv buffer. This typically
1002 * happens when we send too large a request to a backend server
1003 * which rejects it before reading it all.
1004 */
1005 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001006 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001007
1008 /* stop here if we reached the end of data */
1009 if (conn_data_read0_pending(conn))
1010 goto out_shutdown_r;
1011
1012 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001013 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +02001014 return;
1015
Willy Tarreau96199b12012-08-24 00:46:52 +02001016 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +02001017
1018 /* First, let's see if we may splice data across the channel without
1019 * using a buffer.
1020 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001021 if (conn->xprt->rcv_pipe &&
Willy Tarreaufa8e2bc2013-07-18 22:21:54 +02001022 (chn->pipe || chn->to_forward >= MIN_SPLICE_FORWARD) &&
1023 chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02001024 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001025 /* We're embarrassed, there are already data pending in
1026 * the buffer and we don't want to have them at two
1027 * locations at a time. Let's indicate we need some
1028 * place and ask the consumer to hurry.
1029 */
1030 goto abort_splice;
1031 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001032
Willy Tarreaucb76e592012-10-12 23:56:57 +02001033 if (unlikely(chn->pipe == NULL)) {
1034 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
1035 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001036 goto abort_splice;
1037 }
1038 }
1039
Willy Tarreaucb76e592012-10-12 23:56:57 +02001040 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001041 if (ret < 0) {
1042 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001043 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001044 goto abort_splice;
1045 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001046
Willy Tarreau96199b12012-08-24 00:46:52 +02001047 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001048 if (chn->to_forward != CHN_INFINITE_FORWARD)
1049 chn->to_forward -= ret;
1050 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001051 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001052 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001053 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001054
1055 if (conn_data_read0_pending(conn))
1056 goto out_shutdown_r;
1057
1058 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001059 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001060
Willy Tarreau61d39a02013-07-18 21:49:32 +02001061 if (conn->flags & CO_FL_WAIT_ROOM) {
1062 /* the pipe is full or we have read enough data that it
1063 * could soon be full. Let's stop before needing to poll.
1064 */
Willy Tarreau56a77e52012-09-02 18:34:44 +02001065 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001066 __conn_data_stop_recv(conn);
1067 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001068
Willy Tarreauce323de2012-08-20 21:41:06 +02001069 /* splice not possible (anymore), let's go on on standard copy */
1070 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001071
1072 abort_splice:
Willy Tarreau61d39a02013-07-18 21:49:32 +02001073 if (chn->pipe && unlikely(!chn->pipe->data)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001074 put_pipe(chn->pipe);
1075 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001076 }
1077
Willy Tarreau61d39a02013-07-18 21:49:32 +02001078 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1079 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1080 * that if such an event is not handled above in splice, it will be handled here by
1081 * recv().
1082 */
1083 while (!(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 Tarreaucb76e592012-10-12 23:56:57 +02001084 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001085
1086 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001087 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001088 break;
1089 }
1090
Willy Tarreau9b28e032012-10-12 23:49:43 +02001091 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001092 if (ret <= 0)
1093 break;
1094
1095 cur_read += ret;
1096
1097 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001098 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001099 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001100 if (chn->to_forward != CHN_INFINITE_FORWARD) {
1101 if (fwd > chn->to_forward)
1102 fwd = chn->to_forward;
1103 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001104 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02001105 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001106 }
1107
Willy Tarreaucb76e592012-10-12 23:56:57 +02001108 chn->flags |= CF_READ_PARTIAL;
1109 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001110
Willy Tarreaucb76e592012-10-12 23:56:57 +02001111 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001112 /* The buffer is now full, there's no point in going through
1113 * the loop again.
1114 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001115 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001116 chn->xfer_small = 0;
1117 chn->xfer_large++;
1118 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001119 /* we call this buffer a fast streamer if it manages
1120 * to be filled in one call 3 consecutive times.
1121 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001122 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001123 //fputc('+', stderr);
1124 }
1125 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001126 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001127 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001128 chn->xfer_large = 0;
1129 chn->xfer_small++;
1130 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001131 /* if the buffer has been at least half full twice,
1132 * we receive faster than we send, so at least it
1133 * is not a "fast streamer".
1134 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001135 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001136 //fputc('-', stderr);
1137 }
1138 }
1139 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001140 chn->xfer_small = 0;
1141 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001142 }
1143
Willy Tarreauce323de2012-08-20 21:41:06 +02001144 si->flags |= SI_FL_WAIT_ROOM;
1145 break;
1146 }
1147
Willy Tarreau5fddab02012-11-09 18:27:26 +01001148 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreau34ac5662012-12-19 18:01:02 +01001149 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud486ef52012-12-10 17:03:52 +01001150 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001151 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001152 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001153
1154 /* if too many bytes were missing from last read, it means that
1155 * it's pointless trying to read again because the system does
1156 * not have them in buffers.
1157 */
1158 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001159 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001160 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001161 chn->xfer_large = 0;
1162 chn->xfer_small++;
1163 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001164 /* we have read less than half of the buffer in
1165 * one pass, and this happened at least 3 times.
1166 * This is definitely not a streamer.
1167 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001168 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001169 //fputc('!', stderr);
1170 }
1171 }
1172
1173 /* if a streamer has read few data, it may be because we
1174 * have exhausted system buffers. It's not worth trying
1175 * again.
1176 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001177 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001178 break;
1179
1180 /* if we read a large block smaller than what we requested,
1181 * it's almost certain we'll never get anything more.
1182 */
1183 if (ret >= global.tune.recv_enough)
1184 break;
1185 }
1186 } /* while !flags */
1187
Willy Tarreau96199b12012-08-24 00:46:52 +02001188 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001189 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001190
Willy Tarreauce323de2012-08-20 21:41:06 +02001191 if (conn_data_read0_pending(conn))
1192 /* connection closed */
1193 goto out_shutdown_r;
1194
1195 return;
1196
1197 out_shutdown_r:
1198 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001199 chn->flags |= CF_READ_NULL;
1200 if (chn->flags & CF_AUTO_CLOSE)
1201 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001202 stream_sock_read0(si);
1203 conn_data_read0(conn);
1204 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001205}
1206
1207/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001208 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001209 * from the buffer to the connection. It iterates over the transport layer's
1210 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001211 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001212static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001213{
Willy Tarreaue603e692012-09-27 22:20:41 +02001214 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001215 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001216
1217 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001218 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001219
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001220 if (si->conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001221 /* a handshake was requested */
1222 return;
1223
1224 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001225 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001226 return;
1227
1228 /* OK there are data waiting to be sent */
Godbach4f489902013-12-04 17:24:06 +08001229 si_conn_send(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001230
1231 /* OK all done */
1232 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001233}
1234
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001235/*
1236 * This function propagates a null read received on a socket-based connection.
1237 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1238 * the close is also forwarded to the write side as an abort. This function is
1239 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1240 * state on the socket.
1241 */
1242void stream_sock_read0(struct stream_interface *si)
1243{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001244 si->ib->flags &= ~CF_SHUTR_NOW;
1245 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001246 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001247 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001248 si->ib->rex = TICK_ETERNITY;
1249 si->flags &= ~SI_FL_WAIT_ROOM;
1250
1251 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1252 return;
1253
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001254 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001255 goto do_close;
1256
1257 if (si->flags & SI_FL_NOHALF) {
1258 /* we want to immediately forward this close to the write side */
1259 if (si->flags & SI_FL_NOLINGER) {
1260 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7f7ad912012-11-11 19:27:15 +01001261 setsockopt(si->conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001262 (struct linger *) &nolinger, sizeof(struct linger));
1263 }
1264 /* force flag on ssl to keep session in cache */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001265 if (si->conn->xprt->shutw)
1266 si->conn->xprt->shutw(si->conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001267 goto do_close;
1268 }
1269
1270 /* otherwise that's just a normal read shutdown */
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001271 __conn_data_stop_recv(si->conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001272 return;
1273
1274 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001275 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreau2b199c92012-11-23 17:32:21 +01001276 conn_full_close(si->conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001277
1278 si->ib->flags &= ~CF_SHUTR_NOW;
1279 si->ib->flags |= CF_SHUTR;
1280 si->ib->rex = TICK_ETERNITY;
1281
1282 si->ob->flags &= ~CF_SHUTW_NOW;
1283 si->ob->flags |= CF_SHUTW;
1284 si->ob->wex = TICK_ETERNITY;
1285
1286 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1287
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001288 si->state = SI_ST_DIS;
1289 si->exp = TICK_ETERNITY;
1290 if (si->release)
1291 si->release(si);
1292 return;
1293}
1294
Willy Tarreaudded32d2008-11-30 19:48:07 +01001295/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001296 * Local variables:
1297 * c-indent-level: 8
1298 * c-basic-offset: 8
1299 * End:
1300 */