blob: 0cfc4a7e3c815245126ecdab3f19a37f80aa4ba1 [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 */
Christopher Fauletcfc11c02023-04-13 16:10:23 +020027static void sc_app_abort(struct stconn *sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020028static void sc_app_shut(struct stconn *sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +020029static 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 */
Christopher Fauletcfc11c02023-04-13 16:10:23 +020033static void sc_app_abort_conn(struct stconn *sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020034static void sc_app_shut_conn(struct stconn *sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +020035static 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 */
Christopher Fauletcfc11c02023-04-13 16:10:23 +020039static void sc_app_abort_applet(struct stconn *sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020040static void sc_app_shut_applet(struct stconn *sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +020041static 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,
Christopher Fauletcfc11c02023-04-13 16:10:23 +020053 .abort = sc_app_abort_conn,
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020054 .shutdown= sc_app_shut_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,
Christopher Fauletcfc11c02023-04-13 16:10:23 +020063 .abort = sc_app_abort,
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020064 .shutdown= sc_app_shut,
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,
Christopher Fauletcfc11c02023-04-13 16:10:23 +020073 .abort = sc_app_abort_applet,
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020074 .shutdown= sc_app_shut_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,
Christopher Fauletcfc11c02023-04-13 16:10:23 +020083 .abort = NULL,
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +020084 .shutdown= NULL,
Willy Tarreau2f2318d2022-05-18 10:17:16 +020085 .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 Faulet9ed77422022-04-12 08:51:15 +0200440 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200441int sc_reset_endp(struct stconn *sc)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100442{
Willy Tarreau31219282022-05-27 16:21:33 +0200443 struct sedesc *new_sd;
Christopher Fauletb041b232022-03-24 10:27:02 +0100444
Willy Tarreau0adb2812022-05-27 10:02:48 +0200445 BUG_ON(!sc->app);
Christopher Fauleta6c4a482022-04-28 18:25:24 +0200446
Willy Tarreau0adb2812022-05-27 10:02:48 +0200447 if (!__sc_endp(sc)) {
Christopher Fauletb041b232022-03-24 10:27:02 +0100448 /* endpoint not attached or attached to a mux with no
449 * target. Thus the endpoint will not be release but just
Willy Tarreau0adb2812022-05-27 10:02:48 +0200450 * reset. The app is still attached, the sc will not be
Christopher Fauleteb50c012022-04-21 14:22:53 +0200451 * released.
Christopher Fauletb041b232022-03-24 10:27:02 +0100452 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200453 sc_detach_endp(&sc);
Christopher Fauletb041b232022-03-24 10:27:02 +0100454 return 0;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100455 }
Christopher Fauletb041b232022-03-24 10:27:02 +0100456
457 /* allocate the new endpoint first to be able to set error if it
458 * fails */
Willy Tarreau31219282022-05-27 16:21:33 +0200459 new_sd = sedesc_new();
Christopher Faulet638fe6a2023-04-14 10:28:28 +0200460 if (!unlikely(new_sd))
Christopher Fauletb041b232022-03-24 10:27:02 +0100461 return -1;
Christopher Fauletb041b232022-03-24 10:27:02 +0100462
Willy Tarreau0adb2812022-05-27 10:02:48 +0200463 /* The app is still attached, the sc will not be released */
464 sc_detach_endp(&sc);
Willy Tarreau6a378d12022-08-11 13:56:42 +0200465 BUG_ON(!sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +0200466 BUG_ON(sc->sedesc);
Willy Tarreau31219282022-05-27 16:21:33 +0200467 sc->sedesc = new_sd;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200468 sc->sedesc->sc = sc;
469 sc_ep_set(sc, SE_FL_DETACHED);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100470 return 0;
471}
Christopher Faulet37046632022-04-01 11:36:58 +0200472
473
Willy Tarreaue68bc612022-05-27 11:23:05 +0200474/* Create an applet to handle a stream connector as a new appctx. The SC will
Christopher Faulet37046632022-04-01 11:36:58 +0200475 * wake it up every time it is solicited. The appctx must be deleted by the task
Willy Tarreau19c65a92022-05-27 08:49:24 +0200476 * handler using sc_detach_endp(), possibly from within the function itself.
Christopher Faulet37046632022-04-01 11:36:58 +0200477 * It also pre-initializes the applet's context and returns it (or NULL in case
478 * it could not be allocated).
479 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200480struct appctx *sc_applet_create(struct stconn *sc, struct applet *app)
Christopher Faulet37046632022-04-01 11:36:58 +0200481{
482 struct appctx *appctx;
483
Willy Tarreau0adb2812022-05-27 10:02:48 +0200484 appctx = appctx_new_here(app, sc->sedesc);
Christopher Faulet37046632022-04-01 11:36:58 +0200485 if (!appctx)
486 return NULL;
Willy Tarreau0adb2812022-05-27 10:02:48 +0200487 sc_attach_applet(sc, appctx);
488 appctx->t->nice = __sc_strm(sc)->task->nice;
Willy Tarreau90e8b452022-05-25 18:21:43 +0200489 applet_need_more_data(appctx);
Christopher Faulet37046632022-04-01 11:36:58 +0200490 appctx_wakeup(appctx);
Christopher Fauleta33ff7a2022-04-21 11:52:07 +0200491
Willy Tarreau0adb2812022-05-27 10:02:48 +0200492 sc->state = SC_ST_RDY;
Christopher Faulet37046632022-04-01 11:36:58 +0200493 return appctx;
494}
495
Ilya Shipitsin07be66d2023-04-01 12:26:42 +0200496/* Conditionally forward the close to the write side. It return 1 if it can be
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100497 * forwarded. It is the caller responsibility to forward the close to the write
Christopher Faulete38534c2023-04-13 15:45:24 +0200498 * side. Otherwise, 0 is returned. In this case, SC_FL_SHUT_WANTED flag may be set on
Christopher Faulet87633c32023-04-03 18:32:50 +0200499 * the consumer SC if we are only waiting for the outgoing data to be flushed.
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100500 */
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200501static inline int sc_cond_forward_shut(struct stconn *sc)
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100502{
503 /* The close must not be forwarded */
Christopher Fauletca5309a2023-04-17 16:17:32 +0200504 if (!(sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) || !(sc->flags & SC_FL_NOHALF))
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100505 return 0;
506
507 if (!channel_is_empty(sc_ic(sc))) {
Christopher Fauletdf7cd712023-04-13 15:56:26 +0200508 /* the shutdown cannot be forwarded now because
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100509 * we should flush outgoing data first. But instruct the output
510 * channel it should be done ASAP.
511 */
Christopher Fauletdf7cd712023-04-13 15:56:26 +0200512 sc_schedule_shutdown(sc);
Christopher Fauleteb3f26d2023-02-08 16:18:48 +0100513 return 0;
514 }
515
516 /* the close can be immediately forwarded to the write side */
517 return 1;
518}
519
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200520/*
Willy Tarreau4596fe22022-05-17 19:07:51 +0200521 * This function performs a shutdown-read on a detached stream connector in a
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200522 * connected or init state (it does nothing for other states). It either shuts
523 * the read side or marks itself as closed. The buffer flags are updated to
Willy Tarreaucb041662022-05-17 19:44:42 +0200524 * reflect the new state. If the stream connector has SC_FL_NOHALF, we also
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200525 * forward the close to the write side. The owner task is woken up if it exists.
526 */
Christopher Fauletcfc11c02023-04-13 16:10:23 +0200527static void sc_app_abort(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200528{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200529 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200530
Christopher Fauletca5309a2023-04-17 16:17:32 +0200531 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
Christopher Fauletc665bb52023-04-04 10:06:57 +0200532 return;
Christopher Faulet87633c32023-04-03 18:32:50 +0200533
Christopher Faulet0c370ee2023-04-13 16:05:13 +0200534 sc->flags |= SC_FL_ABRT_DONE;
Christopher Faulet87633c32023-04-03 18:32:50 +0200535 ic->flags |= CF_READ_EVENT;
Christopher Faulet4c135682023-02-16 11:09:31 +0100536 sc_ep_report_read_activity(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200537
Willy Tarreau0adb2812022-05-27 10:02:48 +0200538 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200539 return;
540
Christopher Faulet208c7122023-04-13 16:16:15 +0200541 if (sc->flags & SC_FL_SHUT_DONE) {
Willy Tarreau0adb2812022-05-27 10:02:48 +0200542 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +0200543 if (sc->flags & SC_FL_ISBACK)
544 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200545 }
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200546 else if (sc_cond_forward_shut(sc))
547 return sc_app_shut(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200548
549 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200550 if (!(sc->flags & SC_FL_DONT_WAKE))
551 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200552}
553
554/*
Willy Tarreau4596fe22022-05-17 19:07:51 +0200555 * This function performs a shutdown-write on a detached stream connector in a
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200556 * connected or init state (it does nothing for other states). It either shuts
557 * the write side or marks itself as closed. The buffer flags are updated to
Willy Tarreaue68bc612022-05-27 11:23:05 +0200558 * reflect the new state. It does also close everything if the SC was marked as
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200559 * being in error state. The owner task is woken up if it exists.
560 */
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200561static void sc_app_shut(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200562{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200563 struct channel *ic = sc_ic(sc);
564 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200565
Christopher Faulete38534c2023-04-13 15:45:24 +0200566 sc->flags &= ~SC_FL_SHUT_WANTED;
Christopher Faulet208c7122023-04-13 16:16:15 +0200567 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200568 return;
Christopher Faulet208c7122023-04-13 16:16:15 +0200569 sc->flags |= SC_FL_SHUT_DONE;
Christopher Faulet87633c32023-04-03 18:32:50 +0200570 oc->flags |= CF_WRITE_EVENT;
Christopher Fauletbcdcfad2023-02-20 08:36:53 +0100571 sc_set_hcto(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200572
Willy Tarreau0adb2812022-05-27 10:02:48 +0200573 switch (sc->state) {
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200574 case SC_ST_RDY:
575 case SC_ST_EST:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200576 /* we have to shut before closing, otherwise some short messages
577 * may never leave the system, especially when there are remaining
578 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreaucb041662022-05-17 19:44:42 +0200579 * However, if SC_FL_NOLINGER is explicitly set, we know there is
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200580 * no risk so we close both sides immediately.
581 */
Christopher Fauletca5309a2023-04-17 16:17:32 +0200582 if (!(sc->flags & (SC_FL_ERROR|SC_FL_NOLINGER|SC_FL_EOS|SC_FL_ABRT_DONE)) &&
Christopher Fauletad46e522023-04-14 11:59:15 +0200583 !(ic->flags & CF_DONT_READ))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200584 return;
585
Willy Tarreau476c2802022-11-14 07:36:42 +0100586 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200587 case SC_ST_CON:
588 case SC_ST_CER:
589 case SC_ST_QUE:
590 case SC_ST_TAR:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200591 /* Note that none of these states may happen with applets */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200592 sc->state = SC_ST_DIS;
Willy Tarreau476c2802022-11-14 07:36:42 +0100593 __fallthrough;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200594 default:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200595 sc->flags &= ~SC_FL_NOLINGER;
Christopher Faulet0c370ee2023-04-13 16:05:13 +0200596 sc->flags |= SC_FL_ABRT_DONE;
Christopher Fauletca679922022-07-20 13:24:04 +0200597 if (sc->flags & SC_FL_ISBACK)
598 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200599 }
600
601 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200602 if (!(sc->flags & SC_FL_DONT_WAKE))
603 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200604}
605
606/* default chk_rcv function for scheduled tasks */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200607static void sc_app_chk_rcv(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200608{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200609 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200610
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200611 if (ic->pipe) {
612 /* stop reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200613 sc_need_room(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200614 }
615 else {
616 /* (re)start reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200617 if (!(sc->flags & SC_FL_DONT_WAKE))
618 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200619 }
620}
621
622/* default chk_snd function for scheduled tasks */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200623static void sc_app_chk_snd(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200624{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200625 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200626
Christopher Faulet208c7122023-04-13 16:16:15 +0200627 if (unlikely(sc->state != SC_ST_EST || (sc->flags & SC_FL_SHUT_DONE)))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200628 return;
629
Willy Tarreau0adb2812022-05-27 10:02:48 +0200630 if (!sc_ep_test(sc, SE_FL_WAIT_DATA) || /* not waiting for data */
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200631 channel_is_empty(oc)) /* called with nothing to send ! */
632 return;
633
634 /* Otherwise there are remaining data to be sent in the buffer,
635 * so we tell the handler.
636 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200637 sc_ep_clr(sc, SE_FL_WAIT_DATA);
Willy Tarreau0adb2812022-05-27 10:02:48 +0200638 if (!(sc->flags & SC_FL_DONT_WAKE))
639 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200640}
641
642/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200643 * This function performs a shutdown-read on a stream connector attached to
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200644 * a connection in a connected or init state (it does nothing for other
645 * states). It either shuts the read side or marks itself as closed. The buffer
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200646 * flags are updated to reflect the new state. If the stream connector has
Willy Tarreaucb041662022-05-17 19:44:42 +0200647 * SC_FL_NOHALF, we also forward the close to the write side. If a control
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200648 * layer is defined, then it is supposed to be a socket layer and file
649 * descriptors are then shutdown or closed accordingly. The function
650 * automatically disables polling if needed.
651 */
Christopher Fauletcfc11c02023-04-13 16:10:23 +0200652static void sc_app_abort_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200653{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200654 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200655
Willy Tarreau0adb2812022-05-27 10:02:48 +0200656 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200657
Christopher Fauletca5309a2023-04-17 16:17:32 +0200658 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200659 return;
Christopher Faulet0c370ee2023-04-13 16:05:13 +0200660 sc->flags |= SC_FL_ABRT_DONE;
Christopher Faulet87633c32023-04-03 18:32:50 +0200661 ic->flags |= CF_READ_EVENT;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200662
Willy Tarreau0adb2812022-05-27 10:02:48 +0200663 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200664 return;
665
Christopher Faulet208c7122023-04-13 16:16:15 +0200666 if (sc->flags & SC_FL_SHUT_DONE) {
Willy Tarreau0adb2812022-05-27 10:02:48 +0200667 sc_conn_shut(sc);
668 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +0200669 if (sc->flags & SC_FL_ISBACK)
670 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200671 }
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200672 else if (sc_cond_forward_shut(sc))
673 return sc_app_shut_conn(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200674}
675
676/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200677 * This function performs a shutdown-write on a stream connector attached to
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200678 * a connection in a connected or init state (it does nothing for other
679 * states). It either shuts the write side or marks itself as closed. The
680 * buffer flags are updated to reflect the new state. It does also close
Willy Tarreaue68bc612022-05-27 11:23:05 +0200681 * everything if the SC was marked as being in error state. If there is a
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200682 * data-layer shutdown, it is called.
683 */
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200684static void sc_app_shut_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200685{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200686 struct channel *ic = sc_ic(sc);
687 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200688
Willy Tarreau0adb2812022-05-27 10:02:48 +0200689 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200690
Christopher Faulete38534c2023-04-13 15:45:24 +0200691 sc->flags &= ~SC_FL_SHUT_WANTED;
Christopher Faulet208c7122023-04-13 16:16:15 +0200692 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200693 return;
Christopher Faulet208c7122023-04-13 16:16:15 +0200694 sc->flags |= SC_FL_SHUT_DONE;
Christopher Faulet87633c32023-04-03 18:32:50 +0200695 oc->flags |= CF_WRITE_EVENT;
Christopher Fauletbcdcfad2023-02-20 08:36:53 +0100696 sc_set_hcto(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200697
Willy Tarreau0adb2812022-05-27 10:02:48 +0200698 switch (sc->state) {
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200699 case SC_ST_RDY:
700 case SC_ST_EST:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200701 /* we have to shut before closing, otherwise some short messages
702 * may never leave the system, especially when there are remaining
703 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreaucb041662022-05-17 19:44:42 +0200704 * However, if SC_FL_NOLINGER is explicitly set, we know there is
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200705 * no risk so we close both sides immediately.
706 */
707
Christopher Faulet25d9fe52023-04-14 12:09:35 +0200708 if (sc->flags & SC_FL_ERROR) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200709 /* quick close, the socket is already shut anyway */
710 }
Willy Tarreau0adb2812022-05-27 10:02:48 +0200711 else if (sc->flags & SC_FL_NOLINGER) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200712 /* unclean data-layer shutdown, typically an aborted request
713 * or a forwarded shutdown from a client to a server due to
714 * option abortonclose. No need for the TLS layer to try to
715 * emit a shutdown message.
716 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200717 sc_conn_shutw(sc, CO_SHW_SILENT);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200718 }
719 else {
720 /* clean data-layer shutdown. This only happens on the
721 * frontend side, or on the backend side when forwarding
722 * a client close in TCP mode or in HTTP TUNNEL mode
723 * while option abortonclose is set. We want the TLS
724 * layer to try to signal it to the peer before we close.
725 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200726 sc_conn_shutw(sc, CO_SHW_NORMAL);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200727
Christopher Fauletca5309a2023-04-17 16:17:32 +0200728 if (!(sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) && !(ic->flags & CF_DONT_READ))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200729 return;
730 }
731
Willy Tarreau476c2802022-11-14 07:36:42 +0100732 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200733 case SC_ST_CON:
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200734 /* we may have to close a pending connection, and mark the
Christopher Fauletcfc11c02023-04-13 16:10:23 +0200735 * response buffer as abort
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200736 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200737 sc_conn_shut(sc);
Willy Tarreau476c2802022-11-14 07:36:42 +0100738 __fallthrough;
Willy Tarreau026e8fb2022-05-17 19:47:17 +0200739 case SC_ST_CER:
740 case SC_ST_QUE:
741 case SC_ST_TAR:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200742 sc->state = SC_ST_DIS;
Willy Tarreau476c2802022-11-14 07:36:42 +0100743 __fallthrough;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200744 default:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200745 sc->flags &= ~SC_FL_NOLINGER;
Christopher Faulet0c370ee2023-04-13 16:05:13 +0200746 sc->flags |= SC_FL_ABRT_DONE;
Christopher Fauletca679922022-07-20 13:24:04 +0200747 if (sc->flags & SC_FL_ISBACK)
748 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200749 }
750}
751
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200752/* This function is used for inter-stream connector calls. It is called by the
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200753 * consumer to inform the producer side that it may be interested in checking
754 * for free space in the buffer. Note that it intentionally does not update
755 * timeouts, so that we can still check them later at wake-up. This function is
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200756 * dedicated to connection-based stream connectors.
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200757 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200758static void sc_app_chk_rcv_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200759{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200760 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200761
762 /* (re)start reading */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200763 if (sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
764 tasklet_wakeup(sc->wait_event.tasklet);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200765}
766
767
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200768/* This function is used for inter-stream connector calls. It is called by the
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200769 * producer to inform the consumer side that it may be interested in checking
770 * for data in the buffer. Note that it intentionally does not update timeouts,
771 * so that we can still check them later at wake-up.
772 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200773static void sc_app_chk_snd_conn(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200774{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200775 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200776
Willy Tarreau0adb2812022-05-27 10:02:48 +0200777 BUG_ON(!sc_conn(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200778
Willy Tarreau0adb2812022-05-27 10:02:48 +0200779 if (unlikely(!sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST) ||
Christopher Faulet208c7122023-04-13 16:16:15 +0200780 (sc->flags & SC_FL_SHUT_DONE)))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200781 return;
782
783 if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */
784 return;
785
786 if (!oc->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200787 !sc_ep_test(sc, SE_FL_WAIT_DATA)) /* not waiting for data */
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200788 return;
789
Willy Tarreau0adb2812022-05-27 10:02:48 +0200790 if (!(sc->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(sc_oc(sc)))
791 sc_conn_send(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200792
Willy Tarreau0adb2812022-05-27 10:02:48 +0200793 if (sc_ep_test(sc, SE_FL_ERROR | SE_FL_ERR_PENDING) || sc_is_conn_error(sc)) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200794 /* Write error on the file descriptor */
Christopher Faulet56a2b602023-04-14 09:42:59 +0200795 BUG_ON(sc_ep_test(sc, SE_FL_EOS|SE_FL_ERROR|SE_FL_ERR_PENDING) == (SE_FL_EOS|SE_FL_ERR_PENDING));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200796 goto out_wakeup;
797 }
798
799 /* OK, so now we know that some data might have been sent, and that we may
800 * have to poll first. We have to do that too if the buffer is not empty.
801 */
802 if (channel_is_empty(oc)) {
803 /* the connection is established but we can't write. Either the
804 * buffer is empty, or we just refrain from sending because the
805 * ->o limit was reached. Maybe we just wrote the last
806 * chunk and need to close.
807 */
Christopher Faulet87633c32023-04-03 18:32:50 +0200808 if ((oc->flags & CF_AUTO_CLOSE) &&
Christopher Faulet208c7122023-04-13 16:16:15 +0200809 ((sc->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)) == SC_FL_SHUT_WANTED) &&
Willy Tarreau0adb2812022-05-27 10:02:48 +0200810 sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST)) {
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200811 sc_shutdown(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200812 goto out_wakeup;
813 }
814
Christopher Faulet208c7122023-04-13 16:16:15 +0200815 if ((sc->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)) == 0)
Willy Tarreau0adb2812022-05-27 10:02:48 +0200816 sc_ep_set(sc, SE_FL_WAIT_DATA);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200817 }
818 else {
819 /* Otherwise there are remaining data to be sent in the buffer,
820 * which means we have to poll before doing so.
821 */
Willy Tarreau0adb2812022-05-27 10:02:48 +0200822 sc_ep_clr(sc, SE_FL_WAIT_DATA);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200823 }
824
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200825 /* in case of special condition (error, shutdown, end of write...), we
826 * have to notify the task.
827 */
Christopher Faulet208c7122023-04-13 16:16:15 +0200828 if (likely((sc->flags & SC_FL_SHUT_DONE) ||
Christopher Faulet71c486b2023-02-09 14:14:38 +0100829 ((oc->flags & CF_WRITE_EVENT) && sc->state < SC_ST_EST) ||
830 ((oc->flags & CF_WAKE_WRITE) &&
831 ((channel_is_empty(oc) && !oc->to_forward) ||
832 !sc_state_in(sc->state, SC_SB_EST))))) {
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200833 out_wakeup:
Willy Tarreau0adb2812022-05-27 10:02:48 +0200834 if (!(sc->flags & SC_FL_DONT_WAKE))
835 task_wakeup(sc_strm_task(sc), TASK_WOKEN_IO);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200836 }
837}
838
839/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200840 * This function performs a shutdown-read on a stream connector attached to an
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200841 * applet in a connected or init state (it does nothing for other states). It
842 * either shuts the read side or marks itself as closed. The buffer flags are
Willy Tarreaucb041662022-05-17 19:44:42 +0200843 * updated to reflect the new state. If the stream connector has SC_FL_NOHALF,
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200844 * we also forward the close to the write side. The owner task is woken up if
845 * it exists.
846 */
Christopher Fauletcfc11c02023-04-13 16:10:23 +0200847static void sc_app_abort_applet(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200848{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200849 struct channel *ic = sc_ic(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200850
Willy Tarreau0adb2812022-05-27 10:02:48 +0200851 BUG_ON(!sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200852
Christopher Fauletca5309a2023-04-17 16:17:32 +0200853 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200854 return;
Christopher Faulet0c370ee2023-04-13 16:05:13 +0200855 sc->flags |= SC_FL_ABRT_DONE;
Christopher Faulet87633c32023-04-03 18:32:50 +0200856 ic->flags |= CF_READ_EVENT;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200857
Christopher Fauletcfc11c02023-04-13 16:10:23 +0200858 /* Note: on abort, we don't call the applet */
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200859
Willy Tarreau0adb2812022-05-27 10:02:48 +0200860 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200861 return;
862
Christopher Faulet208c7122023-04-13 16:16:15 +0200863 if (sc->flags & SC_FL_SHUT_DONE) {
Willy Tarreau0adb2812022-05-27 10:02:48 +0200864 appctx_shut(__sc_appctx(sc));
865 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +0200866 if (sc->flags & SC_FL_ISBACK)
867 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200868 }
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200869 else if (sc_cond_forward_shut(sc))
870 return sc_app_shut_applet(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200871}
872
873/*
Willy Tarreau3a3f4802022-05-17 18:28:19 +0200874 * This function performs a shutdown-write on a stream connector attached to an
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200875 * applet in a connected or init state (it does nothing for other states). It
876 * either shuts the write side or marks itself as closed. The buffer flags are
877 * updated to reflect the new state. It does also close everything if the SI
878 * was marked as being in error state. The owner task is woken up if it exists.
879 */
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +0200880static void sc_app_shut_applet(struct stconn *sc)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200881{
Willy Tarreau0adb2812022-05-27 10:02:48 +0200882 struct channel *ic = sc_ic(sc);
883 struct channel *oc = sc_oc(sc);
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200884
Willy Tarreau0adb2812022-05-27 10:02:48 +0200885 BUG_ON(!sc_appctx(sc));
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200886
Christopher Faulete38534c2023-04-13 15:45:24 +0200887 sc->flags &= ~SC_FL_SHUT_WANTED;
Christopher Faulet208c7122023-04-13 16:16:15 +0200888 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200889 return;
Christopher Faulet208c7122023-04-13 16:16:15 +0200890 sc->flags |= SC_FL_SHUT_DONE;
Christopher Faulet87633c32023-04-03 18:32:50 +0200891 oc->flags |= 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 */
Christopher Fauletca5309a2023-04-17 16:17:32 +0200906 if (!(sc->flags & (SC_FL_ERROR|SC_FL_NOLINGER|SC_FL_EOS|SC_FL_ABRT_DONE)) &&
Christopher Faulet87633c32023-04-03 18:32:50 +0200907 !(ic->flags & CF_DONT_READ))
Christopher Faulet9ffddd52022-04-01 14:04:29 +0200908 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 Faulet0c370ee2023-04-13 16:05:13 +0200921 sc->flags |= SC_FL_ABRT_DONE;
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
Christopher Faulet208c7122023-04-13 16:16:15 +0200947 if (unlikely(sc->state != SC_ST_EST || (sc->flags & SC_FL_SHUT_DONE)))
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
Christopher Fauletca5309a2023-04-17 16:17:32 +0200974 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
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
Christopher Faulet208c7122023-04-13 16:16:15 +0200999 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet13045f02022-04-01 14:23:38 +02001000 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 Faulete38534c2023-04-13 15:45:24 +02001006 if ((sc->flags & SC_FL_SHUT_WANTED) == 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
Christopher Faulet208c7122023-04-13 16:16:15 +02001037 if (((sc->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)) == SC_FL_SHUT_WANTED) &&
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))))
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02001039 sc_shutdown(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001040 }
1041
1042 /* indicate that we may be waiting for data from the output channel or
Christopher Faulete38534c2023-04-13 15:45:24 +02001043 * we're about to close and can't expect more data if SC_FL_SHUT_WANTED is there.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001044 */
Christopher Faulet208c7122023-04-13 16:16:15 +02001045 if (!(sc->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)))
Willy Tarreau0adb2812022-05-27 10:02:48 +02001046 sc_ep_set(sc, SE_FL_WAIT_DATA);
Christopher Faulet208c7122023-04-13 16:16:15 +02001047 else if ((sc->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)) == SC_FL_SHUT_WANTED)
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 Faulet84d3ef92023-03-17 15:45:58 +01001069 (!(sc->flags & SC_FL_SND_EXP_MORE) || c_full(ic) || ci_data(ic) == 0 || ic->pipe)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001070 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 Fauletad46e522023-04-14 11:59:15 +02001097 * - An error on receipt: SC_FL_ERROR
Christopher Fauletca5309a2023-04-17 16:17:32 +02001098 * - A read event: shutdown for reads (CF_READ_EVENT + EOS/ABRT_DONE)
Christopher Faulet904763f2023-03-22 14:53:11 +01001099 * end of input (CF_READ_EVENT + SC_FL_EOI)
Christopher Faulet285f7612022-12-12 08:28:55 +01001100 * 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 */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001103 ((ic->flags & CF_READ_EVENT) && ((sc->flags & SC_FL_EOI) || (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) || !ic->to_forward || sco->state != SC_ST_EST)) ||
Christopher Faulet25d9fe52023-04-14 12:09:35 +02001104 (sc->flags & SC_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) ||
Christopher Faulet208c7122023-04-13 16:16:15 +02001110 (sc->flags & SC_FL_SHUT_DONE) ||
Christopher Faulet5e29b762022-04-04 08:58:34 +02001111 (((oc->flags & CF_WAKE_WRITE) ||
Christopher Faulet87633c32023-04-03 18:32:50 +02001112 (!(oc->flags & CF_AUTO_CLOSE) &&
Christopher Faulet208c7122023-04-13 16:16:15 +02001113 !(sc->flags & (SC_FL_SHUT_WANTED|SC_FL_SHUT_DONE)))) &&
Christopher Faulet87633c32023-04-03 18:32:50 +02001114 (sco->state != SC_ST_EST ||
1115 (channel_is_empty(oc) && !oc->to_forward)))))) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001116 task_wakeup(task, TASK_WOKEN_IO);
1117 }
Christopher Faulet5e29b762022-04-04 08:58:34 +02001118
Christopher Faulet2e56a732023-01-26 16:18:09 +01001119 if (ic->flags & CF_READ_EVENT)
Christopher Faulet9a790f62023-03-16 14:40:03 +01001120 sc->flags &= ~SC_FL_RCV_ONCE;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001121}
1122
1123/*
Christopher Faulet1aec6c92023-04-17 17:29:29 +02001124 * This function propagates an end-of-stream received on a socket-based connection.
Willy Tarreaucb041662022-05-17 19:44:42 +02001125 * It updates the stream connector. If the stream connector has SC_FL_NOHALF,
Christopher Faulet5e29b762022-04-04 08:58:34 +02001126 * the close is also forwarded to the write side as an abort.
1127 */
Christopher Faulet1aec6c92023-04-17 17:29:29 +02001128static void sc_conn_eos(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001129{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001130 struct channel *ic = sc_ic(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 Fauletca5309a2023-04-17 16:17:32 +02001134 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001135 return;
Christopher Faulet1aec6c92023-04-17 17:29:29 +02001136 sc->flags |= SC_FL_EOS;
Christopher Faulet87633c32023-04-03 18:32:50 +02001137 ic->flags |= CF_READ_EVENT;
Christopher Faulet4c135682023-02-16 11:09:31 +01001138 sc_ep_report_read_activity(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001139
Willy Tarreau0adb2812022-05-27 10:02:48 +02001140 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001141 return;
1142
Christopher Faulet208c7122023-04-13 16:16:15 +02001143 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001144 goto do_close;
1145
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02001146 if (sc_cond_forward_shut(sc)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001147 /* we want to immediately forward this close to the write side */
1148 /* force flag on ssl to keep stream in cache */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001149 sc_conn_shutw(sc, CO_SHW_SILENT);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001150 goto do_close;
1151 }
1152
1153 /* otherwise that's just a normal read shutdown */
1154 return;
1155
1156 do_close:
Willy Tarreauf61dd192022-05-27 09:00:19 +02001157 /* OK we completely close the socket here just as if we went through sc_shut[rw]() */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001158 sc_conn_shut(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001159
Christopher Faulete38534c2023-04-13 15:45:24 +02001160 sc->flags &= ~SC_FL_SHUT_WANTED;
Christopher Faulet208c7122023-04-13 16:16:15 +02001161 sc->flags |= SC_FL_SHUT_DONE;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001162
Willy Tarreau0adb2812022-05-27 10:02:48 +02001163 sc->state = SC_ST_DIS;
Christopher Fauletca679922022-07-20 13:24:04 +02001164 if (sc->flags & SC_FL_ISBACK)
1165 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001166 return;
1167}
1168
1169/*
1170 * This is the callback which is called by the connection layer to receive data
1171 * into the buffer from the connection. It iterates over the mux layer's
1172 * rcv_buf function.
1173 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001174static int sc_conn_recv(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001175{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001176 struct connection *conn = __sc_conn(sc);
1177 struct channel *ic = sc_ic(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001178 int ret, max, cur_read = 0;
1179 int read_poll = MAX_READ_POLL_LOOPS;
1180 int flags = 0;
1181
1182 /* If not established yet, do nothing. */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001183 if (sc->state != SC_ST_EST)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001184 return 0;
1185
Willy Tarreau462b9892022-05-18 18:06:53 +02001186 /* If another call to sc_conn_recv() failed, and we subscribed to
Christopher Faulet5e29b762022-04-04 08:58:34 +02001187 * recv events already, give up now.
1188 */
Christopher Faulet95125882023-04-12 18:35:18 +02001189 if ((sc->wait_event.events & SUB_RETRY_RECV) || sc_waiting_room(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001190 return 0;
1191
Christopher Fauletcfc11c02023-04-13 16:10:23 +02001192 /* maybe we were called immediately after an asynchronous abort */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001193 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001194 return 1;
1195
1196 /* we must wait because the mux is not installed yet */
1197 if (!conn->mux)
1198 return 0;
1199
Christopher Faulet5e29b762022-04-04 08:58:34 +02001200 /* stop immediately on errors. Note that we DON'T want to stop on
1201 * POLL_ERR, as the poller might report a write error while there
1202 * are still data available in the recv buffer. This typically
1203 * happens when we send too large a request to a backend server
1204 * which rejects it before reading it all.
1205 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001206 if (!sc_ep_test(sc, SE_FL_RCV_MORE)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001207 if (!conn_xprt_ready(conn))
1208 return 0;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001209 if (sc_ep_test(sc, SE_FL_ERROR))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001210 goto end_recv;
1211 }
1212
1213 /* prepare to detect if the mux needs more room */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001214 sc_ep_clr(sc, SE_FL_WANT_ROOM);
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) &&
Christopher Fauletca5309a2023-04-17 16:17:32 +02001323 (!sc_ep_test(sc, SE_FL_ERROR | SE_FL_EOS)) && !(sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)))) {
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 */
Christopher Faulet64350bb2023-04-13 16:37:37 +02001364 if (ic->to_forward && !(sc_opposite(sc)->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED))) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001365 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
Christopher Faulet9a790f62023-03-16 14:40:03 +01001385 if ((sc->flags & SC_FL_RCV_ONCE) || --read_poll <= 0) {
1386 /* we don't expect to read more data */
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. */
Christopher Faulet904763f2023-03-22 14:53:11 +01001469 if (sc_ep_test(sc, SE_FL_EOI) && !(sc->flags & SC_FL_EOI)) {
Christopher Faulet4c135682023-02-16 11:09:31 +01001470 sc_ep_report_read_activity(sc);
Christopher Faulet904763f2023-03-22 14:53:11 +01001471 sc->flags |= SC_FL_EOI;
1472 ic->flags |= CF_READ_EVENT;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001473 ret = 1;
1474 }
1475
Christopher Fauletb208d8c2023-03-21 11:25:21 +01001476 if (sc_ep_test(sc, SE_FL_EOS)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001477 /* we received a shutdown */
Christopher Faulet5e29b762022-04-04 08:58:34 +02001478 if (ic->flags & CF_AUTO_CLOSE)
Christopher Fauletdf7cd712023-04-13 15:56:26 +02001479 sc_schedule_shutdown(sc_opposite(sc));
Christopher Faulet1aec6c92023-04-17 17:29:29 +02001480 sc_conn_eos(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001481 ret = 1;
1482 }
Christopher Fauletb208d8c2023-03-21 11:25:21 +01001483
Christopher Fauleta1d14a72023-04-14 10:42:08 +02001484 if (sc_ep_test(sc, SE_FL_ERROR)) {
1485 sc->flags |= SC_FL_ERROR;
Christopher Fauletb208d8c2023-03-21 11:25:21 +01001486 ret = 1;
Christopher Fauleta1d14a72023-04-14 10:42:08 +02001487 }
Willy Tarreau0adb2812022-05-27 10:02:48 +02001488 else if (!(sc->flags & (SC_FL_WONT_READ|SC_FL_NEED_BUFF|SC_FL_NEED_ROOM)) &&
Christopher Fauletca5309a2023-04-17 16:17:32 +02001489 !(sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001490 /* Subscribe to receive events if we're blocking on I/O */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001491 conn->mux->subscribe(sc, SUB_RETRY_RECV, &sc->wait_event);
1492 se_have_no_more_data(sc->sedesc);
Christopher Fauletb208d8c2023-03-21 11:25:21 +01001493 }
1494 else {
Willy Tarreau0adb2812022-05-27 10:02:48 +02001495 se_have_more_data(sc->sedesc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001496 ret = 1;
1497 }
Christopher Faulet8019f782023-03-23 17:30:29 +01001498
1499 BUG_ON_HOT((sc_ep_get(sc) & (SE_FL_EOI|SE_FL_EOS|SE_FL_ERROR)) == SE_FL_EOS);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001500 return ret;
1501}
1502
Willy Tarreau4596fe22022-05-17 19:07:51 +02001503/* This tries to perform a synchronous receive on the stream connector to
Christopher Faulet5e29b762022-04-04 08:58:34 +02001504 * try to collect last arrived data. In practice it's only implemented on
Willy Tarreau4596fe22022-05-17 19:07:51 +02001505 * stconns. Returns 0 if nothing was done, non-zero if new data or a
Christopher Faulet5e29b762022-04-04 08:58:34 +02001506 * shutdown were collected. This may result on some delayed receive calls
1507 * to be programmed and performed later, though it doesn't provide any
1508 * such guarantee.
1509 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001510int sc_conn_sync_recv(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001511{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001512 if (!sc_state_in(sc->state, SC_SB_RDY|SC_SB_EST))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001513 return 0;
1514
Willy Tarreau0adb2812022-05-27 10:02:48 +02001515 if (!sc_mux_ops(sc))
Willy Tarreau4596fe22022-05-17 19:07:51 +02001516 return 0; // only stconns are supported
Christopher Faulet5e29b762022-04-04 08:58:34 +02001517
Willy Tarreau0adb2812022-05-27 10:02:48 +02001518 if (sc->wait_event.events & SUB_RETRY_RECV)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001519 return 0; // already subscribed
1520
Willy Tarreau0adb2812022-05-27 10:02:48 +02001521 if (!sc_is_recv_allowed(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001522 return 0; // already failed
1523
Willy Tarreau0adb2812022-05-27 10:02:48 +02001524 return sc_conn_recv(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001525}
1526
1527/*
1528 * This function is called to send buffer data to a stream socket.
1529 * It calls the mux layer's snd_buf function. It relies on the
1530 * caller to commit polling changes. The caller should check conn->flags
1531 * for errors.
1532 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001533static int sc_conn_send(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001534{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001535 struct connection *conn = __sc_conn(sc);
Christopher Faulet904763f2023-03-22 14:53:11 +01001536 struct stconn *sco = sc_opposite(sc);
Willy Tarreau0adb2812022-05-27 10:02:48 +02001537 struct stream *s = __sc_strm(sc);
1538 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001539 int ret;
1540 int did_send = 0;
1541
Willy Tarreau0adb2812022-05-27 10:02:48 +02001542 if (sc_ep_test(sc, SE_FL_ERROR | SE_FL_ERR_PENDING) || sc_is_conn_error(sc)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001543 /* We're probably there because the tasklet was woken up,
1544 * but process_stream() ran before, detected there were an
Willy Tarreaue68bc612022-05-27 11:23:05 +02001545 * error and put the SC back to SC_ST_TAR. There's still
Christopher Faulet5e29b762022-04-04 08:58:34 +02001546 * CO_FL_ERROR on the connection but we don't want to add
Willy Tarreaub605c422022-05-17 17:04:55 +02001547 * SE_FL_ERROR back, so give up
Christopher Faulet5e29b762022-04-04 08:58:34 +02001548 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001549 if (sc->state < SC_ST_CON)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001550 return 0;
Christopher Faulet56a2b602023-04-14 09:42:59 +02001551 BUG_ON(sc_ep_test(sc, SE_FL_EOS|SE_FL_ERROR|SE_FL_ERR_PENDING) == (SE_FL_EOS|SE_FL_ERR_PENDING));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001552 return 1;
1553 }
1554
1555 /* We're already waiting to be able to send, give up */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001556 if (sc->wait_event.events & SUB_RETRY_SEND)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001557 return 0;
1558
1559 /* we might have been called just after an asynchronous shutw */
Christopher Faulet208c7122023-04-13 16:16:15 +02001560 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001561 return 1;
1562
1563 /* we must wait because the mux is not installed yet */
1564 if (!conn->mux)
1565 return 0;
1566
1567 if (oc->pipe && conn->xprt->snd_pipe && conn->mux->snd_pipe) {
Willy Tarreau0adb2812022-05-27 10:02:48 +02001568 ret = conn->mux->snd_pipe(sc, oc->pipe);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001569 if (ret > 0)
1570 did_send = 1;
1571
1572 if (!oc->pipe->data) {
1573 put_pipe(oc->pipe);
1574 oc->pipe = NULL;
1575 }
1576
1577 if (oc->pipe)
1578 goto end;
1579 }
1580
1581 /* At this point, the pipe is empty, but we may still have data pending
1582 * in the normal buffer.
1583 */
1584 if (co_data(oc)) {
1585 /* when we're here, we already know that there is no spliced
1586 * data left, and that there are sendable buffered data.
1587 */
1588
1589 /* check if we want to inform the kernel that we're interested in
1590 * sending more data after this call. We want this if :
1591 * - we're about to close after this last send and want to merge
1592 * the ongoing FIN with the last segment.
1593 * - we know we can't send everything at once and must get back
1594 * here because of unaligned data
1595 * - there is still a finite amount of data to forward
1596 * The test is arranged so that the most common case does only 2
1597 * tests.
1598 */
1599 unsigned int send_flag = 0;
1600
Christopher Faulet68ef2182023-03-17 15:38:18 +01001601 if ((!(sc->flags & (SC_FL_SND_ASAP|SC_FL_SND_NEVERWAIT)) &&
Christopher Faulet5e29b762022-04-04 08:58:34 +02001602 ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) ||
Christopher Faulet84d3ef92023-03-17 15:45:58 +01001603 (sc->flags & SC_FL_SND_EXP_MORE) ||
Christopher Faulet5e29b762022-04-04 08:58:34 +02001604 (IS_HTX_STRM(s) &&
Christopher Fauletca5309a2023-04-17 16:17:32 +02001605 (!(sco->flags & (SC_FL_EOI|SC_FL_EOS|SC_FL_ABRT_DONE)) && htx_expect_more(htxbuf(&oc->buf)))))) ||
Christopher Faulet5e29b762022-04-04 08:58:34 +02001606 ((oc->flags & CF_ISRESP) &&
Christopher Faulet87633c32023-04-03 18:32:50 +02001607 (oc->flags & CF_AUTO_CLOSE) &&
Christopher Faulete38534c2023-04-13 15:45:24 +02001608 (sc->flags & SC_FL_SHUT_WANTED)))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001609 send_flag |= CO_SFL_MSG_MORE;
1610
1611 if (oc->flags & CF_STREAMER)
1612 send_flag |= CO_SFL_STREAMER;
1613
1614 if (s->txn && s->txn->flags & TX_L7_RETRY && !b_data(&s->txn->l7_buffer)) {
1615 /* If we want to be able to do L7 retries, copy
1616 * the data we're about to send, so that we are able
1617 * to resend them if needed
1618 */
1619 /* Try to allocate a buffer if we had none.
1620 * If it fails, the next test will just
1621 * disable the l7 retries by setting
1622 * l7_conn_retries to 0.
1623 */
1624 if (s->txn->req.msg_state != HTTP_MSG_DONE)
1625 s->txn->flags &= ~TX_L7_RETRY;
1626 else {
1627 if (b_alloc(&s->txn->l7_buffer) == NULL)
1628 s->txn->flags &= ~TX_L7_RETRY;
1629 else {
1630 memcpy(b_orig(&s->txn->l7_buffer),
1631 b_orig(&oc->buf),
1632 b_size(&oc->buf));
1633 s->txn->l7_buffer.head = co_data(oc);
1634 b_add(&s->txn->l7_buffer, co_data(oc));
1635 }
1636
1637 }
1638 }
1639
Willy Tarreau0adb2812022-05-27 10:02:48 +02001640 ret = conn->mux->snd_buf(sc, &oc->buf, co_data(oc), send_flag);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001641 if (ret > 0) {
1642 did_send = 1;
1643 c_rew(oc, ret);
1644 c_realign_if_empty(oc);
1645
1646 if (!co_data(oc)) {
1647 /* Always clear both flags once everything has been sent, they're one-shot */
Christopher Faulet84d3ef92023-03-17 15:45:58 +01001648 sc->flags &= ~(SC_FL_SND_ASAP|SC_FL_SND_EXP_MORE);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001649 }
1650 /* if some data remain in the buffer, it's only because the
1651 * system buffers are full, we will try next time.
1652 */
Christopher Faulet13045f02022-04-01 14:23:38 +02001653 }
1654 }
Christopher Faulet5e29b762022-04-04 08:58:34 +02001655
1656 end:
1657 if (did_send) {
Christopher Fauletd8988412022-12-20 18:10:04 +01001658 oc->flags |= CF_WRITE_EVENT | CF_WROTE_DATA;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001659 if (sc->state == SC_ST_CON)
1660 sc->state = SC_ST_RDY;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001661 sc_have_room(sc_opposite(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001662 }
1663
Willy Tarreau0adb2812022-05-27 10:02:48 +02001664 if (sc_ep_test(sc, SE_FL_ERROR | SE_FL_ERR_PENDING)) {
Christopher Faulet2e56a732023-01-26 16:18:09 +01001665 oc->flags |= CF_WRITE_EVENT;
Christopher Faulet56a2b602023-04-14 09:42:59 +02001666 BUG_ON(sc_ep_test(sc, SE_FL_EOS|SE_FL_ERROR|SE_FL_ERR_PENDING) == (SE_FL_EOS|SE_FL_ERR_PENDING));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001667 return 1;
1668 }
1669
Christopher Faulet59b240c2023-02-27 16:38:12 +01001670 if (channel_is_empty(oc))
1671 sc_ep_report_send_activity(sc);
1672 else {
1673 /* 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 +02001674 conn->mux->subscribe(sc, SUB_RETRY_SEND, &sc->wait_event);
Christopher Faulet59b240c2023-02-27 16:38:12 +01001675 sc_ep_report_blocked_send(sc);
1676 }
1677
Christopher Faulet5e29b762022-04-04 08:58:34 +02001678 return did_send;
1679}
1680
Christopher Fauletd8988412022-12-20 18:10:04 +01001681/* perform a synchronous send() for the stream connector. The CF_WRITE_EVENT
1682 * flag are cleared prior to the attempt, and will possibly be updated in case
1683 * of success.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001684 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001685void sc_conn_sync_send(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001686{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001687 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001688
Christopher Fauletd8988412022-12-20 18:10:04 +01001689 oc->flags &= ~CF_WRITE_EVENT;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001690
Christopher Faulet208c7122023-04-13 16:16:15 +02001691 if (sc->flags & SC_FL_SHUT_DONE)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001692 return;
1693
1694 if (channel_is_empty(oc))
1695 return;
1696
Willy Tarreau0adb2812022-05-27 10:02:48 +02001697 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001698 return;
1699
Willy Tarreau0adb2812022-05-27 10:02:48 +02001700 if (!sc_mux_ops(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001701 return;
1702
Willy Tarreau0adb2812022-05-27 10:02:48 +02001703 sc_conn_send(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001704}
1705
1706/* Called by I/O handlers after completion.. It propagates
Willy Tarreau4596fe22022-05-17 19:07:51 +02001707 * connection flags to the stream connector, updates the stream (which may or
Christopher Faulet5e29b762022-04-04 08:58:34 +02001708 * may not take this opportunity to try to forward data), then update the
Willy Tarreau4596fe22022-05-17 19:07:51 +02001709 * connection's polling based on the channels and stream connector's final
Christopher Faulet5e29b762022-04-04 08:58:34 +02001710 * states. The function always returns 0.
1711 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001712static int sc_conn_process(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001713{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001714 struct connection *conn = __sc_conn(sc);
1715 struct channel *ic = sc_ic(sc);
1716 struct channel *oc = sc_oc(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001717
1718 BUG_ON(!conn);
1719
1720 /* If we have data to send, try it now */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001721 if (!channel_is_empty(oc) && !(sc->wait_event.events & SUB_RETRY_SEND))
1722 sc_conn_send(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001723
Willy Tarreau4596fe22022-05-17 19:07:51 +02001724 /* First step, report to the stream connector what was detected at the
Christopher Faulet5e29b762022-04-04 08:58:34 +02001725 * connection layer : errors and connection establishment.
Christopher Faulet88d05a02023-04-14 12:03:50 +02001726 * Only add SC_FL_ERROR if we're connected, or we're attempting to
Christopher Faulet5e29b762022-04-04 08:58:34 +02001727 * connect, we may get there because we got woken up, but only run
1728 * after process_stream() noticed there were an error, and decided
1729 * to retry to connect, the connection may still have CO_FL_ERROR,
Christopher Faulet88d05a02023-04-14 12:03:50 +02001730 * and we don't want to add SC_FL_ERROR back
Christopher Faulet5e29b762022-04-04 08:58:34 +02001731 *
Willy Tarreau462b9892022-05-18 18:06:53 +02001732 * Note: This test is only required because sc_conn_process is also the SI
1733 * wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
Christopher Faulet5e29b762022-04-04 08:58:34 +02001734 * care of it.
1735 */
1736
Willy Tarreau0adb2812022-05-27 10:02:48 +02001737 if (sc->state >= SC_ST_CON) {
Christopher Faulet88d05a02023-04-14 12:03:50 +02001738 if (sc_is_conn_error(sc))
Christopher Fauleta1d14a72023-04-14 10:42:08 +02001739 sc->flags |= SC_FL_ERROR;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001740 }
1741
1742 /* If we had early data, and the handshake ended, then
1743 * we can remove the flag, and attempt to wake the task up,
1744 * in the event there's an analyser waiting for the end of
1745 * the handshake.
1746 */
1747 if (!(conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)) &&
Willy Tarreau0adb2812022-05-27 10:02:48 +02001748 sc_ep_test(sc, SE_FL_WAIT_FOR_HS)) {
1749 sc_ep_clr(sc, SE_FL_WAIT_FOR_HS);
1750 task_wakeup(sc_strm_task(sc), TASK_WOKEN_MSG);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001751 }
1752
Willy Tarreau0adb2812022-05-27 10:02:48 +02001753 if (!sc_state_in(sc->state, SC_SB_EST|SC_SB_DIS|SC_SB_CLO) &&
Christopher Faulet5e29b762022-04-04 08:58:34 +02001754 (conn->flags & CO_FL_WAIT_XPRT) == 0) {
Christopher Fauletca679922022-07-20 13:24:04 +02001755 if (sc->flags & SC_FL_ISBACK)
1756 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
Christopher Fauletb96f2aa2022-12-12 08:11:36 +01001757 oc->flags |= CF_WRITE_EVENT;
Willy Tarreau0adb2812022-05-27 10:02:48 +02001758 if (sc->state == SC_ST_CON)
1759 sc->state = SC_ST_RDY;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001760 }
1761
1762 /* Report EOS on the channel if it was reached from the mux point of
1763 * view.
1764 *
Willy Tarreau462b9892022-05-18 18:06:53 +02001765 * Note: This test is only required because sc_conn_process is also the SI
1766 * wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
Christopher Faulet5e29b762022-04-04 08:58:34 +02001767 * care of it.
1768 */
Christopher Faulet1aec6c92023-04-17 17:29:29 +02001769 if (sc_ep_test(sc, SE_FL_EOS) && !(sc->flags & SC_FL_EOS)) {
Christopher Faulet5e29b762022-04-04 08:58:34 +02001770 /* we received a shutdown */
Christopher Faulet5e29b762022-04-04 08:58:34 +02001771 if (ic->flags & CF_AUTO_CLOSE)
Christopher Fauletdf7cd712023-04-13 15:56:26 +02001772 sc_schedule_shutdown(sc_opposite(sc));
Christopher Faulet1aec6c92023-04-17 17:29:29 +02001773 sc_conn_eos(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001774 }
1775
1776 /* Report EOI on the channel if it was reached from the mux point of
1777 * view.
1778 *
Willy Tarreau462b9892022-05-18 18:06:53 +02001779 * Note: This test is only required because sc_conn_process is also the SI
1780 * wake callback. Otherwise sc_conn_recv()/sc_conn_send() already take
Christopher Faulet5e29b762022-04-04 08:58:34 +02001781 * care of it.
1782 */
Christopher Faulet904763f2023-03-22 14:53:11 +01001783 if (sc_ep_test(sc, SE_FL_EOI) && !(sc->flags & SC_FL_EOI)) {
1784 sc->flags |= SC_FL_EOI;
1785 ic->flags |= CF_READ_EVENT;
1786 }
Christopher Faulet5e29b762022-04-04 08:58:34 +02001787
Christopher Fauleta1d14a72023-04-14 10:42:08 +02001788 if (sc_ep_test(sc, SE_FL_ERROR))
1789 sc->flags |= SC_FL_ERROR;
1790
Willy Tarreau4596fe22022-05-17 19:07:51 +02001791 /* Second step : update the stream connector and channels, try to forward any
Christopher Faulet5e29b762022-04-04 08:58:34 +02001792 * pending data, then possibly wake the stream up based on the new
Willy Tarreau4596fe22022-05-17 19:07:51 +02001793 * stream connector status.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001794 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001795 sc_notify(sc);
1796 stream_release_buffers(__sc_strm(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001797 return 0;
1798}
1799
Willy Tarreau4596fe22022-05-17 19:07:51 +02001800/* This is the ->process() function for any stream connector's wait_event task.
1801 * It's assigned during the stream connector's initialization, for any type of
1802 * stream connector. Thus it is always safe to perform a tasklet_wakeup() on a
Willy Tarreaue68bc612022-05-27 11:23:05 +02001803 * stream connector, as the presence of the SC is checked there.
Christopher Faulet5e29b762022-04-04 08:58:34 +02001804 */
Willy Tarreau462b9892022-05-18 18:06:53 +02001805struct task *sc_conn_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001806{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001807 struct stconn *sc = ctx;
Christopher Faulet5e29b762022-04-04 08:58:34 +02001808 int ret = 0;
1809
Willy Tarreau0adb2812022-05-27 10:02:48 +02001810 if (!sc_conn(sc))
Christopher Faulet5e29b762022-04-04 08:58:34 +02001811 return t;
1812
Willy Tarreau0adb2812022-05-27 10:02:48 +02001813 if (!(sc->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(sc_oc(sc)))
1814 ret = sc_conn_send(sc);
1815 if (!(sc->wait_event.events & SUB_RETRY_RECV))
1816 ret |= sc_conn_recv(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001817 if (ret != 0)
Willy Tarreau0adb2812022-05-27 10:02:48 +02001818 sc_conn_process(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001819
Willy Tarreau0adb2812022-05-27 10:02:48 +02001820 stream_release_buffers(__sc_strm(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001821 return t;
1822}
1823
Christopher Fauletb36e5122023-04-17 17:32:43 +02001824/*
1825 * This function propagates an end-of-stream received from an applet. It
1826 * updates the stream connector. If it is is already shut, the applet is
1827 * released. Otherwise, we try to forward the shutdown, immediately or ASAP.
1828 */
1829static void sc_applet_eos(struct stconn *sc)
1830{
1831 struct channel *ic = sc_ic(sc);
1832
1833 BUG_ON(!sc_appctx(sc));
1834
1835 if (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))
1836 return;
1837 sc->flags |= SC_FL_EOS;
1838 ic->flags |= CF_READ_EVENT;
1839
1840 /* Note: on abort, we don't call the applet */
1841
1842 if (!sc_state_in(sc->state, SC_SB_CON|SC_SB_RDY|SC_SB_EST))
1843 return;
1844
1845 if (sc->flags & SC_FL_SHUT_DONE) {
1846 appctx_shut(__sc_appctx(sc));
1847 sc->state = SC_ST_DIS;
1848 if (sc->flags & SC_FL_ISBACK)
1849 __sc_strm(sc)->conn_exp = TICK_ETERNITY;
1850 }
1851 else if (sc_cond_forward_shut(sc))
1852 return sc_app_shut_applet(sc);
1853}
1854
Christopher Faulet5e29b762022-04-04 08:58:34 +02001855/* Callback to be used by applet handlers upon completion. It updates the stream
1856 * (which may or may not take this opportunity to try to forward data), then
Willy Tarreau4596fe22022-05-17 19:07:51 +02001857 * may re-enable the applet's based on the channels and stream connector's final
Christopher Faulet5e29b762022-04-04 08:58:34 +02001858 * states.
1859 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001860static int sc_applet_process(struct stconn *sc)
Christopher Faulet5e29b762022-04-04 08:58:34 +02001861{
Willy Tarreau0adb2812022-05-27 10:02:48 +02001862 struct channel *ic = sc_ic(sc);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001863
Willy Tarreau0adb2812022-05-27 10:02:48 +02001864 BUG_ON(!sc_appctx(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001865
Christopher Fauletf8fbb6d2023-03-21 11:49:21 +01001866 /* Report EOI on the channel if it was reached from the applet point of
1867 * view. */
Christopher Faulet904763f2023-03-22 14:53:11 +01001868 if (sc_ep_test(sc, SE_FL_EOI) && !(sc->flags & SC_FL_EOI)) {
Christopher Fauletf8fbb6d2023-03-21 11:49:21 +01001869 sc_ep_report_read_activity(sc);
Christopher Faulet904763f2023-03-22 14:53:11 +01001870 sc->flags |= SC_FL_EOI;
1871 ic->flags |= CF_READ_EVENT;
Christopher Fauletf8fbb6d2023-03-21 11:49:21 +01001872 }
1873
Christopher Fauleta1d14a72023-04-14 10:42:08 +02001874 if (sc_ep_test(sc, SE_FL_ERROR))
1875 sc->flags |= SC_FL_ERROR;
1876
Christopher Faulet0ffc9d72023-03-21 14:19:08 +01001877 if (sc_ep_test(sc, SE_FL_EOS)) {
1878 /* we received a shutdown */
Christopher Fauletb36e5122023-04-17 17:32:43 +02001879 sc_applet_eos(sc);
Christopher Faulet0ffc9d72023-03-21 14:19:08 +01001880 }
1881
Christopher Faulete8bcef52023-04-14 09:45:41 +02001882 BUG_ON(sc_ep_test(sc, SE_FL_HAVE_NO_DATA|SE_FL_EOI) == SE_FL_EOI);
1883
Christopher Faulet5e29b762022-04-04 08:58:34 +02001884 /* If the applet wants to write and the channel is closed, it's a
1885 * broken pipe and it must be reported.
1886 */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001887 if (!sc_ep_test(sc, SE_FL_HAVE_NO_DATA) && (sc->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)))
Willy Tarreau0adb2812022-05-27 10:02:48 +02001888 sc_ep_set(sc, SE_FL_ERROR);
Christopher Faulet5e29b762022-04-04 08:58:34 +02001889
1890 /* automatically mark the applet having data available if it reported
1891 * begin blocked by the channel.
1892 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001893 if ((sc->flags & (SC_FL_WONT_READ|SC_FL_NEED_BUFF|SC_FL_NEED_ROOM)) ||
1894 sc_ep_test(sc, SE_FL_APPLET_NEED_CONN))
1895 applet_have_more_data(__sc_appctx(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001896
Willy Tarreau4596fe22022-05-17 19:07:51 +02001897 /* update the stream connector, channels, and possibly wake the stream up */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001898 sc_notify(sc);
1899 stream_release_buffers(__sc_strm(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001900
Willy Tarreau19c65a92022-05-27 08:49:24 +02001901 /* sc_notify may have passed through chk_snd and released some blocking
Willy Tarreau15252cd2022-05-25 16:36:21 +02001902 * flags. Process_stream will consider those flags to wake up the
Christopher Faulet5e29b762022-04-04 08:58:34 +02001903 * appctx but in the case the task is not in runqueue we may have to
1904 * wakeup the appctx immediately.
1905 */
Willy Tarreau0adb2812022-05-27 10:02:48 +02001906 if (sc_is_recv_allowed(sc) || sc_is_send_allowed(sc))
1907 appctx_wakeup(__sc_appctx(sc));
Christopher Faulet5e29b762022-04-04 08:58:34 +02001908 return 0;
Christopher Faulet13045f02022-04-01 14:23:38 +02001909}
Christopher Fauletb68f77d2022-06-16 16:24:16 +02001910
1911
1912/* Prepares an endpoint upgrade. We don't now at this stage if the upgrade will
1913 * succeed or not and if the stconn will be reused by the new endpoint. Thus,
1914 * for now, only pretend the stconn is detached.
1915 */
1916void sc_conn_prepare_endp_upgrade(struct stconn *sc)
1917{
1918 BUG_ON(!sc_conn(sc) || !sc->app);
1919 sc_ep_clr(sc, SE_FL_T_MUX);
1920 sc_ep_set(sc, SE_FL_DETACHED);
1921}
1922
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05001923/* Endpoint upgrade failed. Restore the stconn state. */
Christopher Fauletb68f77d2022-06-16 16:24:16 +02001924void sc_conn_abort_endp_upgrade(struct stconn *sc)
1925{
1926 sc_ep_set(sc, SE_FL_T_MUX);
1927 sc_ep_clr(sc, SE_FL_DETACHED);
1928}
1929
1930/* Commit the endpoint upgrade. If stconn is attached, it means the new endpoint
1931 * use it. So we do nothing. Otherwise, the stconn will be destroy with the
1932 * overlying stream. So, it means we must commit the detach.
1933*/
1934void sc_conn_commit_endp_upgrade(struct stconn *sc)
1935{
1936 if (!sc_ep_test(sc, SE_FL_DETACHED))
1937 return;
1938 sc_detach_endp(&sc);
1939 /* Because it was already set as detached, the sedesc must be preserved */
Willy Tarreau6a378d12022-08-11 13:56:42 +02001940 BUG_ON(!sc);
Christopher Fauletb68f77d2022-06-16 16:24:16 +02001941 BUG_ON(!sc->sedesc);
1942}