blob: f8dfb7a38d09fa2b9b07d373cf088e46eafdfe5f [file] [log] [blame]
Christopher Faulet1329f2a2021-12-16 17:32:56 +01001/*
Willy Tarreau4596fe22022-05-17 19:07:51 +02002 * stream connector management functions
Christopher Faulet1329f2a2021-12-16 17:32:56 +01003 *
4 * Copyright 2021 Christopher Faulet <cfaulet@haproxy.com>
5 *
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 <haproxy/api.h>
Christopher Faulet37046632022-04-01 11:36:58 +020014#include <haproxy/applet.h>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010015#include <haproxy/connection.h>
Christopher Faulet5e29b762022-04-04 08:58:34 +020016#include <haproxy/check.h>
17#include <haproxy/http_ana.h>
18#include <haproxy/pipe.h>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010019#include <haproxy/pool.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020020#include <haproxy/sc_strm.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020021#include <haproxy/stconn.h>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010022
Willy Tarreau4596fe22022-05-17 19:07:51 +020023DECLARE_POOL(pool_head_connstream, "stconn", sizeof(struct stconn));
Willy Tarreauea59b022022-05-17 17:53:22 +020024DECLARE_POOL(pool_head_sedesc, "sedesc", sizeof(struct sedesc));
Christopher Faulet1329f2a2021-12-16 17:32:56 +010025
Willy Tarreau3a3f4802022-05-17 18:28:19 +020026/* functions used by default on a detached stream connector */
Willy Tarreau0adb2812022-05-27 10:02:48 +020027static void sc_app_shutr(struct stconn *sc);
28static void sc_app_shutw(struct stconn *sc);
29static void sc_app_chk_rcv(struct stconn *sc);
30static void sc_app_chk_snd(struct stconn *sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +020031
Willy Tarreau3a3f4802022-05-17 18:28:19 +020032/* functions used on a mux-based stream connector */
Willy Tarreau0adb2812022-05-27 10:02:48 +020033static void sc_app_shutr_conn(struct stconn *sc);
34static void sc_app_shutw_conn(struct stconn *sc);
35static void sc_app_chk_rcv_conn(struct stconn *sc);
36static void sc_app_chk_snd_conn(struct stconn *sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +020037
Willy Tarreau3a3f4802022-05-17 18:28:19 +020038/* functions used on an applet-based stream connector */
Willy Tarreau0adb2812022-05-27 10:02:48 +020039static void sc_app_shutr_applet(struct stconn *sc);
40static void sc_app_shutw_applet(struct stconn *sc);
41static void sc_app_chk_rcv_applet(struct stconn *sc);
42static void sc_app_chk_snd_applet(struct stconn *sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +020043
Willy Tarreau0adb2812022-05-27 10:02:48 +020044static int sc_conn_process(struct stconn *sc);
45static int sc_conn_recv(struct stconn *sc);
46static int sc_conn_send(struct stconn *sc);
47static int sc_applet_process(struct stconn *sc);
Willy Tarreau2f2318d2022-05-18 10:17:16 +020048
Willy Tarreau3a3f4802022-05-17 18:28:19 +020049/* stream connector operations for connections */
50struct sc_app_ops sc_app_conn_ops = {
51 .chk_rcv = sc_app_chk_rcv_conn,
52 .chk_snd = sc_app_chk_snd_conn,
53 .shutr = sc_app_shutr_conn,
54 .shutw = sc_app_shutw_conn,
Willy Tarreau462b9892022-05-18 18:06:53 +020055 .wake = sc_conn_process,
Willy Tarreau2f2318d2022-05-18 10:17:16 +020056 .name = "STRM",
Christopher Faulet9ffddd52022-04-01 14:04:29 +020057};
58
Willy Tarreau3a3f4802022-05-17 18:28:19 +020059/* stream connector operations for embedded tasks */
60struct sc_app_ops sc_app_embedded_ops = {
61 .chk_rcv = sc_app_chk_rcv,
62 .chk_snd = sc_app_chk_snd,
63 .shutr = sc_app_shutr,
64 .shutw = sc_app_shutw,
Willy Tarreau2f2318d2022-05-18 10:17:16 +020065 .wake = NULL, /* may never be used */
66 .name = "NONE", /* may never be used */
Christopher Faulet9ffddd52022-04-01 14:04:29 +020067};
68
Willy Tarreau2f2318d2022-05-18 10:17:16 +020069/* stream connector operations for applets */
Willy Tarreau3a3f4802022-05-17 18:28:19 +020070struct sc_app_ops sc_app_applet_ops = {
71 .chk_rcv = sc_app_chk_rcv_applet,
72 .chk_snd = sc_app_chk_snd_applet,
73 .shutr = sc_app_shutr_applet,
74 .shutw = sc_app_shutw_applet,
Willy Tarreau19c65a92022-05-27 08:49:24 +020075 .wake = sc_applet_process,
Christopher Faulet5e29b762022-04-04 08:58:34 +020076 .name = "STRM",
77};
78
Willy Tarreau2f2318d2022-05-18 10:17:16 +020079/* stream connector for health checks on connections */
80struct sc_app_ops sc_app_check_ops = {
81 .chk_rcv = NULL,
82 .chk_snd = NULL,
83 .shutr = NULL,
84 .shutw = NULL,
85 .wake = wake_srv_chk,
86 .name = "CHCK",
87};
Christopher Faulet5e29b762022-04-04 08:58:34 +020088
Christopher Faulet9ed77422022-04-12 08:51:15 +020089/* Initializes an endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +020090void sedesc_init(struct sedesc *sedesc)
Christopher Fauletdb90f2a2022-03-22 16:06:25 +010091{
Willy Tarreauea59b022022-05-17 17:53:22 +020092 sedesc->se = NULL;
93 sedesc->conn = NULL;
Willy Tarreauc1054922022-05-18 07:43:52 +020094 sedesc->sc = NULL;
Christopher Faulet4c135682023-02-16 11:09:31 +010095 sedesc->lra = TICK_ETERNITY;
96 sedesc->fsb = TICK_ETERNITY;
Willy Tarreauea59b022022-05-17 17:53:22 +020097 se_fl_setall(sedesc, SE_FL_NONE);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +010098}
99
Christopher Faulet9ed77422022-04-12 08:51:15 +0200100/* Tries to alloc an endpoint and initialize it. Returns NULL on failure. */
Willy Tarreauea59b022022-05-17 17:53:22 +0200101struct sedesc *sedesc_new()
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100102{
Willy Tarreauea59b022022-05-17 17:53:22 +0200103 struct sedesc *sedesc;
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100104
Willy Tarreauea59b022022-05-17 17:53:22 +0200105 sedesc = pool_alloc(pool_head_sedesc);
106 if (unlikely(!sedesc))
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100107 return NULL;
108
Willy Tarreauea59b022022-05-17 17:53:22 +0200109 sedesc_init(sedesc);
110 return sedesc;
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100111}
112
Christopher Faulet9ed77422022-04-12 08:51:15 +0200113/* Releases an endpoint. It is the caller responsibility to be sure it is safe
114 * and it is not shared with another entity
115 */
Willy Tarreauea59b022022-05-17 17:53:22 +0200116void sedesc_free(struct sedesc *sedesc)
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100117{
Willy Tarreauea59b022022-05-17 17:53:22 +0200118 pool_free(pool_head_sedesc, sedesc);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100119}
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100120
Willy Tarreau4596fe22022-05-17 19:07:51 +0200121/* Tries to allocate a new stconn and initialize its main fields. On
Christopher Faulet9ed77422022-04-12 08:51:15 +0200122 * failure, nothing is allocated and NULL is returned. It is an internal
Willy Tarreaub605c422022-05-17 17:04:55 +0200123 * function. The caller must, at least, set the SE_FL_ORPHAN or SE_FL_DETACHED
Christopher Faulet9ed77422022-04-12 08:51:15 +0200124 * flag.
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100125 */
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200126static struct stconn *sc_new(struct sedesc *sedesc)
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100127{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200128 struct stconn *sc;
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100129
Willy Tarreau0adb2812022-05-27 10:02:48 +0200130 sc = pool_alloc(pool_head_connstream);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100131
Willy Tarreau0adb2812022-05-27 10:02:48 +0200132 if (unlikely(!sc))
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100133 goto alloc_error;
Christopher Fauletbb772d02022-03-22 15:28:36 +0100134
Willy Tarreau1d2c79a2022-05-27 11:15:19 +0200135 sc->obj_type = OBJ_TYPE_SC;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200136 sc->flags = SC_FL_NONE;
137 sc->state = SC_ST_INI;
Christopher Fauletbe5cc762023-02-20 08:41:55 +0100138 sc->ioto = TICK_ETERNITY;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200139 sc->app = NULL;
140 sc->app_ops = NULL;
141 sc->src = NULL;
142 sc->dst = NULL;
143 sc->wait_event.tasklet = NULL;
144 sc->wait_event.events = 0;
Christopher Faulet2f35e7b2022-03-31 11:09:28 +0200145
Christopher Faulet9ed77422022-04-12 08:51:15 +0200146 /* If there is no endpoint, allocate a new one now */
Willy Tarreauea59b022022-05-17 17:53:22 +0200147 if (!sedesc) {
148 sedesc = sedesc_new();
149 if (unlikely(!sedesc))
Christopher Fauletb669d682022-03-22 18:37:19 +0100150 goto alloc_error;
151 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200152 sc->sedesc = sedesc;
153 sedesc->sc = sc;
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100154
Willy Tarreau0adb2812022-05-27 10:02:48 +0200155 return sc;
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100156
157 alloc_error:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200158 pool_free(pool_head_connstream, sc);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100159 return NULL;
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100160}
161
Willy Tarreau31219282022-05-27 16:21:33 +0200162/* Creates a new stream connector and its associated stream from a mux. <sd> must
163 * be defined. It returns NULL on error. On success, the new stream connector is
Willy Tarreaub605c422022-05-17 17:04:55 +0200164 * returned. In this case, SE_FL_ORPHAN flag is removed.
Christopher Faulet9ed77422022-04-12 08:51:15 +0200165 */
Willy Tarreau31219282022-05-27 16:21:33 +0200166struct stconn *sc_new_from_endp(struct sedesc *sd, struct session *sess, struct buffer *input)
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100167{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200168 struct stconn *sc;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100169
Willy Tarreau31219282022-05-27 16:21:33 +0200170 sc = sc_new(sd);
Willy Tarreau0adb2812022-05-27 10:02:48 +0200171 if (unlikely(!sc))
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100172 return NULL;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200173 if (unlikely(!stream_new(sess, sc, input))) {
Christopher Faulet3ab72c62022-09-27 09:18:20 +0200174 sd->sc = NULL;
Willy Tarreau7a8ca0a2023-03-20 19:53:14 +0100175 if (sc->sedesc != sd) {
176 /* none was provided so sc_new() allocated one */
177 sedesc_free(sc->sedesc);
178 }
179 pool_free(pool_head_connstream, sc);
Christopher Faulet3ab72c62022-09-27 09:18:20 +0200180 se_fl_set(sd, SE_FL_ORPHAN);
181 return NULL;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100182 }
Willy Tarreau31219282022-05-27 16:21:33 +0200183 se_fl_clr(sd, SE_FL_ORPHAN);
Willy Tarreau0adb2812022-05-27 10:02:48 +0200184 return sc;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100185}
186
Willy Tarreau4596fe22022-05-17 19:07:51 +0200187/* Creates a new stream connector from an stream. There is no endpoint here, thus it
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200188 * will be created by sc_new(). So the SE_FL_DETACHED flag is set. It returns
Willy Tarreau4596fe22022-05-17 19:07:51 +0200189 * NULL on error. On success, the new stream connector is returned.
Christopher Faulet9ed77422022-04-12 08:51:15 +0200190 */
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200191struct stconn *sc_new_from_strm(struct stream *strm, unsigned int flags)
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100192{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200193 struct stconn *sc;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100194
Willy Tarreau0adb2812022-05-27 10:02:48 +0200195 sc = sc_new(NULL);
196 if (unlikely(!sc))
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100197 return NULL;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200198 sc->flags |= flags;
199 sc_ep_set(sc, SE_FL_DETACHED);
200 sc->app = &strm->obj_type;
201 sc->app_ops = &sc_app_embedded_ops;
202 return sc;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100203}
204
Willy Tarreau4596fe22022-05-17 19:07:51 +0200205/* Creates a new stream connector from an health-check. There is no endpoint here,
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200206 * thus it will be created by sc_new(). So the SE_FL_DETACHED flag is set. It
Willy Tarreau4596fe22022-05-17 19:07:51 +0200207 * returns NULL on error. On success, the new stream connector is returned.
Christopher Faulet9ed77422022-04-12 08:51:15 +0200208 */
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200209struct stconn *sc_new_from_check(struct check *check, unsigned int flags)
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100210{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200211 struct stconn *sc;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100212
Willy Tarreau0adb2812022-05-27 10:02:48 +0200213 sc = sc_new(NULL);
214 if (unlikely(!sc))
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100215 return NULL;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200216 sc->flags |= flags;
217 sc_ep_set(sc, SE_FL_DETACHED);
218 sc->app = &check->obj_type;
219 sc->app_ops = &sc_app_check_ops;
220 return sc;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100221}
222
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200223/* Releases a stconn previously allocated by sc_new(), as well as its
Christopher Faulet9ed77422022-04-12 08:51:15 +0200224 * endpoint, if it exists. This function is called internally or on error path.
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100225 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200226void sc_free(struct stconn *sc)
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100227{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200228 sockaddr_free(&sc->src);
229 sockaddr_free(&sc->dst);
230 if (sc->sedesc) {
231 BUG_ON(!sc_ep_test(sc, SE_FL_DETACHED));
232 sedesc_free(sc->sedesc);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100233 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200234 if (sc->wait_event.tasklet)
235 tasklet_free(sc->wait_event.tasklet);
236 pool_free(pool_head_connstream, sc);
Christopher Faulet1329f2a2021-12-16 17:32:56 +0100237}
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100238
Willy Tarreau4596fe22022-05-17 19:07:51 +0200239/* Conditionally removes a stream connector if it is detached and if there is no app
Christopher Fauleteb50c012022-04-21 14:22:53 +0200240 * layer defined. Except on error path, this one must be used. if release, the
Willy Tarreaue68bc612022-05-27 11:23:05 +0200241 * pointer on the SC is set to NULL.
Christopher Fauletaa69d8f2022-04-12 18:09:48 +0200242 */
Willy Tarreaue68bc612022-05-27 11:23:05 +0200243static void sc_free_cond(struct stconn **scp)
Christopher Fauletaa69d8f2022-04-12 18:09:48 +0200244{
Willy Tarreaue68bc612022-05-27 11:23:05 +0200245 struct stconn *sc = *scp;
Christopher Fauleteb50c012022-04-21 14:22:53 +0200246
Willy Tarreau0adb2812022-05-27 10:02:48 +0200247 if (!sc->app && (!sc->sedesc || sc_ep_test(sc, SE_FL_DETACHED))) {
248 sc_free(sc);
Willy Tarreaue68bc612022-05-27 11:23:05 +0200249 *scp = NULL;
Christopher Fauleteb50c012022-04-21 14:22:53 +0200250 }
Christopher Fauletaa69d8f2022-04-12 18:09:48 +0200251}
252
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100253
Willy Tarreau4596fe22022-05-17 19:07:51 +0200254/* Attaches a stconn to a mux endpoint and sets the endpoint ctx. Returns
Ilya Shipitsin3b64a282022-07-29 22:26:53 +0500255 * -1 on error and 0 on success. SE_FL_DETACHED flag is removed. This function is
Christopher Faulet9ed77422022-04-12 08:51:15 +0200256 * called from a mux when it is attached to a stream or a health-check.
257 */
Willy Tarreau31219282022-05-27 16:21:33 +0200258int sc_attach_mux(struct stconn *sc, void *sd, void *ctx)
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100259{
Christopher Faulet93882042022-01-19 14:56:50 +0100260 struct connection *conn = ctx;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200261 struct sedesc *sedesc = sc->sedesc;
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100262
Willy Tarreau0adb2812022-05-27 10:02:48 +0200263 if (sc_strm(sc)) {
264 if (!sc->wait_event.tasklet) {
265 sc->wait_event.tasklet = tasklet_new();
266 if (!sc->wait_event.tasklet)
Christopher Faulet2f35e7b2022-03-31 11:09:28 +0200267 return -1;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200268 sc->wait_event.tasklet->process = sc_conn_io_cb;
269 sc->wait_event.tasklet->context = sc;
270 sc->wait_event.events = 0;
Christopher Faulet2f35e7b2022-03-31 11:09:28 +0200271 }
272
Willy Tarreau0adb2812022-05-27 10:02:48 +0200273 sc->app_ops = &sc_app_conn_ops;
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100274 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200275 else if (sc_check(sc)) {
276 if (!sc->wait_event.tasklet) {
277 sc->wait_event.tasklet = tasklet_new();
278 if (!sc->wait_event.tasklet)
Christopher Fauletc95eaef2022-05-18 15:57:15 +0200279 return -1;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200280 sc->wait_event.tasklet->process = srv_chk_io_cb;
281 sc->wait_event.tasklet->context = sc;
282 sc->wait_event.events = 0;
Christopher Fauletc95eaef2022-05-18 15:57:15 +0200283 }
284
Willy Tarreau0adb2812022-05-27 10:02:48 +0200285 sc->app_ops = &sc_app_check_ops;
Christopher Fauletc95eaef2022-05-18 15:57:15 +0200286 }
Willy Tarreaue2f79462023-03-20 19:45:41 +0100287
288 sedesc->se = sd;
289 sedesc->conn = ctx;
290 se_fl_set(sedesc, SE_FL_T_MUX);
291 se_fl_clr(sedesc, SE_FL_DETACHED);
292 if (!conn->ctx)
293 conn->ctx = sc;
Christopher Faulet070b91b2022-03-31 19:27:18 +0200294 return 0;
Christopher Faulet93882042022-01-19 14:56:50 +0100295}
296
Willy Tarreau4596fe22022-05-17 19:07:51 +0200297/* Attaches a stconn to an applet endpoint and sets the endpoint
Ilya Shipitsin3b64a282022-07-29 22:26:53 +0500298 * ctx. Returns -1 on error and 0 on success. SE_FL_DETACHED flag is
Christopher Faulet9ed77422022-04-12 08:51:15 +0200299 * removed. This function is called by a stream when a backend applet is
300 * registered.
301 */
Willy Tarreau31219282022-05-27 16:21:33 +0200302static void sc_attach_applet(struct stconn *sc, void *sd)
Christopher Faulet93882042022-01-19 14:56:50 +0100303{
Willy Tarreau31219282022-05-27 16:21:33 +0200304 sc->sedesc->se = sd;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200305 sc_ep_set(sc, SE_FL_T_APPLET);
306 sc_ep_clr(sc, SE_FL_DETACHED);
307 if (sc_strm(sc))
308 sc->app_ops = &sc_app_applet_ops;
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100309}
310
Willy Tarreau4596fe22022-05-17 19:07:51 +0200311/* Attaches a stconn to a app layer and sets the relevant
Willy Tarreaub605c422022-05-17 17:04:55 +0200312 * callbacks. Returns -1 on error and 0 on success. SE_FL_ORPHAN flag is
Christopher Faulet9ed77422022-04-12 08:51:15 +0200313 * removed. This function is called by a stream when it is created to attach it
Willy Tarreau4596fe22022-05-17 19:07:51 +0200314 * on the stream connector on the client side.
Christopher Faulet9ed77422022-04-12 08:51:15 +0200315 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200316int sc_attach_strm(struct stconn *sc, struct stream *strm)
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100317{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200318 sc->app = &strm->obj_type;
319 sc_ep_clr(sc, SE_FL_ORPHAN);
320 if (sc_ep_test(sc, SE_FL_T_MUX)) {
321 sc->wait_event.tasklet = tasklet_new();
322 if (!sc->wait_event.tasklet)
Christopher Faulet2f35e7b2022-03-31 11:09:28 +0200323 return -1;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200324 sc->wait_event.tasklet->process = sc_conn_io_cb;
325 sc->wait_event.tasklet->context = sc;
326 sc->wait_event.events = 0;
Christopher Faulet2f35e7b2022-03-31 11:09:28 +0200327
Willy Tarreau0adb2812022-05-27 10:02:48 +0200328 sc->app_ops = &sc_app_conn_ops;
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100329 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200330 else if (sc_ep_test(sc, SE_FL_T_APPLET)) {
331 sc->app_ops = &sc_app_applet_ops;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100332 }
333 else {
Willy Tarreau0adb2812022-05-27 10:02:48 +0200334 sc->app_ops = &sc_app_embedded_ops;
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100335 }
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100336 return 0;
337}
338
Willy Tarreau4596fe22022-05-17 19:07:51 +0200339/* Detaches the stconn from the endpoint, if any. For a connecrion, if a
Christopher Faulet9ed77422022-04-12 08:51:15 +0200340 * mux owns the connection ->detach() callback is called. Otherwise, it means
Willy Tarreau4596fe22022-05-17 19:07:51 +0200341 * the stream connector owns the connection. In this case the connection is closed
Christopher Faulet9ed77422022-04-12 08:51:15 +0200342 * and released. For an applet, the appctx is released. If still allocated, the
343 * endpoint is reset and flag as detached. If the app layer is also detached,
Willy Tarreau4596fe22022-05-17 19:07:51 +0200344 * the stream connector is released.
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100345 */
Willy Tarreaue68bc612022-05-27 11:23:05 +0200346static void sc_detach_endp(struct stconn **scp)
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100347{
Willy Tarreaue68bc612022-05-27 11:23:05 +0200348 struct stconn *sc = *scp;
Christopher Fauleteb50c012022-04-21 14:22:53 +0200349
Willy Tarreau0adb2812022-05-27 10:02:48 +0200350 if (!sc)
Christopher Fauleteb50c012022-04-21 14:22:53 +0200351 return;
352
Willy Tarreau0adb2812022-05-27 10:02:48 +0200353 if (sc_ep_test(sc, SE_FL_T_MUX)) {
354 struct connection *conn = __sc_conn(sc);
355 struct sedesc *sedesc = sc->sedesc;
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100356
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100357 if (conn->mux) {
Willy Tarreau0adb2812022-05-27 10:02:48 +0200358 if (sc->wait_event.events != 0)
359 conn->mux->unsubscribe(sc, sc->wait_event.events, &sc->wait_event);
Willy Tarreau798465b2022-05-17 18:20:02 +0200360 se_fl_set(sedesc, SE_FL_ORPHAN);
Willy Tarreauc1054922022-05-18 07:43:52 +0200361 sedesc->sc = NULL;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200362 sc->sedesc = NULL;
Willy Tarreau798465b2022-05-17 18:20:02 +0200363 conn->mux->detach(sedesc);
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100364 }
365 else {
366 /* It's too early to have a mux, let's just destroy
367 * the connection
368 */
369 conn_stop_tracking(conn);
370 conn_full_close(conn);
371 if (conn->destroy_cb)
372 conn->destroy_cb(conn);
373 conn_free(conn);
374 }
375 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200376 else if (sc_ep_test(sc, SE_FL_T_APPLET)) {
377 struct appctx *appctx = __sc_appctx(sc);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100378
Willy Tarreau0adb2812022-05-27 10:02:48 +0200379 sc_ep_set(sc, SE_FL_ORPHAN);
380 sc->sedesc->sc = NULL;
381 sc->sedesc = NULL;
Willy Tarreau1c3ead42022-05-10 19:42:22 +0200382 appctx_shut(appctx);
383 appctx_free(appctx);
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100384 }
385
Willy Tarreau0adb2812022-05-27 10:02:48 +0200386 if (sc->sedesc) {
Willy Tarreauda59c892022-05-27 17:03:34 +0200387 /* the SD wasn't used and can be recycled */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200388 sc->sedesc->se = NULL;
389 sc->sedesc->conn = NULL;
Willy Tarreauda59c892022-05-27 17:03:34 +0200390 sc->sedesc->flags = 0;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200391 sc_ep_set(sc, SE_FL_DETACHED);
Christopher Fauletdb90f2a2022-03-22 16:06:25 +0100392 }
393
Willy Tarreaue68bc612022-05-27 11:23:05 +0200394 /* FIXME: Rest SC for now but must be reviewed. SC flags are only
Christopher Fauletc36de9d2022-01-06 08:44:58 +0100395 * connection related for now but this will evolved
396 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200397 sc->flags &= SC_FL_ISBACK;
398 if (sc_strm(sc))
399 sc->app_ops = &sc_app_embedded_ops;
Willy Tarreau2f2318d2022-05-18 10:17:16 +0200400 else
Willy Tarreau0adb2812022-05-27 10:02:48 +0200401 sc->app_ops = NULL;
Willy Tarreaue68bc612022-05-27 11:23:05 +0200402 sc_free_cond(scp);
Christopher Fauletc36de9d2022-01-06 08:44:58 +0100403}
404
Willy Tarreau4596fe22022-05-17 19:07:51 +0200405/* Detaches the stconn from the app layer. If there is no endpoint attached
406 * to the stconn
Christopher Faulet9ed77422022-04-12 08:51:15 +0200407 */
Willy Tarreaue68bc612022-05-27 11:23:05 +0200408static void sc_detach_app(struct stconn **scp)
Christopher Fauletc36de9d2022-01-06 08:44:58 +0100409{
Willy Tarreaue68bc612022-05-27 11:23:05 +0200410 struct stconn *sc = *scp;
Christopher Fauleteb50c012022-04-21 14:22:53 +0200411
Willy Tarreau0adb2812022-05-27 10:02:48 +0200412 if (!sc)
Christopher Fauleteb50c012022-04-21 14:22:53 +0200413 return;
414
Willy Tarreau0adb2812022-05-27 10:02:48 +0200415 sc->app = NULL;
416 sc->app_ops = NULL;
417 sockaddr_free(&sc->src);
418 sockaddr_free(&sc->dst);
Christopher Faulet2f35e7b2022-03-31 11:09:28 +0200419
Willy Tarreau0adb2812022-05-27 10:02:48 +0200420 if (sc->wait_event.tasklet)
421 tasklet_free(sc->wait_event.tasklet);
422 sc->wait_event.tasklet = NULL;
423 sc->wait_event.events = 0;
Willy Tarreaue68bc612022-05-27 11:23:05 +0200424 sc_free_cond(scp);
Christopher Fauleteb50c012022-04-21 14:22:53 +0200425}
426
Willy Tarreau4596fe22022-05-17 19:07:51 +0200427/* Destroy the stconn. It is detached from its endpoint and its
428 * application. After this call, the stconn must be considered as released.
Christopher Fauleteb50c012022-04-21 14:22:53 +0200429 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200430void sc_destroy(struct stconn *sc)
Christopher Fauleteb50c012022-04-21 14:22:53 +0200431{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200432 sc_detach_endp(&sc);
433 sc_detach_app(&sc);
434 BUG_ON_HOT(sc);
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100435}
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100436
Willy Tarreau4596fe22022-05-17 19:07:51 +0200437/* Resets the stream connector endpoint. It happens when the app layer want to renew
Christopher Faulet9ed77422022-04-12 08:51:15 +0200438 * its endpoint. For a connection retry for instance. If a mux or an applet is
Ilya Shipitsin3b64a282022-07-29 22:26:53 +0500439 * attached, a new endpoint is created. Returns -1 on error and 0 on success.
Christopher Fauleta6c4a482022-04-28 18:25:24 +0200440 *
Willy Tarreaub605c422022-05-17 17:04:55 +0200441 * Only SE_FL_ERROR flag is removed on the endpoint. Orther flags are preserved.
Christopher Fauleta6c4a482022-04-28 18:25:24 +0200442 * It is the caller responsibility to remove other flags if needed.
Christopher Faulet9ed77422022-04-12 08:51:15 +0200443 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200444int sc_reset_endp(struct stconn *sc)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100445{
Willy Tarreau31219282022-05-27 16:21:33 +0200446 struct sedesc *new_sd;
Christopher Fauletb041b232022-03-24 10:27:02 +0100447
Willy Tarreau0adb2812022-05-27 10:02:48 +0200448 BUG_ON(!sc->app);
Christopher Fauleta6c4a482022-04-28 18:25:24 +0200449
Willy Tarreau0adb2812022-05-27 10:02:48 +0200450 sc_ep_clr(sc, SE_FL_ERROR);
451 if (!__sc_endp(sc)) {
Christopher Fauletb041b232022-03-24 10:27:02 +0100452 /* endpoint not attached or attached to a mux with no
453 * target. Thus the endpoint will not be release but just
Willy Tarreau0adb2812022-05-27 10:02:48 +0200454 * reset. The app is still attached, the sc will not be
Christopher Fauleteb50c012022-04-21 14:22:53 +0200455 * released.
Christopher Fauletb041b232022-03-24 10:27:02 +0100456 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200457 sc_detach_endp(&sc);
Christopher Fauletb041b232022-03-24 10:27:02 +0100458 return 0;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100459 }
Christopher Fauletb041b232022-03-24 10:27:02 +0100460
461 /* allocate the new endpoint first to be able to set error if it
462 * fails */
Willy Tarreau31219282022-05-27 16:21:33 +0200463 new_sd = sedesc_new();
464 if (!unlikely(new_sd)) {
Willy Tarreau0adb2812022-05-27 10:02:48 +0200465 sc_ep_set(sc, SE_FL_ERROR);
Christopher Fauletb041b232022-03-24 10:27:02 +0100466 return -1;
467 }
468
Willy Tarreau0adb2812022-05-27 10:02:48 +0200469 /* The app is still attached, the sc will not be released */
470 sc_detach_endp(&sc);
Willy Tarreau6a378d12022-08-11 13:56:42 +0200471 BUG_ON(!sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +0200472 BUG_ON(sc->sedesc);
Willy Tarreau31219282022-05-27 16:21:33 +0200473 sc->sedesc = new_sd;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200474 sc->sedesc->sc = sc;
475 sc_ep_set(sc, SE_FL_DETACHED);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100476 return 0;
477}
Christopher Faulet37046632022-04-01 11:36:58 +0200478
479
Willy Tarreaue68bc612022-05-27 11:23:05 +0200480/* Create an applet to handle a stream connector as a new appctx. The SC will
Christopher Faulet37046632022-04-01 11:36:58 +0200481 * wake it up every time it is solicited. The appctx must be deleted by the task
Willy Tarreau19c65a92022-05-27 08:49:24 +0200482 * handler using sc_detach_endp(), possibly from within the function itself.
Christopher Faulet37046632022-04-01 11:36:58 +0200483 * It also pre-initializes the applet's context and returns it (or NULL in case
484 * it could not be allocated).
485 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200486struct appctx *sc_applet_create(struct stconn *sc, struct applet *app)
Christopher Faulet37046632022-04-01 11:36:58 +0200487{
488 struct appctx *appctx;
489
Willy Tarreau0adb2812022-05-27 10:02:48 +0200490 appctx = appctx_new_here(app, sc->sedesc);
Christopher Faulet37046632022-04-01 11:36:58 +0200491 if (!appctx)
492 return NULL;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200493 sc_attach_applet(sc, appctx);
494 appctx->t->nice = __sc_strm(sc)->task->nice;
Willy Tarreau90e8b452022-05-25 18:21:43 +0200495 applet_need_more_data(appctx);
Christopher Faulet37046632022-04-01 11:36:58 +0200496 appctx_wakeup(appctx);
Christopher Fauleta33ff7a2022-04-21 11:52:07 +0200497
Willy Tarreau0adb2812022-05-27 10:02:48 +0200498 sc->state = SC_ST_RDY;
Christopher Faulet37046632022-04-01 11:36:58 +0200499 return appctx;
500}
501
Ilya Shipitsin07be66d2023-04-01 12:26:42 +0200502/* Conditionally forward the close to the write side. It return 1 if it can be
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100503 * forwarded. It is the caller responsibility to forward the close to the write
504 * side. Otherwise, 0 is returned. In this case, CF_SHUTW_NOW flag may be set on
505 * the channel if we are only waiting for the outgoing data to be flushed.
506 */
507static inline int sc_cond_forward_shutw(struct stconn *sc)
508{
509 /* The close must not be forwarded */
510 if (!(sc_ic(sc)->flags & CF_SHUTR) || !(sc->flags & SC_FL_NOHALF))
511 return 0;
512
513 if (!channel_is_empty(sc_ic(sc))) {
514 /* the close to the write side cannot be forwarded now because
515 * we should flush outgoing data first. But instruct the output
516 * channel it should be done ASAP.
517 */
518 channel_shutw_now(sc_oc(sc));
519 return 0;
520 }
521
522 /* the close can be immediately forwarded to the write side */
523 return 1;
524}
525
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200526/*
Willy Tarreau4596fe22022-05-17 19:07:51 +0200527 * This function performs a shutdown-read on a detached stream connector in a
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200528 * connected or init state (it does nothing for other states). It either shuts
529 * the read side or marks itself as closed. The buffer flags are updated to
Willy Tarreaucb041662022-05-17 19:44:42 +0200530 * reflect the new state. If the stream connector has SC_FL_NOHALF, we also
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200531 * forward the close to the write side. The owner task is woken up if it exists.
532 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200533static void sc_app_shutr(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200534{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200535 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200536
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200537 if (ic->flags & CF_SHUTR)
Christopher Fauletc665bb52023-04-04 10:06:57 +0200538 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +0100539 ic->flags |= CF_SHUTR|CF_READ_EVENT;
Christopher Faulet4c135682023-02-16 11:09:31 +0100540 sc_ep_report_read_activity(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200541
Willy Tarreau0adb2812022-05-27 10:02:48 +0200542 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200543 return;
544
Willy Tarreau0adb2812022-05-27 10:02:48 +0200545 if (sc_oc(sc)->flags & CF_SHUTW) {
546 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +0200547 if (sc->flags & SC_FL_ISBACK)
548 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200549 }
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100550 else if (sc_cond_forward_shutw(sc))
Willy Tarreau0adb2812022-05-27 10:02:48 +0200551 return sc_app_shutw(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200552
553 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200554 if (!(sc->flags & SC_FL_DONT_WAKE))
555 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200556}
557
558/*
Willy Tarreau4596fe22022-05-17 19:07:51 +0200559 * This function performs a shutdown-write on a detached stream connector in a
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200560 * connected or init state (it does nothing for other states). It either shuts
561 * the write side or marks itself as closed. The buffer flags are updated to
Willy Tarreaue68bc612022-05-27 11:23:05 +0200562 * reflect the new state. It does also close everything if the SC was marked as
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200563 * being in error state. The owner task is woken up if it exists.
564 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200565static void sc_app_shutw(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200566{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200567 struct channel *ic = sc_ic(sc);
568 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200569
570 oc->flags &= ~CF_SHUTW_NOW;
571 if (oc->flags & CF_SHUTW)
572 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +0100573 oc->flags |= CF_SHUTW|CF_WRITE_EVENT;
Christopher Fauletbcdcfad2023-02-20 08:36:53 +0100574 sc_set_hcto(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200575
Willy Tarreau0adb2812022-05-27 10:02:48 +0200576 switch (sc->state) {
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200577 case SC_ST_RDY:
578 case SC_ST_EST:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200579 /* we have to shut before closing, otherwise some short messages
580 * may never leave the system, especially when there are remaining
581 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreaucb041662022-05-17 19:44:42 +0200582 * However, if SC_FL_NOLINGER is explicitly set, we know there is
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200583 * no risk so we close both sides immediately.
584 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200585 if (!sc_ep_test(sc, SE_FL_ERROR) && !(sc->flags & SC_FL_NOLINGER) &&
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200586 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
587 return;
588
Willy Tarreau476c2802022-11-14 07:36:42 +0100589 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200590 case SC_ST_CON:
591 case SC_ST_CER:
592 case SC_ST_QUE:
593 case SC_ST_TAR:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200594 /* Note that none of these states may happen with applets */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200595 sc->state = SC_ST_DIS;
Willy Tarreau476c2802022-11-14 07:36:42 +0100596 __fallthrough;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200597 default:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200598 sc->flags &= ~SC_FL_NOLINGER;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200599 ic->flags |= CF_SHUTR;
Christopher Fauletca679922022-07-20 13:24:04 +0200600 if (sc->flags & SC_FL_ISBACK)
601 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200602 }
603
604 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200605 if (!(sc->flags & SC_FL_DONT_WAKE))
606 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200607}
608
609/* default chk_rcv function for scheduled tasks */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200610static void sc_app_chk_rcv(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200611{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200612 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200613
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200614 if (ic->pipe) {
615 /* stop reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200616 sc_need_room(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200617 }
618 else {
619 /* (re)start reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200620 if (!(sc->flags & SC_FL_DONT_WAKE))
621 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200622 }
623}
624
625/* default chk_snd function for scheduled tasks */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200626static void sc_app_chk_snd(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200627{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200628 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200629
Willy Tarreau0adb2812022-05-27 10:02:48 +0200630 if (unlikely(sc->state != SC_ST_EST || (oc->flags & CF_SHUTW)))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200631 return;
632
Willy Tarreau0adb2812022-05-27 10:02:48 +0200633 if (!sc_ep_test(sc, SE_FL_WAIT_DATA) || /* not waiting for data */
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200634 channel_is_empty(oc)) /* called with nothing to send ! */
635 return;
636
637 /* Otherwise there are remaining data to be sent in the buffer,
638 * so we tell the handler.
639 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200640 sc_ep_clr(sc, SE_FL_WAIT_DATA);
Willy Tarreau0adb2812022-05-27 10:02:48 +0200641 if (!(sc->flags & SC_FL_DONT_WAKE))
642 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200643}
644
645/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200646 * This function performs a shutdown-read on a stream connector attached to
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200647 * a connection in a connected or init state (it does nothing for other
648 * states). It either shuts the read side or marks itself as closed. The buffer
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200649 * flags are updated to reflect the new state. If the stream connector has
Willy Tarreaucb041662022-05-17 19:44:42 +0200650 * SC_FL_NOHALF, we also forward the close to the write side. If a control
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200651 * layer is defined, then it is supposed to be a socket layer and file
652 * descriptors are then shutdown or closed accordingly. The function
653 * automatically disables polling if needed.
654 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200655static void sc_app_shutr_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200656{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200657 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200658
Willy Tarreau0adb2812022-05-27 10:02:48 +0200659 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200660
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200661 if (ic->flags & CF_SHUTR)
662 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +0100663 ic->flags |= CF_SHUTR|CF_READ_EVENT;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200664
Willy Tarreau0adb2812022-05-27 10:02:48 +0200665 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200666 return;
667
Willy Tarreau0adb2812022-05-27 10:02:48 +0200668 if (sc_oc(sc)->flags & CF_SHUTW) {
669 sc_conn_shut(sc);
670 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +0200671 if (sc->flags & SC_FL_ISBACK)
672 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200673 }
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100674 else if (sc_cond_forward_shutw(sc))
Willy Tarreau0adb2812022-05-27 10:02:48 +0200675 return sc_app_shutw_conn(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200676}
677
678/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200679 * This function performs a shutdown-write on a stream connector attached to
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200680 * a connection in a connected or init state (it does nothing for other
681 * states). It either shuts the write side or marks itself as closed. The
682 * buffer flags are updated to reflect the new state. It does also close
Willy Tarreaue68bc612022-05-27 11:23:05 +0200683 * everything if the SC was marked as being in error state. If there is a
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200684 * data-layer shutdown, it is called.
685 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200686static void sc_app_shutw_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200687{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200688 struct channel *ic = sc_ic(sc);
689 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200690
Willy Tarreau0adb2812022-05-27 10:02:48 +0200691 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200692
693 oc->flags &= ~CF_SHUTW_NOW;
694 if (oc->flags & CF_SHUTW)
695 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +0100696 oc->flags |= CF_SHUTW|CF_WRITE_EVENT;
Christopher Fauletbcdcfad2023-02-20 08:36:53 +0100697 sc_set_hcto(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200698
Willy Tarreau0adb2812022-05-27 10:02:48 +0200699 switch (sc->state) {
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200700 case SC_ST_RDY:
701 case SC_ST_EST:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200702 /* we have to shut before closing, otherwise some short messages
703 * may never leave the system, especially when there are remaining
704 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreaucb041662022-05-17 19:44:42 +0200705 * However, if SC_FL_NOLINGER is explicitly set, we know there is
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200706 * no risk so we close both sides immediately.
707 */
708
Willy Tarreau0adb2812022-05-27 10:02:48 +0200709 if (sc_ep_test(sc, SE_FL_ERROR)) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200710 /* quick close, the socket is already shut anyway */
711 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200712 else if (sc->flags & SC_FL_NOLINGER) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200713 /* unclean data-layer shutdown, typically an aborted request
714 * or a forwarded shutdown from a client to a server due to
715 * option abortonclose. No need for the TLS layer to try to
716 * emit a shutdown message.
717 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200718 sc_conn_shutw(sc, CO_SHW_SILENT);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200719 }
720 else {
721 /* clean data-layer shutdown. This only happens on the
722 * frontend side, or on the backend side when forwarding
723 * a client close in TCP mode or in HTTP TUNNEL mode
724 * while option abortonclose is set. We want the TLS
725 * layer to try to signal it to the peer before we close.
726 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200727 sc_conn_shutw(sc, CO_SHW_NORMAL);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200728
729 if (!(ic->flags & (CF_SHUTR|CF_DONT_READ)))
730 return;
731 }
732
Willy Tarreau476c2802022-11-14 07:36:42 +0100733 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200734 case SC_ST_CON:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200735 /* we may have to close a pending connection, and mark the
736 * response buffer as shutr
737 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200738 sc_conn_shut(sc);
Willy Tarreau476c2802022-11-14 07:36:42 +0100739 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200740 case SC_ST_CER:
741 case SC_ST_QUE:
742 case SC_ST_TAR:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200743 sc->state = SC_ST_DIS;
Willy Tarreau476c2802022-11-14 07:36:42 +0100744 __fallthrough;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200745 default:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200746 sc->flags &= ~SC_FL_NOLINGER;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200747 ic->flags |= CF_SHUTR;
Christopher Fauletca679922022-07-20 13:24:04 +0200748 if (sc->flags & SC_FL_ISBACK)
749 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200750 }
751}
752
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200753/* This function is used for inter-stream connector calls. It is called by the
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200754 * consumer to inform the producer side that it may be interested in checking
755 * for free space in the buffer. Note that it intentionally does not update
756 * timeouts, so that we can still check them later at wake-up. This function is
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200757 * dedicated to connection-based stream connectors.
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200758 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200759static void sc_app_chk_rcv_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200760{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200761 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200762
763 /* (re)start reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200764 if (sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
765 tasklet_wakeup(sc->wait_event.tasklet);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200766}
767
768
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200769/* This function is used for inter-stream connector calls. It is called by the
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200770 * producer to inform the consumer side that it may be interested in checking
771 * for data in the buffer. Note that it intentionally does not update timeouts,
772 * so that we can still check them later at wake-up.
773 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200774static void sc_app_chk_snd_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200775{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200776 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200777
Willy Tarreau0adb2812022-05-27 10:02:48 +0200778 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200779
Willy Tarreau0adb2812022-05-27 10:02:48 +0200780 if (unlikely(!sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST) ||
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200781 (oc->flags & CF_SHUTW)))
782 return;
783
784 if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */
785 return;
786
787 if (!oc->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200788 !sc_ep_test(sc, SE_FL_WAIT_DATA)) /* not waiting for data */
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200789 return;
790
Willy Tarreau0adb2812022-05-27 10:02:48 +0200791 if (!(sc->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(sc_oc(sc)))
792 sc_conn_send(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200793
Willy Tarreau0adb2812022-05-27 10:02:48 +0200794 if (sc_ep_test(sc, SE_FL_ERROR | SE_FL_ERR_PENDING) || sc_is_conn_error(sc)) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200795 /* Write error on the file descriptor */
Christopher Faulet7f6aa562022-10-17 10:21:19 +0200796 if (sc->state >= SC_ST_CON && sc_ep_test(sc, SE_FL_EOS))
Willy Tarreau0adb2812022-05-27 10:02:48 +0200797 sc_ep_set(sc, SE_FL_ERROR);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200798 goto out_wakeup;
799 }
800
801 /* OK, so now we know that some data might have been sent, and that we may
802 * have to poll first. We have to do that too if the buffer is not empty.
803 */
804 if (channel_is_empty(oc)) {
805 /* the connection is established but we can't write. Either the
806 * buffer is empty, or we just refrain from sending because the
807 * ->o limit was reached. Maybe we just wrote the last
808 * chunk and need to close.
809 */
810 if (((oc->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
811 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreau0adb2812022-05-27 10:02:48 +0200812 sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST)) {
813 sc_shutw(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200814 goto out_wakeup;
815 }
816
817 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreau0adb2812022-05-27 10:02:48 +0200818 sc_ep_set(sc, SE_FL_WAIT_DATA);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200819 }
820 else {
821 /* Otherwise there are remaining data to be sent in the buffer,
822 * which means we have to poll before doing so.
823 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200824 sc_ep_clr(sc, SE_FL_WAIT_DATA);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200825 }
826
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200827 /* in case of special condition (error, shutdown, end of write...), we
828 * have to notify the task.
829 */
Christopher Faulet71c486b2023-02-09 14:14:38 +0100830 if (likely((oc->flags & CF_SHUTW) ||
831 ((oc->flags & CF_WRITE_EVENT) && sc->state < SC_ST_EST) ||
832 ((oc->flags & CF_WAKE_WRITE) &&
833 ((channel_is_empty(oc) && !oc->to_forward) ||
834 !sc_state_in(sc->state, SC_SB_EST))))) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200835 out_wakeup:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200836 if (!(sc->flags & SC_FL_DONT_WAKE))
837 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200838 }
839}
840
841/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200842 * This function performs a shutdown-read on a stream connector attached to an
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200843 * applet in a connected or init state (it does nothing for other states). It
844 * either shuts the read side or marks itself as closed. The buffer flags are
Willy Tarreaucb041662022-05-17 19:44:42 +0200845 * updated to reflect the new state. If the stream connector has SC_FL_NOHALF,
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200846 * we also forward the close to the write side. The owner task is woken up if
847 * it exists.
848 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200849static void sc_app_shutr_applet(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200850{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200851 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200852
Willy Tarreau0adb2812022-05-27 10:02:48 +0200853 BUG_ON(!sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200854
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200855 if (ic->flags & CF_SHUTR)
856 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +0100857 ic->flags |= CF_SHUTR|CF_READ_EVENT;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200858
859 /* Note: on shutr, we don't call the applet */
860
Willy Tarreau0adb2812022-05-27 10:02:48 +0200861 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200862 return;
863
Willy Tarreau0adb2812022-05-27 10:02:48 +0200864 if (sc_oc(sc)->flags & CF_SHUTW) {
865 appctx_shut(__sc_appctx(sc));
866 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +0200867 if (sc->flags & SC_FL_ISBACK)
868 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200869 }
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100870 else if (sc_cond_forward_shutw(sc))
Willy Tarreau0adb2812022-05-27 10:02:48 +0200871 return sc_app_shutw_applet(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200872}
873
874/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200875 * This function performs a shutdown-write on a stream connector attached to an
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200876 * applet in a connected or init state (it does nothing for other states). It
877 * either shuts the write side or marks itself as closed. The buffer flags are
878 * updated to reflect the new state. It does also close everything if the SI
879 * was marked as being in error state. The owner task is woken up if it exists.
880 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200881static void sc_app_shutw_applet(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200882{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200883 struct channel *ic = sc_ic(sc);
884 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200885
Willy Tarreau0adb2812022-05-27 10:02:48 +0200886 BUG_ON(!sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200887
888 oc->flags &= ~CF_SHUTW_NOW;
889 if (oc->flags & CF_SHUTW)
890 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +0100891 oc->flags |= CF_SHUTW|CF_WRITE_EVENT;
Christopher Fauletbcdcfad2023-02-20 08:36:53 +0100892 sc_set_hcto(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200893
894 /* on shutw we always wake the applet up */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200895 appctx_wakeup(__sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200896
Willy Tarreau0adb2812022-05-27 10:02:48 +0200897 switch (sc->state) {
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200898 case SC_ST_RDY:
899 case SC_ST_EST:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200900 /* we have to shut before closing, otherwise some short messages
901 * may never leave the system, especially when there are remaining
902 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreaucb041662022-05-17 19:44:42 +0200903 * However, if SC_FL_NOLINGER is explicitly set, we know there is
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200904 * no risk so we close both sides immediately.
905 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200906 if (!sc_ep_test(sc, SE_FL_ERROR) && !(sc->flags & SC_FL_NOLINGER) &&
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200907 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
908 return;
909
Willy Tarreau476c2802022-11-14 07:36:42 +0100910 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200911 case SC_ST_CON:
912 case SC_ST_CER:
913 case SC_ST_QUE:
914 case SC_ST_TAR:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200915 /* Note that none of these states may happen with applets */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200916 appctx_shut(__sc_appctx(sc));
917 sc->state = SC_ST_DIS;
Willy Tarreau476c2802022-11-14 07:36:42 +0100918 __fallthrough;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200919 default:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200920 sc->flags &= ~SC_FL_NOLINGER;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200921 ic->flags |= CF_SHUTR;
Christopher Fauletca679922022-07-20 13:24:04 +0200922 if (sc->flags & SC_FL_ISBACK)
923 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200924 }
925}
926
927/* chk_rcv function for applets */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200928static void sc_app_chk_rcv_applet(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200929{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200930 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200931
Willy Tarreau0adb2812022-05-27 10:02:48 +0200932 BUG_ON(!sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200933
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200934 if (!ic->pipe) {
935 /* (re)start reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200936 appctx_wakeup(__sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200937 }
938}
939
940/* chk_snd function for applets */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200941static void sc_app_chk_snd_applet(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200942{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200943 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200944
Willy Tarreau0adb2812022-05-27 10:02:48 +0200945 BUG_ON(!sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200946
Willy Tarreau0adb2812022-05-27 10:02:48 +0200947 if (unlikely(sc->state != SC_ST_EST || (oc->flags & CF_SHUTW)))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200948 return;
949
Christopher Faulet04f03e12022-06-01 17:35:34 +0200950 /* we only wake the applet up if it was waiting for some data and is ready to consume it */
951 if (!sc_ep_test(sc, SE_FL_WAIT_DATA) || sc_ep_test(sc, SE_FL_WONT_CONSUME))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200952 return;
953
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200954 if (!channel_is_empty(oc)) {
955 /* (re)start sending */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200956 appctx_wakeup(__sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200957 }
958}
Christopher Faulet13045f02022-04-01 14:23:38 +0200959
960
961/* This function is designed to be called from within the stream handler to
Willy Tarreau4596fe22022-05-17 19:07:51 +0200962 * update the input channel's expiration timer and the stream connector's
Christopher Faulet13045f02022-04-01 14:23:38 +0200963 * Rx flags based on the channel's flags. It needs to be called only once
964 * after the channel's flags have settled down, and before they are cleared,
965 * though it doesn't harm to call it as often as desired (it just slightly
966 * hurts performance). It must not be called from outside of the stream
967 * handler, as what it does will be used to compute the stream task's
968 * expiration.
969 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200970void sc_update_rx(struct stconn *sc)
Christopher Faulet13045f02022-04-01 14:23:38 +0200971{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200972 struct channel *ic = sc_ic(sc);
Christopher Faulet13045f02022-04-01 14:23:38 +0200973
Willy Tarreau676c8db2022-05-24 16:22:24 +0200974 if (ic->flags & CF_SHUTR)
Christopher Faulet13045f02022-04-01 14:23:38 +0200975 return;
Christopher Faulet13045f02022-04-01 14:23:38 +0200976
977 /* Read not closed, update FD status and timeout for reads */
978 if (ic->flags & CF_DONT_READ)
Willy Tarreau0adb2812022-05-27 10:02:48 +0200979 sc_wont_read(sc);
Christopher Faulet13045f02022-04-01 14:23:38 +0200980 else
Willy Tarreau0adb2812022-05-27 10:02:48 +0200981 sc_will_read(sc);
Christopher Faulet13045f02022-04-01 14:23:38 +0200982
Willy Tarreau0adb2812022-05-27 10:02:48 +0200983 sc_chk_rcv(sc);
Christopher Faulet13045f02022-04-01 14:23:38 +0200984}
985
986/* This function is designed to be called from within the stream handler to
Willy Tarreau4596fe22022-05-17 19:07:51 +0200987 * update the output channel's expiration timer and the stream connector's
Christopher Faulet13045f02022-04-01 14:23:38 +0200988 * Tx flags based on the channel's flags. It needs to be called only once
989 * after the channel's flags have settled down, and before they are cleared,
990 * though it doesn't harm to call it as often as desired (it just slightly
991 * hurts performance). It must not be called from outside of the stream
992 * handler, as what it does will be used to compute the stream task's
993 * expiration.
994 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200995void sc_update_tx(struct stconn *sc)
Christopher Faulet13045f02022-04-01 14:23:38 +0200996{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200997 struct channel *oc = sc_oc(sc);
Christopher Faulet13045f02022-04-01 14:23:38 +0200998
999 if (oc->flags & CF_SHUTW)
1000 return;
1001
1002 /* Write not closed, update FD status and timeout for writes */
1003 if (channel_is_empty(oc)) {
1004 /* stop writing */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001005 if (!sc_ep_test(sc, SE_FL_WAIT_DATA)) {
Christopher Faulet13045f02022-04-01 14:23:38 +02001006 if ((oc->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau0adb2812022-05-27 10:02:48 +02001007 sc_ep_set(sc, SE_FL_WAIT_DATA);
Christopher Faulet13045f02022-04-01 14:23:38 +02001008 }
1009 return;
1010 }
1011
Christopher Faulet15315d62023-02-20 08:23:51 +01001012 /* (re)start writing */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001013 sc_ep_clr(sc, SE_FL_WAIT_DATA);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001014}
1015
Willy Tarreau19c65a92022-05-27 08:49:24 +02001016/* This function is the equivalent to sc_update() except that it's
Christopher Faulet5e29b762022-04-04 08:58:34 +02001017 * designed to be called from outside the stream handlers, typically the lower
1018 * layers (applets, connections) after I/O completion. After updating the stream
1019 * interface and timeouts, it will try to forward what can be forwarded, then to
1020 * wake the associated task up if an important event requires special handling.
Willy Tarreau15252cd2022-05-25 16:36:21 +02001021 * It may update SE_FL_WAIT_DATA and/or SC_FL_NEED_ROOM, that the callers are
Christopher Faulet5e29b762022-04-04 08:58:34 +02001022 * encouraged to watch to take appropriate action.
Willy Tarreau19c65a92022-05-27 08:49:24 +02001023 * It should not be called from within the stream itself, sc_update()
Christopher Faulet5e29b762022-04-04 08:58:34 +02001024 * is designed for this.
1025 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001026static void sc_notify(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001027{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001028 struct channel *ic = sc_ic(sc);
1029 struct channel *oc = sc_oc(sc);
Willy Tarreaue68bc612022-05-27 11:23:05 +02001030 struct stconn *sco = sc_opposite(sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +02001031 struct task *task = sc_strm_task(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001032
1033 /* process consumer side */
1034 if (channel_is_empty(oc)) {
Willy Tarreau0adb2812022-05-27 10:02:48 +02001035 struct connection *conn = sc_conn(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001036
1037 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau0adb2812022-05-27 10:02:48 +02001038 (sc->state == SC_ST_EST) && (!conn || !(conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS))))
1039 sc_shutw(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001040 }
1041
1042 /* indicate that we may be waiting for data from the output channel or
1043 * we're about to close and can't expect more data if SHUTW_NOW is there.
1044 */
1045 if (!(oc->flags & (CF_SHUTW|CF_SHUTW_NOW)))
Willy Tarreau0adb2812022-05-27 10:02:48 +02001046 sc_ep_set(sc, SE_FL_WAIT_DATA);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001047 else if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW)
Willy Tarreau0adb2812022-05-27 10:02:48 +02001048 sc_ep_clr(sc, SE_FL_WAIT_DATA);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001049
Christopher Faulet5e29b762022-04-04 08:58:34 +02001050 if (oc->flags & CF_DONT_READ)
Willy Tarreaue68bc612022-05-27 11:23:05 +02001051 sc_wont_read(sco);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001052 else
Willy Tarreaue68bc612022-05-27 11:23:05 +02001053 sc_will_read(sco);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001054
1055 /* Notify the other side when we've injected data into the IC that
1056 * needs to be forwarded. We can do fast-forwarding as soon as there
1057 * are output data, but we avoid doing this if some of the data are
1058 * not yet scheduled for being forwarded, because it is very likely
1059 * that it will be done again immediately afterwards once the following
Willy Tarreau15252cd2022-05-25 16:36:21 +02001060 * data are parsed (eg: HTTP chunking). We only clear SC_FL_NEED_ROOM
1061 * once we've emptied *some* of the output buffer, and not just when
1062 * there is available room, because applets are often forced to stop
1063 * before the buffer is full. We must not stop based on input data
1064 * alone because an HTTP parser might need more data to complete the
1065 * parsing.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001066 */
1067 if (!channel_is_empty(ic) &&
Willy Tarreaue68bc612022-05-27 11:23:05 +02001068 sc_ep_test(sco, SE_FL_WAIT_DATA) &&
Christopher Faulet5e29b762022-04-04 08:58:34 +02001069 (!(ic->flags & CF_EXPECT_MORE) || c_full(ic) || ci_data(ic) == 0 || ic->pipe)) {
1070 int new_len, last_len;
1071
1072 last_len = co_data(ic);
1073 if (ic->pipe)
1074 last_len += ic->pipe->data;
1075
Willy Tarreaue68bc612022-05-27 11:23:05 +02001076 sc_chk_snd(sco);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001077
1078 new_len = co_data(ic);
1079 if (ic->pipe)
1080 new_len += ic->pipe->data;
1081
1082 /* check if the consumer has freed some space either in the
1083 * buffer or in the pipe.
1084 */
1085 if (new_len < last_len)
Willy Tarreau0adb2812022-05-27 10:02:48 +02001086 sc_have_room(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001087 }
1088
1089 if (!(ic->flags & CF_DONT_READ))
Willy Tarreau0adb2812022-05-27 10:02:48 +02001090 sc_will_read(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001091
Willy Tarreau0adb2812022-05-27 10:02:48 +02001092 sc_chk_rcv(sc);
Willy Tarreaue68bc612022-05-27 11:23:05 +02001093 sc_chk_rcv(sco);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001094
Christopher Faulet5e29b762022-04-04 08:58:34 +02001095 /* wake the task up only when needed */
Christopher Faulet285f7612022-12-12 08:28:55 +01001096 if (/* changes on the production side that must be handled:
Christopher Faulet2e56a732023-01-26 16:18:09 +01001097 * - An error on receipt: SE_FL_ERROR
Christopher Faulet285f7612022-12-12 08:28:55 +01001098 * - A read event: shutdown for reads (CF_READ_EVENT + SHUTR)
1099 * end of input (CF_READ_EVENT + CF_EOI)
1100 * data received and no fast-forwarding (CF_READ_EVENT + !to_forward)
1101 * read event while consumer side is not established (CF_READ_EVENT + sco->state != SC_ST_EST)
1102 */
1103 ((ic->flags & CF_READ_EVENT) && ((ic->flags & (CF_SHUTR|CF_EOI)) || !ic->to_forward || sco->state != SC_ST_EST)) ||
Christopher Faulet2e56a732023-01-26 16:18:09 +01001104 sc_ep_test(sc, SE_FL_ERROR) ||
Christopher Faulet5e29b762022-04-04 08:58:34 +02001105
1106 /* changes on the consumption side */
Christopher Faulet2e56a732023-01-26 16:18:09 +01001107 sc_ep_test(sc, SE_FL_ERR_PENDING) ||
Christopher Fauletd8988412022-12-20 18:10:04 +01001108 ((oc->flags & CF_WRITE_EVENT) &&
1109 ((sc->state < SC_ST_EST) ||
1110 (oc->flags & CF_SHUTW) ||
Christopher Faulet5e29b762022-04-04 08:58:34 +02001111 (((oc->flags & CF_WAKE_WRITE) ||
Christopher Fauletd8988412022-12-20 18:10:04 +01001112 !(oc->flags & (CF_AUTO_CLOSE|CF_SHUTW_NOW|CF_SHUTW))) &&
1113 (sco->state != SC_ST_EST ||
1114 (channel_is_empty(oc) && !oc->to_forward)))))) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001115 task_wakeup(task, TASK_WOKEN_IO);
1116 }
Christopher Faulet5e29b762022-04-04 08:58:34 +02001117
Christopher Faulet2e56a732023-01-26 16:18:09 +01001118 if (ic->flags & CF_READ_EVENT)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001119 ic->flags &= ~CF_READ_DONTWAIT;
1120}
1121
1122/*
1123 * This function propagates a null read received on a socket-based connection.
Willy Tarreaucb041662022-05-17 19:44:42 +02001124 * It updates the stream connector. If the stream connector has SC_FL_NOHALF,
Christopher Faulet5e29b762022-04-04 08:58:34 +02001125 * the close is also forwarded to the write side as an abort.
1126 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001127static void sc_conn_read0(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001128{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001129 struct channel *ic = sc_ic(sc);
1130 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001131
Willy Tarreau0adb2812022-05-27 10:02:48 +02001132 BUG_ON(!sc_conn(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001133
Christopher Faulet5e29b762022-04-04 08:58:34 +02001134 if (ic->flags & CF_SHUTR)
1135 return;
Christopher Fauletb08c5252023-02-20 07:55:19 +01001136 ic->flags |= CF_SHUTR|CF_READ_EVENT;
Christopher Faulet4c135682023-02-16 11:09:31 +01001137 sc_ep_report_read_activity(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001138
Willy Tarreau0adb2812022-05-27 10:02:48 +02001139 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001140 return;
1141
1142 if (oc->flags & CF_SHUTW)
1143 goto do_close;
1144
Christopher Fauleteb3f26d2023-02-08 16:18:48 +01001145 if (sc_cond_forward_shutw(sc)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001146 /* we want to immediately forward this close to the write side */
1147 /* force flag on ssl to keep stream in cache */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001148 sc_conn_shutw(sc, CO_SHW_SILENT);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001149 goto do_close;
1150 }
1151
1152 /* otherwise that's just a normal read shutdown */
1153 return;
1154
1155 do_close:
Willy Tarreauf61dd192022-05-27 09:00:19 +02001156 /* OK we completely close the socket here just as if we went through sc_shut[rw]() */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001157 sc_conn_shut(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001158
1159 oc->flags &= ~CF_SHUTW_NOW;
1160 oc->flags |= CF_SHUTW;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001161
Willy Tarreau0adb2812022-05-27 10:02:48 +02001162 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +02001163 if (sc->flags & SC_FL_ISBACK)
1164 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001165 return;
1166}
1167
1168/*
1169 * This is the callback which is called by the connection layer to receive data
1170 * into the buffer from the connection. It iterates over the mux layer's
1171 * rcv_buf function.
1172 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001173static int sc_conn_recv(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001174{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001175 struct connection *conn = __sc_conn(sc);
1176 struct channel *ic = sc_ic(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001177 int ret, max, cur_read = 0;
1178 int read_poll = MAX_READ_POLL_LOOPS;
1179 int flags = 0;
1180
1181 /* If not established yet, do nothing. */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001182 if (sc->state != SC_ST_EST)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001183 return 0;
1184
Willy Tarreau462b9892022-05-18 18:06:53 +02001185 /* If another call to sc_conn_recv() failed, and we subscribed to
Christopher Faulet5e29b762022-04-04 08:58:34 +02001186 * recv events already, give up now.
1187 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001188 if (sc->wait_event.events & SUB_RETRY_RECV)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001189 return 0;
1190
1191 /* maybe we were called immediately after an asynchronous shutr */
1192 if (ic->flags & CF_SHUTR)
1193 return 1;
1194
1195 /* we must wait because the mux is not installed yet */
1196 if (!conn->mux)
1197 return 0;
1198
Christopher Faulet5e29b762022-04-04 08:58:34 +02001199 /* stop immediately on errors. Note that we DON'T want to stop on
1200 * POLL_ERR, as the poller might report a write error while there
1201 * are still data available in the recv buffer. This typically
1202 * happens when we send too large a request to a backend server
1203 * which rejects it before reading it all.
1204 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001205 if (!sc_ep_test(sc, SE_FL_RCV_MORE)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001206 if (!conn_xprt_ready(conn))
1207 return 0;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001208 if (sc_ep_test(sc, SE_FL_ERROR))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001209 goto end_recv;
1210 }
1211
1212 /* prepare to detect if the mux needs more room */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001213 sc_ep_clr(sc, SE_FL_WANT_ROOM);
Christopher Faulet341a5782023-02-10 17:37:11 +01001214 BUG_ON(sc_waiting_room(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001215
1216 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !co_data(ic) &&
1217 global.tune.idle_timer &&
1218 (unsigned short)(now_ms - ic->last_read) >= global.tune.idle_timer) {
1219 /* The buffer was empty and nothing was transferred for more
1220 * than one second. This was caused by a pause and not by
1221 * congestion. Reset any streaming mode to reduce latency.
1222 */
1223 ic->xfer_small = 0;
1224 ic->xfer_large = 0;
1225 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
1226 }
1227
1228 /* First, let's see if we may splice data across the channel without
1229 * using a buffer.
1230 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001231 if (sc_ep_test(sc, SE_FL_MAY_SPLICE) &&
Christopher Faulet5e29b762022-04-04 08:58:34 +02001232 (ic->pipe || ic->to_forward >= MIN_SPLICE_FORWARD) &&
1233 ic->flags & CF_KERN_SPLICING) {
1234 if (c_data(ic)) {
1235 /* We're embarrassed, there are already data pending in
1236 * the buffer and we don't want to have them at two
1237 * locations at a time. Let's indicate we need some
1238 * place and ask the consumer to hurry.
1239 */
1240 flags |= CO_RFL_BUF_FLUSH;
1241 goto abort_splice;
1242 }
1243
1244 if (unlikely(ic->pipe == NULL)) {
1245 if (pipes_used >= global.maxpipes || !(ic->pipe = get_pipe())) {
1246 ic->flags &= ~CF_KERN_SPLICING;
1247 goto abort_splice;
1248 }
1249 }
1250
Willy Tarreau0adb2812022-05-27 10:02:48 +02001251 ret = conn->mux->rcv_pipe(sc, ic->pipe, ic->to_forward);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001252 if (ret < 0) {
1253 /* splice not supported on this end, let's disable it */
1254 ic->flags &= ~CF_KERN_SPLICING;
1255 goto abort_splice;
1256 }
1257
1258 if (ret > 0) {
1259 if (ic->to_forward != CHN_INFINITE_FORWARD)
1260 ic->to_forward -= ret;
1261 ic->total += ret;
1262 cur_read += ret;
Christopher Faulet285f7612022-12-12 08:28:55 +01001263 ic->flags |= CF_READ_EVENT;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001264 }
1265
Willy Tarreau0adb2812022-05-27 10:02:48 +02001266 if (sc_ep_test(sc, SE_FL_EOS | SE_FL_ERROR))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001267 goto end_recv;
1268
1269 if (conn->flags & CO_FL_WAIT_ROOM) {
1270 /* the pipe is full or we have read enough data that it
1271 * could soon be full. Let's stop before needing to poll.
1272 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001273 sc_need_room(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001274 goto done_recv;
1275 }
1276
1277 /* splice not possible (anymore), let's go on on standard copy */
1278 }
1279
1280 abort_splice:
1281 if (ic->pipe && unlikely(!ic->pipe->data)) {
1282 put_pipe(ic->pipe);
1283 ic->pipe = NULL;
1284 }
1285
Willy Tarreau0adb2812022-05-27 10:02:48 +02001286 if (ic->pipe && ic->to_forward && !(flags & CO_RFL_BUF_FLUSH) && sc_ep_test(sc, SE_FL_MAY_SPLICE)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001287 /* don't break splicing by reading, but still call rcv_buf()
1288 * to pass the flag.
1289 */
1290 goto done_recv;
1291 }
1292
1293 /* now we'll need a input buffer for the stream */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001294 if (!sc_alloc_ibuf(sc, &(__sc_strm(sc)->buffer_wait)))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001295 goto end_recv;
1296
1297 /* For an HTX stream, if the buffer is stuck (no output data with some
1298 * input data) and if the HTX message is fragmented or if its free space
1299 * wraps, we force an HTX deframentation. It is a way to have a
1300 * contiguous free space nad to let the mux to copy as much data as
1301 * possible.
1302 *
1303 * NOTE: A possible optim may be to let the mux decides if defrag is
1304 * required or not, depending on amount of data to be xferred.
1305 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001306 if (IS_HTX_STRM(__sc_strm(sc)) && !co_data(ic)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001307 struct htx *htx = htxbuf(&ic->buf);
1308
1309 if (htx_is_not_empty(htx) && ((htx->flags & HTX_FL_FRAGMENTED) || htx_space_wraps(htx)))
1310 htx_defrag(htx, NULL, 0);
1311 }
1312
1313 /* Instruct the mux it must subscribed for read events */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001314 flags |= ((!conn_is_back(conn) && (__sc_strm(sc)->be->options & PR_O_ABRT_CLOSE)) ? CO_RFL_KEEP_RECV : 0);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001315
1316 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1317 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1318 * that if such an event is not handled above in splice, it will be handled here by
1319 * recv().
1320 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001321 while (sc_ep_test(sc, SE_FL_RCV_MORE) ||
Christopher Faulet5e29b762022-04-04 08:58:34 +02001322 (!(conn->flags & CO_FL_HANDSHAKE) &&
Willy Tarreau0adb2812022-05-27 10:02:48 +02001323 (!sc_ep_test(sc, SE_FL_ERROR | SE_FL_EOS)) && !(ic->flags & CF_SHUTR))) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001324 int cur_flags = flags;
1325
1326 /* Compute transient CO_RFL_* flags */
1327 if (co_data(ic)) {
1328 cur_flags |= (CO_RFL_BUF_WET | CO_RFL_BUF_NOT_STUCK);
1329 }
1330
1331 /* <max> may be null. This is the mux responsibility to set
Willy Tarreaue68bc612022-05-27 11:23:05 +02001332 * SE_FL_RCV_MORE on the SC if more space is needed.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001333 */
1334 max = channel_recv_max(ic);
Willy Tarreau0adb2812022-05-27 10:02:48 +02001335 ret = conn->mux->rcv_buf(sc, &ic->buf, max, cur_flags);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001336
Willy Tarreau0adb2812022-05-27 10:02:48 +02001337 if (sc_ep_test(sc, SE_FL_WANT_ROOM)) {
Willy Tarreaub605c422022-05-17 17:04:55 +02001338 /* SE_FL_WANT_ROOM must not be reported if the channel's
Christopher Faulet5e29b762022-04-04 08:58:34 +02001339 * buffer is empty.
1340 */
1341 BUG_ON(c_empty(ic));
1342
Willy Tarreau0adb2812022-05-27 10:02:48 +02001343 sc_need_room(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001344 /* Add READ_PARTIAL because some data are pending but
1345 * cannot be xferred to the channel
1346 */
Christopher Faulet285f7612022-12-12 08:28:55 +01001347 ic->flags |= CF_READ_EVENT;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001348 }
1349
1350 if (ret <= 0) {
1351 /* if we refrained from reading because we asked for a
1352 * flush to satisfy rcv_pipe(), we must not subscribe
1353 * and instead report that there's not enough room
1354 * here to proceed.
1355 */
1356 if (flags & CO_RFL_BUF_FLUSH)
Willy Tarreau0adb2812022-05-27 10:02:48 +02001357 sc_need_room(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001358 break;
1359 }
1360
1361 cur_read += ret;
1362
1363 /* if we're allowed to directly forward data, we must update ->o */
1364 if (ic->to_forward && !(ic->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
1365 unsigned long fwd = ret;
1366 if (ic->to_forward != CHN_INFINITE_FORWARD) {
1367 if (fwd > ic->to_forward)
1368 fwd = ic->to_forward;
1369 ic->to_forward -= fwd;
1370 }
1371 c_adv(ic, fwd);
1372 }
1373
Christopher Faulet285f7612022-12-12 08:28:55 +01001374 ic->flags |= CF_READ_EVENT;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001375 ic->total += ret;
1376
1377 /* End-of-input reached, we can leave. In this case, it is
Willy Tarreaue68bc612022-05-27 11:23:05 +02001378 * important to break the loop to not block the SC because of
Christopher Faulet5e29b762022-04-04 08:58:34 +02001379 * the channel's policies.This way, we are still able to receive
1380 * shutdowns.
1381 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001382 if (sc_ep_test(sc, SE_FL_EOI))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001383 break;
1384
1385 if ((ic->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
1386 /* we're stopped by the channel's policy */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001387 sc_wont_read(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001388 break;
1389 }
1390
1391 /* if too many bytes were missing from last read, it means that
1392 * it's pointless trying to read again because the system does
1393 * not have them in buffers.
1394 */
1395 if (ret < max) {
1396 /* if a streamer has read few data, it may be because we
1397 * have exhausted system buffers. It's not worth trying
1398 * again.
1399 */
1400 if (ic->flags & CF_STREAMER) {
1401 /* we're stopped by the channel's policy */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001402 sc_wont_read(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001403 break;
1404 }
1405
1406 /* if we read a large block smaller than what we requested,
1407 * it's almost certain we'll never get anything more.
1408 */
1409 if (ret >= global.tune.recv_enough) {
1410 /* we're stopped by the channel's policy */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001411 sc_wont_read(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001412 break;
1413 }
1414 }
1415
1416 /* if we are waiting for more space, don't try to read more data
1417 * right now.
1418 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001419 if (sc->flags & (SC_FL_WONT_READ|SC_FL_NEED_BUFF|SC_FL_NEED_ROOM))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001420 break;
1421 } /* while !flags */
1422
1423 done_recv:
1424 if (cur_read) {
1425 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
1426 (cur_read <= ic->buf.size / 2)) {
1427 ic->xfer_large = 0;
1428 ic->xfer_small++;
1429 if (ic->xfer_small >= 3) {
1430 /* we have read less than half of the buffer in
1431 * one pass, and this happened at least 3 times.
1432 * This is definitely not a streamer.
1433 */
1434 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
1435 }
1436 else if (ic->xfer_small >= 2) {
1437 /* if the buffer has been at least half full twice,
1438 * we receive faster than we send, so at least it
1439 * is not a "fast streamer".
1440 */
1441 ic->flags &= ~CF_STREAMER_FAST;
1442 }
1443 }
1444 else if (!(ic->flags & CF_STREAMER_FAST) &&
1445 (cur_read >= ic->buf.size - global.tune.maxrewrite)) {
1446 /* we read a full buffer at once */
1447 ic->xfer_small = 0;
1448 ic->xfer_large++;
1449 if (ic->xfer_large >= 3) {
1450 /* we call this buffer a fast streamer if it manages
1451 * to be filled in one call 3 consecutive times.
1452 */
1453 ic->flags |= (CF_STREAMER | CF_STREAMER_FAST);
1454 }
1455 }
1456 else {
1457 ic->xfer_small = 0;
1458 ic->xfer_large = 0;
1459 }
1460 ic->last_read = now_ms;
Christopher Faulet4c135682023-02-16 11:09:31 +01001461 sc_ep_report_read_activity(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001462 }
1463
1464 end_recv:
1465 ret = (cur_read != 0);
1466
1467 /* Report EOI on the channel if it was reached from the mux point of
1468 * view. */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001469 if (sc_ep_test(sc, SE_FL_EOI) && !(ic->flags & CF_EOI)) {
Christopher Faulet4c135682023-02-16 11:09:31 +01001470 sc_ep_report_read_activity(sc);
Christopher Faulet285f7612022-12-12 08:28:55 +01001471 ic->flags |= (CF_EOI|CF_READ_EVENT);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001472 ret = 1;
1473 }
1474
Willy Tarreau0adb2812022-05-27 10:02:48 +02001475 if (sc_ep_test(sc, SE_FL_ERROR))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001476 ret = 1;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001477 else if (sc_ep_test(sc, SE_FL_EOS)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001478 /* we received a shutdown */
Christopher Faulet5e29b762022-04-04 08:58:34 +02001479 if (ic->flags & CF_AUTO_CLOSE)
1480 channel_shutw_now(ic);
Willy Tarreau0adb2812022-05-27 10:02:48 +02001481 sc_conn_read0(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001482 ret = 1;
1483 }
Willy Tarreau0adb2812022-05-27 10:02:48 +02001484 else if (!(sc->flags & (SC_FL_WONT_READ|SC_FL_NEED_BUFF|SC_FL_NEED_ROOM)) &&
Willy Tarreau15252cd2022-05-25 16:36:21 +02001485 !(ic->flags & CF_SHUTR)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001486 /* Subscribe to receive events if we're blocking on I/O */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001487 conn->mux->subscribe(sc, SUB_RETRY_RECV, &sc->wait_event);
1488 se_have_no_more_data(sc->sedesc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001489 } else {
Willy Tarreau0adb2812022-05-27 10:02:48 +02001490 se_have_more_data(sc->sedesc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001491 ret = 1;
1492 }
1493 return ret;
1494}
1495
Willy Tarreau4596fe22022-05-17 19:07:51 +02001496/* This tries to perform a synchronous receive on the stream connector to
Christopher Faulet5e29b762022-04-04 08:58:34 +02001497 * try to collect last arrived data. In practice it's only implemented on
Willy Tarreau4596fe22022-05-17 19:07:51 +02001498 * stconns. Returns 0 if nothing was done, non-zero if new data or a
Christopher Faulet5e29b762022-04-04 08:58:34 +02001499 * shutdown were collected. This may result on some delayed receive calls
1500 * to be programmed and performed later, though it doesn't provide any
1501 * such guarantee.
1502 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001503int sc_conn_sync_recv(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001504{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001505 if (!sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001506 return 0;
1507
Willy Tarreau0adb2812022-05-27 10:02:48 +02001508 if (!sc_mux_ops(sc))
Willy Tarreau4596fe22022-05-17 19:07:51 +02001509 return 0; // only stconns are supported
Christopher Faulet5e29b762022-04-04 08:58:34 +02001510
Willy Tarreau0adb2812022-05-27 10:02:48 +02001511 if (sc->wait_event.events & SUB_RETRY_RECV)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001512 return 0; // already subscribed
1513
Willy Tarreau0adb2812022-05-27 10:02:48 +02001514 if (!sc_is_recv_allowed(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001515 return 0; // already failed
1516
Willy Tarreau0adb2812022-05-27 10:02:48 +02001517 return sc_conn_recv(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001518}
1519
1520/*
1521 * This function is called to send buffer data to a stream socket.
1522 * It calls the mux layer's snd_buf function. It relies on the
1523 * caller to commit polling changes. The caller should check conn->flags
1524 * for errors.
1525 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001526static int sc_conn_send(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001527{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001528 struct connection *conn = __sc_conn(sc);
1529 struct stream *s = __sc_strm(sc);
1530 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001531 int ret;
1532 int did_send = 0;
1533
Willy Tarreau0adb2812022-05-27 10:02:48 +02001534 if (sc_ep_test(sc, SE_FL_ERROR | SE_FL_ERR_PENDING) || sc_is_conn_error(sc)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001535 /* We're probably there because the tasklet was woken up,
1536 * but process_stream() ran before, detected there were an
Willy Tarreaue68bc612022-05-27 11:23:05 +02001537 * error and put the SC back to SC_ST_TAR. There's still
Christopher Faulet5e29b762022-04-04 08:58:34 +02001538 * CO_FL_ERROR on the connection but we don't want to add
Willy Tarreaub605c422022-05-17 17:04:55 +02001539 * SE_FL_ERROR back, so give up
Christopher Faulet5e29b762022-04-04 08:58:34 +02001540 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001541 if (sc->state < SC_ST_CON)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001542 return 0;
Christopher Faulet7f6aa562022-10-17 10:21:19 +02001543 if (sc_ep_test(sc, SE_FL_EOS))
1544 sc_ep_set(sc, SE_FL_ERROR);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001545 return 1;
1546 }
1547
1548 /* We're already waiting to be able to send, give up */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001549 if (sc->wait_event.events & SUB_RETRY_SEND)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001550 return 0;
1551
1552 /* we might have been called just after an asynchronous shutw */
1553 if (oc->flags & CF_SHUTW)
1554 return 1;
1555
1556 /* we must wait because the mux is not installed yet */
1557 if (!conn->mux)
1558 return 0;
1559
1560 if (oc->pipe && conn->xprt->snd_pipe && conn->mux->snd_pipe) {
Willy Tarreau0adb2812022-05-27 10:02:48 +02001561 ret = conn->mux->snd_pipe(sc, oc->pipe);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001562 if (ret > 0)
1563 did_send = 1;
1564
1565 if (!oc->pipe->data) {
1566 put_pipe(oc->pipe);
1567 oc->pipe = NULL;
1568 }
1569
1570 if (oc->pipe)
1571 goto end;
1572 }
1573
1574 /* At this point, the pipe is empty, but we may still have data pending
1575 * in the normal buffer.
1576 */
1577 if (co_data(oc)) {
1578 /* when we're here, we already know that there is no spliced
1579 * data left, and that there are sendable buffered data.
1580 */
1581
1582 /* check if we want to inform the kernel that we're interested in
1583 * sending more data after this call. We want this if :
1584 * - we're about to close after this last send and want to merge
1585 * the ongoing FIN with the last segment.
1586 * - we know we can't send everything at once and must get back
1587 * here because of unaligned data
1588 * - there is still a finite amount of data to forward
1589 * The test is arranged so that the most common case does only 2
1590 * tests.
1591 */
1592 unsigned int send_flag = 0;
1593
1594 if ((!(oc->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
1595 ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) ||
1596 (oc->flags & CF_EXPECT_MORE) ||
1597 (IS_HTX_STRM(s) &&
1598 (!(oc->flags & (CF_EOI|CF_SHUTR)) && htx_expect_more(htxbuf(&oc->buf)))))) ||
1599 ((oc->flags & CF_ISRESP) &&
1600 ((oc->flags & (CF_AUTO_CLOSE|CF_SHUTW_NOW)) == (CF_AUTO_CLOSE|CF_SHUTW_NOW))))
1601 send_flag |= CO_SFL_MSG_MORE;
1602
1603 if (oc->flags & CF_STREAMER)
1604 send_flag |= CO_SFL_STREAMER;
1605
1606 if (s->txn && s->txn->flags & TX_L7_RETRY && !b_data(&s->txn->l7_buffer)) {
1607 /* If we want to be able to do L7 retries, copy
1608 * the data we're about to send, so that we are able
1609 * to resend them if needed
1610 */
1611 /* Try to allocate a buffer if we had none.
1612 * If it fails, the next test will just
1613 * disable the l7 retries by setting
1614 * l7_conn_retries to 0.
1615 */
1616 if (s->txn->req.msg_state != HTTP_MSG_DONE)
1617 s->txn->flags &= ~TX_L7_RETRY;
1618 else {
1619 if (b_alloc(&s->txn->l7_buffer) == NULL)
1620 s->txn->flags &= ~TX_L7_RETRY;
1621 else {
1622 memcpy(b_orig(&s->txn->l7_buffer),
1623 b_orig(&oc->buf),
1624 b_size(&oc->buf));
1625 s->txn->l7_buffer.head = co_data(oc);
1626 b_add(&s->txn->l7_buffer, co_data(oc));
1627 }
1628
1629 }
1630 }
1631
Willy Tarreau0adb2812022-05-27 10:02:48 +02001632 ret = conn->mux->snd_buf(sc, &oc->buf, co_data(oc), send_flag);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001633 if (ret > 0) {
1634 did_send = 1;
1635 c_rew(oc, ret);
1636 c_realign_if_empty(oc);
1637
1638 if (!co_data(oc)) {
1639 /* Always clear both flags once everything has been sent, they're one-shot */
1640 oc->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
1641 }
1642 /* if some data remain in the buffer, it's only because the
1643 * system buffers are full, we will try next time.
1644 */
Christopher Faulet13045f02022-04-01 14:23:38 +02001645 }
1646 }
Christopher Faulet5e29b762022-04-04 08:58:34 +02001647
1648 end:
1649 if (did_send) {
Christopher Fauletd8988412022-12-20 18:10:04 +01001650 oc->flags |= CF_WRITE_EVENT | CF_WROTE_DATA;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001651 if (sc->state == SC_ST_CON)
1652 sc->state = SC_ST_RDY;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001653 sc_have_room(sc_opposite(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001654 }
1655
Willy Tarreau0adb2812022-05-27 10:02:48 +02001656 if (sc_ep_test(sc, SE_FL_ERROR | SE_FL_ERR_PENDING)) {
Christopher Faulet2e56a732023-01-26 16:18:09 +01001657 oc->flags |= CF_WRITE_EVENT;
Christopher Faulet7f6aa562022-10-17 10:21:19 +02001658 if (sc_ep_test(sc, SE_FL_EOS))
Christopher Faulet2e56a732023-01-26 16:18:09 +01001659 sc_ep_set(sc, SE_FL_ERROR);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001660 return 1;
1661 }
1662
Christopher Faulet59b240c2023-02-27 16:38:12 +01001663 if (channel_is_empty(oc))
1664 sc_ep_report_send_activity(sc);
1665 else {
1666 /* We couldn't send all of our data, let the mux know we'd like to send more */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001667 conn->mux->subscribe(sc, SUB_RETRY_SEND, &sc->wait_event);
Christopher Faulet59b240c2023-02-27 16:38:12 +01001668 sc_ep_report_blocked_send(sc);
1669 }
1670
Christopher Faulet5e29b762022-04-04 08:58:34 +02001671 return did_send;
1672}
1673
Christopher Fauletd8988412022-12-20 18:10:04 +01001674/* perform a synchronous send() for the stream connector. The CF_WRITE_EVENT
1675 * flag are cleared prior to the attempt, and will possibly be updated in case
1676 * of success.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001677 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001678void sc_conn_sync_send(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001679{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001680 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001681
Christopher Fauletd8988412022-12-20 18:10:04 +01001682 oc->flags &= ~CF_WRITE_EVENT;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001683
1684 if (oc->flags & CF_SHUTW)
1685 return;
1686
1687 if (channel_is_empty(oc))
1688 return;
1689
Willy Tarreau0adb2812022-05-27 10:02:48 +02001690 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001691 return;
1692
Willy Tarreau0adb2812022-05-27 10:02:48 +02001693 if (!sc_mux_ops(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001694 return;
1695
Willy Tarreau0adb2812022-05-27 10:02:48 +02001696 sc_conn_send(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001697}
1698
1699/* Called by I/O handlers after completion.. It propagates
Willy Tarreau4596fe22022-05-17 19:07:51 +02001700 * connection flags to the stream connector, updates the stream (which may or
Christopher Faulet5e29b762022-04-04 08:58:34 +02001701 * may not take this opportunity to try to forward data), then update the
Willy Tarreau4596fe22022-05-17 19:07:51 +02001702 * connection's polling based on the channels and stream connector's final
Christopher Faulet5e29b762022-04-04 08:58:34 +02001703 * states. The function always returns 0.
1704 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001705static int sc_conn_process(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001706{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001707 struct connection *conn = __sc_conn(sc);
1708 struct channel *ic = sc_ic(sc);
1709 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001710
1711 BUG_ON(!conn);
1712
1713 /* If we have data to send, try it now */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001714 if (!channel_is_empty(oc) && !(sc->wait_event.events & SUB_RETRY_SEND))
1715 sc_conn_send(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001716
Willy Tarreau4596fe22022-05-17 19:07:51 +02001717 /* First step, report to the stream connector what was detected at the
Christopher Faulet5e29b762022-04-04 08:58:34 +02001718 * connection layer : errors and connection establishment.
Willy Tarreaub605c422022-05-17 17:04:55 +02001719 * Only add SE_FL_ERROR if we're connected, or we're attempting to
Christopher Faulet5e29b762022-04-04 08:58:34 +02001720 * connect, we may get there because we got woken up, but only run
1721 * after process_stream() noticed there were an error, and decided
1722 * to retry to connect, the connection may still have CO_FL_ERROR,
Willy Tarreaub605c422022-05-17 17:04:55 +02001723 * and we don't want to add SE_FL_ERROR back
Christopher Faulet5e29b762022-04-04 08:58:34 +02001724 *
Willy Tarreau462b9892022-05-18 18:06:53 +02001725 * Note: This test is only required because sc_conn_process is also the SI
1726 * wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
Christopher Faulet5e29b762022-04-04 08:58:34 +02001727 * care of it.
1728 */
1729
Willy Tarreau0adb2812022-05-27 10:02:48 +02001730 if (sc->state >= SC_ST_CON) {
1731 if (sc_is_conn_error(sc))
1732 sc_ep_set(sc, SE_FL_ERROR);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001733 }
1734
1735 /* If we had early data, and the handshake ended, then
1736 * we can remove the flag, and attempt to wake the task up,
1737 * in the event there's an analyser waiting for the end of
1738 * the handshake.
1739 */
1740 if (!(conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)) &&
Willy Tarreau0adb2812022-05-27 10:02:48 +02001741 sc_ep_test(sc, SE_FL_WAIT_FOR_HS)) {
1742 sc_ep_clr(sc, SE_FL_WAIT_FOR_HS);
1743 task_wakeup(sc_strm_task(sc), TASK_WOKEN_MSG);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001744 }
1745
Willy Tarreau0adb2812022-05-27 10:02:48 +02001746 if (!sc_state_in(sc->state, SC_SB_EST|SC_SB_DIS|SC_SB_CLO) &&
Christopher Faulet5e29b762022-04-04 08:58:34 +02001747 (conn->flags & CO_FL_WAIT_XPRT) == 0) {
Christopher Fauletca679922022-07-20 13:24:04 +02001748 if (sc->flags & SC_FL_ISBACK)
1749 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Fauletb96f2aa2022-12-12 08:11:36 +01001750 oc->flags |= CF_WRITE_EVENT;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001751 if (sc->state == SC_ST_CON)
1752 sc->state = SC_ST_RDY;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001753 }
1754
1755 /* Report EOS on the channel if it was reached from the mux point of
1756 * view.
1757 *
Willy Tarreau462b9892022-05-18 18:06:53 +02001758 * Note: This test is only required because sc_conn_process is also the SI
1759 * wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
Christopher Faulet5e29b762022-04-04 08:58:34 +02001760 * care of it.
1761 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001762 if (sc_ep_test(sc, SE_FL_EOS) && !(ic->flags & CF_SHUTR)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001763 /* we received a shutdown */
Christopher Faulet5e29b762022-04-04 08:58:34 +02001764 if (ic->flags & CF_AUTO_CLOSE)
1765 channel_shutw_now(ic);
Willy Tarreau0adb2812022-05-27 10:02:48 +02001766 sc_conn_read0(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001767 }
1768
1769 /* Report EOI on the channel if it was reached from the mux point of
1770 * view.
1771 *
Willy Tarreau462b9892022-05-18 18:06:53 +02001772 * Note: This test is only required because sc_conn_process is also the SI
1773 * wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
Christopher Faulet5e29b762022-04-04 08:58:34 +02001774 * care of it.
1775 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001776 if (sc_ep_test(sc, SE_FL_EOI) && !(ic->flags & CF_EOI))
Christopher Faulet285f7612022-12-12 08:28:55 +01001777 ic->flags |= (CF_EOI|CF_READ_EVENT);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001778
Willy Tarreau4596fe22022-05-17 19:07:51 +02001779 /* Second step : update the stream connector and channels, try to forward any
Christopher Faulet5e29b762022-04-04 08:58:34 +02001780 * pending data, then possibly wake the stream up based on the new
Willy Tarreau4596fe22022-05-17 19:07:51 +02001781 * stream connector status.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001782 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001783 sc_notify(sc);
1784 stream_release_buffers(__sc_strm(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001785 return 0;
1786}
1787
Willy Tarreau4596fe22022-05-17 19:07:51 +02001788/* This is the ->process() function for any stream connector's wait_event task.
1789 * It's assigned during the stream connector's initialization, for any type of
1790 * stream connector. Thus it is always safe to perform a tasklet_wakeup() on a
Willy Tarreaue68bc612022-05-27 11:23:05 +02001791 * stream connector, as the presence of the SC is checked there.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001792 */
Willy Tarreau462b9892022-05-18 18:06:53 +02001793struct task *sc_conn_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001794{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001795 struct stconn *sc = ctx;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001796 int ret = 0;
1797
Willy Tarreau0adb2812022-05-27 10:02:48 +02001798 if (!sc_conn(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001799 return t;
1800
Willy Tarreau0adb2812022-05-27 10:02:48 +02001801 if (!(sc->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(sc_oc(sc)))
1802 ret = sc_conn_send(sc);
1803 if (!(sc->wait_event.events & SUB_RETRY_RECV))
1804 ret |= sc_conn_recv(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001805 if (ret != 0)
Willy Tarreau0adb2812022-05-27 10:02:48 +02001806 sc_conn_process(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001807
Willy Tarreau0adb2812022-05-27 10:02:48 +02001808 stream_release_buffers(__sc_strm(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001809 return t;
1810}
1811
1812/* Callback to be used by applet handlers upon completion. It updates the stream
1813 * (which may or may not take this opportunity to try to forward data), then
Willy Tarreau4596fe22022-05-17 19:07:51 +02001814 * may re-enable the applet's based on the channels and stream connector's final
Christopher Faulet5e29b762022-04-04 08:58:34 +02001815 * states.
1816 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001817static int sc_applet_process(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001818{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001819 struct channel *ic = sc_ic(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001820
Willy Tarreau0adb2812022-05-27 10:02:48 +02001821 BUG_ON(!sc_appctx(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001822
1823 /* If the applet wants to write and the channel is closed, it's a
1824 * broken pipe and it must be reported.
1825 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001826 if (!sc_ep_test(sc, SE_FL_HAVE_NO_DATA) && (ic->flags & CF_SHUTR))
1827 sc_ep_set(sc, SE_FL_ERROR);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001828
1829 /* automatically mark the applet having data available if it reported
1830 * begin blocked by the channel.
1831 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001832 if ((sc->flags & (SC_FL_WONT_READ|SC_FL_NEED_BUFF|SC_FL_NEED_ROOM)) ||
1833 sc_ep_test(sc, SE_FL_APPLET_NEED_CONN))
1834 applet_have_more_data(__sc_appctx(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001835
Willy Tarreau4596fe22022-05-17 19:07:51 +02001836 /* update the stream connector, channels, and possibly wake the stream up */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001837 sc_notify(sc);
1838 stream_release_buffers(__sc_strm(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001839
Willy Tarreau19c65a92022-05-27 08:49:24 +02001840 /* sc_notify may have passed through chk_snd and released some blocking
Willy Tarreau15252cd2022-05-25 16:36:21 +02001841 * flags. Process_stream will consider those flags to wake up the
Christopher Faulet5e29b762022-04-04 08:58:34 +02001842 * appctx but in the case the task is not in runqueue we may have to
1843 * wakeup the appctx immediately.
1844 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001845 if (sc_is_recv_allowed(sc) || sc_is_send_allowed(sc))
1846 appctx_wakeup(__sc_appctx(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001847 return 0;
Christopher Faulet13045f02022-04-01 14:23:38 +02001848}
Christopher Fauletb68f77d2022-06-16 16:24:16 +02001849
1850
1851/* Prepares an endpoint upgrade. We don't now at this stage if the upgrade will
1852 * succeed or not and if the stconn will be reused by the new endpoint. Thus,
1853 * for now, only pretend the stconn is detached.
1854 */
1855void sc_conn_prepare_endp_upgrade(struct stconn *sc)
1856{
1857 BUG_ON(!sc_conn(sc) || !sc->app);
1858 sc_ep_clr(sc, SE_FL_T_MUX);
1859 sc_ep_set(sc, SE_FL_DETACHED);
1860}
1861
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05001862/* Endpoint upgrade failed. Restore the stconn state. */
Christopher Fauletb68f77d2022-06-16 16:24:16 +02001863void sc_conn_abort_endp_upgrade(struct stconn *sc)
1864{
1865 sc_ep_set(sc, SE_FL_T_MUX);
1866 sc_ep_clr(sc, SE_FL_DETACHED);
1867}
1868
1869/* Commit the endpoint upgrade. If stconn is attached, it means the new endpoint
1870 * use it. So we do nothing. Otherwise, the stconn will be destroy with the
1871 * overlying stream. So, it means we must commit the detach.
1872*/
1873void sc_conn_commit_endp_upgrade(struct stconn *sc)
1874{
1875 if (!sc_ep_test(sc, SE_FL_DETACHED))
1876 return;
1877 sc_detach_endp(&sc);
1878 /* Because it was already set as detached, the sedesc must be preserved */
Willy Tarreau6a378d12022-08-11 13:56:42 +02001879 BUG_ON(!sc);
Christopher Fauletb68f77d2022-06-16 16:24:16 +02001880 BUG_ON(!sc->sedesc);
1881}