blob: 97add687d7db97dcf5c064bb77635874ba492614 [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
Willy Tarreaubf883e02014-11-25 21:10:35 +010022#include <common/buffer.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010023#include <common/compat.h>
24#include <common/config.h>
25#include <common/debug.h>
26#include <common/standard.h>
27#include <common/ticks.h>
28#include <common/time.h>
29
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020030#include <proto/applet.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020031#include <proto/channel.h>
Willy Tarreau8b117082012-08-06 15:06:49 +020032#include <proto/connection.h>
Willy Tarreau96199b12012-08-24 00:46:52 +020033#include <proto/pipe.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020034#include <proto/stream.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020035#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010036#include <proto/task.h>
37
Willy Tarreaufd31e532012-07-23 18:24:25 +020038#include <types/pipe.h>
39
Willy Tarreauf873d752012-05-11 17:47:17 +020040/* socket functions used when running a stream interface as a task */
Willy Tarreauf873d752012-05-11 17:47:17 +020041static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020042static void stream_int_shutr(struct stream_interface *si);
43static void stream_int_shutw(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020044static void stream_int_chk_rcv(struct stream_interface *si);
45static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020046static void stream_int_update_conn(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020047static void stream_int_shutr_conn(struct stream_interface *si);
48static void stream_int_shutw_conn(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020049static void stream_int_chk_rcv_conn(struct stream_interface *si);
50static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreaud45b9f82015-04-13 16:30:14 +020051static void stream_int_update_applet(struct stream_interface *si);
52static void stream_int_shutr_applet(struct stream_interface *si);
53static void stream_int_shutw_applet(struct stream_interface *si);
54static void stream_int_chk_rcv_applet(struct stream_interface *si);
55static void stream_int_chk_snd_applet(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020056static void si_conn_recv_cb(struct connection *conn);
57static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020058static int si_conn_wake_cb(struct connection *conn);
Willy Tarreau27375622013-12-17 00:00:28 +010059static int si_idle_conn_wake_cb(struct connection *conn);
60static void si_idle_conn_null_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020061
Willy Tarreauc5788912012-08-24 18:12:41 +020062/* stream-interface operations for embedded tasks */
63struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020064 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020065 .chk_rcv = stream_int_chk_rcv,
66 .chk_snd = stream_int_chk_snd,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020067 .shutr = stream_int_shutr,
68 .shutw = stream_int_shutw,
Willy Tarreau5c979a92012-05-07 17:15:39 +020069};
70
Willy Tarreauc5788912012-08-24 18:12:41 +020071/* stream-interface operations for connections */
72struct si_ops si_conn_ops = {
73 .update = stream_int_update_conn,
74 .chk_rcv = stream_int_chk_rcv_conn,
75 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020076 .shutr = stream_int_shutr_conn,
77 .shutw = stream_int_shutw_conn,
Willy Tarreauc5788912012-08-24 18:12:41 +020078};
79
Willy Tarreaud45b9f82015-04-13 16:30:14 +020080/* stream-interface operations for connections */
81struct si_ops si_applet_ops = {
82 .update = stream_int_update_applet,
83 .chk_rcv = stream_int_chk_rcv_applet,
84 .chk_snd = stream_int_chk_snd_applet,
85 .shutr = stream_int_shutr_applet,
86 .shutw = stream_int_shutw_applet,
87};
88
Willy Tarreau74beec32012-10-03 00:41:04 +020089struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020090 .recv = si_conn_recv_cb,
91 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020092 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020093};
94
Willy Tarreau27375622013-12-17 00:00:28 +010095struct data_cb si_idle_conn_cb = {
96 .recv = si_idle_conn_null_cb,
97 .send = si_idle_conn_null_cb,
98 .wake = si_idle_conn_wake_cb,
99};
100
Willy Tarreaucff64112008-11-03 06:26:53 +0100101/*
102 * This function only has to be called once after a wakeup event in case of
103 * suspected timeout. It controls the stream interface timeouts and sets
104 * si->flags accordingly. It does NOT close anything, as this timeout may
105 * be used for any purpose. It returns 1 if the timeout fired, otherwise
106 * zero.
107 */
108int stream_int_check_timeouts(struct stream_interface *si)
109{
110 if (tick_is_expired(si->exp, now_ms)) {
111 si->flags |= SI_FL_EXP;
112 return 1;
113 }
114 return 0;
115}
116
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100117/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +0100118void stream_int_report_error(struct stream_interface *si)
119{
120 if (!si->err_type)
121 si->err_type = SI_ET_DATA_ERR;
122
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100123 si_oc(si)->flags |= CF_WRITE_ERROR;
124 si_ic(si)->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100125}
126
127/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100128 * Returns a message to the client ; the connection is shut down for read,
129 * and the request is cleared so that no server connection can be initiated.
130 * The buffer is marked for read shutdown on the other side to protect the
131 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100132 * "chunk". If it is null, then an empty message is used. The reply buffer does
133 * not need to be empty before this, and its contents will not be overwritten.
134 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100135 */
136void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
137{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100138 struct channel *ic = si_ic(si);
139 struct channel *oc = si_oc(si);
140
141 channel_auto_read(ic);
142 channel_abort(ic);
143 channel_auto_close(ic);
144 channel_erase(ic);
145 channel_truncate(oc);
Willy Tarreau798e1282010-12-12 13:06:00 +0100146
Willy Tarreau148d0992010-01-10 10:21:21 +0100147 if (likely(msg && msg->len))
Willy Tarreauafc8a222014-11-28 15:46:27 +0100148 bo_inject(oc, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100149
Willy Tarreauafc8a222014-11-28 15:46:27 +0100150 oc->wex = tick_add_ifset(now_ms, oc->wto);
151 channel_auto_read(oc);
152 channel_auto_close(oc);
153 channel_shutr_now(oc);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100154}
155
Willy Tarreaufb90d942009-09-05 20:57:35 +0200156/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200157static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200158{
Willy Tarreau3488e252010-08-09 16:24:56 +0200159 int old_flags = si->flags;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100160 struct channel *ic = si_ic(si);
161 struct channel *oc = si_oc(si);
Willy Tarreau3488e252010-08-09 16:24:56 +0200162
Willy Tarreauafc8a222014-11-28 15:46:27 +0100163 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200164 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100165 si, si->state, ic->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200166
167 if (si->state != SI_ST_EST)
168 return;
169
Willy Tarreauafc8a222014-11-28 15:46:27 +0100170 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
171 channel_is_empty(oc))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200172 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200173
Willy Tarreauafc8a222014-11-28 15:46:27 +0100174 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200175 si->flags |= SI_FL_WAIT_DATA;
176
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200177 /* we're almost sure that we need some space if the buffer is not
178 * empty, even if it's not full, because the applets can't fill it.
179 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100180 if ((ic->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(ic))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200181 si->flags |= SI_FL_WAIT_ROOM;
182
Willy Tarreauafc8a222014-11-28 15:46:27 +0100183 if (oc->flags & CF_WRITE_ACTIVITY) {
184 if (tick_isset(oc->wex))
185 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200186 }
187
Willy Tarreauafc8a222014-11-28 15:46:27 +0100188 if (ic->flags & CF_READ_ACTIVITY ||
189 (oc->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
190 if (tick_isset(ic->rex))
191 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200192 }
193
Willy Tarreau3488e252010-08-09 16:24:56 +0200194 /* save flags to detect changes */
195 old_flags = si->flags;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100196 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
197 channel_may_recv(oc) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100198 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
199 si_chk_rcv(si_opposite(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200200
Willy Tarreauafc8a222014-11-28 15:46:27 +0100201 if (((ic->flags & CF_READ_PARTIAL) && !channel_is_empty(ic)) &&
202 (ic->pipe /* always try to send spliced data */ ||
203 (ic->buf->i == 0 && (si_opposite(si)->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100204 si_chk_snd(si_opposite(si));
Willy Tarreau3488e252010-08-09 16:24:56 +0200205 /* check if the consumer has freed some space */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100206 if (channel_may_recv(ic) && !ic->pipe)
Willy Tarreau3488e252010-08-09 16:24:56 +0200207 si->flags &= ~SI_FL_WAIT_ROOM;
208 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200209
210 /* Note that we're trying to wake up in two conditions here :
211 * - special event, which needs the holder task attention
212 * - status indicating that the applet can go on working. This
213 * is rather hard because we might be blocking on output and
214 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200215 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200216 */
217 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200218 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
219
220 /* changes on the production side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100221 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200222 si->state != SI_ST_EST ||
223 (si->flags & SI_FL_ERR) ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100224 ((ic->flags & CF_READ_PARTIAL) &&
225 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200226
227 /* changes on the consumption side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100228 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
229 ((oc->flags & CF_WRITE_ACTIVITY) &&
230 ((oc->flags & CF_SHUTW) ||
231 ((oc->flags & CF_WAKE_WRITE) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100232 (si_opposite(si)->state != SI_ST_EST ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100233 (channel_is_empty(oc) && !oc->to_forward)))))) {
Willy Tarreau07373b82014-11-28 12:08:47 +0100234 if (!(si->flags & SI_FL_DONT_WAKE))
235 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200236 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100237 if (ic->flags & CF_READ_ACTIVITY)
238 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200239}
240
Willy Tarreau4a36b562012-08-06 19:31:45 +0200241/*
Willy Tarreaud45b9f82015-04-13 16:30:14 +0200242 * This function performs a shutdown-read on a detached stream interface in a
243 * connected or init state (it does nothing for other states). It either shuts
244 * the read side or marks itself as closed. The buffer flags are updated to
245 * reflect the new state. If the stream interface has SI_FL_NOHALF, we also
246 * forward the close to the write side. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200247 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200248static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200249{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100250 struct channel *ic = si_ic(si);
251
252 ic->flags &= ~CF_SHUTR_NOW;
253 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200254 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100255 ic->flags |= CF_SHUTR;
256 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200257 si->flags &= ~SI_FL_WAIT_ROOM;
258
259 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200260 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200261
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100262 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200263 si->state = SI_ST_DIS;
264 si->exp = TICK_ETERNITY;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200265 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200266 else if (si->flags & SI_FL_NOHALF) {
267 /* we want to immediately forward this close to the write side */
268 return stream_int_shutw(si);
269 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200270
Willy Tarreau4a36b562012-08-06 19:31:45 +0200271 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100272 if (!(si->flags & SI_FL_DONT_WAKE))
273 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200274}
275
Willy Tarreau4a36b562012-08-06 19:31:45 +0200276/*
Willy Tarreaud45b9f82015-04-13 16:30:14 +0200277 * This function performs a shutdown-write on a detached stream interface in a
278 * connected or init state (it does nothing for other states). It either shuts
279 * the write side or marks itself as closed. The buffer flags are updated to
280 * reflect the new state. It does also close everything if the SI was marked as
281 * being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200282 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200283static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200284{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100285 struct channel *ic = si_ic(si);
286 struct channel *oc = si_oc(si);
287
288 oc->flags &= ~CF_SHUTW_NOW;
289 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200290 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100291 oc->flags |= CF_SHUTW;
292 oc->wex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200293 si->flags &= ~SI_FL_WAIT_DATA;
294
295 switch (si->state) {
296 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200297 /* we have to shut before closing, otherwise some short messages
298 * may never leave the system, especially when there are remaining
299 * unread data in the socket input buffer, or when nolinger is set.
300 * However, if SI_FL_NOLINGER is explicitly set, we know there is
301 * no risk so we close both sides immediately.
302 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200303 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
Willy Tarreauafc8a222014-11-28 15:46:27 +0100304 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200305 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200306
307 /* fall through */
308 case SI_ST_CON:
309 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100310 case SI_ST_QUE:
311 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200312 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200313 si->state = SI_ST_DIS;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200314 default:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200315 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100316 ic->flags &= ~CF_SHUTR_NOW;
317 ic->flags |= CF_SHUTR;
318 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200319 si->exp = TICK_ETERNITY;
320 }
321
Willy Tarreau4a36b562012-08-06 19:31:45 +0200322 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100323 if (!(si->flags & SI_FL_DONT_WAKE))
324 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200325}
326
327/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200328static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200329{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100330 struct channel *ic = si_ic(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200331
Willy Tarreauafc8a222014-11-28 15:46:27 +0100332 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200333 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100334 si, si->state, ic->flags, si_oc(si)->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200335
Willy Tarreauafc8a222014-11-28 15:46:27 +0100336 if (unlikely(si->state != SI_ST_EST || (ic->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200337 return;
338
Willy Tarreauafc8a222014-11-28 15:46:27 +0100339 if (!channel_may_recv(ic) || ic->pipe) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200340 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200341 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200342 }
343 else {
344 /* (re)start reading */
345 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau07373b82014-11-28 12:08:47 +0100346 if (!(si->flags & SI_FL_DONT_WAKE))
347 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200348 }
349}
350
351/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200352static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200353{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100354 struct channel *oc = si_oc(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200355
Willy Tarreauafc8a222014-11-28 15:46:27 +0100356 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200357 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100358 si, si->state, si_ic(si)->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200359
Willy Tarreauafc8a222014-11-28 15:46:27 +0100360 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200361 return;
362
363 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100364 channel_is_empty(oc)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200365 return;
366
367 /* Otherwise there are remaining data to be sent in the buffer,
368 * so we tell the handler.
369 */
370 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100371 if (!tick_isset(oc->wex))
372 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200373
Willy Tarreau07373b82014-11-28 12:08:47 +0100374 if (!(si->flags & SI_FL_DONT_WAKE))
375 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200376}
377
Willy Tarreaua9ff5e62015-07-19 18:46:30 +0200378/* Register an applet to handle a stream_interface as a new appctx. The SI will
379 * wake it up everytime it is solicited. The appctx must be deleted by the task
380 * handler using si_release_endpoint(), possibly from within the function itself.
381 * It also pre-initializes the applet's context and returns it (or NULL in case
382 * it could not be allocated).
Willy Tarreaufb90d942009-09-05 20:57:35 +0200383 */
Willy Tarreau30576452015-04-13 13:50:30 +0200384struct appctx *stream_int_register_handler(struct stream_interface *si, struct applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200385{
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100386 struct appctx *appctx;
387
Willy Tarreau07373b82014-11-28 12:08:47 +0100388 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si_task(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200389
Willy Tarreaua7513f52015-04-05 00:15:26 +0200390 appctx = si_alloc_appctx(si, app);
Willy Tarreaua69fc9f2014-12-22 19:34:00 +0100391 if (!appctx)
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100392 return NULL;
393
Willy Tarreaufe127932015-04-21 19:23:39 +0200394 si_applet_cant_get(si);
Willy Tarreau828824a2015-04-19 17:20:03 +0200395 appctx_wakeup(appctx);
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100396 return si_appctx(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200397}
398
Willy Tarreaufb90d942009-09-05 20:57:35 +0200399/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100400 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200401 */
402void stream_int_unregister_handler(struct stream_interface *si)
403{
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200404 si_detach(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200405}
406
Willy Tarreau2c6be842012-07-06 17:12:34 +0200407/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200408 * established. It returns 0 if it fails in a fatal way or needs to poll to go
409 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200410 * flags (the bit is provided in <flag> by the caller). It is designed to be
411 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200412 * Note that it can emit a PROXY line by relying on the other end's address
413 * when the connection is attached to a stream interface, or by resolving the
414 * local address otherwise (also called a LOCAL line).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200415 */
416int conn_si_send_proxy(struct connection *conn, unsigned int flag)
417{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200418 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200419 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200420 goto out_error;
421
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100422 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200423 goto out_error;
424
Willy Tarreau2c6be842012-07-06 17:12:34 +0200425 /* If we have a PROXY line to send, we'll use this to validate the
426 * connection, in which case the connection is validated only once
427 * we've sent the whole proxy line. Otherwise we use connect().
428 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200429 while (conn->send_proxy_ofs) {
Willy Tarreau2c6be842012-07-06 17:12:34 +0200430 int ret;
431
432 /* The target server expects a PROXY line to be sent first.
433 * If the send_proxy_ofs is negative, it corresponds to the
434 * offset to start sending from then end of the proxy string
435 * (which is recomputed every time since it's constant). If
436 * it is positive, it means we have to send from the start.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200437 * We can only send a "normal" PROXY line when the connection
438 * is attached to a stream interface. Otherwise we can only
439 * send a LOCAL line (eg: for use with health checks).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200440 */
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200441 if (conn->data == &si_conn_cb) {
442 struct stream_interface *si = conn->owner;
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100443 struct connection *remote = objt_conn(si_opposite(si)->end);
David Safb76832014-05-08 23:42:08 -0400444 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), remote);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200445 }
446 else {
447 /* The target server expects a LOCAL line to be sent first. Retrieving
448 * local or remote addresses may fail until the connection is established.
449 */
450 conn_get_from_addr(conn);
451 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
452 goto out_wait;
453
454 conn_get_to_addr(conn);
455 if (!(conn->flags & CO_FL_ADDR_TO_SET))
456 goto out_wait;
457
David Safb76832014-05-08 23:42:08 -0400458 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), conn);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200459 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200460
Willy Tarreau2c6be842012-07-06 17:12:34 +0200461 if (!ret)
462 goto out_error;
463
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200464 if (conn->send_proxy_ofs > 0)
465 conn->send_proxy_ofs = -ret; /* first call */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200466
Willy Tarreaua1a74742012-08-24 12:14:49 +0200467 /* we have to send trash from (ret+sp for -sp bytes). If the
468 * data layer has a pending write, we'll also set MSG_MORE.
469 */
Willy Tarreau0a03c0f2015-03-13 00:05:28 +0100470 ret = conn_sock_send(conn, trash.str + ret + conn->send_proxy_ofs, -conn->send_proxy_ofs,
471 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200472
Willy Tarreau0a03c0f2015-03-13 00:05:28 +0100473 if (ret < 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200474 goto out_error;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200475
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200476 conn->send_proxy_ofs += ret; /* becomes zero once complete */
477 if (conn->send_proxy_ofs != 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200478 goto out_wait;
479
480 /* OK we've sent the whole line, we're connected */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100481 break;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200482 }
483
Willy Tarreaua1a74742012-08-24 12:14:49 +0200484 /* The connection is ready now, simply return and let the connection
485 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200486 */
487 if (conn->flags & CO_FL_WAIT_L4_CONN)
488 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200489 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200490 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200491
492 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200493 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200494 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200495 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200496
497 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200498 __conn_sock_stop_recv(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200499 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200500}
501
Willy Tarreau27375622013-12-17 00:00:28 +0100502
503/* Tiny I/O callback called on recv/send I/O events on idle connections.
504 * It simply sets the CO_FL_SOCK_RD_SH flag so that si_idle_conn_wake_cb()
505 * is notified and can kill the connection.
506 */
507static void si_idle_conn_null_cb(struct connection *conn)
508{
Willy Tarreaud85c4852015-03-13 00:40:28 +0100509 conn_sock_drain(conn);
Willy Tarreau27375622013-12-17 00:00:28 +0100510}
511
512/* Callback to be used by connection I/O handlers when some activity is detected
513 * on an idle server connection. Its main purpose is to kill the connection once
514 * a close was detected on it. It returns 0 if it did nothing serious, or -1 if
515 * it killed the connection.
516 */
517static int si_idle_conn_wake_cb(struct connection *conn)
518{
519 struct stream_interface *si = conn->owner;
520
521 if (!conn_ctrl_ready(conn))
522 return 0;
523
524 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
525 /* warning, we can't do anything on <conn> after this call ! */
526 conn_force_close(conn);
527 conn_free(conn);
528 si->end = NULL;
529 return -1;
530 }
531 return 0;
532}
533
Willy Tarreau100c4672012-08-20 12:06:26 +0200534/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200535 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200536 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200537 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200538 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200539 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200540static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200541{
Willy Tarreaue603e692012-09-27 22:20:41 +0200542 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100543 struct channel *ic = si_ic(si);
544 struct channel *oc = si_oc(si);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200545
Willy Tarreauafc8a222014-11-28 15:46:27 +0100546 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufd31e532012-07-23 18:24:25 +0200547 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100548 si, si->state, ic->flags, oc->flags);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200549
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200550 if (conn->flags & CO_FL_ERROR)
551 si->flags |= SI_FL_ERR;
552
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200553 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200554 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200555 si->exp = TICK_ETERNITY;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100556 oc->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200557 }
558
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200559 /* process consumer side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100560 if (channel_is_empty(oc)) {
561 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200562 (si->state == SI_ST_EST))
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200563 stream_int_shutw_conn(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200564 __conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100565 oc->wex = TICK_ETERNITY;
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200566 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200567
Willy Tarreauafc8a222014-11-28 15:46:27 +0100568 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200569 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200570
Willy Tarreauafc8a222014-11-28 15:46:27 +0100571 if (oc->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200572 /* update timeouts if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100573 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
574 !channel_is_empty(oc))
575 if (tick_isset(oc->wex))
576 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200577
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200578 if (!(si->flags & SI_FL_INDEP_STR))
Willy Tarreauafc8a222014-11-28 15:46:27 +0100579 if (tick_isset(ic->rex))
580 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200581
Willy Tarreauafc8a222014-11-28 15:46:27 +0100582 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
583 channel_may_recv(oc) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100584 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
585 si_chk_rcv(si_opposite(si));
Willy Tarreaufd31e532012-07-23 18:24:25 +0200586 }
587
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200588 /* process producer side.
589 * We might have some data the consumer is waiting for.
590 * We can do fast-forwarding, but we avoid doing this for partial
591 * buffers, because it is very likely that it will be done again
592 * immediately afterwards once the following data is parsed (eg:
593 * HTTP chunking).
594 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100595 if (((ic->flags & CF_READ_PARTIAL) && !channel_is_empty(ic)) &&
596 (ic->pipe /* always try to send spliced data */ ||
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100597 (si_ib(si)->i == 0 && (si_opposite(si)->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100598 int last_len = ic->pipe ? ic->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200599
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100600 si_chk_snd(si_opposite(si));
Willy Tarreaufd31e532012-07-23 18:24:25 +0200601
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200602 /* check if the consumer has freed some space either in the
603 * buffer or in the pipe.
604 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100605 if (channel_may_recv(ic) &&
606 (!last_len || !ic->pipe || ic->pipe->data < last_len))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200607 si->flags &= ~SI_FL_WAIT_ROOM;
608 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200609
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200610 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200611 __conn_data_stop_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100612 ic->rex = TICK_ETERNITY;
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200613 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100614 else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
615 channel_may_recv(ic)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100616 /* we must re-enable reading if si_chk_snd() has freed some space */
617 __conn_data_want_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100618 if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex))
619 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200620 }
621
622 /* wake the task up only when needed */
623 if (/* changes on the production side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100624 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200625 si->state != SI_ST_EST ||
626 (si->flags & SI_FL_ERR) ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100627 ((ic->flags & CF_READ_PARTIAL) &&
628 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200629
630 /* changes on the consumption side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100631 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
632 ((oc->flags & CF_WRITE_ACTIVITY) &&
633 ((oc->flags & CF_SHUTW) ||
634 ((oc->flags & CF_WAKE_WRITE) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100635 (si_opposite(si)->state != SI_ST_EST ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100636 (channel_is_empty(oc) && !oc->to_forward)))))) {
Willy Tarreau07373b82014-11-28 12:08:47 +0100637 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200638 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100639 if (ic->flags & CF_READ_ACTIVITY)
640 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau10fc09e2014-11-25 19:46:36 +0100641
Willy Tarreau87b09662015-04-03 00:22:06 +0200642 stream_release_buffers(si_strm(si));
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200643 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200644}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200645
Willy Tarreau5368d802012-08-21 18:22:06 +0200646/*
647 * This function is called to send buffer data to a stream socket.
Godbache68e02d2013-10-11 15:48:29 +0800648 * It calls the transport layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800649 * caller to commit polling changes. The caller should check conn->flags
650 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200651 */
Godbach4f489902013-12-04 17:24:06 +0800652static void si_conn_send(struct connection *conn)
Willy Tarreau5368d802012-08-21 18:22:06 +0200653{
Willy Tarreaue603e692012-09-27 22:20:41 +0200654 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100655 struct channel *oc = si_oc(si);
Willy Tarreau5368d802012-08-21 18:22:06 +0200656 int ret;
657
Willy Tarreauafc8a222014-11-28 15:46:27 +0100658 if (oc->pipe && conn->xprt->snd_pipe) {
659 ret = conn->xprt->snd_pipe(conn, oc->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200660 if (ret > 0)
Willy Tarreauafc8a222014-11-28 15:46:27 +0100661 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200662
Willy Tarreauafc8a222014-11-28 15:46:27 +0100663 if (!oc->pipe->data) {
664 put_pipe(oc->pipe);
665 oc->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200666 }
667
Willy Tarreau96199b12012-08-24 00:46:52 +0200668 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +0800669 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200670 }
671
672 /* At this point, the pipe is empty, but we may still have data pending
673 * in the normal buffer.
674 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100675 if (!oc->buf->o)
Godbach4f489902013-12-04 17:24:06 +0800676 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200677
Godbache68e02d2013-10-11 15:48:29 +0800678 /* when we're here, we already know that there is no spliced
Willy Tarreau5368d802012-08-21 18:22:06 +0200679 * data left, and that there are sendable buffered data.
680 */
Willy Tarreau310987a2014-01-22 19:46:33 +0100681 if (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH | CO_FL_WAIT_DATA | CO_FL_HANDSHAKE))) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200682 /* check if we want to inform the kernel that we're interested in
683 * sending more data after this call. We want this if :
684 * - we're about to close after this last send and want to merge
685 * the ongoing FIN with the last segment.
686 * - we know we can't send everything at once and must get back
687 * here because of unaligned data
688 * - there is still a finite amount of data to forward
689 * The test is arranged so that the most common case does only 2
690 * tests.
691 */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100692 unsigned int send_flag = 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200693
Willy Tarreauafc8a222014-11-28 15:46:27 +0100694 if ((!(oc->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
695 ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) ||
696 (oc->flags & CF_EXPECT_MORE))) ||
697 ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100698 send_flag |= CO_SFL_MSG_MORE;
Willy Tarreau5368d802012-08-21 18:22:06 +0200699
Willy Tarreauafc8a222014-11-28 15:46:27 +0100700 if (oc->flags & CF_STREAMER)
Willy Tarreau7bed9452014-02-02 02:00:24 +0100701 send_flag |= CO_SFL_STREAMER;
702
Willy Tarreauafc8a222014-11-28 15:46:27 +0100703 ret = conn->xprt->snd_buf(conn, oc->buf, send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800704 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100705 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200706
Willy Tarreauafc8a222014-11-28 15:46:27 +0100707 if (!oc->buf->o) {
Godbache68e02d2013-10-11 15:48:29 +0800708 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100709 oc->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Godbache68e02d2013-10-11 15:48:29 +0800710 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200711
Godbache68e02d2013-10-11 15:48:29 +0800712 /* if some data remain in the buffer, it's only because the
713 * system buffers are full, we will try next time.
714 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200715 }
Godbache68e02d2013-10-11 15:48:29 +0800716 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200717}
718
719
Willy Tarreau100c4672012-08-20 12:06:26 +0200720/* Updates the timers and flags of a stream interface attached to a connection,
721 * depending on the buffers' flags. It should only be called once after the
722 * buffer flags have settled down, and before they are cleared. It doesn't
723 * harm to call it as often as desired (it just slightly hurts performance).
724 * It is only meant to be called by upper layers after buffer flags have been
725 * manipulated by analysers.
726 */
727void stream_int_update_conn(struct stream_interface *si)
728{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100729 struct channel *ic = si_ic(si);
730 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200731 struct connection *conn = __objt_conn(si->end);
Willy Tarreau100c4672012-08-20 12:06:26 +0200732
Willy Tarreau100c4672012-08-20 12:06:26 +0200733 /* Check if we need to close the read side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100734 if (!(ic->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200735 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100736 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200737 /* stop reading */
738 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100739 if (!(ic->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200740 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200741 conn_data_stop_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100742 ic->rex = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200743 }
744 }
745 else {
746 /* (re)start reading and update timeout. Note: we don't recompute the timeout
747 * everytime we get here, otherwise it would risk never to expire. We only
748 * update it if is was not yet set. The stream socket handler will already
749 * have updated it if there has been a completed I/O.
750 */
751 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200752 conn_data_want_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100753 if (!(ic->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ic->rex))
754 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreau100c4672012-08-20 12:06:26 +0200755 }
756 }
757
758 /* Check if we need to close the write side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100759 if (!(oc->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200760 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100761 if (channel_is_empty(oc)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200762 /* stop writing */
763 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100764 if ((oc->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200765 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200766 conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100767 oc->wex = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200768 }
769 }
770 else {
771 /* (re)start writing 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_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200777 conn_data_want_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100778 if (!tick_isset(oc->wex)) {
779 oc->wex = tick_add_ifset(now_ms, oc->wto);
780 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200781 /* Note: depending on the protocol, we don't know if we're waiting
782 * for incoming data or not. So in order to prevent the socket from
783 * expiring read timeouts during writes, we refresh the read timeout,
784 * except if it was already infinite or if we have explicitly setup
785 * independent streams.
786 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100787 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreau100c4672012-08-20 12:06:26 +0200788 }
789 }
790 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200791 }
792}
793
794/*
795 * This function performs a shutdown-read on a stream interface attached to
796 * a connection in a connected or init state (it does nothing for other
797 * states). It either shuts the read side or marks itself as closed. The buffer
798 * flags are updated to reflect the new state. If the stream interface has
799 * SI_FL_NOHALF, we also forward the close to the write side. If a control
800 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200801 * descriptors are then shutdown or closed accordingly. The function
802 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200803 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200804static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200805{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200806 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100807 struct channel *ic = si_ic(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200808
Willy Tarreauafc8a222014-11-28 15:46:27 +0100809 ic->flags &= ~CF_SHUTR_NOW;
810 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200811 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100812 ic->flags |= CF_SHUTR;
813 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200814 si->flags &= ~SI_FL_WAIT_ROOM;
815
816 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200817 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200818
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100819 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200820 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200821 si->state = SI_ST_DIS;
822 si->exp = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200823 }
824 else if (si->flags & SI_FL_NOHALF) {
825 /* we want to immediately forward this close to the write side */
826 return stream_int_shutw_conn(si);
827 }
828 else if (conn->ctrl) {
829 /* we want the caller to disable polling on this FD */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200830 conn_data_stop_recv(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200831 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200832}
833
834/*
835 * This function performs a shutdown-write on a stream interface attached to
836 * a connection in a connected or init state (it does nothing for other
837 * states). It either shuts the write side or marks itself as closed. The
838 * buffer flags are updated to reflect the new state. It does also close
839 * everything if the SI was marked as being in error state. If there is a
Willy Tarreau1398aa12015-03-12 23:04:07 +0100840 * data-layer shutdown, it is called.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200841 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200842static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200843{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200844 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100845 struct channel *ic = si_ic(si);
846 struct channel *oc = si_oc(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200847
Willy Tarreauafc8a222014-11-28 15:46:27 +0100848 oc->flags &= ~CF_SHUTW_NOW;
849 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200850 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100851 oc->flags |= CF_SHUTW;
852 oc->wex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200853 si->flags &= ~SI_FL_WAIT_DATA;
854
855 switch (si->state) {
856 case SI_ST_EST:
857 /* we have to shut before closing, otherwise some short messages
858 * may never leave the system, especially when there are remaining
859 * unread data in the socket input buffer, or when nolinger is set.
860 * However, if SI_FL_NOLINGER is explicitly set, we know there is
861 * no risk so we close both sides immediately.
862 */
863 if (si->flags & SI_FL_ERR) {
864 /* quick close, the socket is alredy shut anyway */
865 }
866 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200867 /* unclean data-layer shutdown */
Willy Tarreau1398aa12015-03-12 23:04:07 +0100868 conn_data_shutw_hard(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200869 }
870 else {
871 /* clean data-layer shutdown */
Willy Tarreau1398aa12015-03-12 23:04:07 +0100872 conn_data_shutw(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200873
874 /* If the stream interface is configured to disable half-open
875 * connections, we'll skip the shutdown(), but only if the
876 * read size is already closed. Otherwise we can't support
877 * closed write with pending read (eg: abortonclose while
878 * waiting for the server).
879 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100880 if (!(si->flags & SI_FL_NOHALF) || !(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200881 /* We shutdown transport layer */
Willy Tarreau4dfd54f2015-03-12 22:44:53 +0100882 conn_sock_shutw(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200883
Willy Tarreauafc8a222014-11-28 15:46:27 +0100884 if (!(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200885 /* OK just a shutw, but we want the caller
886 * to disable polling on this FD if exists.
887 */
Willy Tarreau1398aa12015-03-12 23:04:07 +0100888 conn_cond_update_polling(conn);
Willy Tarreau6fe15412013-09-29 15:16:03 +0200889 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200890 }
891 }
892 }
893
894 /* fall through */
895 case SI_ST_CON:
896 /* we may have to close a pending connection, and mark the
897 * response buffer as shutr
898 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200899 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200900 /* fall through */
901 case SI_ST_CER:
902 case SI_ST_QUE:
903 case SI_ST_TAR:
904 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200905 /* fall through */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200906 default:
907 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100908 ic->flags &= ~CF_SHUTR_NOW;
909 ic->flags |= CF_SHUTR;
910 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200911 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200912 }
913}
914
Willy Tarreau46a8d922012-08-20 12:38:36 +0200915/* This function is used for inter-stream-interface calls. It is called by the
916 * consumer to inform the producer side that it may be interested in checking
917 * for free space in the buffer. Note that it intentionally does not update
918 * timeouts, so that we can still check them later at wake-up. This function is
919 * dedicated to connection-based stream interfaces.
920 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200921static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200922{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100923 struct channel *ic = si_ic(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200924 struct connection *conn = __objt_conn(si->end);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200925
Willy Tarreauafc8a222014-11-28 15:46:27 +0100926 if (unlikely(si->state > SI_ST_EST || (ic->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200927 return;
928
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200929 conn_refresh_polling_flags(conn);
Willy Tarreau7d281492012-12-16 19:19:13 +0100930
Willy Tarreauafc8a222014-11-28 15:46:27 +0100931 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200932 /* stop reading */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100933 if (!(ic->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200934 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200935 __conn_data_stop_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200936 }
937 else {
938 /* (re)start reading */
939 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200940 __conn_data_want_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200941 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200942 conn_cond_update_data_polling(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200943}
944
945
Willy Tarreaude5722c2012-08-20 15:01:10 +0200946/* This function is used for inter-stream-interface calls. It is called by the
947 * producer to inform the consumer side that it may be interested in checking
948 * for data in the buffer. Note that it intentionally does not update timeouts,
949 * so that we can still check them later at wake-up.
950 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200951static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200952{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100953 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200954 struct connection *conn = __objt_conn(si->end);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200955
Willy Tarreauafc8a222014-11-28 15:46:27 +0100956 if (unlikely(si->state > SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200957 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200958
Willy Tarreauafc8a222014-11-28 15:46:27 +0100959 if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200960 return;
961
Willy Tarreauafc8a222014-11-28 15:46:27 +0100962 if (!oc->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100963 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200964 return;
965
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200966 if (conn->flags & (CO_FL_DATA_WR_ENA|CO_FL_CURR_WR_ENA)) {
Willy Tarreau5007d2a2013-07-18 22:09:48 +0200967 /* already subscribed to write notifications, will be called
968 * anyway, so let's avoid calling it especially if the reader
969 * is not ready.
970 */
971 return;
972 }
973
Willy Tarreau708e7172014-01-21 10:27:49 +0100974 /* Before calling the data-level operations, we have to prepare
975 * the polling flags to ensure we properly detect changes.
976 */
977 conn_refresh_polling_flags(conn);
978 __conn_data_want_send(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100979
Willy Tarreau708e7172014-01-21 10:27:49 +0100980 if (!(conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200981 si_conn_send(conn);
Willy Tarreau798c3c92014-01-21 10:30:08 +0100982 if (conn->flags & CO_FL_ERROR) {
Willy Tarreaud29a0662012-12-10 16:33:38 +0100983 /* Write error on the file descriptor */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200984 __conn_data_stop_both(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100985 si->flags |= SI_FL_ERR;
Willy Tarreaud29a0662012-12-10 16:33:38 +0100986 goto out_wakeup;
987 }
Willy Tarreaude5722c2012-08-20 15:01:10 +0200988 }
989
990 /* OK, so now we know that some data might have been sent, and that we may
991 * have to poll first. We have to do that too if the buffer is not empty.
992 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100993 if (channel_is_empty(oc)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200994 /* the connection is established but we can't write. Either the
995 * buffer is empty, or we just refrain from sending because the
996 * ->o limit was reached. Maybe we just wrote the last
997 * chunk and need to close.
998 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200999 __conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001000 if (((oc->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001001 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +02001002 (si->state == SI_ST_EST)) {
1003 si_shutw(si);
1004 goto out_wakeup;
1005 }
1006
Willy Tarreauafc8a222014-11-28 15:46:27 +01001007 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +02001008 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001009 oc->wex = TICK_ETERNITY;
Willy Tarreaude5722c2012-08-20 15:01:10 +02001010 }
1011 else {
1012 /* Otherwise there are remaining data to be sent in the buffer,
1013 * which means we have to poll before doing so.
1014 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001015 __conn_data_want_send(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001016 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001017 if (!tick_isset(oc->wex))
1018 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001019 }
1020
Willy Tarreauafc8a222014-11-28 15:46:27 +01001021 if (likely(oc->flags & CF_WRITE_ACTIVITY)) {
1022 struct channel *ic = si_ic(si);
1023
Willy Tarreaude5722c2012-08-20 15:01:10 +02001024 /* update timeout if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001025 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
1026 !channel_is_empty(oc))
1027 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001028
Willy Tarreauafc8a222014-11-28 15:46:27 +01001029 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001030 /* Note: to prevent the client from expiring read timeouts
1031 * during writes, we refresh it. We only do this if the
1032 * interface is not configured for "independent streams",
1033 * because for some applications it's better not to do this,
1034 * for instance when continuously exchanging small amounts
1035 * of data which can full the socket buffers long before a
1036 * write timeout is detected.
1037 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001038 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001039 }
1040 }
1041
1042 /* in case of special condition (error, shutdown, end of write...), we
1043 * have to notify the task.
1044 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001045 if (likely((oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
1046 ((oc->flags & CF_WAKE_WRITE) &&
1047 ((channel_is_empty(oc) && !oc->to_forward) ||
Willy Tarreaue6300be2014-01-25 02:33:21 +01001048 si->state != SI_ST_EST)))) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001049 out_wakeup:
Willy Tarreau07373b82014-11-28 12:08:47 +01001050 if (!(si->flags & SI_FL_DONT_WAKE))
1051 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001052 }
Willy Tarreauf16723e2012-08-24 12:52:22 +02001053
1054 /* commit possible polling changes */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001055 conn_cond_update_polling(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001056}
1057
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001058/*
Willy Tarreauce323de2012-08-20 21:41:06 +02001059 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001060 * into the buffer from the connection. It iterates over the transport layer's
1061 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +02001062 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001063static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +02001064{
Willy Tarreaue603e692012-09-27 22:20:41 +02001065 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001066 struct channel *ic = si_ic(si);
Willy Tarreauce323de2012-08-20 21:41:06 +02001067 int ret, max, cur_read;
1068 int read_poll = MAX_READ_POLL_LOOPS;
1069
1070 /* stop immediately on errors. Note that we DON'T want to stop on
1071 * POLL_ERR, as the poller might report a write error while there
1072 * are still data available in the recv buffer. This typically
1073 * happens when we send too large a request to a backend server
1074 * which rejects it before reading it all.
1075 */
1076 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001077 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001078
1079 /* stop here if we reached the end of data */
1080 if (conn_data_read0_pending(conn))
1081 goto out_shutdown_r;
1082
1083 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001084 if (ic->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +02001085 return;
1086
Willy Tarreau96199b12012-08-24 00:46:52 +02001087 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +02001088
Willy Tarreauafc8a222014-11-28 15:46:27 +01001089 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !ic->buf->o &&
Willy Tarreau7e312732014-02-12 16:35:14 +01001090 global.tune.idle_timer &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001091 (unsigned short)(now_ms - ic->last_read) >= global.tune.idle_timer) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001092 /* The buffer was empty and nothing was transferred for more
1093 * than one second. This was caused by a pause and not by
1094 * congestion. Reset any streaming mode to reduce latency.
1095 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001096 ic->xfer_small = 0;
1097 ic->xfer_large = 0;
1098 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001099 }
1100
Willy Tarreau96199b12012-08-24 00:46:52 +02001101 /* First, let's see if we may splice data across the channel without
1102 * using a buffer.
1103 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001104 if (conn->xprt->rcv_pipe &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001105 (ic->pipe || ic->to_forward >= MIN_SPLICE_FORWARD) &&
1106 ic->flags & CF_KERN_SPLICING) {
1107 if (buffer_not_empty(ic->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001108 /* We're embarrassed, there are already data pending in
1109 * the buffer and we don't want to have them at two
1110 * locations at a time. Let's indicate we need some
1111 * place and ask the consumer to hurry.
1112 */
1113 goto abort_splice;
1114 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001115
Willy Tarreauafc8a222014-11-28 15:46:27 +01001116 if (unlikely(ic->pipe == NULL)) {
1117 if (pipes_used >= global.maxpipes || !(ic->pipe = get_pipe())) {
1118 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001119 goto abort_splice;
1120 }
1121 }
1122
Willy Tarreauafc8a222014-11-28 15:46:27 +01001123 ret = conn->xprt->rcv_pipe(conn, ic->pipe, ic->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001124 if (ret < 0) {
1125 /* splice not supported on this end, let's disable it */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001126 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001127 goto abort_splice;
1128 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001129
Willy Tarreau96199b12012-08-24 00:46:52 +02001130 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001131 if (ic->to_forward != CHN_INFINITE_FORWARD)
1132 ic->to_forward -= ret;
1133 ic->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001134 cur_read += ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001135 ic->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001136 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001137
1138 if (conn_data_read0_pending(conn))
1139 goto out_shutdown_r;
1140
1141 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001142 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001143
Willy Tarreau61d39a02013-07-18 21:49:32 +02001144 if (conn->flags & CO_FL_WAIT_ROOM) {
1145 /* the pipe is full or we have read enough data that it
1146 * could soon be full. Let's stop before needing to poll.
1147 */
Willy Tarreau56a77e52012-09-02 18:34:44 +02001148 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001149 __conn_data_stop_recv(conn);
1150 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001151
Willy Tarreauce323de2012-08-20 21:41:06 +02001152 /* splice not possible (anymore), let's go on on standard copy */
1153 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001154
1155 abort_splice:
Willy Tarreauafc8a222014-11-28 15:46:27 +01001156 if (ic->pipe && unlikely(!ic->pipe->data)) {
1157 put_pipe(ic->pipe);
1158 ic->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001159 }
1160
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001161 /* now we'll need a buffer */
Willy Tarreau87b09662015-04-03 00:22:06 +02001162 if (!stream_alloc_recv_buffer(ic)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001163 si->flags |= SI_FL_WAIT_ROOM;
1164 goto end_recv;
1165 }
1166
Willy Tarreau61d39a02013-07-18 21:49:32 +02001167 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1168 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1169 * that if such an event is not handled above in splice, it will be handled here by
1170 * recv().
1171 */
Willy Tarreau310987a2014-01-22 19:46:33 +01001172 while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001173 max = channel_recv_max(ic);
Willy Tarreauce323de2012-08-20 21:41:06 +02001174
1175 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001176 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001177 break;
1178 }
1179
Willy Tarreauafc8a222014-11-28 15:46:27 +01001180 ret = conn->xprt->rcv_buf(conn, ic->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001181 if (ret <= 0)
1182 break;
1183
1184 cur_read += ret;
1185
1186 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001187 if (ic->to_forward && !(ic->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001188 unsigned long fwd = ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001189 if (ic->to_forward != CHN_INFINITE_FORWARD) {
1190 if (fwd > ic->to_forward)
1191 fwd = ic->to_forward;
1192 ic->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001193 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001194 b_adv(ic->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001195 }
1196
Willy Tarreauafc8a222014-11-28 15:46:27 +01001197 ic->flags |= CF_READ_PARTIAL;
1198 ic->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001199
Willy Tarreauafc8a222014-11-28 15:46:27 +01001200 if (!channel_may_recv(ic)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001201 si->flags |= SI_FL_WAIT_ROOM;
1202 break;
1203 }
1204
Willy Tarreauafc8a222014-11-28 15:46:27 +01001205 if ((ic->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreau34ac5662012-12-19 18:01:02 +01001206 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud486ef52012-12-10 17:03:52 +01001207 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001208 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001209 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001210
1211 /* if too many bytes were missing from last read, it means that
1212 * it's pointless trying to read again because the system does
1213 * not have them in buffers.
1214 */
1215 if (ret < max) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001216 /* if a streamer has read few data, it may be because we
1217 * have exhausted system buffers. It's not worth trying
1218 * again.
1219 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001220 if (ic->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001221 break;
1222
1223 /* if we read a large block smaller than what we requested,
1224 * it's almost certain we'll never get anything more.
1225 */
1226 if (ret >= global.tune.recv_enough)
1227 break;
1228 }
1229 } /* while !flags */
1230
Willy Tarreauc5890e62014-02-09 17:47:01 +01001231 if (cur_read) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001232 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
1233 (cur_read <= ic->buf->size / 2)) {
1234 ic->xfer_large = 0;
1235 ic->xfer_small++;
1236 if (ic->xfer_small >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001237 /* we have read less than half of the buffer in
1238 * one pass, and this happened at least 3 times.
1239 * This is definitely not a streamer.
1240 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001241 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001242 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001243 else if (ic->xfer_small >= 2) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001244 /* if the buffer has been at least half full twice,
1245 * we receive faster than we send, so at least it
1246 * is not a "fast streamer".
1247 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001248 ic->flags &= ~CF_STREAMER_FAST;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001249 }
1250 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001251 else if (!(ic->flags & CF_STREAMER_FAST) &&
1252 (cur_read >= ic->buf->size - global.tune.maxrewrite)) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001253 /* we read a full buffer at once */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001254 ic->xfer_small = 0;
1255 ic->xfer_large++;
1256 if (ic->xfer_large >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001257 /* we call this buffer a fast streamer if it manages
1258 * to be filled in one call 3 consecutive times.
1259 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001260 ic->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001261 }
1262 }
1263 else {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001264 ic->xfer_small = 0;
1265 ic->xfer_large = 0;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001266 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001267 ic->last_read = now_ms;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001268 }
1269
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001270 end_recv:
1271 if (conn->flags & CO_FL_ERROR)
1272 return;
1273
Willy Tarreauce323de2012-08-20 21:41:06 +02001274 if (conn_data_read0_pending(conn))
1275 /* connection closed */
1276 goto out_shutdown_r;
1277
1278 return;
1279
1280 out_shutdown_r:
1281 /* we received a shutdown */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001282 ic->flags |= CF_READ_NULL;
1283 if (ic->flags & CF_AUTO_CLOSE)
1284 channel_shutw_now(ic);
Willy Tarreauce323de2012-08-20 21:41:06 +02001285 stream_sock_read0(si);
1286 conn_data_read0(conn);
1287 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001288}
1289
1290/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001291 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001292 * from the buffer to the connection. It iterates over the transport layer's
1293 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001294 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001295static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001296{
Willy Tarreaue603e692012-09-27 22:20:41 +02001297 struct stream_interface *si = conn->owner;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001298
1299 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001300 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001301
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001302 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001303 /* a handshake was requested */
1304 return;
1305
1306 /* we might have been called just after an asynchronous shutw */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001307 if (si_oc(si)->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001308 return;
1309
1310 /* OK there are data waiting to be sent */
Godbach4f489902013-12-04 17:24:06 +08001311 si_conn_send(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001312
1313 /* OK all done */
1314 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001315}
1316
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001317/*
1318 * This function propagates a null read received on a socket-based connection.
1319 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
Willy Tarreau11405122015-03-12 22:32:27 +01001320 * the close is also forwarded to the write side as an abort.
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001321 */
1322void stream_sock_read0(struct stream_interface *si)
1323{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001324 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001325 struct channel *ic = si_ic(si);
1326 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001327
Willy Tarreauafc8a222014-11-28 15:46:27 +01001328 ic->flags &= ~CF_SHUTR_NOW;
1329 if (ic->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001330 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001331 ic->flags |= CF_SHUTR;
1332 ic->rex = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001333 si->flags &= ~SI_FL_WAIT_ROOM;
1334
1335 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1336 return;
1337
Willy Tarreauafc8a222014-11-28 15:46:27 +01001338 if (oc->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001339 goto do_close;
1340
1341 if (si->flags & SI_FL_NOHALF) {
1342 /* we want to immediately forward this close to the write side */
Willy Tarreau87b09662015-04-03 00:22:06 +02001343 /* force flag on ssl to keep stream in cache */
Willy Tarreau1398aa12015-03-12 23:04:07 +01001344 conn_data_shutw_hard(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001345 goto do_close;
1346 }
1347
1348 /* otherwise that's just a normal read shutdown */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001349 __conn_data_stop_recv(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001350 return;
1351
1352 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001353 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001354 conn_full_close(conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001355
Willy Tarreauafc8a222014-11-28 15:46:27 +01001356 ic->flags &= ~CF_SHUTR_NOW;
1357 ic->flags |= CF_SHUTR;
1358 ic->rex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001359
Willy Tarreauafc8a222014-11-28 15:46:27 +01001360 oc->flags &= ~CF_SHUTW_NOW;
1361 oc->flags |= CF_SHUTW;
1362 oc->wex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001363
1364 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1365
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001366 si->state = SI_ST_DIS;
1367 si->exp = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001368 return;
1369}
1370
Willy Tarreaue5f86492015-04-19 15:16:35 +02001371/* notifies the stream interface that the applet has completed its work */
1372void si_applet_done(struct stream_interface *si)
1373{
1374 struct channel *ic = si_ic(si);
1375 struct channel *oc = si_oc(si);
1376
1377 /* process consumer side */
1378 if (channel_is_empty(oc)) {
1379 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
1380 (si->state == SI_ST_EST))
1381 stream_int_shutw_applet(si);
1382 oc->wex = TICK_ETERNITY;
1383 }
1384
1385 /* indicate that we may be waiting for data from the output channel */
1386 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
1387 si->flags |= SI_FL_WAIT_DATA;
1388
1389 /* update OC timeouts and wake the other side up if it's waiting for room */
1390 if (oc->flags & CF_WRITE_ACTIVITY) {
1391 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
1392 !channel_is_empty(oc))
1393 if (tick_isset(oc->wex))
1394 oc->wex = tick_add_ifset(now_ms, oc->wto);
1395
1396 if (!(si->flags & SI_FL_INDEP_STR))
1397 if (tick_isset(ic->rex))
1398 ic->rex = tick_add_ifset(now_ms, ic->rto);
1399
1400 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
1401 channel_may_recv(oc) &&
1402 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
1403 si_chk_rcv(si_opposite(si));
1404 }
1405
1406 /* Notify the other side when we've injected data into the IC that
1407 * needs to be forwarded. We can do fast-forwarding as soon as there
1408 * are output data, but we avoid doing this for partial buffers,
1409 * because it is very likely that it will be done again immediately
1410 * afterwards once the following data are parsed (eg: HTTP chunking).
1411 * We only remove SI_FL_WAIT_ROOM once we've emptied the whole output
1412 * buffer, because applets are often forced to stop before the buffer
1413 * is full. We must not stop based on input data alone because an HTTP
1414 * parser might need more data to complete the parsing.
1415 */
1416 if (!channel_is_empty(ic) &&
1417 (si_opposite(si)->flags & SI_FL_WAIT_DATA) &&
1418 (si_ib(si)->i == 0 || ic->pipe)) {
1419 si_chk_snd(si_opposite(si));
1420 if (channel_is_empty(ic))
1421 si->flags &= ~SI_FL_WAIT_ROOM;
1422 }
1423
1424 if (si->flags & SI_FL_WAIT_ROOM) {
1425 ic->rex = TICK_ETERNITY;
1426 }
1427 else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
1428 channel_may_recv(ic)) {
1429 /* we must re-enable reading if si_chk_snd() has freed some space */
1430 if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex))
1431 ic->rex = tick_add_ifset(now_ms, ic->rto);
1432 }
1433
Willy Tarreaufe127932015-04-21 19:23:39 +02001434 /* get away from the active list if we can't work anymore. */
1435 if (((si->flags & (SI_FL_WANT_PUT|SI_FL_WAIT_ROOM)) != SI_FL_WANT_PUT) &&
1436 ((si->flags & (SI_FL_WANT_GET|SI_FL_WAIT_DATA)) != SI_FL_WANT_GET))
Willy Tarreaue5f86492015-04-19 15:16:35 +02001437 appctx_pause(si_appctx(si));
1438
1439 /* wake the task up only when needed */
1440 if (/* changes on the production side */
1441 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
1442 si->state != SI_ST_EST ||
1443 (si->flags & SI_FL_ERR) ||
1444 ((ic->flags & CF_READ_PARTIAL) &&
1445 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
1446
1447 /* changes on the consumption side */
1448 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
1449 ((oc->flags & CF_WRITE_ACTIVITY) &&
1450 ((oc->flags & CF_SHUTW) ||
1451 ((oc->flags & CF_WAKE_WRITE) &&
1452 (si_opposite(si)->state != SI_ST_EST ||
1453 (channel_is_empty(oc) && !oc->to_forward)))))) {
1454 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreau0b1a4542015-04-23 11:50:43 +02001455 appctx_pause(si_appctx(si));
Willy Tarreaue5f86492015-04-19 15:16:35 +02001456 }
1457 if (ic->flags & CF_READ_ACTIVITY)
1458 ic->flags &= ~CF_READ_DONTWAIT;
1459
1460 stream_release_buffers(si_strm(si));
1461}
1462
Willy Tarreau563cc372015-04-19 18:13:56 +02001463/* updates the timers and flags of a stream interface attached to an applet.
1464 * it's called from the upper layers after the buffers/channels have been
1465 * updated.
1466 */
1467void stream_int_update_applet(struct stream_interface *si)
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001468{
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001469 struct channel *ic = si_ic(si);
1470 struct channel *oc = si_oc(si);
1471
Willy Tarreau563cc372015-04-19 18:13:56 +02001472 /* Check if we need to close the read side */
1473 if (!(ic->flags & CF_SHUTR)) {
1474 /* Read not closed, update FD status and timeout for reads */
1475 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
1476 /* stop reading */
1477 if (!(si->flags & SI_FL_WAIT_ROOM)) {
1478 if (!(ic->flags & CF_DONT_READ)) /* full */
1479 si->flags |= SI_FL_WAIT_ROOM;
1480 ic->rex = TICK_ETERNITY;
1481 }
1482 }
1483 else {
1484 /* (re)start reading and update timeout. Note: we don't recompute the timeout
1485 * everytime we get here, otherwise it would risk never to expire. We only
1486 * update it if is was not yet set. The stream socket handler will already
1487 * have updated it if there has been a completed I/O.
1488 */
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001489 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau563cc372015-04-19 18:13:56 +02001490 if (!(ic->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ic->rex))
1491 ic->rex = tick_add_ifset(now_ms, ic->rto);
1492 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001493 }
1494
Willy Tarreau563cc372015-04-19 18:13:56 +02001495 /* Check if we need to close the write side */
1496 if (!(oc->flags & CF_SHUTW)) {
1497 /* Write not closed, update FD status and timeout for writes */
1498 if (channel_is_empty(oc)) {
1499 /* stop writing */
1500 if (!(si->flags & SI_FL_WAIT_DATA)) {
1501 if ((oc->flags & CF_SHUTW_NOW) == 0)
1502 si->flags |= SI_FL_WAIT_DATA;
1503 oc->wex = TICK_ETERNITY;
1504 }
1505 }
1506 else {
1507 /* (re)start writing and update timeout. Note: we don't recompute the timeout
1508 * everytime we get here, otherwise it would risk never to expire. We only
1509 * update it if is was not yet set. The stream socket handler will already
1510 * have updated it if there has been a completed I/O.
1511 */
1512 si->flags &= ~SI_FL_WAIT_DATA;
1513 if (!tick_isset(oc->wex)) {
1514 oc->wex = tick_add_ifset(now_ms, oc->wto);
1515 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
1516 /* Note: depending on the protocol, we don't know if we're waiting
1517 * for incoming data or not. So in order to prevent the socket from
1518 * expiring read timeouts during writes, we refresh the read timeout,
1519 * except if it was already infinite or if we have explicitly setup
1520 * independent streams.
1521 */
1522 ic->rex = tick_add_ifset(now_ms, ic->rto);
1523 }
1524 }
1525 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001526 }
Willy Tarreau563cc372015-04-19 18:13:56 +02001527
Willy Tarreaufe127932015-04-21 19:23:39 +02001528 if (((si->flags & (SI_FL_WANT_PUT|SI_FL_WAIT_ROOM)) == SI_FL_WANT_PUT) ||
1529 ((si->flags & (SI_FL_WANT_GET|SI_FL_WAIT_DATA)) == SI_FL_WANT_GET))
Willy Tarreau563cc372015-04-19 18:13:56 +02001530 appctx_wakeup(si_appctx(si));
Willy Tarreaufe127932015-04-21 19:23:39 +02001531 else
1532 appctx_pause(si_appctx(si));
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001533}
1534
1535/*
1536 * This function performs a shutdown-read on a stream interface attached to an
1537 * applet in a connected or init state (it does nothing for other states). It
1538 * either shuts the read side or marks itself as closed. The buffer flags are
1539 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
1540 * we also forward the close to the write side. The owner task is woken up if
1541 * it exists.
1542 */
1543static void stream_int_shutr_applet(struct stream_interface *si)
1544{
1545 struct channel *ic = si_ic(si);
1546
1547 ic->flags &= ~CF_SHUTR_NOW;
1548 if (ic->flags & CF_SHUTR)
1549 return;
1550 ic->flags |= CF_SHUTR;
1551 ic->rex = TICK_ETERNITY;
1552 si->flags &= ~SI_FL_WAIT_ROOM;
1553
Willy Tarreau828824a2015-04-19 17:20:03 +02001554 /* Note: on shutr, we don't call the applet */
1555
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001556 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1557 return;
1558
1559 if (si_oc(si)->flags & CF_SHUTW) {
1560 si->state = SI_ST_DIS;
1561 si->exp = TICK_ETERNITY;
1562 si_applet_release(si);
1563 }
1564 else if (si->flags & SI_FL_NOHALF) {
1565 /* we want to immediately forward this close to the write side */
1566 return stream_int_shutw_applet(si);
1567 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001568}
1569
1570/*
1571 * This function performs a shutdown-write on a stream interface attached to an
1572 * applet in a connected or init state (it does nothing for other states). It
1573 * either shuts the write side or marks itself as closed. The buffer flags are
1574 * updated to reflect the new state. It does also close everything if the SI
1575 * was marked as being in error state. The owner task is woken up if it exists.
1576 */
1577static void stream_int_shutw_applet(struct stream_interface *si)
1578{
1579 struct channel *ic = si_ic(si);
1580 struct channel *oc = si_oc(si);
1581
1582 oc->flags &= ~CF_SHUTW_NOW;
1583 if (oc->flags & CF_SHUTW)
1584 return;
1585 oc->flags |= CF_SHUTW;
1586 oc->wex = TICK_ETERNITY;
1587 si->flags &= ~SI_FL_WAIT_DATA;
1588
Willy Tarreau828824a2015-04-19 17:20:03 +02001589 /* on shutw we always wake the applet up */
1590 appctx_wakeup(si_appctx(si));
1591
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001592 switch (si->state) {
1593 case SI_ST_EST:
1594 /* we have to shut before closing, otherwise some short messages
1595 * may never leave the system, especially when there are remaining
1596 * unread data in the socket input buffer, or when nolinger is set.
1597 * However, if SI_FL_NOLINGER is explicitly set, we know there is
1598 * no risk so we close both sides immediately.
1599 */
1600 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
1601 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
1602 return;
1603
1604 /* fall through */
1605 case SI_ST_CON:
1606 case SI_ST_CER:
1607 case SI_ST_QUE:
1608 case SI_ST_TAR:
1609 /* Note that none of these states may happen with applets */
1610 si->state = SI_ST_DIS;
1611 si_applet_release(si);
1612 default:
1613 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
1614 ic->flags &= ~CF_SHUTR_NOW;
1615 ic->flags |= CF_SHUTR;
1616 ic->rex = TICK_ETERNITY;
1617 si->exp = TICK_ETERNITY;
1618 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001619}
1620
1621/* chk_rcv function for applets */
1622static void stream_int_chk_rcv_applet(struct stream_interface *si)
1623{
1624 struct channel *ic = si_ic(si);
1625
1626 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
1627 __FUNCTION__,
1628 si, si->state, ic->flags, si_oc(si)->flags);
1629
1630 if (unlikely(si->state != SI_ST_EST || (ic->flags & (CF_SHUTR|CF_DONT_READ))))
1631 return;
Willy Tarreau828824a2015-04-19 17:20:03 +02001632 /* here we only wake the applet up if it was waiting for some room */
1633 if (!(si->flags & SI_FL_WAIT_ROOM))
1634 return;
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001635
Willy Tarreau828824a2015-04-19 17:20:03 +02001636 if (channel_may_recv(ic) && !ic->pipe) {
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001637 /* (re)start reading */
Willy Tarreau828824a2015-04-19 17:20:03 +02001638 appctx_wakeup(si_appctx(si));
1639 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001640}
1641
1642/* chk_snd function for applets */
1643static void stream_int_chk_snd_applet(struct stream_interface *si)
1644{
1645 struct channel *oc = si_oc(si);
1646
1647 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
1648 __FUNCTION__,
1649 si, si->state, si_ic(si)->flags, oc->flags);
1650
1651 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
1652 return;
1653
Willy Tarreau828824a2015-04-19 17:20:03 +02001654 /* we only wake the applet up if it was waiting for some data */
1655
1656 if (!(si->flags & SI_FL_WAIT_DATA))
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001657 return;
1658
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001659 if (!tick_isset(oc->wex))
1660 oc->wex = tick_add_ifset(now_ms, oc->wto);
1661
Willy Tarreau828824a2015-04-19 17:20:03 +02001662 if (!channel_is_empty(oc)) {
1663 /* (re)start sending */
1664 appctx_wakeup(si_appctx(si));
1665 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001666}
1667
Willy Tarreaudded32d2008-11-30 19:48:07 +01001668/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001669 * Local variables:
1670 * c-indent-level: 8
1671 * c-basic-offset: 8
1672 * End:
1673 */