Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
| 13 | #include <common/config.h> |
| 14 | #include <proto/connection.h> |
| 15 | #include <proto/stream.h> |
| 16 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 17 | /* Initialize the mux once it's attached. It is expected that conn->mux_ctx |
| 18 | * points to the existing conn_stream (for outgoing connections) or NULL (for |
| 19 | * incoming ones, in which case one will be allocated and a new stream will be |
| 20 | * instanciated). Returns < 0 on error. |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 21 | */ |
| 22 | static int mux_pt_init(struct connection *conn) |
| 23 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 24 | struct conn_stream *cs = conn->mux_ctx; |
| 25 | |
| 26 | if (!cs) { |
| 27 | cs = cs_new(conn); |
| 28 | if (!cs) |
| 29 | goto fail; |
| 30 | |
| 31 | if (stream_create_from_cs(cs) < 0) |
| 32 | goto fail_free; |
| 33 | |
| 34 | conn->mux_ctx = cs; |
| 35 | } |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 36 | return 0; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 37 | |
| 38 | fail_free: |
| 39 | cs_free(cs); |
| 40 | fail: |
| 41 | return -1; |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | /* callback to be used by default for the pass-through mux. It calls the data |
| 45 | * layer wake() callback if it is set otherwise returns 0. |
| 46 | */ |
| 47 | static int mux_pt_wake(struct connection *conn) |
| 48 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 49 | struct conn_stream *cs = conn->mux_ctx; |
| 50 | int ret; |
| 51 | |
| 52 | ret = cs->data_cb->wake ? cs->data_cb->wake(cs) : 0; |
| 53 | |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 54 | /* If we had early data, and we're done with the handshake |
| 55 | * then whe know the data are safe, and we can remove the flag. |
| 56 | */ |
| 57 | if ((conn->flags & (CO_FL_EARLY_DATA | CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE)) == |
| 58 | CO_FL_EARLY_DATA) |
| 59 | conn->flags &= ~CO_FL_EARLY_DATA; |
Willy Tarreau | ed339a3 | 2017-11-03 15:55:24 +0100 | [diff] [blame] | 60 | if (ret >= 0) |
| 61 | cs_update_mux_polling(cs); |
| 62 | return ret; |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 63 | } |
| 64 | |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 65 | /* callback used to update the mux's polling flags after changing a cs' status. |
| 66 | * The caller (cs_mux_update_poll) will take care of propagating any changes to |
| 67 | * the transport layer. |
| 68 | */ |
| 69 | static void mux_pt_update_poll(struct conn_stream *cs) |
| 70 | { |
| 71 | struct connection *conn = cs->conn; |
| 72 | int flags = 0; |
| 73 | |
| 74 | conn_refresh_polling_flags(conn); |
| 75 | |
| 76 | if (cs->flags & CS_FL_DATA_RD_ENA) |
| 77 | flags |= CO_FL_XPRT_RD_ENA; |
| 78 | if (cs->flags & CS_FL_DATA_WR_ENA) |
| 79 | flags |= CO_FL_XPRT_WR_ENA; |
| 80 | |
| 81 | conn->flags = (conn->flags & ~(CO_FL_XPRT_RD_ENA | CO_FL_XPRT_WR_ENA)) | flags; |
| 82 | conn_cond_update_xprt_polling(conn); |
| 83 | } |
| 84 | |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 85 | /* callback to be used by default for the pass-through mux. It simply calls the |
| 86 | * data layer recv() callback much must be set. |
| 87 | */ |
| 88 | static void mux_pt_recv(struct connection *conn) |
| 89 | { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 90 | struct conn_stream *cs = conn->mux_ctx; |
| 91 | |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 92 | if (conn->flags & CO_FL_ERROR) |
| 93 | cs->flags |= CS_FL_ERROR; |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 94 | if (conn_xprt_read0_pending(conn)) |
| 95 | cs->flags |= CS_FL_EOS; |
| 96 | cs->data_cb->recv(cs); |
| 97 | cs_update_mux_polling(cs); |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 98 | } |
| 99 | |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 100 | /* |
| 101 | * Attach a new stream to a connection |
| 102 | * (Used for outgoing connections) |
| 103 | */ |
| 104 | static struct conn_stream *mux_pt_attach(struct connection *conn) |
| 105 | { |
| 106 | return NULL; |
| 107 | } |
| 108 | |
| 109 | /* |
Willy Tarreau | 2c52a2b | 2017-10-08 11:00:17 +0200 | [diff] [blame] | 110 | * Detach the stream from the connection and possibly release the connection. |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 111 | */ |
| 112 | static void mux_pt_detach(struct conn_stream *cs) |
| 113 | { |
Willy Tarreau | 2c52a2b | 2017-10-08 11:00:17 +0200 | [diff] [blame] | 114 | struct connection *conn = cs->conn; |
| 115 | |
| 116 | LIST_DEL(&conn->list); |
| 117 | conn_stop_tracking(conn); |
| 118 | conn_full_close(conn); |
Willy Tarreau | 436d333 | 2017-10-08 11:16:46 +0200 | [diff] [blame] | 119 | if (conn->destroy_cb) |
| 120 | conn->destroy_cb(conn); |
Willy Tarreau | 2c52a2b | 2017-10-08 11:00:17 +0200 | [diff] [blame] | 121 | conn_free(conn); |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 122 | } |
| 123 | |
Willy Tarreau | ecdb3fe | 2017-10-05 15:25:48 +0200 | [diff] [blame] | 124 | static void mux_pt_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 125 | { |
Willy Tarreau | 4b79524 | 2017-10-05 18:47:38 +0200 | [diff] [blame] | 126 | if (cs->flags & CS_FL_SHR) |
| 127 | return; |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 128 | if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr) |
Willy Tarreau | ecdb3fe | 2017-10-05 15:25:48 +0200 | [diff] [blame] | 129 | cs->conn->xprt->shutr(cs->conn, (mode == CS_SHR_DRAIN)); |
Willy Tarreau | 4b79524 | 2017-10-05 18:47:38 +0200 | [diff] [blame] | 130 | if (cs->flags & CS_FL_SHW) |
| 131 | conn_full_close(cs->conn); |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 132 | } |
| 133 | |
Willy Tarreau | ecdb3fe | 2017-10-05 15:25:48 +0200 | [diff] [blame] | 134 | static void mux_pt_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 135 | { |
Willy Tarreau | 4b79524 | 2017-10-05 18:47:38 +0200 | [diff] [blame] | 136 | if (cs->flags & CS_FL_SHW) |
| 137 | return; |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 138 | if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutw) |
Willy Tarreau | ecdb3fe | 2017-10-05 15:25:48 +0200 | [diff] [blame] | 139 | cs->conn->xprt->shutw(cs->conn, (mode == CS_SHW_NORMAL)); |
Willy Tarreau | 4b79524 | 2017-10-05 18:47:38 +0200 | [diff] [blame] | 140 | if (!(cs->flags & CS_FL_SHR)) |
Willy Tarreau | a48c141 | 2017-12-22 18:46:33 +0100 | [diff] [blame] | 141 | conn_sock_shutw(cs->conn, (mode == CS_SHW_NORMAL)); |
Willy Tarreau | 4b79524 | 2017-10-05 18:47:38 +0200 | [diff] [blame] | 142 | else |
| 143 | conn_full_close(cs->conn); |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | /* |
| 147 | * Called from the upper layer, to get more data |
| 148 | */ |
Willy Tarreau | 7f3225f | 2018-06-19 06:15:17 +0200 | [diff] [blame] | 149 | static size_t mux_pt_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 150 | { |
Willy Tarreau | d9cf540 | 2018-07-18 11:29:06 +0200 | [diff] [blame] | 151 | size_t ret; |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 152 | |
Willy Tarreau | 7f3225f | 2018-06-19 06:15:17 +0200 | [diff] [blame] | 153 | ret = cs->conn->xprt->rcv_buf(cs->conn, buf, count, flags); |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 154 | if (conn_xprt_read0_pending(cs->conn)) |
| 155 | cs->flags |= CS_FL_EOS; |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 156 | if (cs->conn->flags & CO_FL_ERROR) |
| 157 | cs->flags |= CS_FL_ERROR; |
Willy Tarreau | d9cf540 | 2018-07-18 11:29:06 +0200 | [diff] [blame] | 158 | return ret; |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /* Called from the upper layer, to send data */ |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 162 | static size_t mux_pt_snd_buf(struct conn_stream *cs, const struct buffer *buf, size_t count, int flags) |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 163 | { |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 164 | return cs->conn->xprt->snd_buf(cs->conn, buf, count, flags); |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 165 | } |
| 166 | |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 167 | /* Called from the upper layer, to subscribe to events */ |
| 168 | static int mux_pt_subscribe(struct conn_stream *cs, int event_type, void *param) |
| 169 | { |
| 170 | return (cs->conn->xprt->subscribe(cs->conn, event_type, param)); |
| 171 | } |
| 172 | |
Olivier Houchard | 7da120b | 2017-11-01 13:55:10 +0100 | [diff] [blame] | 173 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 174 | /* Send and get, using splicing */ |
| 175 | static int mux_pt_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count) |
| 176 | { |
| 177 | int ret; |
| 178 | |
| 179 | ret = cs->conn->xprt->rcv_pipe(cs->conn, pipe, count); |
| 180 | if (conn_xprt_read0_pending(cs->conn)) |
| 181 | cs->flags |= CS_FL_EOS; |
Willy Tarreau | 4ff3b89 | 2017-10-16 15:17:17 +0200 | [diff] [blame] | 182 | if (cs->conn->flags & CO_FL_ERROR) |
| 183 | cs->flags |= CS_FL_ERROR; |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 184 | return (ret); |
| 185 | } |
| 186 | |
| 187 | static int mux_pt_snd_pipe(struct conn_stream *cs, struct pipe *pipe) |
| 188 | { |
| 189 | return (cs->conn->xprt->snd_pipe(cs->conn, pipe)); |
| 190 | } |
Olivier Houchard | 7da120b | 2017-11-01 13:55:10 +0100 | [diff] [blame] | 191 | #endif |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 192 | |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 193 | /* The mux operations */ |
| 194 | const struct mux_ops mux_pt_ops = { |
| 195 | .init = mux_pt_init, |
| 196 | .recv = mux_pt_recv, |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 197 | .wake = mux_pt_wake, |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 198 | .update_poll = mux_pt_update_poll, |
| 199 | .rcv_buf = mux_pt_rcv_buf, |
| 200 | .snd_buf = mux_pt_snd_buf, |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 201 | .subscribe = mux_pt_subscribe, |
Olivier Houchard | 7a3f0df | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 202 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
| 203 | .rcv_pipe = mux_pt_rcv_pipe, |
| 204 | .snd_pipe = mux_pt_snd_pipe, |
| 205 | #endif |
| 206 | .attach = mux_pt_attach, |
| 207 | .detach = mux_pt_detach, |
| 208 | .shutr = mux_pt_shutr, |
| 209 | .shutw = mux_pt_shutw, |
Willy Tarreau | 28f1cb9 | 2017-12-20 16:14:44 +0100 | [diff] [blame] | 210 | .flags = MX_FL_NONE, |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 211 | .name = "PASS", |
| 212 | }; |
Willy Tarreau | f649082 | 2017-09-21 19:43:21 +0200 | [diff] [blame] | 213 | |
| 214 | /* ALPN selection : default mux has empty name */ |
| 215 | static struct alpn_mux_list alpn_mux_pt = |
| 216 | { .token = IST(""), .mode = ALPN_MODE_ANY, .mux = &mux_pt_ops }; |
| 217 | |
| 218 | __attribute__((constructor)) |
| 219 | static void __mux_pt_init(void) |
| 220 | { |
| 221 | alpn_register_mux(&alpn_mux_pt); |
| 222 | } |