blob: 4c41d036dae26a23788cbb0b64ada4d0be0d3acb [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 Tarreau6fe15412013-09-29 15:16:03 +020046static void stream_int_shutr_conn(struct stream_interface *si);
47static void stream_int_shutw_conn(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020048static void stream_int_chk_rcv_conn(struct stream_interface *si);
49static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreaud45b9f82015-04-13 16:30:14 +020050static void stream_int_shutr_applet(struct stream_interface *si);
51static void stream_int_shutw_applet(struct stream_interface *si);
52static void stream_int_chk_rcv_applet(struct stream_interface *si);
53static void stream_int_chk_snd_applet(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020054static void si_conn_recv_cb(struct connection *conn);
55static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020056static int si_conn_wake_cb(struct connection *conn);
Willy Tarreau27375622013-12-17 00:00:28 +010057static int si_idle_conn_wake_cb(struct connection *conn);
58static void si_idle_conn_null_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020059
Willy Tarreauc5788912012-08-24 18:12:41 +020060/* stream-interface operations for embedded tasks */
61struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020062 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020063 .chk_rcv = stream_int_chk_rcv,
64 .chk_snd = stream_int_chk_snd,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020065 .shutr = stream_int_shutr,
66 .shutw = stream_int_shutw,
Willy Tarreau5c979a92012-05-07 17:15:39 +020067};
68
Willy Tarreauc5788912012-08-24 18:12:41 +020069/* stream-interface operations for connections */
70struct si_ops si_conn_ops = {
71 .update = stream_int_update_conn,
72 .chk_rcv = stream_int_chk_rcv_conn,
73 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020074 .shutr = stream_int_shutr_conn,
75 .shutw = stream_int_shutw_conn,
Willy Tarreauc5788912012-08-24 18:12:41 +020076};
77
Willy Tarreaud45b9f82015-04-13 16:30:14 +020078/* stream-interface operations for connections */
79struct si_ops si_applet_ops = {
80 .update = stream_int_update_applet,
81 .chk_rcv = stream_int_chk_rcv_applet,
82 .chk_snd = stream_int_chk_snd_applet,
83 .shutr = stream_int_shutr_applet,
84 .shutw = stream_int_shutw_applet,
85};
86
Willy Tarreau74beec32012-10-03 00:41:04 +020087struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020088 .recv = si_conn_recv_cb,
89 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020090 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020091};
92
Willy Tarreau27375622013-12-17 00:00:28 +010093struct data_cb si_idle_conn_cb = {
94 .recv = si_idle_conn_null_cb,
95 .send = si_idle_conn_null_cb,
96 .wake = si_idle_conn_wake_cb,
97};
98
Willy Tarreaucff64112008-11-03 06:26:53 +010099/*
100 * This function only has to be called once after a wakeup event in case of
101 * suspected timeout. It controls the stream interface timeouts and sets
102 * si->flags accordingly. It does NOT close anything, as this timeout may
103 * be used for any purpose. It returns 1 if the timeout fired, otherwise
104 * zero.
105 */
106int stream_int_check_timeouts(struct stream_interface *si)
107{
108 if (tick_is_expired(si->exp, now_ms)) {
109 si->flags |= SI_FL_EXP;
110 return 1;
111 }
112 return 0;
113}
114
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100115/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +0100116void stream_int_report_error(struct stream_interface *si)
117{
118 if (!si->err_type)
119 si->err_type = SI_ET_DATA_ERR;
120
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100121 si_oc(si)->flags |= CF_WRITE_ERROR;
122 si_ic(si)->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100123}
124
125/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100126 * Returns a message to the client ; the connection is shut down for read,
127 * and the request is cleared so that no server connection can be initiated.
128 * The buffer is marked for read shutdown on the other side to protect the
129 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100130 * "chunk". If it is null, then an empty message is used. The reply buffer does
131 * not need to be empty before this, and its contents will not be overwritten.
132 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100133 */
134void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
135{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100136 struct channel *ic = si_ic(si);
137 struct channel *oc = si_oc(si);
138
139 channel_auto_read(ic);
140 channel_abort(ic);
141 channel_auto_close(ic);
142 channel_erase(ic);
143 channel_truncate(oc);
Willy Tarreau798e1282010-12-12 13:06:00 +0100144
Willy Tarreau148d0992010-01-10 10:21:21 +0100145 if (likely(msg && msg->len))
Willy Tarreauafc8a222014-11-28 15:46:27 +0100146 bo_inject(oc, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100147
Willy Tarreauafc8a222014-11-28 15:46:27 +0100148 oc->wex = tick_add_ifset(now_ms, oc->wto);
149 channel_auto_read(oc);
150 channel_auto_close(oc);
151 channel_shutr_now(oc);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100152}
153
Willy Tarreaufb90d942009-09-05 20:57:35 +0200154/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200155static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200156{
Willy Tarreau3488e252010-08-09 16:24:56 +0200157 int old_flags = si->flags;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100158 struct channel *ic = si_ic(si);
159 struct channel *oc = si_oc(si);
Willy Tarreau3488e252010-08-09 16:24:56 +0200160
Willy Tarreauafc8a222014-11-28 15:46:27 +0100161 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200162 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100163 si, si->state, ic->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200164
165 if (si->state != SI_ST_EST)
166 return;
167
Willy Tarreauafc8a222014-11-28 15:46:27 +0100168 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
169 channel_is_empty(oc))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200170 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200171
Willy Tarreauafc8a222014-11-28 15:46:27 +0100172 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200173 si->flags |= SI_FL_WAIT_DATA;
174
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200175 /* we're almost sure that we need some space if the buffer is not
176 * empty, even if it's not full, because the applets can't fill it.
177 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100178 if ((ic->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(ic))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200179 si->flags |= SI_FL_WAIT_ROOM;
180
Willy Tarreauafc8a222014-11-28 15:46:27 +0100181 if (oc->flags & CF_WRITE_ACTIVITY) {
182 if (tick_isset(oc->wex))
183 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200184 }
185
Willy Tarreauafc8a222014-11-28 15:46:27 +0100186 if (ic->flags & CF_READ_ACTIVITY ||
187 (oc->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
188 if (tick_isset(ic->rex))
189 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200190 }
191
Willy Tarreau3488e252010-08-09 16:24:56 +0200192 /* save flags to detect changes */
193 old_flags = si->flags;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100194 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
195 channel_may_recv(oc) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100196 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
197 si_chk_rcv(si_opposite(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200198
Willy Tarreauafc8a222014-11-28 15:46:27 +0100199 if (((ic->flags & CF_READ_PARTIAL) && !channel_is_empty(ic)) &&
200 (ic->pipe /* always try to send spliced data */ ||
201 (ic->buf->i == 0 && (si_opposite(si)->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100202 si_chk_snd(si_opposite(si));
Willy Tarreau3488e252010-08-09 16:24:56 +0200203 /* check if the consumer has freed some space */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100204 if (channel_may_recv(ic) && !ic->pipe)
Willy Tarreau3488e252010-08-09 16:24:56 +0200205 si->flags &= ~SI_FL_WAIT_ROOM;
206 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200207
208 /* Note that we're trying to wake up in two conditions here :
209 * - special event, which needs the holder task attention
210 * - status indicating that the applet can go on working. This
211 * is rather hard because we might be blocking on output and
212 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200213 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200214 */
215 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200216 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
217
218 /* changes on the production side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100219 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200220 si->state != SI_ST_EST ||
221 (si->flags & SI_FL_ERR) ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100222 ((ic->flags & CF_READ_PARTIAL) &&
223 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200224
225 /* changes on the consumption side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100226 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
227 ((oc->flags & CF_WRITE_ACTIVITY) &&
228 ((oc->flags & CF_SHUTW) ||
229 ((oc->flags & CF_WAKE_WRITE) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100230 (si_opposite(si)->state != SI_ST_EST ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100231 (channel_is_empty(oc) && !oc->to_forward)))))) {
Willy Tarreau07373b82014-11-28 12:08:47 +0100232 if (!(si->flags & SI_FL_DONT_WAKE))
233 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200234 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100235 if (ic->flags & CF_READ_ACTIVITY)
236 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200237}
238
Willy Tarreau4a36b562012-08-06 19:31:45 +0200239/*
Willy Tarreaud45b9f82015-04-13 16:30:14 +0200240 * This function performs a shutdown-read on a detached stream interface in a
241 * connected or init state (it does nothing for other states). It either shuts
242 * the read side or marks itself as closed. The buffer flags are updated to
243 * reflect the new state. If the stream interface has SI_FL_NOHALF, we also
244 * forward the close to the write side. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200245 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200246static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200247{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100248 struct channel *ic = si_ic(si);
249
250 ic->flags &= ~CF_SHUTR_NOW;
251 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200252 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100253 ic->flags |= CF_SHUTR;
254 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200255 si->flags &= ~SI_FL_WAIT_ROOM;
256
257 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200258 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200259
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100260 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200261 si->state = SI_ST_DIS;
262 si->exp = TICK_ETERNITY;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200263 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200264 else if (si->flags & SI_FL_NOHALF) {
265 /* we want to immediately forward this close to the write side */
266 return stream_int_shutw(si);
267 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200268
Willy Tarreau4a36b562012-08-06 19:31:45 +0200269 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100270 if (!(si->flags & SI_FL_DONT_WAKE))
271 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200272}
273
Willy Tarreau4a36b562012-08-06 19:31:45 +0200274/*
Willy Tarreaud45b9f82015-04-13 16:30:14 +0200275 * This function performs a shutdown-write on a detached stream interface in a
276 * connected or init state (it does nothing for other states). It either shuts
277 * the write side or marks itself as closed. The buffer flags are updated to
278 * reflect the new state. It does also close everything if the SI was marked as
279 * being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200280 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200281static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200282{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100283 struct channel *ic = si_ic(si);
284 struct channel *oc = si_oc(si);
285
286 oc->flags &= ~CF_SHUTW_NOW;
287 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200288 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100289 oc->flags |= CF_SHUTW;
290 oc->wex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200291 si->flags &= ~SI_FL_WAIT_DATA;
292
293 switch (si->state) {
294 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200295 /* we have to shut before closing, otherwise some short messages
296 * may never leave the system, especially when there are remaining
297 * unread data in the socket input buffer, or when nolinger is set.
298 * However, if SI_FL_NOLINGER is explicitly set, we know there is
299 * no risk so we close both sides immediately.
300 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200301 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
Willy Tarreauafc8a222014-11-28 15:46:27 +0100302 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200303 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200304
305 /* fall through */
306 case SI_ST_CON:
307 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100308 case SI_ST_QUE:
309 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200310 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200311 si->state = SI_ST_DIS;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200312 default:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200313 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100314 ic->flags &= ~CF_SHUTR_NOW;
315 ic->flags |= CF_SHUTR;
316 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200317 si->exp = TICK_ETERNITY;
318 }
319
Willy Tarreau4a36b562012-08-06 19:31:45 +0200320 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100321 if (!(si->flags & SI_FL_DONT_WAKE))
322 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200323}
324
325/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200326static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200327{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100328 struct channel *ic = si_ic(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200329
Willy Tarreauafc8a222014-11-28 15:46:27 +0100330 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200331 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100332 si, si->state, ic->flags, si_oc(si)->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200333
Willy Tarreauafc8a222014-11-28 15:46:27 +0100334 if (unlikely(si->state != SI_ST_EST || (ic->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200335 return;
336
Willy Tarreauafc8a222014-11-28 15:46:27 +0100337 if (!channel_may_recv(ic) || ic->pipe) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200338 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200339 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200340 }
341 else {
342 /* (re)start reading */
343 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau07373b82014-11-28 12:08:47 +0100344 if (!(si->flags & SI_FL_DONT_WAKE))
345 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200346 }
347}
348
349/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200350static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200351{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100352 struct channel *oc = si_oc(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200353
Willy Tarreauafc8a222014-11-28 15:46:27 +0100354 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200355 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100356 si, si->state, si_ic(si)->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200357
Willy Tarreauafc8a222014-11-28 15:46:27 +0100358 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200359 return;
360
361 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100362 channel_is_empty(oc)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200363 return;
364
365 /* Otherwise there are remaining data to be sent in the buffer,
366 * so we tell the handler.
367 */
368 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100369 if (!tick_isset(oc->wex))
370 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200371
Willy Tarreau07373b82014-11-28 12:08:47 +0100372 if (!(si->flags & SI_FL_DONT_WAKE))
373 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200374}
375
Willy Tarreaua9ff5e62015-07-19 18:46:30 +0200376/* Register an applet to handle a stream_interface as a new appctx. The SI will
377 * wake it up everytime it is solicited. The appctx must be deleted by the task
378 * handler using si_release_endpoint(), possibly from within the function itself.
379 * It also pre-initializes the applet's context and returns it (or NULL in case
380 * it could not be allocated).
Willy Tarreaufb90d942009-09-05 20:57:35 +0200381 */
Willy Tarreau30576452015-04-13 13:50:30 +0200382struct appctx *stream_int_register_handler(struct stream_interface *si, struct applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200383{
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100384 struct appctx *appctx;
385
Willy Tarreau07373b82014-11-28 12:08:47 +0100386 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si_task(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200387
Willy Tarreaua7513f52015-04-05 00:15:26 +0200388 appctx = si_alloc_appctx(si, app);
Willy Tarreaua69fc9f2014-12-22 19:34:00 +0100389 if (!appctx)
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100390 return NULL;
391
Willy Tarreaufe127932015-04-21 19:23:39 +0200392 si_applet_cant_get(si);
Willy Tarreau828824a2015-04-19 17:20:03 +0200393 appctx_wakeup(appctx);
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100394 return si_appctx(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200395}
396
Willy Tarreau2c6be842012-07-06 17:12:34 +0200397/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200398 * established. It returns 0 if it fails in a fatal way or needs to poll to go
399 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200400 * flags (the bit is provided in <flag> by the caller). It is designed to be
401 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200402 * Note that it can emit a PROXY line by relying on the other end's address
403 * when the connection is attached to a stream interface, or by resolving the
404 * local address otherwise (also called a LOCAL line).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200405 */
406int conn_si_send_proxy(struct connection *conn, unsigned int flag)
407{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200408 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200409 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200410 goto out_error;
411
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100412 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200413 goto out_error;
414
Willy Tarreau2c6be842012-07-06 17:12:34 +0200415 /* If we have a PROXY line to send, we'll use this to validate the
416 * connection, in which case the connection is validated only once
417 * we've sent the whole proxy line. Otherwise we use connect().
418 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200419 while (conn->send_proxy_ofs) {
Willy Tarreau2c6be842012-07-06 17:12:34 +0200420 int ret;
421
422 /* The target server expects a PROXY line to be sent first.
423 * If the send_proxy_ofs is negative, it corresponds to the
424 * offset to start sending from then end of the proxy string
425 * (which is recomputed every time since it's constant). If
426 * it is positive, it means we have to send from the start.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200427 * We can only send a "normal" PROXY line when the connection
428 * is attached to a stream interface. Otherwise we can only
429 * send a LOCAL line (eg: for use with health checks).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200430 */
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200431 if (conn->data == &si_conn_cb) {
432 struct stream_interface *si = conn->owner;
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100433 struct connection *remote = objt_conn(si_opposite(si)->end);
David Safb76832014-05-08 23:42:08 -0400434 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), remote);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200435 }
436 else {
437 /* The target server expects a LOCAL line to be sent first. Retrieving
438 * local or remote addresses may fail until the connection is established.
439 */
440 conn_get_from_addr(conn);
441 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
442 goto out_wait;
443
444 conn_get_to_addr(conn);
445 if (!(conn->flags & CO_FL_ADDR_TO_SET))
446 goto out_wait;
447
David Safb76832014-05-08 23:42:08 -0400448 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), conn);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200449 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200450
Willy Tarreau2c6be842012-07-06 17:12:34 +0200451 if (!ret)
452 goto out_error;
453
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200454 if (conn->send_proxy_ofs > 0)
455 conn->send_proxy_ofs = -ret; /* first call */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200456
Willy Tarreaua1a74742012-08-24 12:14:49 +0200457 /* we have to send trash from (ret+sp for -sp bytes). If the
458 * data layer has a pending write, we'll also set MSG_MORE.
459 */
Willy Tarreau0a03c0f2015-03-13 00:05:28 +0100460 ret = conn_sock_send(conn, trash.str + ret + conn->send_proxy_ofs, -conn->send_proxy_ofs,
461 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200462
Willy Tarreau0a03c0f2015-03-13 00:05:28 +0100463 if (ret < 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200464 goto out_error;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200465
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200466 conn->send_proxy_ofs += ret; /* becomes zero once complete */
467 if (conn->send_proxy_ofs != 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200468 goto out_wait;
469
470 /* OK we've sent the whole line, we're connected */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100471 break;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200472 }
473
Willy Tarreaua1a74742012-08-24 12:14:49 +0200474 /* The connection is ready now, simply return and let the connection
475 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200476 */
477 if (conn->flags & CO_FL_WAIT_L4_CONN)
478 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200479 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200480 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200481
482 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200483 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200484 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200485 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200486
487 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200488 __conn_sock_stop_recv(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200489 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200490}
491
Willy Tarreau27375622013-12-17 00:00:28 +0100492
493/* Tiny I/O callback called on recv/send I/O events on idle connections.
494 * It simply sets the CO_FL_SOCK_RD_SH flag so that si_idle_conn_wake_cb()
495 * is notified and can kill the connection.
496 */
497static void si_idle_conn_null_cb(struct connection *conn)
498{
Willy Tarreaud85c4852015-03-13 00:40:28 +0100499 conn_sock_drain(conn);
Willy Tarreau27375622013-12-17 00:00:28 +0100500}
501
502/* Callback to be used by connection I/O handlers when some activity is detected
503 * on an idle server connection. Its main purpose is to kill the connection once
504 * a close was detected on it. It returns 0 if it did nothing serious, or -1 if
505 * it killed the connection.
506 */
507static int si_idle_conn_wake_cb(struct connection *conn)
508{
509 struct stream_interface *si = conn->owner;
510
511 if (!conn_ctrl_ready(conn))
512 return 0;
513
514 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
515 /* warning, we can't do anything on <conn> after this call ! */
Willy Tarreauc4b56e42015-09-23 17:56:02 +0200516 si_release_endpoint(si);
Willy Tarreau27375622013-12-17 00:00:28 +0100517 return -1;
518 }
519 return 0;
520}
521
Willy Tarreau100c4672012-08-20 12:06:26 +0200522/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200523 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200524 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200525 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200526 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200527 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200528static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200529{
Willy Tarreaue603e692012-09-27 22:20:41 +0200530 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100531 struct channel *ic = si_ic(si);
532 struct channel *oc = si_oc(si);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200533
Willy Tarreauafc8a222014-11-28 15:46:27 +0100534 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufd31e532012-07-23 18:24:25 +0200535 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100536 si, si->state, ic->flags, oc->flags);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200537
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200538 if (conn->flags & CO_FL_ERROR)
539 si->flags |= SI_FL_ERR;
540
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200541 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200542 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200543 si->exp = TICK_ETERNITY;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100544 oc->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200545 }
546
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200547 /* process consumer side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100548 if (channel_is_empty(oc)) {
549 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200550 (si->state == SI_ST_EST))
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200551 stream_int_shutw_conn(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200552 __conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100553 oc->wex = TICK_ETERNITY;
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200554 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200555
Willy Tarreauafc8a222014-11-28 15:46:27 +0100556 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200557 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200558
Willy Tarreauafc8a222014-11-28 15:46:27 +0100559 if (oc->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200560 /* update timeouts if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100561 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
562 !channel_is_empty(oc))
563 if (tick_isset(oc->wex))
564 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200565
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200566 if (!(si->flags & SI_FL_INDEP_STR))
Willy Tarreauafc8a222014-11-28 15:46:27 +0100567 if (tick_isset(ic->rex))
568 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200569
Willy Tarreauafc8a222014-11-28 15:46:27 +0100570 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
571 channel_may_recv(oc) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100572 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
573 si_chk_rcv(si_opposite(si));
Willy Tarreaufd31e532012-07-23 18:24:25 +0200574 }
575
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200576 /* process producer side.
577 * We might have some data the consumer is waiting for.
578 * We can do fast-forwarding, but we avoid doing this for partial
579 * buffers, because it is very likely that it will be done again
580 * immediately afterwards once the following data is parsed (eg:
581 * HTTP chunking).
582 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100583 if (((ic->flags & CF_READ_PARTIAL) && !channel_is_empty(ic)) &&
584 (ic->pipe /* always try to send spliced data */ ||
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100585 (si_ib(si)->i == 0 && (si_opposite(si)->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100586 int last_len = ic->pipe ? ic->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200587
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100588 si_chk_snd(si_opposite(si));
Willy Tarreaufd31e532012-07-23 18:24:25 +0200589
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200590 /* check if the consumer has freed some space either in the
591 * buffer or in the pipe.
592 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100593 if (channel_may_recv(ic) &&
594 (!last_len || !ic->pipe || ic->pipe->data < last_len))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200595 si->flags &= ~SI_FL_WAIT_ROOM;
596 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200597
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200598 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200599 __conn_data_stop_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100600 ic->rex = TICK_ETERNITY;
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200601 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100602 else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
603 channel_may_recv(ic)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100604 /* we must re-enable reading if si_chk_snd() has freed some space */
605 __conn_data_want_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100606 if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex))
607 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200608 }
609
610 /* wake the task up only when needed */
611 if (/* changes on the production side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100612 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200613 si->state != SI_ST_EST ||
614 (si->flags & SI_FL_ERR) ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100615 ((ic->flags & CF_READ_PARTIAL) &&
616 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200617
618 /* changes on the consumption side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100619 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
620 ((oc->flags & CF_WRITE_ACTIVITY) &&
621 ((oc->flags & CF_SHUTW) ||
622 ((oc->flags & CF_WAKE_WRITE) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100623 (si_opposite(si)->state != SI_ST_EST ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100624 (channel_is_empty(oc) && !oc->to_forward)))))) {
Willy Tarreau07373b82014-11-28 12:08:47 +0100625 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200626 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100627 if (ic->flags & CF_READ_ACTIVITY)
628 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau10fc09e2014-11-25 19:46:36 +0100629
Willy Tarreau87b09662015-04-03 00:22:06 +0200630 stream_release_buffers(si_strm(si));
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200631 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200632}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200633
Willy Tarreau5368d802012-08-21 18:22:06 +0200634/*
635 * This function is called to send buffer data to a stream socket.
Godbache68e02d2013-10-11 15:48:29 +0800636 * It calls the transport layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800637 * caller to commit polling changes. The caller should check conn->flags
638 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200639 */
Godbach4f489902013-12-04 17:24:06 +0800640static void si_conn_send(struct connection *conn)
Willy Tarreau5368d802012-08-21 18:22:06 +0200641{
Willy Tarreaue603e692012-09-27 22:20:41 +0200642 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100643 struct channel *oc = si_oc(si);
Willy Tarreau5368d802012-08-21 18:22:06 +0200644 int ret;
645
Willy Tarreauafc8a222014-11-28 15:46:27 +0100646 if (oc->pipe && conn->xprt->snd_pipe) {
647 ret = conn->xprt->snd_pipe(conn, oc->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200648 if (ret > 0)
Willy Tarreauafc8a222014-11-28 15:46:27 +0100649 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200650
Willy Tarreauafc8a222014-11-28 15:46:27 +0100651 if (!oc->pipe->data) {
652 put_pipe(oc->pipe);
653 oc->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200654 }
655
Willy Tarreau96199b12012-08-24 00:46:52 +0200656 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +0800657 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200658 }
659
660 /* At this point, the pipe is empty, but we may still have data pending
661 * in the normal buffer.
662 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100663 if (!oc->buf->o)
Godbach4f489902013-12-04 17:24:06 +0800664 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200665
Godbache68e02d2013-10-11 15:48:29 +0800666 /* when we're here, we already know that there is no spliced
Willy Tarreau5368d802012-08-21 18:22:06 +0200667 * data left, and that there are sendable buffered data.
668 */
Willy Tarreau310987a2014-01-22 19:46:33 +0100669 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 +0200670 /* check if we want to inform the kernel that we're interested in
671 * sending more data after this call. We want this if :
672 * - we're about to close after this last send and want to merge
673 * the ongoing FIN with the last segment.
674 * - we know we can't send everything at once and must get back
675 * here because of unaligned data
676 * - there is still a finite amount of data to forward
677 * The test is arranged so that the most common case does only 2
678 * tests.
679 */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100680 unsigned int send_flag = 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200681
Willy Tarreauafc8a222014-11-28 15:46:27 +0100682 if ((!(oc->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
683 ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) ||
684 (oc->flags & CF_EXPECT_MORE))) ||
685 ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100686 send_flag |= CO_SFL_MSG_MORE;
Willy Tarreau5368d802012-08-21 18:22:06 +0200687
Willy Tarreauafc8a222014-11-28 15:46:27 +0100688 if (oc->flags & CF_STREAMER)
Willy Tarreau7bed9452014-02-02 02:00:24 +0100689 send_flag |= CO_SFL_STREAMER;
690
Willy Tarreauafc8a222014-11-28 15:46:27 +0100691 ret = conn->xprt->snd_buf(conn, oc->buf, send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800692 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100693 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200694
Willy Tarreauafc8a222014-11-28 15:46:27 +0100695 if (!oc->buf->o) {
Godbache68e02d2013-10-11 15:48:29 +0800696 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100697 oc->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Godbache68e02d2013-10-11 15:48:29 +0800698 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200699
Godbache68e02d2013-10-11 15:48:29 +0800700 /* if some data remain in the buffer, it's only because the
701 * system buffers are full, we will try next time.
702 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200703 }
Godbache68e02d2013-10-11 15:48:29 +0800704 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200705}
706
Willy Tarreau25f13102015-09-24 11:32:22 +0200707/* This function is designed to be called from within the stream handler to
708 * update the channels' expiration timers and the stream interface's flags
709 * based on the channels' flags. It needs to be called only once after the
710 * channels' flags have settled down, and before they are cleared, though it
711 * doesn't harm to call it as often as desired (it just slightly hurts
712 * performance). It must not be called from outside of the stream handler,
713 * as what it does will be used to compute the stream task's expiration.
714 */
715void stream_int_update(struct stream_interface *si)
716{
717 struct channel *ic = si_ic(si);
718 struct channel *oc = si_oc(si);
719
720 if (!(ic->flags & CF_SHUTR)) {
721 /* Read not closed, update FD status and timeout for reads */
722 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
723 /* stop reading */
724 if (!(si->flags & SI_FL_WAIT_ROOM)) {
725 if (!(ic->flags & CF_DONT_READ)) /* full */
726 si->flags |= SI_FL_WAIT_ROOM;
727 ic->rex = TICK_ETERNITY;
728 }
729 }
730 else {
731 /* (re)start reading and update timeout. Note: we don't recompute the timeout
732 * everytime we get here, otherwise it would risk never to expire. We only
733 * update it if is was not yet set. The stream socket handler will already
734 * have updated it if there has been a completed I/O.
735 */
736 si->flags &= ~SI_FL_WAIT_ROOM;
737 if (!(ic->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ic->rex))
738 ic->rex = tick_add_ifset(now_ms, ic->rto);
739 }
740 }
741
742 if (!(oc->flags & CF_SHUTW)) {
743 /* Write not closed, update FD status and timeout for writes */
744 if (channel_is_empty(oc)) {
745 /* stop writing */
746 if (!(si->flags & SI_FL_WAIT_DATA)) {
747 if ((oc->flags & CF_SHUTW_NOW) == 0)
748 si->flags |= SI_FL_WAIT_DATA;
749 oc->wex = TICK_ETERNITY;
750 }
751 }
752 else {
753 /* (re)start writing and update timeout. Note: we don't recompute the timeout
754 * everytime we get here, otherwise it would risk never to expire. We only
755 * update it if is was not yet set. The stream socket handler will already
756 * have updated it if there has been a completed I/O.
757 */
758 si->flags &= ~SI_FL_WAIT_DATA;
759 if (!tick_isset(oc->wex)) {
760 oc->wex = tick_add_ifset(now_ms, oc->wto);
761 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
762 /* Note: depending on the protocol, we don't know if we're waiting
763 * for incoming data or not. So in order to prevent the socket from
764 * expiring read timeouts during writes, we refresh the read timeout,
765 * except if it was already infinite or if we have explicitly setup
766 * independent streams.
767 */
768 ic->rex = tick_add_ifset(now_ms, ic->rto);
769 }
770 }
771 }
772 }
773}
774
Willy Tarreau452c7d52015-09-25 10:39:16 +0200775/* Updates the polling status of a connection outside of the connection handler
776 * based on the channel's flags and the stream interface's flags. It needs to be
777 * called once after the channels' flags have settled down and the stream has
778 * been updated. It is not designed to be called from within the connection
779 * handler itself.
Willy Tarreau100c4672012-08-20 12:06:26 +0200780 */
781void stream_int_update_conn(struct stream_interface *si)
782{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100783 struct channel *ic = si_ic(si);
784 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200785 struct connection *conn = __objt_conn(si->end);
Willy Tarreau100c4672012-08-20 12:06:26 +0200786
Willy Tarreau2f4e7022015-09-25 10:50:59 +0200787 if (!(ic->flags & CF_SHUTR)) {
788 /* Read not closed */
789 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic))
790 __conn_data_stop_recv(conn);
791 else
792 __conn_data_want_recv(conn);
793 }
794
795 if (!(oc->flags & CF_SHUTW)) {
796 /* Write not closed */
797 if (channel_is_empty(oc))
798 __conn_data_stop_send(conn);
799 else
800 __conn_data_want_send(conn);
801 }
802
803 conn_cond_update_data_polling(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200804}
805
806/*
807 * This function performs a shutdown-read on a stream interface attached to
808 * a connection in a connected or init state (it does nothing for other
809 * states). It either shuts the read side or marks itself as closed. The buffer
810 * flags are updated to reflect the new state. If the stream interface has
811 * SI_FL_NOHALF, we also forward the close to the write side. If a control
812 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200813 * descriptors are then shutdown or closed accordingly. The function
814 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200815 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200816static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200817{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200818 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100819 struct channel *ic = si_ic(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200820
Willy Tarreauafc8a222014-11-28 15:46:27 +0100821 ic->flags &= ~CF_SHUTR_NOW;
822 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200823 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100824 ic->flags |= CF_SHUTR;
825 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200826 si->flags &= ~SI_FL_WAIT_ROOM;
827
828 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200829 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200830
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100831 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200832 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200833 si->state = SI_ST_DIS;
834 si->exp = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200835 }
836 else if (si->flags & SI_FL_NOHALF) {
837 /* we want to immediately forward this close to the write side */
838 return stream_int_shutw_conn(si);
839 }
840 else if (conn->ctrl) {
841 /* we want the caller to disable polling on this FD */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200842 conn_data_stop_recv(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200843 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200844}
845
846/*
847 * This function performs a shutdown-write on a stream interface attached to
848 * a connection in a connected or init state (it does nothing for other
849 * states). It either shuts the write side or marks itself as closed. The
850 * buffer flags are updated to reflect the new state. It does also close
851 * everything if the SI was marked as being in error state. If there is a
Willy Tarreau1398aa12015-03-12 23:04:07 +0100852 * data-layer shutdown, it is called.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200853 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200854static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200855{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200856 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100857 struct channel *ic = si_ic(si);
858 struct channel *oc = si_oc(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200859
Willy Tarreauafc8a222014-11-28 15:46:27 +0100860 oc->flags &= ~CF_SHUTW_NOW;
861 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200862 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100863 oc->flags |= CF_SHUTW;
864 oc->wex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200865 si->flags &= ~SI_FL_WAIT_DATA;
866
867 switch (si->state) {
868 case SI_ST_EST:
869 /* we have to shut before closing, otherwise some short messages
870 * may never leave the system, especially when there are remaining
871 * unread data in the socket input buffer, or when nolinger is set.
872 * However, if SI_FL_NOLINGER is explicitly set, we know there is
873 * no risk so we close both sides immediately.
874 */
875 if (si->flags & SI_FL_ERR) {
876 /* quick close, the socket is alredy shut anyway */
877 }
878 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200879 /* unclean data-layer shutdown */
Willy Tarreau1398aa12015-03-12 23:04:07 +0100880 conn_data_shutw_hard(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200881 }
882 else {
883 /* clean data-layer shutdown */
Willy Tarreau1398aa12015-03-12 23:04:07 +0100884 conn_data_shutw(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200885
886 /* If the stream interface is configured to disable half-open
887 * connections, we'll skip the shutdown(), but only if the
888 * read size is already closed. Otherwise we can't support
889 * closed write with pending read (eg: abortonclose while
890 * waiting for the server).
891 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100892 if (!(si->flags & SI_FL_NOHALF) || !(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200893 /* We shutdown transport layer */
Willy Tarreau4dfd54f2015-03-12 22:44:53 +0100894 conn_sock_shutw(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200895
Willy Tarreauafc8a222014-11-28 15:46:27 +0100896 if (!(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200897 /* OK just a shutw, but we want the caller
898 * to disable polling on this FD if exists.
899 */
Willy Tarreau1398aa12015-03-12 23:04:07 +0100900 conn_cond_update_polling(conn);
Willy Tarreau6fe15412013-09-29 15:16:03 +0200901 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200902 }
903 }
904 }
905
906 /* fall through */
907 case SI_ST_CON:
908 /* we may have to close a pending connection, and mark the
909 * response buffer as shutr
910 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200911 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200912 /* fall through */
913 case SI_ST_CER:
914 case SI_ST_QUE:
915 case SI_ST_TAR:
916 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200917 /* fall through */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200918 default:
919 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100920 ic->flags &= ~CF_SHUTR_NOW;
921 ic->flags |= CF_SHUTR;
922 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200923 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200924 }
925}
926
Willy Tarreau46a8d922012-08-20 12:38:36 +0200927/* This function is used for inter-stream-interface calls. It is called by the
928 * consumer to inform the producer side that it may be interested in checking
929 * for free space in the buffer. Note that it intentionally does not update
930 * timeouts, so that we can still check them later at wake-up. This function is
931 * dedicated to connection-based stream interfaces.
932 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200933static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200934{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100935 struct channel *ic = si_ic(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200936 struct connection *conn = __objt_conn(si->end);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200937
Willy Tarreauafc8a222014-11-28 15:46:27 +0100938 if (unlikely(si->state > SI_ST_EST || (ic->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200939 return;
940
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200941 conn_refresh_polling_flags(conn);
Willy Tarreau7d281492012-12-16 19:19:13 +0100942
Willy Tarreauafc8a222014-11-28 15:46:27 +0100943 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200944 /* stop reading */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100945 if (!(ic->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200946 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200947 __conn_data_stop_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200948 }
949 else {
950 /* (re)start reading */
951 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200952 __conn_data_want_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200953 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200954 conn_cond_update_data_polling(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200955}
956
957
Willy Tarreaude5722c2012-08-20 15:01:10 +0200958/* This function is used for inter-stream-interface calls. It is called by the
959 * producer to inform the consumer side that it may be interested in checking
960 * for data in the buffer. Note that it intentionally does not update timeouts,
961 * so that we can still check them later at wake-up.
962 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200963static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200964{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100965 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200966 struct connection *conn = __objt_conn(si->end);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200967
Willy Tarreauafc8a222014-11-28 15:46:27 +0100968 if (unlikely(si->state > SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200969 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200970
Willy Tarreauafc8a222014-11-28 15:46:27 +0100971 if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200972 return;
973
Willy Tarreauafc8a222014-11-28 15:46:27 +0100974 if (!oc->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100975 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200976 return;
977
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200978 if (conn->flags & (CO_FL_DATA_WR_ENA|CO_FL_CURR_WR_ENA)) {
Willy Tarreau5007d2a2013-07-18 22:09:48 +0200979 /* already subscribed to write notifications, will be called
980 * anyway, so let's avoid calling it especially if the reader
981 * is not ready.
982 */
983 return;
984 }
985
Willy Tarreau708e7172014-01-21 10:27:49 +0100986 /* Before calling the data-level operations, we have to prepare
987 * the polling flags to ensure we properly detect changes.
988 */
989 conn_refresh_polling_flags(conn);
990 __conn_data_want_send(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100991
Willy Tarreau708e7172014-01-21 10:27:49 +0100992 if (!(conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200993 si_conn_send(conn);
Willy Tarreau798c3c92014-01-21 10:30:08 +0100994 if (conn->flags & CO_FL_ERROR) {
Willy Tarreaud29a0662012-12-10 16:33:38 +0100995 /* Write error on the file descriptor */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200996 __conn_data_stop_both(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100997 si->flags |= SI_FL_ERR;
Willy Tarreaud29a0662012-12-10 16:33:38 +0100998 goto out_wakeup;
999 }
Willy Tarreaude5722c2012-08-20 15:01:10 +02001000 }
1001
1002 /* OK, so now we know that some data might have been sent, and that we may
1003 * have to poll first. We have to do that too if the buffer is not empty.
1004 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001005 if (channel_is_empty(oc)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001006 /* the connection is established but we can't write. Either the
1007 * buffer is empty, or we just refrain from sending because the
1008 * ->o limit was reached. Maybe we just wrote the last
1009 * chunk and need to close.
1010 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001011 __conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001012 if (((oc->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001013 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +02001014 (si->state == SI_ST_EST)) {
1015 si_shutw(si);
1016 goto out_wakeup;
1017 }
1018
Willy Tarreauafc8a222014-11-28 15:46:27 +01001019 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +02001020 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001021 oc->wex = TICK_ETERNITY;
Willy Tarreaude5722c2012-08-20 15:01:10 +02001022 }
1023 else {
1024 /* Otherwise there are remaining data to be sent in the buffer,
1025 * which means we have to poll before doing so.
1026 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001027 __conn_data_want_send(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001028 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001029 if (!tick_isset(oc->wex))
1030 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001031 }
1032
Willy Tarreauafc8a222014-11-28 15:46:27 +01001033 if (likely(oc->flags & CF_WRITE_ACTIVITY)) {
1034 struct channel *ic = si_ic(si);
1035
Willy Tarreaude5722c2012-08-20 15:01:10 +02001036 /* update timeout if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001037 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
1038 !channel_is_empty(oc))
1039 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001040
Willy Tarreauafc8a222014-11-28 15:46:27 +01001041 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001042 /* Note: to prevent the client from expiring read timeouts
1043 * during writes, we refresh it. We only do this if the
1044 * interface is not configured for "independent streams",
1045 * because for some applications it's better not to do this,
1046 * for instance when continuously exchanging small amounts
1047 * of data which can full the socket buffers long before a
1048 * write timeout is detected.
1049 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001050 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001051 }
1052 }
1053
1054 /* in case of special condition (error, shutdown, end of write...), we
1055 * have to notify the task.
1056 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001057 if (likely((oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
1058 ((oc->flags & CF_WAKE_WRITE) &&
1059 ((channel_is_empty(oc) && !oc->to_forward) ||
Willy Tarreaue6300be2014-01-25 02:33:21 +01001060 si->state != SI_ST_EST)))) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001061 out_wakeup:
Willy Tarreau07373b82014-11-28 12:08:47 +01001062 if (!(si->flags & SI_FL_DONT_WAKE))
1063 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001064 }
Willy Tarreauf16723e2012-08-24 12:52:22 +02001065
1066 /* commit possible polling changes */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001067 conn_cond_update_polling(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001068}
1069
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001070/*
Willy Tarreauce323de2012-08-20 21:41:06 +02001071 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001072 * into the buffer from the connection. It iterates over the transport layer's
1073 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +02001074 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001075static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +02001076{
Willy Tarreaue603e692012-09-27 22:20:41 +02001077 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001078 struct channel *ic = si_ic(si);
Willy Tarreauce323de2012-08-20 21:41:06 +02001079 int ret, max, cur_read;
1080 int read_poll = MAX_READ_POLL_LOOPS;
1081
1082 /* stop immediately on errors. Note that we DON'T want to stop on
1083 * POLL_ERR, as the poller might report a write error while there
1084 * are still data available in the recv buffer. This typically
1085 * happens when we send too large a request to a backend server
1086 * which rejects it before reading it all.
1087 */
1088 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001089 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001090
1091 /* stop here if we reached the end of data */
1092 if (conn_data_read0_pending(conn))
1093 goto out_shutdown_r;
1094
1095 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001096 if (ic->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +02001097 return;
1098
Willy Tarreau96199b12012-08-24 00:46:52 +02001099 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +02001100
Willy Tarreauafc8a222014-11-28 15:46:27 +01001101 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !ic->buf->o &&
Willy Tarreau7e312732014-02-12 16:35:14 +01001102 global.tune.idle_timer &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001103 (unsigned short)(now_ms - ic->last_read) >= global.tune.idle_timer) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001104 /* The buffer was empty and nothing was transferred for more
1105 * than one second. This was caused by a pause and not by
1106 * congestion. Reset any streaming mode to reduce latency.
1107 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001108 ic->xfer_small = 0;
1109 ic->xfer_large = 0;
1110 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001111 }
1112
Willy Tarreau96199b12012-08-24 00:46:52 +02001113 /* First, let's see if we may splice data across the channel without
1114 * using a buffer.
1115 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001116 if (conn->xprt->rcv_pipe &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001117 (ic->pipe || ic->to_forward >= MIN_SPLICE_FORWARD) &&
1118 ic->flags & CF_KERN_SPLICING) {
1119 if (buffer_not_empty(ic->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001120 /* We're embarrassed, there are already data pending in
1121 * the buffer and we don't want to have them at two
1122 * locations at a time. Let's indicate we need some
1123 * place and ask the consumer to hurry.
1124 */
1125 goto abort_splice;
1126 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001127
Willy Tarreauafc8a222014-11-28 15:46:27 +01001128 if (unlikely(ic->pipe == NULL)) {
1129 if (pipes_used >= global.maxpipes || !(ic->pipe = get_pipe())) {
1130 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001131 goto abort_splice;
1132 }
1133 }
1134
Willy Tarreauafc8a222014-11-28 15:46:27 +01001135 ret = conn->xprt->rcv_pipe(conn, ic->pipe, ic->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001136 if (ret < 0) {
1137 /* splice not supported on this end, let's disable it */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001138 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001139 goto abort_splice;
1140 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001141
Willy Tarreau96199b12012-08-24 00:46:52 +02001142 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001143 if (ic->to_forward != CHN_INFINITE_FORWARD)
1144 ic->to_forward -= ret;
1145 ic->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001146 cur_read += ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001147 ic->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001148 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001149
1150 if (conn_data_read0_pending(conn))
1151 goto out_shutdown_r;
1152
1153 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001154 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001155
Willy Tarreau61d39a02013-07-18 21:49:32 +02001156 if (conn->flags & CO_FL_WAIT_ROOM) {
1157 /* the pipe is full or we have read enough data that it
1158 * could soon be full. Let's stop before needing to poll.
1159 */
Willy Tarreau56a77e52012-09-02 18:34:44 +02001160 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001161 __conn_data_stop_recv(conn);
1162 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001163
Willy Tarreauce323de2012-08-20 21:41:06 +02001164 /* splice not possible (anymore), let's go on on standard copy */
1165 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001166
1167 abort_splice:
Willy Tarreauafc8a222014-11-28 15:46:27 +01001168 if (ic->pipe && unlikely(!ic->pipe->data)) {
1169 put_pipe(ic->pipe);
1170 ic->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001171 }
1172
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001173 /* now we'll need a buffer */
Willy Tarreau87b09662015-04-03 00:22:06 +02001174 if (!stream_alloc_recv_buffer(ic)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001175 si->flags |= SI_FL_WAIT_ROOM;
1176 goto end_recv;
1177 }
1178
Willy Tarreau61d39a02013-07-18 21:49:32 +02001179 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1180 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1181 * that if such an event is not handled above in splice, it will be handled here by
1182 * recv().
1183 */
Willy Tarreau310987a2014-01-22 19:46:33 +01001184 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 +01001185 max = channel_recv_max(ic);
Willy Tarreauce323de2012-08-20 21:41:06 +02001186
1187 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001188 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001189 break;
1190 }
1191
Willy Tarreauafc8a222014-11-28 15:46:27 +01001192 ret = conn->xprt->rcv_buf(conn, ic->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001193 if (ret <= 0)
1194 break;
1195
1196 cur_read += ret;
1197
1198 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001199 if (ic->to_forward && !(ic->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001200 unsigned long fwd = ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001201 if (ic->to_forward != CHN_INFINITE_FORWARD) {
1202 if (fwd > ic->to_forward)
1203 fwd = ic->to_forward;
1204 ic->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001205 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001206 b_adv(ic->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001207 }
1208
Willy Tarreauafc8a222014-11-28 15:46:27 +01001209 ic->flags |= CF_READ_PARTIAL;
1210 ic->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001211
Willy Tarreauafc8a222014-11-28 15:46:27 +01001212 if (!channel_may_recv(ic)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001213 si->flags |= SI_FL_WAIT_ROOM;
1214 break;
1215 }
1216
Willy Tarreauafc8a222014-11-28 15:46:27 +01001217 if ((ic->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreau34ac5662012-12-19 18:01:02 +01001218 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud486ef52012-12-10 17:03:52 +01001219 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001220 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001221 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001222
1223 /* if too many bytes were missing from last read, it means that
1224 * it's pointless trying to read again because the system does
1225 * not have them in buffers.
1226 */
1227 if (ret < max) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001228 /* if a streamer has read few data, it may be because we
1229 * have exhausted system buffers. It's not worth trying
1230 * again.
1231 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001232 if (ic->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001233 break;
1234
1235 /* if we read a large block smaller than what we requested,
1236 * it's almost certain we'll never get anything more.
1237 */
1238 if (ret >= global.tune.recv_enough)
1239 break;
1240 }
1241 } /* while !flags */
1242
Willy Tarreauc5890e62014-02-09 17:47:01 +01001243 if (cur_read) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001244 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
1245 (cur_read <= ic->buf->size / 2)) {
1246 ic->xfer_large = 0;
1247 ic->xfer_small++;
1248 if (ic->xfer_small >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001249 /* we have read less than half of the buffer in
1250 * one pass, and this happened at least 3 times.
1251 * This is definitely not a streamer.
1252 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001253 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001254 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001255 else if (ic->xfer_small >= 2) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001256 /* if the buffer has been at least half full twice,
1257 * we receive faster than we send, so at least it
1258 * is not a "fast streamer".
1259 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001260 ic->flags &= ~CF_STREAMER_FAST;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001261 }
1262 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001263 else if (!(ic->flags & CF_STREAMER_FAST) &&
1264 (cur_read >= ic->buf->size - global.tune.maxrewrite)) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001265 /* we read a full buffer at once */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001266 ic->xfer_small = 0;
1267 ic->xfer_large++;
1268 if (ic->xfer_large >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001269 /* we call this buffer a fast streamer if it manages
1270 * to be filled in one call 3 consecutive times.
1271 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001272 ic->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001273 }
1274 }
1275 else {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001276 ic->xfer_small = 0;
1277 ic->xfer_large = 0;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001278 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001279 ic->last_read = now_ms;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001280 }
1281
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001282 end_recv:
1283 if (conn->flags & CO_FL_ERROR)
1284 return;
1285
Willy Tarreauce323de2012-08-20 21:41:06 +02001286 if (conn_data_read0_pending(conn))
1287 /* connection closed */
1288 goto out_shutdown_r;
1289
1290 return;
1291
1292 out_shutdown_r:
1293 /* we received a shutdown */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001294 ic->flags |= CF_READ_NULL;
1295 if (ic->flags & CF_AUTO_CLOSE)
1296 channel_shutw_now(ic);
Willy Tarreauce323de2012-08-20 21:41:06 +02001297 stream_sock_read0(si);
1298 conn_data_read0(conn);
1299 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001300}
1301
1302/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001303 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001304 * from the buffer to the connection. It iterates over the transport layer's
1305 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001306 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001307static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001308{
Willy Tarreaue603e692012-09-27 22:20:41 +02001309 struct stream_interface *si = conn->owner;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001310
1311 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001312 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001313
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001314 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001315 /* a handshake was requested */
1316 return;
1317
1318 /* we might have been called just after an asynchronous shutw */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001319 if (si_oc(si)->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001320 return;
1321
1322 /* OK there are data waiting to be sent */
Godbach4f489902013-12-04 17:24:06 +08001323 si_conn_send(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001324
1325 /* OK all done */
1326 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001327}
1328
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001329/*
1330 * This function propagates a null read received on a socket-based connection.
1331 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
Willy Tarreau11405122015-03-12 22:32:27 +01001332 * the close is also forwarded to the write side as an abort.
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001333 */
1334void stream_sock_read0(struct stream_interface *si)
1335{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001336 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001337 struct channel *ic = si_ic(si);
1338 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001339
Willy Tarreauafc8a222014-11-28 15:46:27 +01001340 ic->flags &= ~CF_SHUTR_NOW;
1341 if (ic->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001342 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001343 ic->flags |= CF_SHUTR;
1344 ic->rex = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001345 si->flags &= ~SI_FL_WAIT_ROOM;
1346
1347 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1348 return;
1349
Willy Tarreauafc8a222014-11-28 15:46:27 +01001350 if (oc->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001351 goto do_close;
1352
1353 if (si->flags & SI_FL_NOHALF) {
1354 /* we want to immediately forward this close to the write side */
Willy Tarreau87b09662015-04-03 00:22:06 +02001355 /* force flag on ssl to keep stream in cache */
Willy Tarreau1398aa12015-03-12 23:04:07 +01001356 conn_data_shutw_hard(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001357 goto do_close;
1358 }
1359
1360 /* otherwise that's just a normal read shutdown */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001361 __conn_data_stop_recv(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001362 return;
1363
1364 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001365 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001366 conn_full_close(conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001367
Willy Tarreauafc8a222014-11-28 15:46:27 +01001368 ic->flags &= ~CF_SHUTR_NOW;
1369 ic->flags |= CF_SHUTR;
1370 ic->rex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001371
Willy Tarreauafc8a222014-11-28 15:46:27 +01001372 oc->flags &= ~CF_SHUTW_NOW;
1373 oc->flags |= CF_SHUTW;
1374 oc->wex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001375
1376 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1377
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001378 si->state = SI_ST_DIS;
1379 si->exp = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001380 return;
1381}
1382
Willy Tarreaue5f86492015-04-19 15:16:35 +02001383/* notifies the stream interface that the applet has completed its work */
1384void si_applet_done(struct stream_interface *si)
1385{
1386 struct channel *ic = si_ic(si);
1387 struct channel *oc = si_oc(si);
1388
1389 /* process consumer side */
1390 if (channel_is_empty(oc)) {
1391 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
1392 (si->state == SI_ST_EST))
1393 stream_int_shutw_applet(si);
1394 oc->wex = TICK_ETERNITY;
1395 }
1396
1397 /* indicate that we may be waiting for data from the output channel */
1398 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
1399 si->flags |= SI_FL_WAIT_DATA;
1400
1401 /* update OC timeouts and wake the other side up if it's waiting for room */
1402 if (oc->flags & CF_WRITE_ACTIVITY) {
1403 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
1404 !channel_is_empty(oc))
1405 if (tick_isset(oc->wex))
1406 oc->wex = tick_add_ifset(now_ms, oc->wto);
1407
1408 if (!(si->flags & SI_FL_INDEP_STR))
1409 if (tick_isset(ic->rex))
1410 ic->rex = tick_add_ifset(now_ms, ic->rto);
1411
1412 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
1413 channel_may_recv(oc) &&
1414 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
1415 si_chk_rcv(si_opposite(si));
1416 }
1417
1418 /* Notify the other side when we've injected data into the IC that
1419 * needs to be forwarded. We can do fast-forwarding as soon as there
1420 * are output data, but we avoid doing this for partial buffers,
1421 * because it is very likely that it will be done again immediately
1422 * afterwards once the following data are parsed (eg: HTTP chunking).
1423 * We only remove SI_FL_WAIT_ROOM once we've emptied the whole output
1424 * buffer, because applets are often forced to stop before the buffer
1425 * is full. We must not stop based on input data alone because an HTTP
1426 * parser might need more data to complete the parsing.
1427 */
1428 if (!channel_is_empty(ic) &&
1429 (si_opposite(si)->flags & SI_FL_WAIT_DATA) &&
1430 (si_ib(si)->i == 0 || ic->pipe)) {
1431 si_chk_snd(si_opposite(si));
1432 if (channel_is_empty(ic))
1433 si->flags &= ~SI_FL_WAIT_ROOM;
1434 }
1435
1436 if (si->flags & SI_FL_WAIT_ROOM) {
1437 ic->rex = TICK_ETERNITY;
1438 }
1439 else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
1440 channel_may_recv(ic)) {
1441 /* we must re-enable reading if si_chk_snd() has freed some space */
1442 if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex))
1443 ic->rex = tick_add_ifset(now_ms, ic->rto);
1444 }
1445
Willy Tarreaue5f86492015-04-19 15:16:35 +02001446 /* wake the task up only when needed */
1447 if (/* changes on the production side */
1448 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
1449 si->state != SI_ST_EST ||
1450 (si->flags & SI_FL_ERR) ||
1451 ((ic->flags & CF_READ_PARTIAL) &&
1452 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
1453
1454 /* changes on the consumption side */
1455 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
1456 ((oc->flags & CF_WRITE_ACTIVITY) &&
1457 ((oc->flags & CF_SHUTW) ||
1458 ((oc->flags & CF_WAKE_WRITE) &&
1459 (si_opposite(si)->state != SI_ST_EST ||
1460 (channel_is_empty(oc) && !oc->to_forward)))))) {
1461 task_wakeup(si_task(si), TASK_WOKEN_IO);
1462 }
Willy Tarreau388a2382015-09-23 19:55:42 +02001463
Willy Tarreaue5f86492015-04-19 15:16:35 +02001464 if (ic->flags & CF_READ_ACTIVITY)
1465 ic->flags &= ~CF_READ_DONTWAIT;
1466
1467 stream_release_buffers(si_strm(si));
Willy Tarreau388a2382015-09-23 19:55:42 +02001468
1469 /* Get away from the active list if we can't work anymore.
1470 * We also do that if the main task has already scheduled, because it
1471 * saves a useless wakeup/pause/wakeup cycle causing one useless call
1472 * per session on average.
1473 */
1474 if (task_in_rq(si_task(si)) ||
1475 (((si->flags & (SI_FL_WANT_PUT|SI_FL_WAIT_ROOM)) != SI_FL_WANT_PUT) &&
1476 ((si->flags & (SI_FL_WANT_GET|SI_FL_WAIT_DATA)) != SI_FL_WANT_GET)))
1477 appctx_pause(si_appctx(si));
Willy Tarreaue5f86492015-04-19 15:16:35 +02001478}
1479
Willy Tarreau452c7d52015-09-25 10:39:16 +02001480
1481/* Updates the activity status of an applet outside of the applet handler based
1482 * on the channel's flags and the stream interface's flags. It needs to be
1483 * called once after the channels' flags have settled down and the stream has
1484 * been updated. It is not designed to be called from within the applet handler
1485 * itself.
Willy Tarreau563cc372015-04-19 18:13:56 +02001486 */
1487void stream_int_update_applet(struct stream_interface *si)
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001488{
Willy Tarreaufe127932015-04-21 19:23:39 +02001489 if (((si->flags & (SI_FL_WANT_PUT|SI_FL_WAIT_ROOM)) == SI_FL_WANT_PUT) ||
1490 ((si->flags & (SI_FL_WANT_GET|SI_FL_WAIT_DATA)) == SI_FL_WANT_GET))
Willy Tarreau563cc372015-04-19 18:13:56 +02001491 appctx_wakeup(si_appctx(si));
Willy Tarreaufe127932015-04-21 19:23:39 +02001492 else
1493 appctx_pause(si_appctx(si));
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001494}
1495
1496/*
1497 * This function performs a shutdown-read on a stream interface attached to an
1498 * applet in a connected or init state (it does nothing for other states). It
1499 * either shuts the read side or marks itself as closed. The buffer flags are
1500 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
1501 * we also forward the close to the write side. The owner task is woken up if
1502 * it exists.
1503 */
1504static void stream_int_shutr_applet(struct stream_interface *si)
1505{
1506 struct channel *ic = si_ic(si);
1507
1508 ic->flags &= ~CF_SHUTR_NOW;
1509 if (ic->flags & CF_SHUTR)
1510 return;
1511 ic->flags |= CF_SHUTR;
1512 ic->rex = TICK_ETERNITY;
1513 si->flags &= ~SI_FL_WAIT_ROOM;
1514
Willy Tarreau828824a2015-04-19 17:20:03 +02001515 /* Note: on shutr, we don't call the applet */
1516
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001517 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1518 return;
1519
1520 if (si_oc(si)->flags & CF_SHUTW) {
1521 si->state = SI_ST_DIS;
1522 si->exp = TICK_ETERNITY;
1523 si_applet_release(si);
1524 }
1525 else if (si->flags & SI_FL_NOHALF) {
1526 /* we want to immediately forward this close to the write side */
1527 return stream_int_shutw_applet(si);
1528 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001529}
1530
1531/*
1532 * This function performs a shutdown-write on a stream interface attached to an
1533 * applet in a connected or init state (it does nothing for other states). It
1534 * either shuts the write side or marks itself as closed. The buffer flags are
1535 * updated to reflect the new state. It does also close everything if the SI
1536 * was marked as being in error state. The owner task is woken up if it exists.
1537 */
1538static void stream_int_shutw_applet(struct stream_interface *si)
1539{
1540 struct channel *ic = si_ic(si);
1541 struct channel *oc = si_oc(si);
1542
1543 oc->flags &= ~CF_SHUTW_NOW;
1544 if (oc->flags & CF_SHUTW)
1545 return;
1546 oc->flags |= CF_SHUTW;
1547 oc->wex = TICK_ETERNITY;
1548 si->flags &= ~SI_FL_WAIT_DATA;
1549
Willy Tarreau828824a2015-04-19 17:20:03 +02001550 /* on shutw we always wake the applet up */
1551 appctx_wakeup(si_appctx(si));
1552
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001553 switch (si->state) {
1554 case SI_ST_EST:
1555 /* we have to shut before closing, otherwise some short messages
1556 * may never leave the system, especially when there are remaining
1557 * unread data in the socket input buffer, or when nolinger is set.
1558 * However, if SI_FL_NOLINGER is explicitly set, we know there is
1559 * no risk so we close both sides immediately.
1560 */
1561 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
1562 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
1563 return;
1564
1565 /* fall through */
1566 case SI_ST_CON:
1567 case SI_ST_CER:
1568 case SI_ST_QUE:
1569 case SI_ST_TAR:
1570 /* Note that none of these states may happen with applets */
1571 si->state = SI_ST_DIS;
1572 si_applet_release(si);
1573 default:
1574 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
1575 ic->flags &= ~CF_SHUTR_NOW;
1576 ic->flags |= CF_SHUTR;
1577 ic->rex = TICK_ETERNITY;
1578 si->exp = TICK_ETERNITY;
1579 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001580}
1581
1582/* chk_rcv function for applets */
1583static void stream_int_chk_rcv_applet(struct stream_interface *si)
1584{
1585 struct channel *ic = si_ic(si);
1586
1587 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
1588 __FUNCTION__,
1589 si, si->state, ic->flags, si_oc(si)->flags);
1590
1591 if (unlikely(si->state != SI_ST_EST || (ic->flags & (CF_SHUTR|CF_DONT_READ))))
1592 return;
Willy Tarreau828824a2015-04-19 17:20:03 +02001593 /* here we only wake the applet up if it was waiting for some room */
1594 if (!(si->flags & SI_FL_WAIT_ROOM))
1595 return;
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001596
Willy Tarreau828824a2015-04-19 17:20:03 +02001597 if (channel_may_recv(ic) && !ic->pipe) {
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001598 /* (re)start reading */
Willy Tarreau828824a2015-04-19 17:20:03 +02001599 appctx_wakeup(si_appctx(si));
Thierry FOURNIER5bc2cbf2015-09-04 18:40:36 +02001600 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001601}
1602
1603/* chk_snd function for applets */
1604static void stream_int_chk_snd_applet(struct stream_interface *si)
1605{
1606 struct channel *oc = si_oc(si);
1607
1608 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
1609 __FUNCTION__,
1610 si, si->state, si_ic(si)->flags, oc->flags);
1611
1612 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
1613 return;
1614
Willy Tarreau828824a2015-04-19 17:20:03 +02001615 /* we only wake the applet up if it was waiting for some data */
1616
1617 if (!(si->flags & SI_FL_WAIT_DATA))
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001618 return;
1619
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001620 if (!tick_isset(oc->wex))
1621 oc->wex = tick_add_ifset(now_ms, oc->wto);
1622
Willy Tarreau828824a2015-04-19 17:20:03 +02001623 if (!channel_is_empty(oc)) {
1624 /* (re)start sending */
1625 appctx_wakeup(si_appctx(si));
1626 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001627}
1628
Willy Tarreaudded32d2008-11-30 19:48:07 +01001629/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001630 * Local variables:
1631 * c-indent-level: 8
1632 * c-basic-offset: 8
1633 * End:
1634 */