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