blob: 481938f8ac89efab600745b019ee10489b307dc1 [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>
Olivier Houcharda254a372019-04-05 15:30:12 +020033#include <proto/http_htx.h>
Olivier Houchard9aaf7782017-09-13 18:30:23 +020034#include <proto/mux_pt.h>
Willy Tarreau96199b12012-08-24 00:46:52 +020035#include <proto/pipe.h>
Olivier Houcharda254a372019-04-05 15:30:12 +020036#include <proto/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020037#include <proto/stream.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020038#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010039#include <proto/task.h>
40
Willy Tarreaufd31e532012-07-23 18:24:25 +020041#include <types/pipe.h>
42
Willy Tarreau14bfe9a2018-12-19 15:19:27 +010043/* functions used by default on a detached stream-interface */
Willy Tarreau6fe15412013-09-29 15:16:03 +020044static void stream_int_shutr(struct stream_interface *si);
45static void stream_int_shutw(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020046static void stream_int_chk_rcv(struct stream_interface *si);
47static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +010048
49/* functions used on a conn_stream-based stream-interface */
Willy Tarreau6fe15412013-09-29 15:16:03 +020050static void stream_int_shutr_conn(struct stream_interface *si);
51static void stream_int_shutw_conn(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020052static void stream_int_chk_rcv_conn(struct stream_interface *si);
53static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +010054
55/* functions used on an applet-based stream-interface */
Willy Tarreaud45b9f82015-04-13 16:30:14 +020056static void stream_int_shutr_applet(struct stream_interface *si);
57static void stream_int_shutw_applet(struct stream_interface *si);
58static void stream_int_chk_rcv_applet(struct stream_interface *si);
59static void stream_int_chk_snd_applet(struct stream_interface *si);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +010060
61/* last read notification */
62static void stream_int_read0(struct stream_interface *si);
63
64/* post-IO notification callback */
65static void stream_int_notify(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020066
Willy Tarreauc5788912012-08-24 18:12:41 +020067/* stream-interface operations for embedded tasks */
68struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020069 .chk_rcv = stream_int_chk_rcv,
70 .chk_snd = stream_int_chk_snd,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020071 .shutr = stream_int_shutr,
72 .shutw = stream_int_shutw,
Willy Tarreau5c979a92012-05-07 17:15:39 +020073};
74
Willy Tarreauc5788912012-08-24 18:12:41 +020075/* stream-interface operations for connections */
76struct si_ops si_conn_ops = {
Willy Tarreauc5788912012-08-24 18:12:41 +020077 .chk_rcv = stream_int_chk_rcv_conn,
78 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020079 .shutr = stream_int_shutr_conn,
80 .shutw = stream_int_shutw_conn,
Willy Tarreauc5788912012-08-24 18:12:41 +020081};
82
Willy Tarreaud45b9f82015-04-13 16:30:14 +020083/* stream-interface operations for connections */
84struct si_ops si_applet_ops = {
Willy Tarreaud45b9f82015-04-13 16:30:14 +020085 .chk_rcv = stream_int_chk_rcv_applet,
86 .chk_snd = stream_int_chk_snd_applet,
87 .shutr = stream_int_shutr_applet,
88 .shutw = stream_int_shutw_applet,
89};
90
Willy Tarreau14bfe9a2018-12-19 15:19:27 +010091
92/* Functions used to communicate with a conn_stream. The first two may be used
93 * directly, the last one is mostly a wake callback.
94 */
95int si_cs_recv(struct conn_stream *cs);
96int si_cs_send(struct conn_stream *cs);
97static int si_cs_process(struct conn_stream *cs);
98
99
Willy Tarreau74beec32012-10-03 00:41:04 +0200100struct data_cb si_conn_cb = {
Olivier Houchard21df6cc2018-09-14 23:21:44 +0200101 .wake = si_cs_process,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +0100102 .name = "STRM",
Willy Tarreauc5788912012-08-24 18:12:41 +0200103};
104
Willy Tarreaucff64112008-11-03 06:26:53 +0100105/*
106 * This function only has to be called once after a wakeup event in case of
107 * suspected timeout. It controls the stream interface timeouts and sets
108 * si->flags accordingly. It does NOT close anything, as this timeout may
109 * be used for any purpose. It returns 1 if the timeout fired, otherwise
110 * zero.
111 */
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100112int si_check_timeouts(struct stream_interface *si)
Willy Tarreaucff64112008-11-03 06:26:53 +0100113{
114 if (tick_is_expired(si->exp, now_ms)) {
115 si->flags |= SI_FL_EXP;
116 return 1;
117 }
118 return 0;
119}
120
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100121/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100122void si_report_error(struct stream_interface *si)
Willy Tarreaucff64112008-11-03 06:26:53 +0100123{
124 if (!si->err_type)
125 si->err_type = SI_ET_DATA_ERR;
126
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100127 si_oc(si)->flags |= CF_WRITE_ERROR;
128 si_ic(si)->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100129}
130
131/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100132 * Returns a message to the client ; the connection is shut down for read,
133 * and the request is cleared so that no server connection can be initiated.
134 * The buffer is marked for read shutdown on the other side to protect the
135 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100136 * "chunk". If it is null, then an empty message is used. The reply buffer does
137 * not need to be empty before this, and its contents will not be overwritten.
138 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100139 */
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100140void si_retnclose(struct stream_interface *si,
Willy Tarreau83061a82018-07-13 11:56:34 +0200141 const struct buffer *msg)
Willy Tarreaudded32d2008-11-30 19:48:07 +0100142{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100143 struct channel *ic = si_ic(si);
144 struct channel *oc = si_oc(si);
145
146 channel_auto_read(ic);
147 channel_abort(ic);
148 channel_auto_close(ic);
149 channel_erase(ic);
150 channel_truncate(oc);
Willy Tarreau798e1282010-12-12 13:06:00 +0100151
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200152 if (likely(msg && msg->data))
153 co_inject(oc, msg->area, msg->data);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100154
Willy Tarreauafc8a222014-11-28 15:46:27 +0100155 oc->wex = tick_add_ifset(now_ms, oc->wto);
156 channel_auto_read(oc);
157 channel_auto_close(oc);
158 channel_shutr_now(oc);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100159}
160
Willy Tarreau4a36b562012-08-06 19:31:45 +0200161/*
Willy Tarreaud45b9f82015-04-13 16:30:14 +0200162 * This function performs a shutdown-read on a detached stream interface in a
163 * connected or init state (it does nothing for other states). It either shuts
164 * the read side or marks itself as closed. The buffer flags are updated to
165 * reflect the new state. If the stream interface has SI_FL_NOHALF, we also
166 * forward the close to the write side. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200167 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200168static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200169{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100170 struct channel *ic = si_ic(si);
171
Willy Tarreauabb5d422018-11-14 16:58:52 +0100172 si_rx_shut_blk(si);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100173 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200174 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100175 ic->flags |= CF_SHUTR;
176 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200177
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200178 if (!si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200179 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200180
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100181 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200182 si->state = SI_ST_DIS;
183 si->exp = TICK_ETERNITY;
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200184 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200185 else if (si->flags & SI_FL_NOHALF) {
186 /* we want to immediately forward this close to the write side */
187 return stream_int_shutw(si);
188 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200189
Willy Tarreau4a36b562012-08-06 19:31:45 +0200190 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100191 if (!(si->flags & SI_FL_DONT_WAKE))
192 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200193}
194
Willy Tarreau4a36b562012-08-06 19:31:45 +0200195/*
Willy Tarreaud45b9f82015-04-13 16:30:14 +0200196 * This function performs a shutdown-write on a detached stream interface in a
197 * connected or init state (it does nothing for other states). It either shuts
198 * the write side or marks itself as closed. The buffer flags are updated to
199 * reflect the new state. It does also close everything if the SI was marked as
200 * being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200201 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200202static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200203{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100204 struct channel *ic = si_ic(si);
205 struct channel *oc = si_oc(si);
206
207 oc->flags &= ~CF_SHUTW_NOW;
208 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200209 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100210 oc->flags |= CF_SHUTW;
211 oc->wex = TICK_ETERNITY;
Willy Tarreau43e69dc2018-11-06 19:23:03 +0100212 si_done_get(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200213
Hongbo Longe39683c2017-03-10 18:41:51 +0100214 if (tick_isset(si->hcto)) {
215 ic->rto = si->hcto;
216 ic->rex = tick_add(now_ms, ic->rto);
217 }
218
Willy Tarreaufb90d942009-09-05 20:57:35 +0200219 switch (si->state) {
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200220 case SI_ST_RDY:
Willy Tarreaufb90d942009-09-05 20:57:35 +0200221 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200222 /* we have to shut before closing, otherwise some short messages
223 * may never leave the system, especially when there are remaining
224 * unread data in the socket input buffer, or when nolinger is set.
225 * However, if SI_FL_NOLINGER is explicitly set, we know there is
226 * no risk so we close both sides immediately.
227 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200228 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
Willy Tarreauafc8a222014-11-28 15:46:27 +0100229 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200230 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200231
232 /* fall through */
233 case SI_ST_CON:
234 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100235 case SI_ST_QUE:
236 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200237 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200238 si->state = SI_ST_DIS;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200239 default:
Willy Tarreauabb5d422018-11-14 16:58:52 +0100240 si->flags &= ~SI_FL_NOLINGER;
241 si_rx_shut_blk(si);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100242 ic->flags |= CF_SHUTR;
243 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200244 si->exp = TICK_ETERNITY;
245 }
246
Willy Tarreau4a36b562012-08-06 19:31:45 +0200247 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100248 if (!(si->flags & SI_FL_DONT_WAKE))
249 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200250}
251
252/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200253static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200254{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100255 struct channel *ic = si_ic(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200256
Willy Tarreauafc8a222014-11-28 15:46:27 +0100257 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200258 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100259 si, si->state, ic->flags, si_oc(si)->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200260
Christopher Fauletb3e0de42018-10-11 13:54:13 +0200261 if (ic->pipe) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200262 /* stop reading */
Willy Tarreaudb398432018-11-15 11:08:52 +0100263 si_rx_room_blk(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200264 }
265 else {
266 /* (re)start reading */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200267 tasklet_wakeup(si->wait_event.tasklet);
Willy Tarreau07373b82014-11-28 12:08:47 +0100268 if (!(si->flags & SI_FL_DONT_WAKE))
269 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200270 }
271}
272
273/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200274static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200275{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100276 struct channel *oc = si_oc(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200277
Willy Tarreauafc8a222014-11-28 15:46:27 +0100278 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200279 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100280 si, si->state, si_ic(si)->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200281
Willy Tarreauafc8a222014-11-28 15:46:27 +0100282 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200283 return;
284
285 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100286 channel_is_empty(oc)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200287 return;
288
289 /* Otherwise there are remaining data to be sent in the buffer,
290 * so we tell the handler.
291 */
292 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100293 if (!tick_isset(oc->wex))
294 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200295
Willy Tarreau07373b82014-11-28 12:08:47 +0100296 if (!(si->flags & SI_FL_DONT_WAKE))
297 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200298}
299
Willy Tarreaua9ff5e62015-07-19 18:46:30 +0200300/* Register an applet to handle a stream_interface as a new appctx. The SI will
301 * wake it up everytime it is solicited. The appctx must be deleted by the task
302 * handler using si_release_endpoint(), possibly from within the function itself.
303 * It also pre-initializes the applet's context and returns it (or NULL in case
304 * it could not be allocated).
Willy Tarreaufb90d942009-09-05 20:57:35 +0200305 */
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100306struct appctx *si_register_handler(struct stream_interface *si, struct applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200307{
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100308 struct appctx *appctx;
309
Willy Tarreau07373b82014-11-28 12:08:47 +0100310 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si_task(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200311
Willy Tarreaua7513f52015-04-05 00:15:26 +0200312 appctx = si_alloc_appctx(si, app);
Willy Tarreaua69fc9f2014-12-22 19:34:00 +0100313 if (!appctx)
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100314 return NULL;
315
Willy Tarreau0cd3bd62018-11-06 18:46:37 +0100316 si_cant_get(si);
Willy Tarreau828824a2015-04-19 17:20:03 +0200317 appctx_wakeup(appctx);
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100318 return si_appctx(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200319}
320
Willy Tarreau2c6be842012-07-06 17:12:34 +0200321/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200322 * established. It returns 0 if it fails in a fatal way or needs to poll to go
323 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200324 * flags (the bit is provided in <flag> by the caller). It is designed to be
325 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200326 * Note that it can emit a PROXY line by relying on the other end's address
327 * when the connection is attached to a stream interface, or by resolving the
328 * local address otherwise (also called a LOCAL line).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200329 */
330int conn_si_send_proxy(struct connection *conn, unsigned int flag)
331{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200332 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200333 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200334 goto out_error;
335
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100336 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200337 goto out_error;
338
Willy Tarreau2c6be842012-07-06 17:12:34 +0200339 /* If we have a PROXY line to send, we'll use this to validate the
340 * connection, in which case the connection is validated only once
341 * we've sent the whole proxy line. Otherwise we use connect().
342 */
Tim Duesterhus36839dc2019-02-26 17:09:51 +0100343 if (conn->send_proxy_ofs) {
Willy Tarreau6b1379f2018-11-18 21:38:19 +0100344 const struct conn_stream *cs;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200345 int ret;
346
Willy Tarreau6b1379f2018-11-18 21:38:19 +0100347 cs = cs_get_first(conn);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200348 /* The target server expects a PROXY line to be sent first.
349 * If the send_proxy_ofs is negative, it corresponds to the
350 * offset to start sending from then end of the proxy string
351 * (which is recomputed every time since it's constant). If
352 * it is positive, it means we have to send from the start.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200353 * We can only send a "normal" PROXY line when the connection
354 * is attached to a stream interface. Otherwise we can only
355 * send a LOCAL line (eg: for use with health checks).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200356 */
Willy Tarreau6b1379f2018-11-18 21:38:19 +0100357
358 if (cs && cs->data_cb == &si_conn_cb) {
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200359 struct stream_interface *si = cs->data;
360 struct conn_stream *remote_cs = objt_cs(si_opposite(si)->end);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200361 ret = make_proxy_line(trash.area, trash.size,
362 objt_server(conn->target),
363 remote_cs ? remote_cs->conn : NULL);
Olivier Houchard661167d2019-05-29 17:08:03 +0200364 /* We may not have a conn_stream yet, if we don't
365 * know which mux to use, because it will be decided
366 * during the SSL handshake. In this case, there should
367 * be a session associated to the connection in
368 * conn->owner, and we know it is the session that
369 * initiated that connection, so we can just use
370 * its origin, which should contain the client
371 * connection.
372 */
373 } else if (!cs && conn->owner) {
374 struct session *sess = conn->owner;
375
376 ret = make_proxy_line(trash.area, trash.size,
377 objt_server(conn->target),
378 objt_conn(sess->origin));
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200379 }
380 else {
381 /* The target server expects a LOCAL line to be sent first. Retrieving
382 * local or remote addresses may fail until the connection is established.
383 */
384 conn_get_from_addr(conn);
385 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
386 goto out_wait;
387
388 conn_get_to_addr(conn);
389 if (!(conn->flags & CO_FL_ADDR_TO_SET))
390 goto out_wait;
391
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200392 ret = make_proxy_line(trash.area, trash.size,
393 objt_server(conn->target), conn);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200394 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200395
Willy Tarreau2c6be842012-07-06 17:12:34 +0200396 if (!ret)
397 goto out_error;
398
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200399 if (conn->send_proxy_ofs > 0)
400 conn->send_proxy_ofs = -ret; /* first call */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200401
Willy Tarreaua1a74742012-08-24 12:14:49 +0200402 /* we have to send trash from (ret+sp for -sp bytes). If the
403 * data layer has a pending write, we'll also set MSG_MORE.
404 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200405 ret = conn_sock_send(conn,
406 trash.area + ret + conn->send_proxy_ofs,
407 -conn->send_proxy_ofs,
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200408 (conn->flags & CO_FL_XPRT_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200409
Willy Tarreau0a03c0f2015-03-13 00:05:28 +0100410 if (ret < 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200411 goto out_error;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200412
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200413 conn->send_proxy_ofs += ret; /* becomes zero once complete */
414 if (conn->send_proxy_ofs != 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200415 goto out_wait;
416
417 /* OK we've sent the whole line, we're connected */
418 }
419
Willy Tarreaua1a74742012-08-24 12:14:49 +0200420 /* The connection is ready now, simply return and let the connection
421 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200422 */
423 if (conn->flags & CO_FL_WAIT_L4_CONN)
424 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200425 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200426 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200427
428 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200429 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200430 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200431 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200432
433 out_wait:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200434 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200435}
436
Willy Tarreau27375622013-12-17 00:00:28 +0100437
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100438/* This function is the equivalent to si_update() except that it's
Willy Tarreau615f28b2015-09-23 18:40:09 +0200439 * designed to be called from outside the stream handlers, typically the lower
440 * layers (applets, connections) after I/O completion. After updating the stream
441 * interface and timeouts, it will try to forward what can be forwarded, then to
442 * wake the associated task up if an important event requires special handling.
Willy Tarreaud0f5bbc2018-11-14 11:10:26 +0100443 * It may update SI_FL_WAIT_DATA and/or SI_FL_RXBLK_ROOM, that the callers are
Willy Tarreau0dfccb22018-10-25 13:55:20 +0200444 * encouraged to watch to take appropriate action.
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100445 * It should not be called from within the stream itself, si_update()
Willy Tarreau615f28b2015-09-23 18:40:09 +0200446 * is designed for this.
447 */
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100448static void stream_int_notify(struct stream_interface *si)
Willy Tarreau615f28b2015-09-23 18:40:09 +0200449{
450 struct channel *ic = si_ic(si);
451 struct channel *oc = si_oc(si);
Willy Tarreau47baeb82018-11-15 07:46:57 +0100452 struct stream_interface *sio = si_opposite(si);
Christopher Fauletd7607de2019-01-03 16:24:54 +0100453 struct task *task = si_task(si);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200454
455 /* process consumer side */
456 if (channel_is_empty(oc)) {
Olivier Houcharde9bed532017-11-16 17:49:25 +0100457 struct connection *conn = objt_cs(si->end) ? objt_cs(si->end)->conn : NULL;
458
Willy Tarreau615f28b2015-09-23 18:40:09 +0200459 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Olivier Houcharde9bed532017-11-16 17:49:25 +0100460 (si->state == SI_ST_EST) && (!conn || !(conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS))))
Willy Tarreau615f28b2015-09-23 18:40:09 +0200461 si_shutw(si);
462 oc->wex = TICK_ETERNITY;
463 }
464
Willy Tarreau8cf9c8e2016-12-13 15:21:25 +0100465 /* indicate that we may be waiting for data from the output channel or
466 * we're about to close and can't expect more data if SHUTW_NOW is there.
467 */
Christopher Fauletb3e0de42018-10-11 13:54:13 +0200468 if (!(oc->flags & (CF_SHUTW|CF_SHUTW_NOW)))
Willy Tarreau615f28b2015-09-23 18:40:09 +0200469 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau8cf9c8e2016-12-13 15:21:25 +0100470 else if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW)
471 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau615f28b2015-09-23 18:40:09 +0200472
473 /* update OC timeouts and wake the other side up if it's waiting for room */
474 if (oc->flags & CF_WRITE_ACTIVITY) {
475 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
476 !channel_is_empty(oc))
477 if (tick_isset(oc->wex))
478 oc->wex = tick_add_ifset(now_ms, oc->wto);
479
480 if (!(si->flags & SI_FL_INDEP_STR))
481 if (tick_isset(ic->rex))
482 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreauf26c26c2018-11-12 16:11:08 +0100483 }
Willy Tarreau615f28b2015-09-23 18:40:09 +0200484
Willy Tarreau47baeb82018-11-15 07:46:57 +0100485 if ((sio->flags & SI_FL_RXBLK_ROOM) &&
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100486 ((oc->flags & CF_WRITE_PARTIAL) || channel_is_empty(oc)))
Willy Tarreaudb398432018-11-15 11:08:52 +0100487 si_rx_room_rdy(sio);
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100488
489 if (oc->flags & CF_DONT_READ)
490 si_rx_chan_blk(sio);
491 else
492 si_rx_chan_rdy(sio);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200493
494 /* Notify the other side when we've injected data into the IC that
495 * needs to be forwarded. We can do fast-forwarding as soon as there
496 * are output data, but we avoid doing this if some of the data are
497 * not yet scheduled for being forwarded, because it is very likely
498 * that it will be done again immediately afterwards once the following
Willy Tarreaud0f5bbc2018-11-14 11:10:26 +0100499 * data are parsed (eg: HTTP chunking). We only SI_FL_RXBLK_ROOM once
Willy Tarreau615f28b2015-09-23 18:40:09 +0200500 * we've emptied *some* of the output buffer, and not just when there
501 * is available room, because applets are often forced to stop before
502 * the buffer is full. We must not stop based on input data alone because
503 * an HTTP parser might need more data to complete the parsing.
504 */
505 if (!channel_is_empty(ic) &&
Willy Tarreau47baeb82018-11-15 07:46:57 +0100506 (sio->flags & SI_FL_WAIT_DATA) &&
Willy Tarreau89b6a2b2018-11-18 15:46:10 +0100507 (!(ic->flags & CF_EXPECT_MORE) || c_full(ic) || ci_data(ic) == 0 || ic->pipe)) {
Willy Tarreau615f28b2015-09-23 18:40:09 +0200508 int new_len, last_len;
509
Willy Tarreau77e478c2018-06-19 07:03:14 +0200510 last_len = co_data(ic);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200511 if (ic->pipe)
512 last_len += ic->pipe->data;
513
Willy Tarreau47baeb82018-11-15 07:46:57 +0100514 si_chk_snd(sio);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200515
Willy Tarreau77e478c2018-06-19 07:03:14 +0200516 new_len = co_data(ic);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200517 if (ic->pipe)
518 new_len += ic->pipe->data;
519
520 /* check if the consumer has freed some space either in the
521 * buffer or in the pipe.
522 */
Willy Tarreau47baeb82018-11-15 07:46:57 +0100523 if (new_len < last_len)
Willy Tarreaudb398432018-11-15 11:08:52 +0100524 si_rx_room_rdy(si);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200525 }
526
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100527 if (!(ic->flags & CF_DONT_READ))
528 si_rx_chan_rdy(si);
529
Willy Tarreau47baeb82018-11-15 07:46:57 +0100530 si_chk_rcv(si);
531 si_chk_rcv(sio);
532
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100533 if (si_rx_blocked(si)) {
Willy Tarreau615f28b2015-09-23 18:40:09 +0200534 ic->rex = TICK_ETERNITY;
535 }
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100536 else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL)) == CF_READ_PARTIAL) {
Willy Tarreau615f28b2015-09-23 18:40:09 +0200537 /* we must re-enable reading if si_chk_snd() has freed some space */
538 if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex))
539 ic->rex = tick_add_ifset(now_ms, ic->rto);
540 }
541
542 /* wake the task up only when needed */
543 if (/* changes on the production side */
544 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200545 !si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST) ||
Willy Tarreau615f28b2015-09-23 18:40:09 +0200546 (si->flags & SI_FL_ERR) ||
547 ((ic->flags & CF_READ_PARTIAL) &&
Christopher Faulet297d3e22019-03-22 14:16:14 +0100548 ((ic->flags & CF_EOI) || !ic->to_forward || sio->state != SI_ST_EST)) ||
Willy Tarreau615f28b2015-09-23 18:40:09 +0200549
550 /* changes on the consumption side */
551 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
Willy Tarreauede3d882018-10-24 17:17:56 +0200552 ((oc->flags & CF_WRITE_ACTIVITY) &&
Willy Tarreau615f28b2015-09-23 18:40:09 +0200553 ((oc->flags & CF_SHUTW) ||
Willy Tarreau78f5ff82018-12-19 11:00:00 +0100554 (((oc->flags & CF_WAKE_WRITE) ||
555 !(oc->flags & (CF_AUTO_CLOSE|CF_SHUTW_NOW|CF_SHUTW))) &&
Willy Tarreau47baeb82018-11-15 07:46:57 +0100556 (sio->state != SI_ST_EST ||
Willy Tarreau615f28b2015-09-23 18:40:09 +0200557 (channel_is_empty(oc) && !oc->to_forward)))))) {
Christopher Fauletd7607de2019-01-03 16:24:54 +0100558 task_wakeup(task, TASK_WOKEN_IO);
559 }
560 else {
561 /* Update expiration date for the task and requeue it */
562 task->expire = tick_first((tick_is_expired(task->expire, now_ms) ? 0 : task->expire),
563 tick_first(tick_first(ic->rex, ic->wex),
564 tick_first(oc->rex, oc->wex)));
565 task_queue(task);
Willy Tarreau615f28b2015-09-23 18:40:09 +0200566 }
567 if (ic->flags & CF_READ_ACTIVITY)
568 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau615f28b2015-09-23 18:40:09 +0200569}
570
571
Olivier Houchardc2aa7112018-09-11 18:27:21 +0200572/* Called by I/O handlers after completion.. It propagates
Willy Tarreau651e1822015-09-23 20:06:13 +0200573 * connection flags to the stream interface, updates the stream (which may or
574 * may not take this opportunity to try to forward data), then update the
575 * connection's polling based on the channels and stream interface's final
576 * states. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200577 */
Olivier Houchardc2aa7112018-09-11 18:27:21 +0200578static int si_cs_process(struct conn_stream *cs)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200579{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200580 struct connection *conn = cs->conn;
581 struct stream_interface *si = cs->data;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100582 struct channel *ic = si_ic(si);
583 struct channel *oc = si_oc(si);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200584
Olivier Houchardc7ffa912018-08-28 19:37:41 +0200585 /* If we have data to send, try it now */
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100586 if (!channel_is_empty(oc) && !(si->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau908d26f2018-10-25 14:02:47 +0200587 si_cs_send(cs);
588
Willy Tarreau651e1822015-09-23 20:06:13 +0200589 /* First step, report to the stream-int what was detected at the
590 * connection layer : errors and connection establishment.
Olivier Houchard6187cc32019-06-24 16:08:08 +0200591 * Only add SI_FL_ERR if we're connected, or we're attempting to
592 * connect, we may get there because we got woken up, but only run
593 * after process_stream() noticed there were an error, and decided
594 * to retry to connect, the connection may still have CO_FL_ERROR,
595 * and we don't want to add SI_FL_ERR back
Willy Tarreau651e1822015-09-23 20:06:13 +0200596 */
Olivier Houchard6187cc32019-06-24 16:08:08 +0200597 if (si->state >= SI_ST_CON &&
598 (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR))
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200599 si->flags |= SI_FL_ERR;
600
Olivier Houchardccaa7de2017-10-02 11:51:03 +0200601 /* If we had early data, and the handshake ended, then
602 * we can remove the flag, and attempt to wake the task up,
603 * in the event there's an analyser waiting for the end of
604 * the handshake.
605 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +0100606 if (!(conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS)) &&
607 (cs->flags & CS_FL_WAIT_FOR_HS)) {
608 cs->flags &= ~CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +0200609 task_wakeup(si_task(si), TASK_WOKEN_MSG);
610 }
611
Willy Tarreau7ab22adb2019-06-05 14:53:22 +0200612 if (!si_state_in(si->state, SI_SB_EST|SI_SB_DIS|SI_SB_CLO) &&
Willy Tarreau52821e22017-03-18 17:11:37 +0100613 (conn->flags & (CO_FL_CONNECTED | CO_FL_HANDSHAKE)) == CO_FL_CONNECTED) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200614 si->exp = TICK_ETERNITY;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100615 oc->flags |= CF_WRITE_NULL;
Willy Tarreaub27f54a2019-06-05 16:43:44 +0200616 if (si->state == SI_ST_CON)
617 si->state = SI_ST_RDY;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200618 }
619
Christopher Faulet297d3e22019-03-22 14:16:14 +0100620 /* Report EOI on the channel if it was reached from the mux point of
621 * view. */
622 if ((cs->flags & CS_FL_EOI) && !(ic->flags & CF_EOI))
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +0200623 ic->flags |= (CF_EOI|CF_READ_PARTIAL);
Christopher Faulet203b2b02019-03-08 09:23:46 +0100624
Willy Tarreau651e1822015-09-23 20:06:13 +0200625 /* Second step : update the stream-int and channels, try to forward any
626 * pending data, then possibly wake the stream up based on the new
627 * stream-int status.
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200628 */
Willy Tarreau651e1822015-09-23 20:06:13 +0200629 stream_int_notify(si);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100630 channel_release_buffer(ic, &(si_strm(si)->buffer_wait));
Willy Tarreauea3cc482015-09-23 19:37:00 +0200631
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200632 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200633}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200634
Willy Tarreau5368d802012-08-21 18:22:06 +0200635/*
636 * This function is called to send buffer data to a stream socket.
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200637 * It calls the mux layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800638 * caller to commit polling changes. The caller should check conn->flags
639 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200640 */
Olivier Houchard0e367bb2018-09-14 19:41:13 +0200641int si_cs_send(struct conn_stream *cs)
Willy Tarreau5368d802012-08-21 18:22:06 +0200642{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200643 struct connection *conn = cs->conn;
644 struct stream_interface *si = cs->data;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100645 struct channel *oc = si_oc(si);
Willy Tarreau5368d802012-08-21 18:22:06 +0200646 int ret;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200647 int did_send = 0;
648
649 /* We're already waiting to be able to send, give up */
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100650 if (si->wait_event.events & SUB_RETRY_SEND)
Olivier Houchardf6535282018-08-31 17:29:12 +0200651 return 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200652
Willy Tarreaubddf7fc2018-12-19 17:17:10 +0100653 if (conn->flags & CO_FL_ERROR || cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING)) {
Olivier Houchard6187cc32019-06-24 16:08:08 +0200654 /* We're probably there because the tasklet was woken up,
655 * but process_stream() ran before, detected there were an
656 * error and put the si back to SI_ST_TAR. There's still
657 * CO_FL_ERROR on the connection but we don't want to add
658 * SI_FL_ERR back, so give up
659 */
660 if (si->state < SI_ST_CON)
661 return 0;
Willy Tarreaubddf7fc2018-12-19 17:17:10 +0100662 si->flags |= SI_FL_ERR;
Olivier Houchardc2aa7112018-09-11 18:27:21 +0200663 return 1;
Willy Tarreaubddf7fc2018-12-19 17:17:10 +0100664 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200665
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200666 /* we might have been called just after an asynchronous shutw */
Christopher Faulet55dec0d2018-11-20 10:30:02 +0100667 if (conn->flags & CO_FL_SOCK_WR_SH || oc->flags & CF_SHUTW)
Olivier Houchardc2aa7112018-09-11 18:27:21 +0200668 return 1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200669
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200670 if (oc->pipe && conn->xprt->snd_pipe && conn->mux->snd_pipe) {
671 ret = conn->mux->snd_pipe(cs, oc->pipe);
Christopher Faulet0059e992019-07-05 11:49:11 +0200672 if (ret > 0)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200673 did_send = 1;
Willy Tarreau5368d802012-08-21 18:22:06 +0200674
Willy Tarreauafc8a222014-11-28 15:46:27 +0100675 if (!oc->pipe->data) {
676 put_pipe(oc->pipe);
677 oc->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200678 }
679
Christopher Faulet3f76f4c2018-11-20 10:21:08 +0100680 if (oc->pipe)
681 goto end;
Willy Tarreau5368d802012-08-21 18:22:06 +0200682 }
683
684 /* At this point, the pipe is empty, but we may still have data pending
685 * in the normal buffer.
686 */
Christopher Faulet55dec0d2018-11-20 10:30:02 +0100687 if (co_data(oc)) {
688 /* when we're here, we already know that there is no spliced
689 * data left, and that there are sendable buffered data.
690 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200691
Willy Tarreau5368d802012-08-21 18:22:06 +0200692 /* check if we want to inform the kernel that we're interested in
693 * sending more data after this call. We want this if :
694 * - we're about to close after this last send and want to merge
695 * the ongoing FIN with the last segment.
696 * - we know we can't send everything at once and must get back
697 * here because of unaligned data
698 * - there is still a finite amount of data to forward
699 * The test is arranged so that the most common case does only 2
700 * tests.
701 */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100702 unsigned int send_flag = 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200703
Willy Tarreauafc8a222014-11-28 15:46:27 +0100704 if ((!(oc->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
705 ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) ||
Willy Tarreau4ac49282017-10-17 16:33:46 +0200706 (oc->flags & CF_EXPECT_MORE))) ||
Willy Tarreauecd2e152017-11-07 15:07:25 +0100707 ((oc->flags & CF_ISRESP) &&
708 ((oc->flags & (CF_AUTO_CLOSE|CF_SHUTW_NOW)) == (CF_AUTO_CLOSE|CF_SHUTW_NOW))))
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100709 send_flag |= CO_SFL_MSG_MORE;
Willy Tarreau5368d802012-08-21 18:22:06 +0200710
Willy Tarreauafc8a222014-11-28 15:46:27 +0100711 if (oc->flags & CF_STREAMER)
Willy Tarreau7bed9452014-02-02 02:00:24 +0100712 send_flag |= CO_SFL_STREAMER;
713
Olivier Houcharda254a372019-04-05 15:30:12 +0200714 if ((si->flags & SI_FL_L7_RETRY) && !b_data(&si->l7_buffer)) {
Olivier Houchardce1a0292019-05-17 15:38:29 +0200715 struct stream *s = si_strm(si);
Olivier Houcharda254a372019-04-05 15:30:12 +0200716 /* If we want to be able to do L7 retries, copy
717 * the data we're about to send, so that we are able
718 * to resend them if needed
719 */
720 /* Try to allocate a buffer if we had none.
721 * If it fails, the next test will just
722 * disable the l7 retries by setting
723 * l7_conn_retries to 0.
724 */
Olivier Houchardce1a0292019-05-17 15:38:29 +0200725 if (!s->txn || (s->txn->req.msg_state != HTTP_MSG_DONE))
Olivier Houcharda254a372019-04-05 15:30:12 +0200726 si->flags &= ~SI_FL_L7_RETRY;
727 else {
728 if (b_is_null(&si->l7_buffer))
729 b_alloc(&si->l7_buffer);
730 if (b_is_null(&si->l7_buffer))
731 si->flags &= ~SI_FL_L7_RETRY;
732 else {
733 memcpy(b_orig(&si->l7_buffer),
734 b_orig(&oc->buf),
735 b_size(&oc->buf));
736 si->l7_buffer.head = co_data(oc);
737 b_add(&si->l7_buffer, co_data(oc));
738 }
739
740 }
741 }
742
Olivier Houcharded0f2072018-08-16 15:41:52 +0200743 ret = cs->conn->mux->snd_buf(cs, &oc->buf, co_data(oc), send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800744 if (ret > 0) {
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200745 did_send = 1;
Willy Tarreau77e478c2018-06-19 07:03:14 +0200746 co_set_data(oc, co_data(oc) - ret);
Willy Tarreaudeccd112018-06-14 18:38:55 +0200747 c_realign_if_empty(oc);
748
749 if (!co_data(oc)) {
Godbache68e02d2013-10-11 15:48:29 +0800750 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100751 oc->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Godbache68e02d2013-10-11 15:48:29 +0800752 }
Godbache68e02d2013-10-11 15:48:29 +0800753 /* if some data remain in the buffer, it's only because the
754 * system buffers are full, we will try next time.
755 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200756 }
Godbache68e02d2013-10-11 15:48:29 +0800757 }
Christopher Faulet55dec0d2018-11-20 10:30:02 +0100758
Willy Tarreauf6975aa2018-11-15 14:33:05 +0100759 end:
Christopher Faulet0059e992019-07-05 11:49:11 +0200760 if (did_send) {
761 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
762 if (si->state == SI_ST_CON)
763 si->state = SI_ST_RDY;
764 }
765
766 if (conn->flags & CO_FL_ERROR || cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING)) {
767 si->flags |= SI_FL_ERR;
768 return 1;
769 }
770
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200771 /* We couldn't send all of our data, let the mux know we'd like to send more */
Willy Tarreau691fe392018-11-12 18:48:52 +0100772 if (!channel_is_empty(oc))
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100773 conn->mux->subscribe(cs, SUB_RETRY_SEND, &si->wait_event);
Olivier Houchardf6535282018-08-31 17:29:12 +0200774 return did_send;
Willy Tarreau5368d802012-08-21 18:22:06 +0200775}
776
Willy Tarreau8ccd2082018-11-07 07:47:52 +0100777/* This is the ->process() function for any stream-interface's wait_event task.
778 * It's assigned during the stream-interface's initialization, for any type of
779 * stream interface. Thus it is always safe to perform a tasklet_wakeup() on a
780 * stream interface, as the presence of the CS is checked there.
781 */
Olivier Houchard91894cb2018-08-02 18:06:28 +0200782struct task *si_cs_io_cb(struct task *t, void *ctx, unsigned short state)
783{
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200784 struct stream_interface *si = ctx;
Olivier Houcharda6ff0352018-08-21 15:59:43 +0200785 struct conn_stream *cs = objt_cs(si->end);
Olivier Houchardf6535282018-08-31 17:29:12 +0200786 int ret = 0;
Olivier Houcharda6ff0352018-08-21 15:59:43 +0200787
788 if (!cs)
789 return NULL;
Willy Tarreau8ccd2082018-11-07 07:47:52 +0100790
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100791 if (!(si->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(si_oc(si)))
Olivier Houchardf6535282018-08-31 17:29:12 +0200792 ret = si_cs_send(cs);
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100793 if (!(si->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardf6535282018-08-31 17:29:12 +0200794 ret |= si_cs_recv(cs);
795 if (ret != 0)
Olivier Houchardc2aa7112018-09-11 18:27:21 +0200796 si_cs_process(cs);
Olivier Houchardf6535282018-08-31 17:29:12 +0200797
Olivier Houchard91894cb2018-08-02 18:06:28 +0200798 return (NULL);
799}
800
Willy Tarreau25f13102015-09-24 11:32:22 +0200801/* This function is designed to be called from within the stream handler to
Willy Tarreau236c4292019-06-06 08:19:20 +0200802 * update the input channel's expiration timer and the stream interface's
803 * Rx flags based on the channel's flags. It needs to be called only once
804 * after the channel's flags have settled down, and before they are cleared,
805 * though it doesn't harm to call it as often as desired (it just slightly
806 * hurts performance). It must not be called from outside of the stream
807 * handler, as what it does will be used to compute the stream task's
808 * expiration.
Willy Tarreau25f13102015-09-24 11:32:22 +0200809 */
Willy Tarreau236c4292019-06-06 08:19:20 +0200810void si_update_rx(struct stream_interface *si)
Willy Tarreau25f13102015-09-24 11:32:22 +0200811{
812 struct channel *ic = si_ic(si);
Willy Tarreau25f13102015-09-24 11:32:22 +0200813
Willy Tarreau236c4292019-06-06 08:19:20 +0200814 if (ic->flags & CF_SHUTR) {
815 si_rx_shut_blk(si);
816 return;
817 }
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100818
Willy Tarreau236c4292019-06-06 08:19:20 +0200819 /* Read not closed, update FD status and timeout for reads */
820 if (ic->flags & CF_DONT_READ)
821 si_rx_chan_blk(si);
822 else
823 si_rx_chan_rdy(si);
Willy Tarreaub26a6f92018-11-14 17:10:36 +0100824
Willy Tarreau236c4292019-06-06 08:19:20 +0200825 if (!channel_is_empty(ic)) {
826 /* stop reading, imposed by channel's policy or contents */
827 si_rx_room_blk(si);
Willy Tarreau25f13102015-09-24 11:32:22 +0200828 }
Willy Tarreau236c4292019-06-06 08:19:20 +0200829 else {
830 /* (re)start reading and update timeout. Note: we don't recompute the timeout
831 * everytime we get here, otherwise it would risk never to expire. We only
832 * update it if is was not yet set. The stream socket handler will already
833 * have updated it if there has been a completed I/O.
834 */
835 si_rx_room_rdy(si);
836 }
837 if (si->flags & SI_FL_RXBLK_ANY & ~SI_FL_RX_WAIT_EP)
838 ic->rex = TICK_ETERNITY;
839 else if (!(ic->flags & CF_READ_NOEXP) && !tick_isset(ic->rex))
840 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreau25f13102015-09-24 11:32:22 +0200841
Willy Tarreau236c4292019-06-06 08:19:20 +0200842 si_chk_rcv(si);
843}
844
845/* This function is designed to be called from within the stream handler to
846 * update the output channel's expiration timer and the stream interface's
847 * Tx flags based on the channel's flags. It needs to be called only once
848 * after the channel's flags have settled down, and before they are cleared,
849 * though it doesn't harm to call it as often as desired (it just slightly
850 * hurts performance). It must not be called from outside of the stream
851 * handler, as what it does will be used to compute the stream task's
852 * expiration.
853 */
854void si_update_tx(struct stream_interface *si)
855{
856 struct channel *oc = si_oc(si);
857 struct channel *ic = si_ic(si);
858
859 if (oc->flags & CF_SHUTW)
860 return;
861
862 /* Write not closed, update FD status and timeout for writes */
863 if (channel_is_empty(oc)) {
864 /* stop writing */
865 if (!(si->flags & SI_FL_WAIT_DATA)) {
866 if ((oc->flags & CF_SHUTW_NOW) == 0)
867 si->flags |= SI_FL_WAIT_DATA;
868 oc->wex = TICK_ETERNITY;
Willy Tarreau25f13102015-09-24 11:32:22 +0200869 }
Willy Tarreau236c4292019-06-06 08:19:20 +0200870 return;
871 }
872
873 /* (re)start writing and update timeout. Note: we don't recompute the timeout
874 * everytime we get here, otherwise it would risk never to expire. We only
875 * update it if is was not yet set. The stream socket handler will already
876 * have updated it if there has been a completed I/O.
877 */
878 si->flags &= ~SI_FL_WAIT_DATA;
879 if (!tick_isset(oc->wex)) {
880 oc->wex = tick_add_ifset(now_ms, oc->wto);
881 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
882 /* Note: depending on the protocol, we don't know if we're waiting
883 * for incoming data or not. So in order to prevent the socket from
884 * expiring read timeouts during writes, we refresh the read timeout,
885 * except if it was already infinite or if we have explicitly setup
886 * independent streams.
Willy Tarreau25f13102015-09-24 11:32:22 +0200887 */
Willy Tarreau236c4292019-06-06 08:19:20 +0200888 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreau25f13102015-09-24 11:32:22 +0200889 }
890 }
891}
892
Willy Tarreau3b285d72019-06-06 08:20:17 +0200893/* perform a synchronous send() for the stream interface. The CF_WRITE_NULL and
894 * CF_WRITE_PARTIAL flags are cleared prior to the attempt, and will possibly
895 * be updated in case of success.
896 */
897void si_sync_send(struct stream_interface *si)
898{
899 struct channel *oc = si_oc(si);
900 struct conn_stream *cs;
901
902 oc->flags &= ~(CF_WRITE_NULL|CF_WRITE_PARTIAL);
903
904 if (oc->flags & CF_SHUTW)
905 return;
906
907 if (channel_is_empty(oc))
908 return;
909
910 if (!si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST))
911 return;
912
913 cs = objt_cs(si->end);
914 if (!cs)
915 return;
916
917 if (cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING))
918 return;
919
920 if (cs->conn->flags & CO_FL_ERROR)
921 return;
922
923 if (si_cs_send(cs))
924 si_rx_room_rdy(si_opposite(si));
925}
926
Willy Tarreaud14844a2018-11-08 18:15:29 +0100927/* Updates at once the channel flags, and timers of both stream interfaces of a
928 * same stream, to complete the work after the analysers, then updates the data
929 * layer below. This will ensure that any synchronous update performed at the
930 * data layer will be reflected in the channel flags and/or stream-interface.
Willy Tarreau829bd472019-06-06 09:17:23 +0200931 * Note that this does not change the stream interface's current state, though
932 * it updates the previous state to the current one.
Willy Tarreaud14844a2018-11-08 18:15:29 +0100933 */
934void si_update_both(struct stream_interface *si_f, struct stream_interface *si_b)
935{
936 struct channel *req = si_ic(si_f);
937 struct channel *res = si_oc(si_f);
Willy Tarreaud14844a2018-11-08 18:15:29 +0100938
939 req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_READ_ATTACHED|CF_WRITE_NULL|CF_WRITE_PARTIAL);
940 res->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_READ_ATTACHED|CF_WRITE_NULL|CF_WRITE_PARTIAL);
941
Willy Tarreaud14844a2018-11-08 18:15:29 +0100942 si_f->prev_state = si_f->state;
943 si_b->prev_state = si_b->state;
944
Willy Tarreaubf89ff32018-11-09 14:59:25 +0100945 /* let's recompute both sides states */
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200946 if (si_state_in(si_f->state, SI_SB_RDY|SI_SB_EST))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100947 si_update(si_f);
Willy Tarreaubf89ff32018-11-09 14:59:25 +0100948
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200949 if (si_state_in(si_b->state, SI_SB_RDY|SI_SB_EST))
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100950 si_update(si_b);
Willy Tarreaubf89ff32018-11-09 14:59:25 +0100951
952 /* stream ints are processed outside of process_stream() and must be
953 * handled at the latest moment.
954 */
955 if (obj_type(si_f->end) == OBJ_TYPE_APPCTX &&
Willy Tarreau32742fd2018-11-14 14:07:59 +0100956 ((si_rx_endp_ready(si_f) && !si_rx_blocked(si_f)) ||
957 (si_tx_endp_ready(si_f) && !si_tx_blocked(si_f))))
Willy Tarreaubf89ff32018-11-09 14:59:25 +0100958 appctx_wakeup(si_appctx(si_f));
Willy Tarreaud14844a2018-11-08 18:15:29 +0100959
Willy Tarreaubf89ff32018-11-09 14:59:25 +0100960 if (obj_type(si_b->end) == OBJ_TYPE_APPCTX &&
Willy Tarreau32742fd2018-11-14 14:07:59 +0100961 ((si_rx_endp_ready(si_b) && !si_rx_blocked(si_b)) ||
962 (si_tx_endp_ready(si_b) && !si_tx_blocked(si_b))))
Willy Tarreaubf89ff32018-11-09 14:59:25 +0100963 appctx_wakeup(si_appctx(si_b));
Willy Tarreaud14844a2018-11-08 18:15:29 +0100964}
965
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200966/*
967 * This function performs a shutdown-read on a stream interface attached to
968 * a connection in a connected or init state (it does nothing for other
969 * states). It either shuts the read side or marks itself as closed. The buffer
970 * flags are updated to reflect the new state. If the stream interface has
971 * SI_FL_NOHALF, we also forward the close to the write side. If a control
972 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200973 * descriptors are then shutdown or closed accordingly. The function
974 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200975 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200976static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200977{
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200978 struct conn_stream *cs = __objt_cs(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100979 struct channel *ic = si_ic(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200980
Willy Tarreauabb5d422018-11-14 16:58:52 +0100981 si_rx_shut_blk(si);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100982 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200983 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100984 ic->flags |= CF_SHUTR;
985 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200986
Willy Tarreau4f283fa2019-06-05 14:34:03 +0200987 if (!si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200988 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200989
Willy Tarreau51d0a7e2019-01-31 19:09:59 +0100990 if (si->flags & SI_FL_KILL_CONN)
991 cs->flags |= CS_FL_KILL_CONN;
992
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100993 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreaua553ae92017-10-05 18:52:17 +0200994 cs_close(cs);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200995 si->state = SI_ST_DIS;
996 si->exp = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200997 }
998 else if (si->flags & SI_FL_NOHALF) {
999 /* we want to immediately forward this close to the write side */
1000 return stream_int_shutw_conn(si);
1001 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001002}
1003
1004/*
1005 * This function performs a shutdown-write on a stream interface attached to
1006 * a connection in a connected or init state (it does nothing for other
1007 * states). It either shuts the write side or marks itself as closed. The
1008 * buffer flags are updated to reflect the new state. It does also close
1009 * everything if the SI was marked as being in error state. If there is a
Willy Tarreau1398aa12015-03-12 23:04:07 +01001010 * data-layer shutdown, it is called.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001011 */
Willy Tarreau6fe15412013-09-29 15:16:03 +02001012static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001013{
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001014 struct conn_stream *cs = __objt_cs(si->end);
1015 struct connection *conn = cs->conn;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001016 struct channel *ic = si_ic(si);
1017 struct channel *oc = si_oc(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001018
Willy Tarreauafc8a222014-11-28 15:46:27 +01001019 oc->flags &= ~CF_SHUTW_NOW;
1020 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +02001021 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001022 oc->flags |= CF_SHUTW;
1023 oc->wex = TICK_ETERNITY;
Willy Tarreau43e69dc2018-11-06 19:23:03 +01001024 si_done_get(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001025
Hongbo Longe39683c2017-03-10 18:41:51 +01001026 if (tick_isset(si->hcto)) {
1027 ic->rto = si->hcto;
1028 ic->rex = tick_add(now_ms, ic->rto);
1029 }
1030
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001031 switch (si->state) {
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001032 case SI_ST_RDY:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001033 case SI_ST_EST:
1034 /* we have to shut before closing, otherwise some short messages
1035 * may never leave the system, especially when there are remaining
1036 * unread data in the socket input buffer, or when nolinger is set.
1037 * However, if SI_FL_NOLINGER is explicitly set, we know there is
1038 * no risk so we close both sides immediately.
1039 */
Willy Tarreau51d0a7e2019-01-31 19:09:59 +01001040 if (si->flags & SI_FL_KILL_CONN)
1041 cs->flags |= CS_FL_KILL_CONN;
1042
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001043 if (si->flags & SI_FL_ERR) {
1044 /* quick close, the socket is alredy shut anyway */
1045 }
1046 else if (si->flags & SI_FL_NOLINGER) {
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001047 /* unclean data-layer shutdown, typically an aborted request
1048 * or a forwarded shutdown from a client to a server due to
1049 * option abortonclose. No need for the TLS layer to try to
1050 * emit a shutdown message.
1051 */
Willy Tarreauecdb3fe2017-10-05 15:25:48 +02001052 cs_shutw(cs, CS_SHW_SILENT);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001053 }
1054 else {
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001055 /* clean data-layer shutdown. This only happens on the
1056 * frontend side, or on the backend side when forwarding
1057 * a client close in TCP mode or in HTTP TUNNEL mode
1058 * while option abortonclose is set. We want the TLS
1059 * layer to try to signal it to the peer before we close.
1060 */
Willy Tarreauecdb3fe2017-10-05 15:25:48 +02001061 cs_shutw(cs, CS_SHW_NORMAL);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001062
Willy Tarreaua553ae92017-10-05 18:52:17 +02001063 if (!(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
1064 /* OK just a shutw, but we want the caller
1065 * to disable polling on this FD if exists.
1066 */
1067 conn_cond_update_polling(conn);
1068 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001069 }
1070 }
1071
1072 /* fall through */
1073 case SI_ST_CON:
1074 /* we may have to close a pending connection, and mark the
1075 * response buffer as shutr
1076 */
Willy Tarreau51d0a7e2019-01-31 19:09:59 +01001077 if (si->flags & SI_FL_KILL_CONN)
1078 cs->flags |= CS_FL_KILL_CONN;
Willy Tarreaua553ae92017-10-05 18:52:17 +02001079 cs_close(cs);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001080 /* fall through */
1081 case SI_ST_CER:
1082 case SI_ST_QUE:
1083 case SI_ST_TAR:
1084 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +02001085 /* fall through */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001086 default:
Willy Tarreauabb5d422018-11-14 16:58:52 +01001087 si->flags &= ~SI_FL_NOLINGER;
1088 si_rx_shut_blk(si);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001089 ic->flags |= CF_SHUTR;
1090 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +02001091 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +02001092 }
1093}
1094
Willy Tarreau46a8d922012-08-20 12:38:36 +02001095/* This function is used for inter-stream-interface calls. It is called by the
1096 * consumer to inform the producer side that it may be interested in checking
1097 * for free space in the buffer. Note that it intentionally does not update
1098 * timeouts, so that we can still check them later at wake-up. This function is
1099 * dedicated to connection-based stream interfaces.
1100 */
Willy Tarreauc5788912012-08-24 18:12:41 +02001101static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +02001102{
Christopher Fauletb3e0de42018-10-11 13:54:13 +02001103 /* (re)start reading */
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001104 if (si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001105 tasklet_wakeup(si->wait_event.tasklet);
Willy Tarreau46a8d922012-08-20 12:38:36 +02001106}
1107
1108
Willy Tarreaude5722c2012-08-20 15:01:10 +02001109/* This function is used for inter-stream-interface calls. It is called by the
1110 * producer to inform the consumer side that it may be interested in checking
1111 * for data in the buffer. Note that it intentionally does not update timeouts,
1112 * so that we can still check them later at wake-up.
1113 */
Willy Tarreauc5788912012-08-24 18:12:41 +02001114static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +02001115{
Willy Tarreauafc8a222014-11-28 15:46:27 +01001116 struct channel *oc = si_oc(si);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001117 struct conn_stream *cs = __objt_cs(si->end);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001118
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001119 if (unlikely(!si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST) ||
Olivier Houchardb2fc04e2019-04-11 13:56:26 +02001120 (oc->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +02001121 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +02001122
Willy Tarreauafc8a222014-11-28 15:46:27 +01001123 if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +02001124 return;
1125
Willy Tarreauafc8a222014-11-28 15:46:27 +01001126 if (!oc->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +01001127 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +02001128 return;
1129
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001130 if (!(si->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(si_oc(si)))
Olivier Houchard31f04e42018-10-22 16:01:09 +02001131 si_cs_send(cs);
Willy Tarreau33a09a52018-10-25 13:49:49 +02001132
Willy Tarreaubddf7fc2018-12-19 17:17:10 +01001133 if (cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING) || cs->conn->flags & CO_FL_ERROR) {
Willy Tarreau3b9c8502017-10-25 14:22:28 +02001134 /* Write error on the file descriptor */
Olivier Houchard6187cc32019-06-24 16:08:08 +02001135 if (si->state >= SI_ST_CON)
1136 si->flags |= SI_FL_ERR;
Willy Tarreau3b9c8502017-10-25 14:22:28 +02001137 goto out_wakeup;
Willy Tarreaude5722c2012-08-20 15:01:10 +02001138 }
1139
1140 /* OK, so now we know that some data might have been sent, and that we may
1141 * have to poll first. We have to do that too if the buffer is not empty.
1142 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001143 if (channel_is_empty(oc)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001144 /* the connection is established but we can't write. Either the
1145 * buffer is empty, or we just refrain from sending because the
1146 * ->o limit was reached. Maybe we just wrote the last
1147 * chunk and need to close.
1148 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001149 if (((oc->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001150 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001151 si_state_in(si->state, SI_SB_RDY|SI_SB_EST)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001152 si_shutw(si);
1153 goto out_wakeup;
1154 }
1155
Willy Tarreauafc8a222014-11-28 15:46:27 +01001156 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +02001157 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001158 oc->wex = TICK_ETERNITY;
Willy Tarreaude5722c2012-08-20 15:01:10 +02001159 }
1160 else {
1161 /* Otherwise there are remaining data to be sent in the buffer,
1162 * which means we have to poll before doing so.
1163 */
Willy Tarreaude5722c2012-08-20 15:01:10 +02001164 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001165 if (!tick_isset(oc->wex))
1166 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001167 }
1168
Willy Tarreauafc8a222014-11-28 15:46:27 +01001169 if (likely(oc->flags & CF_WRITE_ACTIVITY)) {
1170 struct channel *ic = si_ic(si);
1171
Willy Tarreaude5722c2012-08-20 15:01:10 +02001172 /* update timeout if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001173 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
1174 !channel_is_empty(oc))
1175 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001176
Willy Tarreauafc8a222014-11-28 15:46:27 +01001177 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001178 /* Note: to prevent the client from expiring read timeouts
1179 * during writes, we refresh it. We only do this if the
1180 * interface is not configured for "independent streams",
1181 * because for some applications it's better not to do this,
1182 * for instance when continuously exchanging small amounts
1183 * of data which can full the socket buffers long before a
1184 * write timeout is detected.
1185 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001186 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001187 }
1188 }
1189
1190 /* in case of special condition (error, shutdown, end of write...), we
1191 * have to notify the task.
1192 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001193 if (likely((oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
1194 ((oc->flags & CF_WAKE_WRITE) &&
1195 ((channel_is_empty(oc) && !oc->to_forward) ||
Willy Tarreau7ab22adb2019-06-05 14:53:22 +02001196 !si_state_in(si->state, SI_SB_EST))))) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001197 out_wakeup:
Willy Tarreau07373b82014-11-28 12:08:47 +01001198 if (!(si->flags & SI_FL_DONT_WAKE))
1199 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001200 }
1201}
1202
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001203/*
Willy Tarreauce323de2012-08-20 21:41:06 +02001204 * This is the callback which is called by the connection layer to receive data
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001205 * into the buffer from the connection. It iterates over the mux layer's
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001206 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +02001207 */
Olivier Houchard0e367bb2018-09-14 19:41:13 +02001208int si_cs_recv(struct conn_stream *cs)
Willy Tarreauce323de2012-08-20 21:41:06 +02001209{
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001210 struct connection *conn = cs->conn;
1211 struct stream_interface *si = cs->data;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001212 struct channel *ic = si_ic(si);
Olivier Houchardf6535282018-08-31 17:29:12 +02001213 int ret, max, cur_read = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001214 int read_poll = MAX_READ_POLL_LOOPS;
Christopher Fauletc6618d62018-10-11 15:56:04 +02001215 int flags = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001216
Olivier Houchardf6535282018-08-31 17:29:12 +02001217 /* If another call to si_cs_recv() failed, and we subscribed to
1218 * recv events already, give up now.
1219 */
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001220 if (si->wait_event.events & SUB_RETRY_RECV)
Olivier Houchardf6535282018-08-31 17:29:12 +02001221 return 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001222
Willy Tarreauce323de2012-08-20 21:41:06 +02001223 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001224 if (ic->flags & CF_SHUTR)
Olivier Houchardc2aa7112018-09-11 18:27:21 +02001225 return 1;
Willy Tarreauce323de2012-08-20 21:41:06 +02001226
Willy Tarreau54e917c2017-08-30 07:35:35 +02001227 /* stop here if we reached the end of data */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001228 if (cs->flags & CS_FL_EOS)
Willy Tarreau54e917c2017-08-30 07:35:35 +02001229 goto out_shutdown_r;
1230
Christopher Fauletf061e422018-12-07 14:51:20 +01001231 /* stop immediately on errors. Note that we DON'T want to stop on
1232 * POLL_ERR, as the poller might report a write error while there
1233 * are still data available in the recv buffer. This typically
1234 * happens when we send too large a request to a backend server
1235 * which rejects it before reading it all.
1236 */
1237 if (!(cs->flags & CS_FL_RCV_MORE)) {
1238 if (!conn_xprt_ready(conn))
1239 return 0;
1240 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
1241 return 1; // We want to make sure si_cs_wake() is called, so that process_strema is woken up, on failure
1242 }
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001243
Willy Tarreau7ab99a32018-12-18 09:15:43 +01001244 /* prepare to detect if the mux needs more room */
1245 cs->flags &= ~CS_FL_WANT_ROOM;
1246
Willy Tarreau77e478c2018-06-19 07:03:14 +02001247 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !co_data(ic) &&
Willy Tarreau7e312732014-02-12 16:35:14 +01001248 global.tune.idle_timer &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001249 (unsigned short)(now_ms - ic->last_read) >= global.tune.idle_timer) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001250 /* The buffer was empty and nothing was transferred for more
1251 * than one second. This was caused by a pause and not by
1252 * congestion. Reset any streaming mode to reduce latency.
1253 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001254 ic->xfer_small = 0;
1255 ic->xfer_large = 0;
1256 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001257 }
1258
Willy Tarreau96199b12012-08-24 00:46:52 +02001259 /* First, let's see if we may splice data across the channel without
1260 * using a buffer.
1261 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001262 if (conn->xprt->rcv_pipe && conn->mux->rcv_pipe &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001263 (ic->pipe || ic->to_forward >= MIN_SPLICE_FORWARD) &&
1264 ic->flags & CF_KERN_SPLICING) {
Willy Tarreaud760eec2018-07-10 09:50:25 +02001265 if (c_data(ic)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001266 /* We're embarrassed, there are already data pending in
1267 * the buffer and we don't want to have them at two
1268 * locations at a time. Let's indicate we need some
1269 * place and ask the consumer to hurry.
1270 */
Christopher Fauletc6618d62018-10-11 15:56:04 +02001271 flags |= CO_RFL_BUF_FLUSH;
Willy Tarreau96199b12012-08-24 00:46:52 +02001272 goto abort_splice;
1273 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001274
Willy Tarreauafc8a222014-11-28 15:46:27 +01001275 if (unlikely(ic->pipe == NULL)) {
1276 if (pipes_used >= global.maxpipes || !(ic->pipe = get_pipe())) {
1277 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001278 goto abort_splice;
1279 }
1280 }
1281
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001282 ret = conn->mux->rcv_pipe(cs, ic->pipe, ic->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001283 if (ret < 0) {
1284 /* splice not supported on this end, let's disable it */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001285 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001286 goto abort_splice;
1287 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001288
Willy Tarreau96199b12012-08-24 00:46:52 +02001289 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001290 if (ic->to_forward != CHN_INFINITE_FORWARD)
1291 ic->to_forward -= ret;
1292 ic->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001293 cur_read += ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001294 ic->flags |= CF_READ_PARTIAL;
Willy Tarreaub27f54a2019-06-05 16:43:44 +02001295 if (si->state == SI_ST_CON)
1296 si->state = SI_ST_RDY;
Willy Tarreauce323de2012-08-20 21:41:06 +02001297 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001298
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001299 if (cs->flags & CS_FL_EOS)
Willy Tarreau96199b12012-08-24 00:46:52 +02001300 goto out_shutdown_r;
1301
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001302 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Olivier Houchardc2aa7112018-09-11 18:27:21 +02001303 return 1;
Willy Tarreau96199b12012-08-24 00:46:52 +02001304
Willy Tarreau61d39a02013-07-18 21:49:32 +02001305 if (conn->flags & CO_FL_WAIT_ROOM) {
1306 /* the pipe is full or we have read enough data that it
1307 * could soon be full. Let's stop before needing to poll.
1308 */
Willy Tarreaudb398432018-11-15 11:08:52 +01001309 si_rx_room_blk(si);
Willy Tarreauffb12052018-11-15 16:06:02 +01001310 goto done_recv;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001311 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001312
Willy Tarreauce323de2012-08-20 21:41:06 +02001313 /* splice not possible (anymore), let's go on on standard copy */
1314 }
Willy Tarreau81464b42018-11-15 15:52:53 +01001315 else {
1316 /* be sure not to block regular receive path below */
1317 conn->flags &= ~CO_FL_WAIT_ROOM;
1318 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001319
1320 abort_splice:
Willy Tarreauafc8a222014-11-28 15:46:27 +01001321 if (ic->pipe && unlikely(!ic->pipe->data)) {
1322 put_pipe(ic->pipe);
1323 ic->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001324 }
1325
Christopher Fauleta73e59b2016-12-09 17:30:18 +01001326 /* now we'll need a input buffer for the stream */
Willy Tarreau581abd32018-10-25 10:21:41 +02001327 if (!si_alloc_ibuf(si, &(si_strm(si)->buffer_wait)))
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001328 goto end_recv;
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001329
Willy Tarreau61d39a02013-07-18 21:49:32 +02001330 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1331 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1332 * that if such an event is not handled above in splice, it will be handled here by
1333 * recv().
1334 */
Olivier Houchardc490efd2018-12-04 15:46:16 +01001335 while ((cs->flags & CS_FL_RCV_MORE) ||
1336 (!(conn->flags & (CO_FL_ERROR | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE)) &&
1337 (!(cs->flags & (CS_FL_ERROR|CS_FL_EOS))) && !(ic->flags & CF_SHUTR))) {
Christopher Faulet4eb7d742018-10-11 15:29:21 +02001338 /* <max> may be null. This is the mux responsibility to set
1339 * CS_FL_RCV_MORE on the CS if more space is needed.
1340 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001341 max = channel_recv_max(ic);
Christopher Faulet9cdd5032019-05-14 22:46:41 +02001342 ret = cs->conn->mux->rcv_buf(cs, &ic->buf, max, flags | (co_data(ic) ? CO_RFL_BUF_WET : 0));
Willy Tarreau674e0ad2018-12-05 13:45:41 +01001343
Olivier Houchardd247be02018-12-06 16:22:29 +01001344 if (cs->flags & CS_FL_WANT_ROOM)
Willy Tarreaudb398432018-11-15 11:08:52 +01001345 si_rx_room_blk(si);
Willy Tarreau6577b482017-12-10 21:19:33 +01001346
Christopher Fauleteffc3752018-10-31 08:53:54 +01001347 if (cs->flags & CS_FL_READ_PARTIAL) {
1348 if (tick_isset(ic->rex))
1349 ic->rex = tick_add_ifset(now_ms, ic->rto);
1350 cs->flags &= ~CS_FL_READ_PARTIAL;
1351 }
1352
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001353 if (ret <= 0) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001354 break;
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001355 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001356
Olivier Houcharda254a372019-04-05 15:30:12 +02001357 if (si->flags & SI_FL_L7_RETRY) {
1358 struct htx *htx;
1359 struct htx_sl *sl;
1360
1361 htx = htxbuf(&ic->buf);
1362 if (htx) {
Christopher Faulet297fbb42019-05-13 14:41:27 +02001363 sl = http_get_stline(htx);
Olivier Houcharda254a372019-04-05 15:30:12 +02001364 if (sl && l7_status_match(si_strm(si)->be,
1365 sl->info.res.status)) {
1366 /* If we got a status for which we would
1367 * like to retry the request, empty
1368 * the buffer and pretend there's an
1369 * error on the channel.
1370 */
1371 ic->flags |= CF_READ_ERROR;
1372 htx_reset(htx);
1373 return 1;
1374 }
1375 }
1376 si->flags &= ~SI_FL_L7_RETRY;
1377 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001378 cur_read += ret;
1379
1380 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001381 if (ic->to_forward && !(ic->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001382 unsigned long fwd = ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001383 if (ic->to_forward != CHN_INFINITE_FORWARD) {
1384 if (fwd > ic->to_forward)
1385 fwd = ic->to_forward;
1386 ic->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001387 }
Willy Tarreaubcbd3932018-06-06 07:13:22 +02001388 c_adv(ic, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001389 }
1390
Willy Tarreauafc8a222014-11-28 15:46:27 +01001391 ic->flags |= CF_READ_PARTIAL;
1392 ic->total += ret;
Willy Tarreaub27f54a2019-06-05 16:43:44 +02001393 if (si->state == SI_ST_CON)
1394 si->state = SI_ST_RDY;
Willy Tarreauce323de2012-08-20 21:41:06 +02001395
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001396 if ((ic->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
1397 /* we're stopped by the channel's policy */
Willy Tarreaub26a6f92018-11-14 17:10:36 +01001398 si_rx_chan_blk(si);
Willy Tarreau62dd6982017-11-18 11:26:20 +01001399 break;
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001400 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001401
1402 /* if too many bytes were missing from last read, it means that
1403 * it's pointless trying to read again because the system does
1404 * not have them in buffers.
1405 */
1406 if (ret < max) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001407 /* if a streamer has read few data, it may be because we
1408 * have exhausted system buffers. It's not worth trying
1409 * again.
1410 */
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001411 if (ic->flags & CF_STREAMER) {
1412 /* we're stopped by the channel's policy */
Willy Tarreaub26a6f92018-11-14 17:10:36 +01001413 si_rx_chan_blk(si);
Willy Tarreauce323de2012-08-20 21:41:06 +02001414 break;
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001415 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001416
1417 /* if we read a large block smaller than what we requested,
1418 * it's almost certain we'll never get anything more.
1419 */
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001420 if (ret >= global.tune.recv_enough) {
1421 /* we're stopped by the channel's policy */
Willy Tarreaub26a6f92018-11-14 17:10:36 +01001422 si_rx_chan_blk(si);
Willy Tarreauce323de2012-08-20 21:41:06 +02001423 break;
Willy Tarreauf26c26c2018-11-12 16:11:08 +01001424 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001425 }
Christopher Fauletb3e0de42018-10-11 13:54:13 +02001426
1427 /* if we are waiting for more space, don't try to read more data
1428 * right now.
1429 */
Willy Tarreaub26a6f92018-11-14 17:10:36 +01001430 if (si_rx_blocked(si))
Christopher Fauletb3e0de42018-10-11 13:54:13 +02001431 break;
Willy Tarreauce323de2012-08-20 21:41:06 +02001432 } /* while !flags */
1433
Willy Tarreauffb12052018-11-15 16:06:02 +01001434 done_recv:
Willy Tarreauc5890e62014-02-09 17:47:01 +01001435 if (cur_read) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001436 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001437 (cur_read <= ic->buf.size / 2)) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001438 ic->xfer_large = 0;
1439 ic->xfer_small++;
1440 if (ic->xfer_small >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001441 /* we have read less than half of the buffer in
1442 * one pass, and this happened at least 3 times.
1443 * This is definitely not a streamer.
1444 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001445 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001446 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001447 else if (ic->xfer_small >= 2) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001448 /* if the buffer has been at least half full twice,
1449 * we receive faster than we send, so at least it
1450 * is not a "fast streamer".
1451 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001452 ic->flags &= ~CF_STREAMER_FAST;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001453 }
1454 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001455 else if (!(ic->flags & CF_STREAMER_FAST) &&
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001456 (cur_read >= ic->buf.size - global.tune.maxrewrite)) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001457 /* we read a full buffer at once */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001458 ic->xfer_small = 0;
1459 ic->xfer_large++;
1460 if (ic->xfer_large >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001461 /* we call this buffer a fast streamer if it manages
1462 * to be filled in one call 3 consecutive times.
1463 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001464 ic->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001465 }
1466 }
1467 else {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001468 ic->xfer_small = 0;
1469 ic->xfer_large = 0;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001470 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001471 ic->last_read = now_ms;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001472 }
1473
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001474 end_recv:
Willy Tarreau4ff3b892017-10-16 15:17:17 +02001475 if (conn->flags & CO_FL_ERROR || cs->flags & CS_FL_ERROR)
Olivier Houchardc2aa7112018-09-11 18:27:21 +02001476 return 1;
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001477
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001478 if (cs->flags & CS_FL_EOS)
Willy Tarreauce323de2012-08-20 21:41:06 +02001479 /* connection closed */
1480 goto out_shutdown_r;
1481
Willy Tarreau32742fd2018-11-14 14:07:59 +01001482 /* Subscribe to receive events if we're blocking on I/O */
Willy Tarreaudd5621a2018-11-15 16:55:14 +01001483 if (!si_rx_blocked(si)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001484 conn->mux->subscribe(cs, SUB_RETRY_RECV, &si->wait_event);
Willy Tarreaudd5621a2018-11-15 16:55:14 +01001485 si_rx_endp_done(si);
1486 } else {
1487 si_rx_endp_more(si);
1488 }
Olivier Houchardf6535282018-08-31 17:29:12 +02001489
Olivier Houchard19a2e2d2019-06-07 18:10:52 +02001490 return (cur_read != 0) || si_rx_blocked(si) || (cs->flags & CS_FL_EOI);
Willy Tarreauce323de2012-08-20 21:41:06 +02001491
1492 out_shutdown_r:
Olivier Houchardfd0c2dc2018-12-13 15:38:16 +01001493 if (conn->flags & CO_FL_CONNECTED) {
1494 /* we received a shutdown */
1495 ic->flags |= CF_READ_NULL;
1496 if (ic->flags & CF_AUTO_CLOSE)
1497 channel_shutw_now(ic);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001498 stream_int_read0(si);
Olivier Houchardfd0c2dc2018-12-13 15:38:16 +01001499 }
Olivier Houchardc2aa7112018-09-11 18:27:21 +02001500 return 1;
Willy Tarreauce323de2012-08-20 21:41:06 +02001501}
1502
1503/*
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001504 * This function propagates a null read received on a socket-based connection.
1505 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
Willy Tarreau11405122015-03-12 22:32:27 +01001506 * the close is also forwarded to the write side as an abort.
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001507 */
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001508static void stream_int_read0(struct stream_interface *si)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001509{
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001510 struct conn_stream *cs = __objt_cs(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001511 struct channel *ic = si_ic(si);
1512 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001513
Willy Tarreauabb5d422018-11-14 16:58:52 +01001514 si_rx_shut_blk(si);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001515 if (ic->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001516 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001517 ic->flags |= CF_SHUTR;
1518 ic->rex = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001519
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001520 if (!si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST))
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001521 return;
1522
Willy Tarreauafc8a222014-11-28 15:46:27 +01001523 if (oc->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001524 goto do_close;
1525
1526 if (si->flags & SI_FL_NOHALF) {
1527 /* we want to immediately forward this close to the write side */
Willy Tarreau87b09662015-04-03 00:22:06 +02001528 /* force flag on ssl to keep stream in cache */
Willy Tarreauecdb3fe2017-10-05 15:25:48 +02001529 cs_shutw(cs, CS_SHW_SILENT);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001530 goto do_close;
1531 }
1532
1533 /* otherwise that's just a normal read shutdown */
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001534 return;
1535
1536 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001537 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreaua553ae92017-10-05 18:52:17 +02001538 cs_close(cs);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001539
Willy Tarreauafc8a222014-11-28 15:46:27 +01001540 oc->flags &= ~CF_SHUTW_NOW;
1541 oc->flags |= CF_SHUTW;
1542 oc->wex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001543
Willy Tarreau43e69dc2018-11-06 19:23:03 +01001544 si_done_get(si);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001545
Olivier Houchardaacc4052019-05-21 17:43:50 +02001546 /* Don't change the state to SI_ST_DIS yet if we're still
1547 * in SI_ST_CON, otherwise it means sess_establish() hasn't
Willy Tarreaub27f54a2019-06-05 16:43:44 +02001548 * been called yet, and so the analysers would not run. However
1549 * it's fine to switch to SI_ST_RDY as we have really validated
1550 * the connection.
Olivier Houchardaacc4052019-05-21 17:43:50 +02001551 */
1552 if (si->state == SI_ST_EST)
1553 si->state = SI_ST_DIS;
Willy Tarreaub27f54a2019-06-05 16:43:44 +02001554 else if (si->state == SI_ST_CON)
1555 si->state = SI_ST_RDY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001556 si->exp = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001557 return;
1558}
1559
Willy Tarreau651e1822015-09-23 20:06:13 +02001560/* Callback to be used by applet handlers upon completion. It updates the stream
1561 * (which may or may not take this opportunity to try to forward data), then
Emeric Brun2802b072017-06-30 14:11:56 +02001562 * may re-enable the applet's based on the channels and stream interface's final
Willy Tarreau651e1822015-09-23 20:06:13 +02001563 * states.
1564 */
Willy Tarreauaa977ba2015-09-25 11:45:06 +02001565void si_applet_wake_cb(struct stream_interface *si)
Willy Tarreaue5f86492015-04-19 15:16:35 +02001566{
Willy Tarreaueca572f2015-09-25 19:11:55 +02001567 struct channel *ic = si_ic(si);
1568
1569 /* If the applet wants to write and the channel is closed, it's a
1570 * broken pipe and it must be reported.
1571 */
Willy Tarreau05b9b642018-11-14 13:43:35 +01001572 if (!(si->flags & SI_FL_RX_WAIT_EP) && (ic->flags & CF_SHUTR))
Willy Tarreaueca572f2015-09-25 19:11:55 +02001573 si->flags |= SI_FL_ERR;
1574
Willy Tarreau186dcdd2018-11-16 16:18:34 +01001575 /* automatically mark the applet having data available if it reported
1576 * begin blocked by the channel.
1577 */
1578 if (si_rx_blocked(si))
1579 si_rx_endp_more(si);
1580
Willy Tarreau651e1822015-09-23 20:06:13 +02001581 /* update the stream-int, channels, and possibly wake the stream up */
1582 stream_int_notify(si);
Willy Tarreaue5f86492015-04-19 15:16:35 +02001583
Willy Tarreau32742fd2018-11-14 14:07:59 +01001584 /* stream_int_notify may have passed through chk_snd and released some
1585 * RXBLK flags. Process_stream will consider those flags to wake up the
1586 * appctx but in the case the task is not in runqueue we may have to
1587 * wakeup the appctx immediately.
Emeric Brun2802b072017-06-30 14:11:56 +02001588 */
Olivier Houchard51205a12019-04-17 19:29:35 +02001589 if ((si_rx_endp_ready(si) && !si_rx_blocked(si)) ||
1590 (si_tx_endp_ready(si) && !si_tx_blocked(si)))
Willy Tarreau563cc372015-04-19 18:13:56 +02001591 appctx_wakeup(si_appctx(si));
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001592}
1593
1594/*
1595 * This function performs a shutdown-read on a stream interface attached to an
1596 * applet in a connected or init state (it does nothing for other states). It
1597 * either shuts the read side or marks itself as closed. The buffer flags are
1598 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
1599 * we also forward the close to the write side. The owner task is woken up if
1600 * it exists.
1601 */
1602static void stream_int_shutr_applet(struct stream_interface *si)
1603{
1604 struct channel *ic = si_ic(si);
1605
Willy Tarreauabb5d422018-11-14 16:58:52 +01001606 si_rx_shut_blk(si);
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001607 if (ic->flags & CF_SHUTR)
1608 return;
1609 ic->flags |= CF_SHUTR;
1610 ic->rex = TICK_ETERNITY;
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001611
Willy Tarreau828824a2015-04-19 17:20:03 +02001612 /* Note: on shutr, we don't call the applet */
1613
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001614 if (!si_state_in(si->state, SI_SB_CON|SI_SB_RDY|SI_SB_EST))
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001615 return;
1616
1617 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreau958f0742015-09-25 20:24:26 +02001618 si_applet_release(si);
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001619 si->state = SI_ST_DIS;
1620 si->exp = TICK_ETERNITY;
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001621 }
1622 else if (si->flags & SI_FL_NOHALF) {
1623 /* we want to immediately forward this close to the write side */
1624 return stream_int_shutw_applet(si);
1625 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001626}
1627
1628/*
1629 * This function performs a shutdown-write on a stream interface attached to an
1630 * applet in a connected or init state (it does nothing for other states). It
1631 * either shuts the write side or marks itself as closed. The buffer flags are
1632 * updated to reflect the new state. It does also close everything if the SI
1633 * was marked as being in error state. The owner task is woken up if it exists.
1634 */
1635static void stream_int_shutw_applet(struct stream_interface *si)
1636{
1637 struct channel *ic = si_ic(si);
1638 struct channel *oc = si_oc(si);
1639
1640 oc->flags &= ~CF_SHUTW_NOW;
1641 if (oc->flags & CF_SHUTW)
1642 return;
1643 oc->flags |= CF_SHUTW;
1644 oc->wex = TICK_ETERNITY;
Willy Tarreau43e69dc2018-11-06 19:23:03 +01001645 si_done_get(si);
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001646
Hongbo Longe39683c2017-03-10 18:41:51 +01001647 if (tick_isset(si->hcto)) {
1648 ic->rto = si->hcto;
1649 ic->rex = tick_add(now_ms, ic->rto);
1650 }
1651
Willy Tarreau828824a2015-04-19 17:20:03 +02001652 /* on shutw we always wake the applet up */
1653 appctx_wakeup(si_appctx(si));
1654
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001655 switch (si->state) {
Willy Tarreau4f283fa2019-06-05 14:34:03 +02001656 case SI_ST_RDY:
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001657 case SI_ST_EST:
1658 /* we have to shut before closing, otherwise some short messages
1659 * may never leave the system, especially when there are remaining
1660 * unread data in the socket input buffer, or when nolinger is set.
1661 * However, if SI_FL_NOLINGER is explicitly set, we know there is
1662 * no risk so we close both sides immediately.
1663 */
1664 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
1665 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
1666 return;
1667
1668 /* fall through */
1669 case SI_ST_CON:
1670 case SI_ST_CER:
1671 case SI_ST_QUE:
1672 case SI_ST_TAR:
1673 /* Note that none of these states may happen with applets */
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001674 si_applet_release(si);
Willy Tarreau958f0742015-09-25 20:24:26 +02001675 si->state = SI_ST_DIS;
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001676 default:
Willy Tarreauabb5d422018-11-14 16:58:52 +01001677 si->flags &= ~SI_FL_NOLINGER;
1678 si_rx_shut_blk(si);
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001679 ic->flags |= CF_SHUTR;
1680 ic->rex = TICK_ETERNITY;
1681 si->exp = TICK_ETERNITY;
1682 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001683}
1684
1685/* chk_rcv function for applets */
1686static void stream_int_chk_rcv_applet(struct stream_interface *si)
1687{
1688 struct channel *ic = si_ic(si);
1689
1690 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
1691 __FUNCTION__,
1692 si, si->state, ic->flags, si_oc(si)->flags);
1693
Christopher Fauletb3e0de42018-10-11 13:54:13 +02001694 if (!ic->pipe) {
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001695 /* (re)start reading */
Willy Tarreau828824a2015-04-19 17:20:03 +02001696 appctx_wakeup(si_appctx(si));
Thierry FOURNIER5bc2cbf2015-09-04 18:40:36 +02001697 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001698}
1699
1700/* chk_snd function for applets */
1701static void stream_int_chk_snd_applet(struct stream_interface *si)
1702{
1703 struct channel *oc = si_oc(si);
1704
1705 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
1706 __FUNCTION__,
1707 si, si->state, si_ic(si)->flags, oc->flags);
1708
1709 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
1710 return;
1711
Willy Tarreau828824a2015-04-19 17:20:03 +02001712 /* we only wake the applet up if it was waiting for some data */
1713
1714 if (!(si->flags & SI_FL_WAIT_DATA))
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001715 return;
1716
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001717 if (!tick_isset(oc->wex))
1718 oc->wex = tick_add_ifset(now_ms, oc->wto);
1719
Willy Tarreau828824a2015-04-19 17:20:03 +02001720 if (!channel_is_empty(oc)) {
1721 /* (re)start sending */
1722 appctx_wakeup(si_appctx(si));
1723 }
Willy Tarreaud45b9f82015-04-13 16:30:14 +02001724}
1725
Willy Tarreaudded32d2008-11-30 19:48:07 +01001726/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001727 * Local variables:
1728 * c-indent-level: 8
1729 * c-basic-offset: 8
1730 * End:
1731 */