blob: d100ad8d44e7a095dceab5020ae0f72bb5df7bf3 [file] [log] [blame]
Willy Tarreau53a47662017-08-28 10:53:00 +02001/*
2 * Pass-through mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
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
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020013#include <haproxy/api.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020014#include <haproxy/buf.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020015#include <haproxy/connection.h>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010016#include <haproxy/conn_stream.h>
Christopher Fauletc0ae0972021-04-08 16:45:11 +020017#include <haproxy/pipe-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020018#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020019#include <haproxy/task.h>
Christopher Fauletc0ae0972021-04-08 16:45:11 +020020#include <haproxy/trace.h>
Olivier Houchardb6c32ee2018-11-05 18:28:43 +010021
Olivier Houchardb6c32ee2018-11-05 18:28:43 +010022struct mux_pt_ctx {
23 struct conn_stream *cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +010024 struct cs_endpoint *endp;
Olivier Houchardb6c32ee2018-11-05 18:28:43 +010025 struct connection *conn;
26 struct wait_event wait_event;
27};
28
Willy Tarreau8ceae722018-11-26 11:58:30 +010029DECLARE_STATIC_POOL(pool_head_pt_ctx, "mux_pt", sizeof(struct mux_pt_ctx));
30
Christopher Fauletc0ae0972021-04-08 16:45:11 +020031/* trace source and events */
32static void pt_trace(enum trace_level level, uint64_t mask,
33 const struct trace_source *src,
34 const struct ist where, const struct ist func,
35 const void *a1, const void *a2, const void *a3, const void *a4);
36
37/* The event representation is split like this :
38 * pt_ctx - internal PT context
39 * strm - application layer
40 */
41static const struct trace_event pt_trace_events[] = {
42#define PT_EV_CONN_NEW (1ULL << 0)
43 { .mask = PT_EV_CONN_NEW, .name = "pt_conn_new", .desc = "new PT connection" },
44#define PT_EV_CONN_WAKE (1ULL << 1)
45 { .mask = PT_EV_CONN_WAKE, .name = "pt_conn_wake", .desc = "PT connection woken up" },
46#define PT_EV_CONN_END (1ULL << 2)
47 { .mask = PT_EV_CONN_END, .name = "pt_conn_end", .desc = "PT connection terminated" },
48#define PT_EV_CONN_ERR (1ULL << 3)
49 { .mask = PT_EV_CONN_ERR, .name = "pt_conn_err", .desc = "error on PT connection" },
50#define PT_EV_STRM_NEW (1ULL << 4)
51 { .mask = PT_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
52#define PT_EV_STRM_SHUT (1ULL << 5)
53 { .mask = PT_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
54#define PT_EV_STRM_END (1ULL << 6)
55 { .mask = PT_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
56#define PT_EV_STRM_ERR (1ULL << 7)
57 { .mask = PT_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
58#define PT_EV_RX_DATA (1ULL << 8)
59 { .mask = PT_EV_RX_DATA, .name = "pt_rx_data", .desc = "Rx on PT connection" },
60#define PT_EV_TX_DATA (1ULL << 9)
61 { .mask = PT_EV_TX_DATA, .name = "pt_tx_data", .desc = "Tx on PT connection" },
62
63 {}
64};
65
66
67static const struct name_desc pt_trace_decoding[] = {
68#define PT_VERB_CLEAN 1
69 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
70#define PT_VERB_MINIMAL 2
71 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
72#define PT_VERB_SIMPLE 3
73 { .name="simple", .desc="add request/response status line or htx info when available" },
74#define PT_VERB_ADVANCED 4
75 { .name="advanced", .desc="add header fields or frame decoding when available" },
76#define PT_VERB_COMPLETE 5
77 { .name="complete", .desc="add full data dump when available" },
78 { /* end */ }
79};
80
Willy Tarreau6eb3d372021-04-10 19:29:26 +020081static struct trace_source trace_pt __read_mostly = {
Christopher Fauletc0ae0972021-04-08 16:45:11 +020082 .name = IST("pt"),
83 .desc = "Passthrough multiplexer",
84 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
85 .default_cb = pt_trace,
86 .known_events = pt_trace_events,
87 .lockon_args = NULL,
88 .decoding = pt_trace_decoding,
89 .report_events = ~0, // report everything by default
90};
91
92#define TRACE_SOURCE &trace_pt
93INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
94
95static inline void pt_trace_buf(const struct buffer *buf, size_t ofs, size_t len)
96{
97 size_t block1, block2;
98 int line, ptr, newptr;
99
100 block1 = b_contig_data(buf, ofs);
101 block2 = 0;
102 if (block1 > len)
103 block1 = len;
104 block2 = len - block1;
105
106 ofs = b_peek_ofs(buf, ofs);
107
108 line = 0;
109 ptr = ofs;
110 while (ptr < ofs + block1) {
111 newptr = dump_text_line(&trace_buf, b_orig(buf), b_size(buf), ofs + block1, &line, ptr);
112 if (newptr == ptr)
113 break;
114 ptr = newptr;
115 }
116
117 line = ptr = 0;
118 while (ptr < block2) {
119 newptr = dump_text_line(&trace_buf, b_orig(buf), b_size(buf), block2, &line, ptr);
120 if (newptr == ptr)
121 break;
122 ptr = newptr;
123 }
124}
125
126/* the PT traces always expect that arg1, if non-null, is of type connection
127 * (from which we can derive the pt context), that arg2, if non-null, is a
128 * conn-stream, and that arg3, if non-null, is a buffer.
129 */
130static void pt_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
131 const struct ist where, const struct ist func,
132 const void *a1, const void *a2, const void *a3, const void *a4)
133{
134 const struct connection *conn = a1;
135 const struct mux_pt_ctx *ctx = conn ? conn->ctx : NULL;
136 const struct conn_stream *cs = a2;
137 const struct buffer *buf = a3;
138 const size_t *val = a4;
139
Christopher Faulet1bceee22022-03-24 10:51:08 +0100140 if (!ctx || src->verbosity < PT_VERB_CLEAN)
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200141 return;
142
143 /* Display frontend/backend info by default */
144 chunk_appendf(&trace_buf, " : [%c]", (conn_is_back(conn) ? 'B' : 'F'));
145
146 if (src->verbosity == PT_VERB_CLEAN)
147 return;
148
Christopher Faulet1bceee22022-03-24 10:51:08 +0100149 if (!cs)
150 cs = ctx->cs;
151
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200152 /* Display the value to the 4th argument (level > STATE) */
153 if (src->level > TRACE_LEVEL_STATE && val)
154 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
155
156 /* Display conn and cs info, if defined (pointer + flags) */
157 chunk_appendf(&trace_buf, " - conn=%p(0x%08x)", conn, conn->flags);
Christopher Faulet1bceee22022-03-24 10:51:08 +0100158 chunk_appendf(&trace_buf, " endp=%p(0x%08x)", ctx->endp, ctx->endp->flags);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200159 if (cs)
160 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", cs, cs->flags);
161
162 if (src->verbosity == PT_VERB_MINIMAL)
163 return;
164
165 /* Display buffer info, if defined (level > USER & verbosity > SIMPLE) */
166 if (src->level > TRACE_LEVEL_USER && buf) {
167 int full = 0, max = 3000, chunk = 1024;
168
169 /* Full info (level > STATE && verbosity > SIMPLE) */
170 if (src->level > TRACE_LEVEL_STATE) {
171 if (src->verbosity == PT_VERB_COMPLETE)
172 full = 1;
173 else if (src->verbosity == PT_VERB_ADVANCED) {
174 full = 1;
175 max = 256;
176 chunk = 64;
177 }
178 }
179
180 chunk_appendf(&trace_buf, " buf=%u@%p+%u/%u",
181 (unsigned int)b_data(buf), b_orig(buf),
182 (unsigned int)b_head_ofs(buf), (unsigned int)b_size(buf));
183
184 if (b_data(buf) && full) {
185 chunk_memcat(&trace_buf, "\n", 1);
186 if (b_data(buf) < max)
187 pt_trace_buf(buf, 0, b_data(buf));
188 else {
189 pt_trace_buf(buf, 0, chunk);
190 chunk_memcat(&trace_buf, " ...\n", 6);
191 pt_trace_buf(buf, b_data(buf) - chunk, chunk);
192 }
193 }
194 }
195}
196
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100197static void mux_pt_destroy(struct mux_pt_ctx *ctx)
198{
Christopher Faulet5a7ca292020-11-03 09:11:43 +0100199 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200200
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200201 TRACE_POINT(PT_EV_CONN_END);
202
Christopher Faulet4de1bff2022-04-14 11:36:41 +0200203 /* The connection must be attached to this mux to be released */
204 if (ctx->conn && ctx->conn->ctx == ctx)
205 conn = ctx->conn;
Christopher Faulet5a7ca292020-11-03 09:11:43 +0100206
Christopher Faulet4de1bff2022-04-14 11:36:41 +0200207 tasklet_free(ctx->wait_event.tasklet);
Christopher Faulet5a7ca292020-11-03 09:11:43 +0100208
Christopher Faulet4de1bff2022-04-14 11:36:41 +0200209 if (conn && ctx->wait_event.events != 0)
210 conn->xprt->unsubscribe(conn, conn->xprt_ctx, ctx->wait_event.events,
211 &ctx->wait_event);
212 BUG_ON(ctx->endp && !(ctx->endp->flags & CS_EP_ORPHAN));
213 cs_endpoint_free(ctx->endp);
214 pool_free(pool_head_pt_ctx, ctx);
Christopher Faulet5a7ca292020-11-03 09:11:43 +0100215
216 if (conn) {
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200217 conn->mux = NULL;
218 conn->ctx = NULL;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200219 TRACE_DEVEL("freeing conn", PT_EV_CONN_END, conn);
Christopher Faulet5a7ca292020-11-03 09:11:43 +0100220
221 conn_stop_tracking(conn);
222 conn_full_close(conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200223 if (conn->destroy_cb)
224 conn->destroy_cb(conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200225 conn_free(conn);
226 }
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100227}
228
Willy Tarreau691d5032021-01-20 14:55:01 +0100229/* Callback, used when we get I/Os while in idle mode. This one is exported so
230 * that "show fd" can resolve it.
231 */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100232struct task *mux_pt_io_cb(struct task *t, void *tctx, unsigned int status)
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100233{
234 struct mux_pt_ctx *ctx = tctx;
235
Christopher Faulet1bceee22022-03-24 10:51:08 +0100236 TRACE_ENTER(PT_EV_CONN_WAKE, ctx->conn);
237 if (!(ctx->endp->flags & CS_EP_ORPHAN)) {
Olivier Houchardea510fc2019-10-18 13:56:40 +0200238 /* There's a small race condition.
239 * mux_pt_io_cb() is only supposed to be called if we have no
240 * stream attached. However, maybe the tasklet got woken up,
241 * and this connection was then attached to a new stream.
Olivier Houchard2ed389d2019-10-18 14:18:29 +0200242 * If this happened, just wake the tasklet up if anybody
243 * subscribed to receive events, and otherwise call the wake
244 * method, to make sure the event is noticed.
Olivier Houchardea510fc2019-10-18 13:56:40 +0200245 */
Willy Tarreau7872d1f2020-01-10 07:06:05 +0100246 if (ctx->conn->subs) {
247 ctx->conn->subs->events = 0;
248 tasklet_wakeup(ctx->conn->subs->tasklet);
249 ctx->conn->subs = NULL;
Olivier Houchard2ed389d2019-10-18 14:18:29 +0200250 } else if (ctx->cs->data_cb->wake)
Olivier Houchardea510fc2019-10-18 13:56:40 +0200251 ctx->cs->data_cb->wake(ctx->cs);
Christopher Faulet1bceee22022-03-24 10:51:08 +0100252 TRACE_DEVEL("leaving waking up CS", PT_EV_CONN_WAKE, ctx->conn);
Willy Tarreau74163142021-03-13 11:30:19 +0100253 return t;
Olivier Houchardea510fc2019-10-18 13:56:40 +0200254 }
Willy Tarreau2ded48d2020-12-11 16:20:34 +0100255 conn_ctrl_drain(ctx->conn);
Willy Tarreau74163142021-03-13 11:30:19 +0100256 if (ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
Christopher Faulete2c65ba2021-04-10 09:02:32 +0200257 TRACE_DEVEL("leaving destroying pt context", PT_EV_CONN_WAKE, ctx->conn);
Olivier Houchard9dce2c52019-10-18 10:59:30 +0200258 mux_pt_destroy(ctx);
Willy Tarreau74163142021-03-13 11:30:19 +0100259 t = NULL;
260 }
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200261 else {
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100262 ctx->conn->xprt->subscribe(ctx->conn, ctx->conn->xprt_ctx, SUB_RETRY_RECV,
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200263 &ctx->wait_event);
Christopher Faulete2c65ba2021-04-10 09:02:32 +0200264 TRACE_DEVEL("leaving subscribing for reads", PT_EV_CONN_WAKE, ctx->conn);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200265 }
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100266
Willy Tarreau74163142021-03-13 11:30:19 +0100267 return t;
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100268}
Willy Tarreau53a47662017-08-28 10:53:00 +0200269
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100270/* Initialize the mux once it's attached. It is expected that conn->ctx
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200271 * points to the existing conn_stream (for outgoing connections) or NULL (for
272 * incoming ones, in which case one will be allocated and a new stream will be
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500273 * instantiated). Returns < 0 on error.
Willy Tarreau53a47662017-08-28 10:53:00 +0200274 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200275static int mux_pt_init(struct connection *conn, struct proxy *prx, struct session *sess,
276 struct buffer *input)
Willy Tarreau53a47662017-08-28 10:53:00 +0200277{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100278 struct conn_stream *cs = conn->ctx;
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100279 struct mux_pt_ctx *ctx = pool_alloc(pool_head_pt_ctx);
280
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200281 TRACE_ENTER(PT_EV_CONN_NEW);
282
283 if (!ctx) {
284 TRACE_ERROR("PT context allocation failure", PT_EV_CONN_NEW|PT_EV_CONN_END|PT_EV_CONN_ERR);
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100285 goto fail;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200286 }
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100287
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200288 ctx->wait_event.tasklet = tasklet_new();
289 if (!ctx->wait_event.tasklet)
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100290 goto fail_free_ctx;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200291 ctx->wait_event.tasklet->context = ctx;
292 ctx->wait_event.tasklet->process = mux_pt_io_cb;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100293 ctx->wait_event.events = 0;
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100294 ctx->conn = conn;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200295
296 if (!cs) {
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100297 ctx->endp = cs_endpoint_new();
298 if (!ctx->endp) {
299 TRACE_ERROR("CS allocation failure", PT_EV_STRM_NEW|PT_EV_STRM_END|PT_EV_STRM_ERR, conn);
Christopher Fauletb669d682022-03-22 18:37:19 +0100300 goto fail_free_ctx;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100301 }
302 ctx->endp->target = ctx;
303 ctx->endp->ctx = conn;
304 ctx->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100305
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100306 cs = cs_new_from_mux(ctx->endp, sess, input);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200307 if (!cs) {
308 TRACE_ERROR("CS allocation failure", PT_EV_STRM_NEW|PT_EV_STRM_END|PT_EV_STRM_ERR, conn);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100309 goto fail_free_endp;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200310 }
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200311 TRACE_POINT(PT_EV_STRM_NEW, conn, cs);
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200312 }
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100313 else {
Christopher Faulet070b91b2022-03-31 19:27:18 +0200314 if (cs_attach_mux(cs, ctx, conn) < 0)
315 goto fail_free_ctx;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100316 ctx->endp = cs->endp;
317 }
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100318 conn->ctx = ctx;
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100319 ctx->cs = cs;
Christopher Faulet1bceee22022-03-24 10:51:08 +0100320 ctx->endp->flags |= CS_EP_RCV_MORE;
Willy Tarreau17ccd1a2020-01-17 16:19:34 +0100321 if (global.tune.options & GTUNE_USE_SPLICE)
Christopher Faulet1bceee22022-03-24 10:51:08 +0100322 ctx->endp->flags |= CS_EP_MAY_SPLICE;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200323
Christopher Faulet1bceee22022-03-24 10:51:08 +0100324 TRACE_LEAVE(PT_EV_CONN_NEW, conn);
Willy Tarreau53a47662017-08-28 10:53:00 +0200325 return 0;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200326
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100327 fail_free_endp:
328 cs_endpoint_free(ctx->endp);
Christopher Fauleta9e8b392022-03-23 11:01:09 +0100329 fail_free_ctx:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200330 if (ctx->wait_event.tasklet)
331 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100332 pool_free(pool_head_pt_ctx, ctx);
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200333 fail:
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200334 TRACE_DEVEL("leaving in error", PT_EV_CONN_NEW|PT_EV_CONN_END|PT_EV_CONN_ERR);
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200335 return -1;
Willy Tarreau53a47662017-08-28 10:53:00 +0200336}
337
338/* callback to be used by default for the pass-through mux. It calls the data
339 * layer wake() callback if it is set otherwise returns 0.
340 */
341static int mux_pt_wake(struct connection *conn)
342{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100343 struct mux_pt_ctx *ctx = conn->ctx;
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100344 int ret = 0;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200345
Christopher Faulet1bceee22022-03-24 10:51:08 +0100346 TRACE_ENTER(PT_EV_CONN_WAKE, ctx->conn);
347 if (!(ctx->endp->flags & CS_EP_ORPHAN)) {
348 ret = ctx->cs->data_cb->wake ? ctx->cs->data_cb->wake(ctx->cs) : 0;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200349
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200350 if (ret < 0) {
Christopher Faulet1bceee22022-03-24 10:51:08 +0100351 TRACE_DEVEL("leaving waking up CS", PT_EV_CONN_WAKE, ctx->conn);
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100352 return ret;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200353 }
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100354 } else {
Willy Tarreau2ded48d2020-12-11 16:20:34 +0100355 conn_ctrl_drain(conn);
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100356 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200357 TRACE_DEVEL("leaving destroying PT context", PT_EV_CONN_WAKE, ctx->conn);
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100358 mux_pt_destroy(ctx);
359 return -1;
360 }
361 }
Willy Tarreauad7f0ad2018-08-24 15:48:59 +0200362
Olivier Houchard7fc96d52017-11-23 18:25:47 +0100363 /* If we had early data, and we're done with the handshake
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500364 * then we know the data are safe, and we can remove the flag.
Olivier Houchard7fc96d52017-11-23 18:25:47 +0100365 */
Willy Tarreau911db9b2020-01-23 16:27:54 +0100366 if ((conn->flags & (CO_FL_EARLY_DATA | CO_FL_EARLY_SSL_HS | CO_FL_WAIT_XPRT)) ==
Olivier Houchard7fc96d52017-11-23 18:25:47 +0100367 CO_FL_EARLY_DATA)
368 conn->flags &= ~CO_FL_EARLY_DATA;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200369
370 TRACE_LEAVE(PT_EV_CONN_WAKE, ctx->conn);
Willy Tarreaued339a32017-11-03 15:55:24 +0100371 return ret;
Willy Tarreau53a47662017-08-28 10:53:00 +0200372}
373
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200374/*
375 * Attach a new stream to a connection
376 * (Used for outgoing connections)
377 */
Christopher Faulete00ad352021-12-16 14:44:31 +0100378static int mux_pt_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200379{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100380 struct mux_pt_ctx *ctx = conn->ctx;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100381
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200382 TRACE_ENTER(PT_EV_STRM_NEW, conn);
Olivier Houchardea32b0f2019-08-10 23:56:16 +0200383 if (ctx->wait_event.events)
384 conn->xprt->unsubscribe(ctx->conn, conn->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Christopher Faulet070b91b2022-03-31 19:27:18 +0200385 if (cs_attach_mux(cs, ctx, conn) < 0)
386 return -1;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100387 ctx->cs = cs;
Christopher Faulet1bceee22022-03-24 10:51:08 +0100388 ctx->endp = cs->endp;
389 ctx->endp->flags |= CS_EP_RCV_MORE;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200390
391 TRACE_LEAVE(PT_EV_STRM_NEW, conn, cs);
Christopher Faulete00ad352021-12-16 14:44:31 +0100392 return 0;
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200393}
394
Willy Tarreaufafd3982018-11-18 21:29:20 +0100395/* Retrieves a valid conn_stream from this connection, or returns NULL. For
396 * this mux, it's easy as we can only store a single conn_stream.
397 */
Christopher Faulet64b8d332022-04-01 13:21:41 +0200398static struct conn_stream *mux_pt_get_first_cs(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +0100399{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100400 struct mux_pt_ctx *ctx = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +0100401
Christopher Faulet1bceee22022-03-24 10:51:08 +0100402 return ctx->cs;
Willy Tarreaufafd3982018-11-18 21:29:20 +0100403}
404
Christopher Faulet73c12072019-04-08 11:23:22 +0200405/* Destroy the mux and the associated connection if still attached to this mux
406 * and no longer used */
407static void mux_pt_destroy_meth(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +0100408{
Christopher Faulet73c12072019-04-08 11:23:22 +0200409 struct mux_pt_ctx *pt = ctx;
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100410
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200411 TRACE_POINT(PT_EV_CONN_END, pt->conn, pt->cs);
Christopher Faulet7c452cc2022-04-14 11:08:26 +0200412 if ((pt->endp->flags & CS_EP_ORPHAN) || pt->conn->ctx != pt) {
413 if (pt->conn->ctx != pt) {
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100414 pt->endp = NULL;
Christopher Faulet7c452cc2022-04-14 11:08:26 +0200415 }
Christopher Faulet73c12072019-04-08 11:23:22 +0200416 mux_pt_destroy(pt);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100417 }
Olivier Houchard060ed432018-11-06 16:32:42 +0100418}
419
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200420/*
Willy Tarreau2c52a2b2017-10-08 11:00:17 +0200421 * Detach the stream from the connection and possibly release the connection.
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200422 */
423static void mux_pt_detach(struct conn_stream *cs)
424{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100425 struct connection *conn = __cs_conn(cs);
Christopher Faulet2da02ae2022-02-24 13:45:27 +0100426 struct mux_pt_ctx *ctx;
427
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200428 TRACE_ENTER(PT_EV_STRM_END, conn, cs);
429
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100430 ctx = conn->ctx;
431 ctx->cs = NULL;
432
Olivier Houchardb6c32ee2018-11-05 18:28:43 +0100433 /* Subscribe, to know if we got disconnected */
Christopher Fauletfbff8542022-03-09 15:55:58 +0100434 if (!conn_is_back(conn) && conn->owner != NULL &&
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100435 !(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100436 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200437 } else {
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100438 /* There's no session attached to that connection, destroy it */
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200439 TRACE_DEVEL("killing dead connection", PT_EV_STRM_END, conn, cs);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +0100440 mux_pt_destroy(ctx);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200441 }
442
443 TRACE_LEAVE(PT_EV_STRM_END);
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200444}
445
Willy Tarreau00f18a32019-01-26 12:19:01 +0100446/* returns the number of streams in use on a connection */
447static int mux_pt_used_streams(struct connection *conn)
Olivier Houchardd540b362018-11-05 18:37:53 +0100448{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100449 struct mux_pt_ctx *ctx = conn->ctx;
Olivier Houchardd540b362018-11-05 18:37:53 +0100450
Christopher Faulet1bceee22022-03-24 10:51:08 +0100451 return (!(ctx->endp->flags & CS_EP_ORPHAN) ? 1 : 0);
Olivier Houchardd540b362018-11-05 18:37:53 +0100452}
453
Willy Tarreau00f18a32019-01-26 12:19:01 +0100454/* returns the number of streams still available on a connection */
455static int mux_pt_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100456{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100457 return 1 - mux_pt_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100458}
459
Christopher Faulet07976562022-03-31 11:05:05 +0200460static void mux_pt_shutr(struct conn_stream *cs, enum co_shr_mode mode)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200461{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100462 struct connection *conn = __cs_conn(cs);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200463 struct mux_pt_ctx *ctx = conn->ctx;
Christopher Faulet897d6122021-12-17 17:28:35 +0100464
465 TRACE_ENTER(PT_EV_STRM_SHUT, conn, cs);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200466
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200467 if (ctx->endp->flags & CS_EP_SHR)
Willy Tarreau4b795242017-10-05 18:47:38 +0200468 return;
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200469 ctx->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Faulet897d6122021-12-17 17:28:35 +0100470 if (conn_xprt_ready(conn) && conn->xprt->shutr)
471 conn->xprt->shutr(conn, conn->xprt_ctx,
Christopher Faulet07976562022-03-31 11:05:05 +0200472 (mode == CO_SHR_DRAIN));
473 else if (mode == CO_SHR_DRAIN)
Christopher Faulet897d6122021-12-17 17:28:35 +0100474 conn_ctrl_drain(conn);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200475 if (ctx->endp->flags & CS_EP_SHW)
Christopher Faulet897d6122021-12-17 17:28:35 +0100476 conn_full_close(conn);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200477
Christopher Faulet897d6122021-12-17 17:28:35 +0100478 TRACE_LEAVE(PT_EV_STRM_SHUT, conn, cs);
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200479}
480
Christopher Faulet07976562022-03-31 11:05:05 +0200481static void mux_pt_shutw(struct conn_stream *cs, enum co_shw_mode mode)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200482{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100483 struct connection *conn = __cs_conn(cs);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200484 struct mux_pt_ctx *ctx = conn->ctx;
Christopher Faulet897d6122021-12-17 17:28:35 +0100485
486 TRACE_ENTER(PT_EV_STRM_SHUT, conn, cs);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200487
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200488 if (ctx->endp->flags & CS_EP_SHW)
Willy Tarreau4b795242017-10-05 18:47:38 +0200489 return;
Christopher Faulet897d6122021-12-17 17:28:35 +0100490 if (conn_xprt_ready(conn) && conn->xprt->shutw)
491 conn->xprt->shutw(conn, conn->xprt_ctx,
Christopher Faulet07976562022-03-31 11:05:05 +0200492 (mode == CO_SHW_NORMAL));
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200493 if (!(ctx->endp->flags & CS_EP_SHR))
Christopher Faulet07976562022-03-31 11:05:05 +0200494 conn_sock_shutw(conn, (mode == CO_SHW_NORMAL));
Willy Tarreau4b795242017-10-05 18:47:38 +0200495 else
Christopher Faulet897d6122021-12-17 17:28:35 +0100496 conn_full_close(conn);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200497
Christopher Faulet897d6122021-12-17 17:28:35 +0100498 TRACE_LEAVE(PT_EV_STRM_SHUT, conn, cs);
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200499}
500
501/*
502 * Called from the upper layer, to get more data
Christopher Faulet564e39c2021-09-21 15:50:55 +0200503 *
504 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
505 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
506 * means the caller wants to flush input data (from the mux buffer and the
507 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
508 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
509 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
510 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
511 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
512 * copy as much data as possible.
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200513 */
Willy Tarreau7f3225f2018-06-19 06:15:17 +0200514static size_t mux_pt_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200515{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100516 struct connection *conn = __cs_conn(cs);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200517 struct mux_pt_ctx *ctx = conn->ctx;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200518 size_t ret = 0;
519
Christopher Faulet897d6122021-12-17 17:28:35 +0100520 TRACE_ENTER(PT_EV_RX_DATA, conn, cs, buf, (size_t[]){count});
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200521
Christopher Faulet4eb7d742018-10-11 15:29:21 +0200522 if (!count) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200523 ctx->endp->flags |= (CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200524 goto end;
Christopher Faulet4eb7d742018-10-11 15:29:21 +0200525 }
Willy Tarreaue0f24ee2018-12-14 10:51:23 +0100526 b_realign_if_empty(buf);
Christopher Faulet897d6122021-12-17 17:28:35 +0100527 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, count, flags);
528 if (conn_xprt_read0_pending(conn)) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200529 ctx->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
530 ctx->endp->flags |= CS_EP_EOS;
Christopher Faulet897d6122021-12-17 17:28:35 +0100531 TRACE_DEVEL("read0 on connection", PT_EV_RX_DATA, conn, cs);
Olivier Houchard8706c812018-12-04 19:17:25 +0100532 }
Christopher Faulet897d6122021-12-17 17:28:35 +0100533 if (conn->flags & CO_FL_ERROR) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200534 ctx->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
535 ctx->endp->flags |= CS_EP_ERROR;
Christopher Faulet897d6122021-12-17 17:28:35 +0100536 TRACE_DEVEL("error on connection", PT_EV_RX_DATA|PT_EV_CONN_ERR, conn, cs);
Olivier Houchard8706c812018-12-04 19:17:25 +0100537 }
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200538 end:
Christopher Faulet897d6122021-12-17 17:28:35 +0100539 TRACE_LEAVE(PT_EV_RX_DATA, conn, cs, buf, (size_t[]){ret});
Willy Tarreaud9cf5402018-07-18 11:29:06 +0200540 return ret;
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200541}
542
543/* Called from the upper layer, to send data */
Christopher Fauletd44a9b32018-07-27 11:59:41 +0200544static size_t mux_pt_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200545{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100546 struct connection *conn = __cs_conn(cs);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200547 struct mux_pt_ctx *ctx = conn->ctx;
Olivier Houchardb72d98a2018-11-30 13:17:48 +0100548 size_t ret;
549
Christopher Faulet897d6122021-12-17 17:28:35 +0100550 TRACE_ENTER(PT_EV_TX_DATA, conn, cs, buf, (size_t[]){count});
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200551
Christopher Faulet897d6122021-12-17 17:28:35 +0100552 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, count, flags);
Christopher Fauletd44a9b32018-07-27 11:59:41 +0200553
554 if (ret > 0)
555 b_del(buf, ret);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200556
Willy Tarreau413713f2022-03-31 16:47:46 +0200557 if (conn->flags & CO_FL_ERROR) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200558 ctx->endp->flags |= CS_EP_ERROR;
Willy Tarreau413713f2022-03-31 16:47:46 +0200559 TRACE_DEVEL("error on connection", PT_EV_TX_DATA|PT_EV_CONN_ERR, conn, cs);
560 }
561
Christopher Faulet897d6122021-12-17 17:28:35 +0100562 TRACE_LEAVE(PT_EV_TX_DATA, conn, cs, buf, (size_t[]){ret});
Christopher Fauletd44a9b32018-07-27 11:59:41 +0200563 return ret;
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200564}
565
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100566/* Called from the upper layer, to subscribe <es> to events <event_type>. The
567 * event subscriber <es> is not allowed to change from a previous call as long
568 * as at least one event is still subscribed. The <event_type> must only be a
569 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
570 */
571static int mux_pt_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +0200572{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100573 struct connection *conn = __cs_conn(cs);
Christopher Faulet897d6122021-12-17 17:28:35 +0100574
575 TRACE_POINT(PT_EV_RX_DATA|PT_EV_TX_DATA, conn, cs, 0, (size_t[]){event_type});
576 return conn->xprt->subscribe(conn, conn->xprt_ctx, event_type, es);
Olivier Houchard6ff20392018-07-17 18:46:31 +0200577}
578
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100579/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
580 * The <es> pointer is not allowed to differ from the one passed to the
581 * subscribe() call. It always returns zero.
582 */
583static int mux_pt_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200584{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100585 struct connection *conn = __cs_conn(cs);
Christopher Faulet897d6122021-12-17 17:28:35 +0100586
587 TRACE_POINT(PT_EV_RX_DATA|PT_EV_TX_DATA, conn, cs, 0, (size_t[]){event_type});
588 return conn->xprt->unsubscribe(conn, conn->xprt_ctx, event_type, es);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200589}
590
Willy Tarreaue5733232019-05-22 19:24:06 +0200591#if defined(USE_LINUX_SPLICE)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200592/* Send and get, using splicing */
593static int mux_pt_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
594{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100595 struct connection *conn = __cs_conn(cs);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200596 struct mux_pt_ctx *ctx = conn->ctx;
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200597 int ret;
598
Christopher Faulet897d6122021-12-17 17:28:35 +0100599 TRACE_ENTER(PT_EV_RX_DATA, conn, cs, 0, (size_t[]){count});
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200600
Christopher Faulet897d6122021-12-17 17:28:35 +0100601 ret = conn->xprt->rcv_pipe(conn, conn->xprt_ctx, pipe, count);
602 if (conn_xprt_read0_pending(conn)) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200603 ctx->endp->flags |= CS_EP_EOS;
Christopher Faulet897d6122021-12-17 17:28:35 +0100604 TRACE_DEVEL("read0 on connection", PT_EV_RX_DATA, conn, cs);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200605 }
Christopher Faulet897d6122021-12-17 17:28:35 +0100606 if (conn->flags & CO_FL_ERROR) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200607 ctx->endp->flags |= CS_EP_ERROR;
Christopher Faulet897d6122021-12-17 17:28:35 +0100608 TRACE_DEVEL("error on connection", PT_EV_RX_DATA|PT_EV_CONN_ERR, conn, cs);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200609 }
610
Christopher Faulet897d6122021-12-17 17:28:35 +0100611 TRACE_LEAVE(PT_EV_RX_DATA, conn, cs, 0, (size_t[]){ret});
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200612 return (ret);
613}
614
615static int mux_pt_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
616{
Christopher Faulet693b23b2022-02-28 09:09:05 +0100617 struct connection *conn = __cs_conn(cs);
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200618 struct mux_pt_ctx *ctx = conn->ctx;
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200619 int ret;
620
Christopher Faulet897d6122021-12-17 17:28:35 +0100621 TRACE_ENTER(PT_EV_TX_DATA, conn, cs, 0, (size_t[]){pipe->data});
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200622
Christopher Faulet897d6122021-12-17 17:28:35 +0100623 ret = conn->xprt->snd_pipe(conn, conn->xprt_ctx, pipe);
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200624
Willy Tarreau413713f2022-03-31 16:47:46 +0200625 if (conn->flags & CO_FL_ERROR) {
Willy Tarreau7a2705f2022-05-10 11:21:15 +0200626 ctx->endp->flags |= CS_EP_ERROR;
Willy Tarreau413713f2022-03-31 16:47:46 +0200627 TRACE_DEVEL("error on connection", PT_EV_TX_DATA|PT_EV_CONN_ERR, conn, cs);
628 }
629
Christopher Faulet897d6122021-12-17 17:28:35 +0100630 TRACE_LEAVE(PT_EV_TX_DATA, conn, cs, 0, (size_t[]){ret});
Christopher Fauletc0ae0972021-04-08 16:45:11 +0200631 return ret;
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200632}
Olivier Houchard7da120b2017-11-01 13:55:10 +0100633#endif
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200634
Olivier Houchard9b8e11e2019-10-25 16:19:26 +0200635static int mux_pt_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
636{
637 int ret = 0;
638 switch (mux_ctl) {
639 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +0100640 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +0200641 ret |= MUX_STATUS_READY;
642 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +0200643 case MUX_EXIT_STATUS:
644 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +0200645 default:
646 return -1;
647 }
648}
649
Willy Tarreau53a47662017-08-28 10:53:00 +0200650/* The mux operations */
Christopher Faulet28da3f52021-02-05 16:44:46 +0100651const struct mux_ops mux_tcp_ops = {
Willy Tarreau53a47662017-08-28 10:53:00 +0200652 .init = mux_pt_init,
Willy Tarreau53a47662017-08-28 10:53:00 +0200653 .wake = mux_pt_wake,
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200654 .rcv_buf = mux_pt_rcv_buf,
655 .snd_buf = mux_pt_snd_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +0200656 .subscribe = mux_pt_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200657 .unsubscribe = mux_pt_unsubscribe,
Willy Tarreaue5733232019-05-22 19:24:06 +0200658#if defined(USE_LINUX_SPLICE)
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200659 .rcv_pipe = mux_pt_rcv_pipe,
660 .snd_pipe = mux_pt_snd_pipe,
661#endif
662 .attach = mux_pt_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +0100663 .get_first_cs = mux_pt_get_first_cs,
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200664 .detach = mux_pt_detach,
Olivier Houchardd540b362018-11-05 18:37:53 +0100665 .avail_streams = mux_pt_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +0100666 .used_streams = mux_pt_used_streams,
Olivier Houchard060ed432018-11-06 16:32:42 +0100667 .destroy = mux_pt_destroy_meth,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +0200668 .ctl = mux_pt_ctl,
Olivier Houchard7a3f0df2017-09-13 18:30:23 +0200669 .shutr = mux_pt_shutr,
670 .shutw = mux_pt_shutw,
Willy Tarreau28f1cb92017-12-20 16:14:44 +0100671 .flags = MX_FL_NONE,
Willy Tarreau53a47662017-08-28 10:53:00 +0200672 .name = "PASS",
673};
Willy Tarreauf6490822017-09-21 19:43:21 +0200674
Christopher Faulet28da3f52021-02-05 16:44:46 +0100675
676const struct mux_ops mux_pt_ops = {
677 .init = mux_pt_init,
678 .wake = mux_pt_wake,
679 .rcv_buf = mux_pt_rcv_buf,
680 .snd_buf = mux_pt_snd_buf,
681 .subscribe = mux_pt_subscribe,
682 .unsubscribe = mux_pt_unsubscribe,
683#if defined(USE_LINUX_SPLICE)
684 .rcv_pipe = mux_pt_rcv_pipe,
685 .snd_pipe = mux_pt_snd_pipe,
686#endif
687 .attach = mux_pt_attach,
688 .get_first_cs = mux_pt_get_first_cs,
689 .detach = mux_pt_detach,
690 .avail_streams = mux_pt_avail_streams,
691 .used_streams = mux_pt_used_streams,
692 .destroy = mux_pt_destroy_meth,
693 .ctl = mux_pt_ctl,
694 .shutr = mux_pt_shutr,
695 .shutw = mux_pt_shutw,
696 .flags = MX_FL_NONE|MX_FL_NO_UPG,
697 .name = "PASS",
698};
699
Christopher Faulet32f61c02018-04-10 14:33:41 +0200700/* PROT selection : default mux has empty name */
Christopher Faulet28da3f52021-02-05 16:44:46 +0100701static struct mux_proto_list mux_proto_none =
702 { .token = IST("none"), .mode = PROTO_MODE_TCP, .side = PROTO_SIDE_BOTH, .mux = &mux_pt_ops };
703static struct mux_proto_list mux_proto_tcp =
704 { .token = IST(""), .mode = PROTO_MODE_TCP, .side = PROTO_SIDE_BOTH, .mux = &mux_tcp_ops };
Willy Tarreauf6490822017-09-21 19:43:21 +0200705
Christopher Faulet28da3f52021-02-05 16:44:46 +0100706INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_none);
707INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_tcp);