Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Connection management functions |
| 3 | * |
| 4 | * Copyright 2000-2012 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 Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 13 | #include <errno.h> |
| 14 | |
Willy Tarreau | 930428c | 2021-10-06 18:27:28 +0200 | [diff] [blame] | 15 | #include <import/ebmbtree.h> |
| 16 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 17 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 18 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 19 | #include <haproxy/connection.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 20 | #include <haproxy/fd.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 21 | #include <haproxy/frontend.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 22 | #include <haproxy/hash.h> |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 23 | #include <haproxy/list.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 24 | #include <haproxy/log-t.h> |
Willy Tarreau | 7a00efb | 2020-06-02 17:02:59 +0200 | [diff] [blame] | 25 | #include <haproxy/namespace.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 26 | #include <haproxy/net_helper.h> |
Willy Tarreau | fc77454 | 2020-06-04 17:31:04 +0200 | [diff] [blame] | 27 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 28 | #include <haproxy/sample.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 29 | #include <haproxy/sc_strm.h> |
Christopher Faulet | 1329f2a | 2021-12-16 17:32:56 +0100 | [diff] [blame] | 30 | #include <haproxy/session.h> |
Christopher Faulet | 1329f2a | 2021-12-16 17:32:56 +0100 | [diff] [blame] | 31 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame^] | 32 | #include <haproxy/stconn.h> |
Willy Tarreau | 908908e | 2021-05-08 13:07:31 +0200 | [diff] [blame] | 33 | #include <haproxy/tools.h> |
Willy Tarreau | e5983ff | 2021-10-06 17:14:49 +0200 | [diff] [blame] | 34 | #include <haproxy/xxhash.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 35 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 36 | |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 37 | DECLARE_POOL(pool_head_connection, "connection", sizeof(struct connection)); |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 38 | DECLARE_POOL(pool_head_conn_hash_node, "conn_hash_node", sizeof(struct conn_hash_node)); |
| 39 | DECLARE_POOL(pool_head_sockaddr, "sockaddr", sizeof(struct sockaddr_storage)); |
| 40 | DECLARE_POOL(pool_head_authority, "authority", PP2_AUTHORITY_MAX); |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 41 | |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 42 | struct idle_conns idle_conns[MAX_THREADS] = { }; |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 43 | struct xprt_ops *registered_xprt[XPRT_ENTRIES] = { NULL, }; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 44 | |
Christopher Faulet | 32f61c0 | 2018-04-10 14:33:41 +0200 | [diff] [blame] | 45 | /* List head of all known muxes for PROTO */ |
| 46 | struct mux_proto_list mux_proto_list = { |
| 47 | .list = LIST_HEAD_INIT(mux_proto_list.list) |
Willy Tarreau | 2386be6 | 2017-09-21 19:40:52 +0200 | [diff] [blame] | 48 | }; |
| 49 | |
Amaury Denoyelle | d3a88c1 | 2021-05-03 10:47:51 +0200 | [diff] [blame] | 50 | struct mux_stopping_data mux_stopping_data[MAX_THREADS]; |
| 51 | |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 52 | /* disables sending of proxy-protocol-v2's LOCAL command */ |
| 53 | static int pp2_never_send_local; |
| 54 | |
Willy Tarreau | 930428c | 2021-10-06 18:27:28 +0200 | [diff] [blame] | 55 | void conn_delete_from_tree(struct ebmb_node *node) |
| 56 | { |
| 57 | ebmb_delete(node); |
Willy Tarreau | 930428c | 2021-10-06 18:27:28 +0200 | [diff] [blame] | 58 | } |
| 59 | |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 60 | int conn_create_mux(struct connection *conn) |
| 61 | { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 62 | if (conn_is_back(conn)) { |
| 63 | struct server *srv; |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 64 | struct stconn *cs = conn->ctx; |
Christopher Faulet | 14cd316 | 2020-04-16 14:50:06 +0200 | [diff] [blame] | 65 | struct session *sess = conn->owner; |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 66 | |
| 67 | if (conn->flags & CO_FL_ERROR) |
| 68 | goto fail; |
Olivier Houchard | a8a415d | 2020-01-23 13:15:14 +0100 | [diff] [blame] | 69 | |
Christopher Faulet | 14cd316 | 2020-04-16 14:50:06 +0200 | [diff] [blame] | 70 | if (sess && obj_type(sess->origin) == OBJ_TYPE_CHECK) { |
Willy Tarreau | 38b4d2e | 2020-11-20 17:08:15 +0100 | [diff] [blame] | 71 | if (conn_install_mux_chk(conn, conn->ctx, sess) < 0) |
Christopher Faulet | 14cd316 | 2020-04-16 14:50:06 +0200 | [diff] [blame] | 72 | goto fail; |
| 73 | } |
Amaury Denoyelle | ac03ef2 | 2021-10-28 16:36:11 +0200 | [diff] [blame] | 74 | else if (conn_install_mux_be(conn, conn->ctx, sess, NULL) < 0) |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 75 | goto fail; |
| 76 | srv = objt_server(conn->target); |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 77 | |
| 78 | /* If we're doing http-reuse always, and the connection is not |
| 79 | * private with available streams (an http2 connection), add it |
| 80 | * to the available list, so that others can use it right |
| 81 | * away. If the connection is private, add it in the session |
| 82 | * server list. |
| 83 | */ |
Christopher Faulet | 2883fcf | 2020-07-01 14:59:43 +0200 | [diff] [blame] | 84 | if (srv && ((srv->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_ALWS) && |
Christopher Faulet | aa27853 | 2020-06-30 14:47:46 +0200 | [diff] [blame] | 85 | !(conn->flags & CO_FL_PRIVATE) && conn->mux->avail_streams(conn) > 0) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 86 | ebmb_insert(&srv->per_thr[tid].avail_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 87 | else if (conn->flags & CO_FL_PRIVATE) { |
Ilya Shipitsin | 6b79f38 | 2020-07-23 00:32:55 +0500 | [diff] [blame] | 88 | /* If it fail now, the same will be done in mux->detach() callback */ |
Willy Tarreau | 38b4d2e | 2020-11-20 17:08:15 +0100 | [diff] [blame] | 89 | session_add_conn(sess, conn, conn->target); |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 90 | } |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 91 | return 0; |
| 92 | fail: |
| 93 | /* let the upper layer know the connection failed */ |
Willy Tarreau | 2f2318d | 2022-05-18 10:17:16 +0200 | [diff] [blame] | 94 | cs->app_ops->wake(cs); |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 95 | return -1; |
| 96 | } else |
| 97 | return conn_complete_session(conn); |
| 98 | |
Willy Tarreau | 930428c | 2021-10-06 18:27:28 +0200 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | /* This is used at the end of the socket IOCB to possibly create the mux if it |
| 102 | * was not done yet, or wake it up if flags changed compared to old_flags or if |
| 103 | * need_wake insists on this. It returns <0 if the connection was destroyed and |
| 104 | * must not be used, >=0 otherwise. |
| 105 | */ |
| 106 | int conn_notify_mux(struct connection *conn, int old_flags, int forced_wake) |
| 107 | { |
| 108 | int ret = 0; |
| 109 | |
| 110 | /* If we don't yet have a mux, that means we were waiting for |
| 111 | * information to create one, typically from the ALPN. If we're |
| 112 | * done with the handshake, attempt to create one. |
| 113 | */ |
| 114 | if (unlikely(!conn->mux) && !(conn->flags & CO_FL_WAIT_XPRT)) { |
| 115 | ret = conn_create_mux(conn); |
| 116 | if (ret < 0) |
| 117 | goto done; |
| 118 | } |
| 119 | |
| 120 | /* The wake callback is normally used to notify the data layer about |
| 121 | * data layer activity (successful send/recv), connection establishment, |
| 122 | * shutdown and fatal errors. We need to consider the following |
| 123 | * situations to wake up the data layer : |
| 124 | * - change among the CO_FL_NOTIFY_DONE flags : |
| 125 | * SOCK_{RD,WR}_SH, ERROR, |
| 126 | * - absence of any of {L4,L6}_CONN and CONNECTED, indicating the |
| 127 | * end of handshake and transition to CONNECTED |
| 128 | * - raise of CONNECTED with HANDSHAKE down |
| 129 | * - end of HANDSHAKE with CONNECTED set |
| 130 | * - regular data layer activity |
| 131 | * |
| 132 | * One tricky case is the wake up on read0 or error on an idle |
| 133 | * backend connection, that can happen on a connection that is still |
| 134 | * polled while at the same moment another thread is about to perform a |
| 135 | * takeover. The solution against this is to remove the connection from |
| 136 | * the idle list if it was in it, and possibly reinsert it at the end |
| 137 | * if the connection remains valid. The cost is non-null (locked tree |
| 138 | * removal) but remains low given that this is extremely rarely called. |
| 139 | * In any case it's guaranteed by the FD's thread_mask that we're |
| 140 | * called from the same thread the connection is queued in. |
| 141 | * |
| 142 | * Note that the wake callback is allowed to release the connection and |
| 143 | * the fd (and return < 0 in this case). |
| 144 | */ |
| 145 | if ((forced_wake || |
| 146 | ((conn->flags ^ old_flags) & CO_FL_NOTIFY_DONE) || |
| 147 | ((old_flags & CO_FL_WAIT_XPRT) && !(conn->flags & CO_FL_WAIT_XPRT))) && |
| 148 | conn->mux && conn->mux->wake) { |
| 149 | uint conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 150 | struct server *srv = objt_server(conn->target); |
| 151 | |
| 152 | if (conn_in_list) { |
| 153 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 154 | conn_delete_from_tree(&conn->hash_node->node); |
| 155 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 156 | } |
| 157 | |
| 158 | ret = conn->mux->wake(conn); |
| 159 | if (ret < 0) |
| 160 | goto done; |
| 161 | |
| 162 | if (conn_in_list) { |
| 163 | struct eb_root *root = (conn_in_list == CO_FL_SAFE_LIST) ? |
| 164 | &srv->per_thr[tid].safe_conns : |
| 165 | &srv->per_thr[tid].idle_conns; |
| 166 | |
| 167 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 168 | ebmb_insert(root, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
| 169 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 170 | } |
| 171 | } |
| 172 | done: |
| 173 | return ret; |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 174 | } |
| 175 | |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 176 | /* Change the mux for the connection. |
| 177 | * The caller should make sure he's not subscribed to the underlying XPRT. |
| 178 | */ |
| 179 | int conn_upgrade_mux_fe(struct connection *conn, void *ctx, struct buffer *buf, |
| 180 | struct ist mux_proto, int mode) |
| 181 | { |
| 182 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
| 183 | const struct mux_ops *old_mux, *new_mux; |
| 184 | void *old_mux_ctx; |
| 185 | const char *alpn_str = NULL; |
| 186 | int alpn_len = 0; |
| 187 | |
| 188 | if (!mux_proto.len) { |
| 189 | conn_get_alpn(conn, &alpn_str, &alpn_len); |
| 190 | mux_proto = ist2(alpn_str, alpn_len); |
| 191 | } |
| 192 | new_mux = conn_get_best_mux(conn, mux_proto, PROTO_SIDE_FE, mode); |
| 193 | old_mux = conn->mux; |
| 194 | |
| 195 | /* No mux found */ |
| 196 | if (!new_mux) |
| 197 | return -1; |
| 198 | |
| 199 | /* Same mux, nothing to do */ |
| 200 | if (old_mux == new_mux) |
| 201 | return 0; |
| 202 | |
| 203 | old_mux_ctx = conn->ctx; |
| 204 | conn->mux = new_mux; |
| 205 | conn->ctx = ctx; |
| 206 | if (new_mux->init(conn, bind_conf->frontend, conn->owner, buf) == -1) { |
| 207 | /* The mux upgrade failed, so restore the old mux */ |
| 208 | conn->ctx = old_mux_ctx; |
| 209 | conn->mux = old_mux; |
| 210 | return -1; |
| 211 | } |
| 212 | |
| 213 | /* The mux was upgraded, destroy the old one */ |
| 214 | *buf = BUF_NULL; |
| 215 | old_mux->destroy(old_mux_ctx); |
| 216 | return 0; |
| 217 | } |
| 218 | |
| 219 | /* installs the best mux for incoming connection <conn> using the upper context |
| 220 | * <ctx>. If the mux protocol is forced, we use it to find the best |
| 221 | * mux. Otherwise we use the ALPN name, if any. Returns < 0 on error. |
| 222 | */ |
| 223 | int conn_install_mux_fe(struct connection *conn, void *ctx) |
| 224 | { |
| 225 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
| 226 | const struct mux_ops *mux_ops; |
| 227 | |
| 228 | if (bind_conf->mux_proto) |
| 229 | mux_ops = bind_conf->mux_proto->mux; |
| 230 | else { |
| 231 | struct ist mux_proto; |
| 232 | const char *alpn_str = NULL; |
| 233 | int alpn_len = 0; |
| 234 | int mode; |
| 235 | |
| 236 | if (bind_conf->frontend->mode == PR_MODE_HTTP) |
| 237 | mode = PROTO_MODE_HTTP; |
| 238 | else |
| 239 | mode = PROTO_MODE_TCP; |
| 240 | |
| 241 | conn_get_alpn(conn, &alpn_str, &alpn_len); |
| 242 | mux_proto = ist2(alpn_str, alpn_len); |
| 243 | mux_ops = conn_get_best_mux(conn, mux_proto, PROTO_SIDE_FE, mode); |
| 244 | if (!mux_ops) |
| 245 | return -1; |
| 246 | } |
| 247 | return conn_install_mux(conn, mux_ops, ctx, bind_conf->frontend, conn->owner); |
| 248 | } |
| 249 | |
| 250 | /* installs the best mux for outgoing connection <conn> using the upper context |
Amaury Denoyelle | ac03ef2 | 2021-10-28 16:36:11 +0200 | [diff] [blame] | 251 | * <ctx>. If the server mux protocol is forced, we use it to find the best mux. |
| 252 | * It's also possible to specify an alternative mux protocol <force_mux_ops>, |
| 253 | * in which case it will be used instead of the default server mux protocol. |
| 254 | * |
| 255 | * Returns < 0 on error. |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 256 | */ |
Amaury Denoyelle | ac03ef2 | 2021-10-28 16:36:11 +0200 | [diff] [blame] | 257 | int conn_install_mux_be(struct connection *conn, void *ctx, struct session *sess, |
| 258 | const struct mux_ops *force_mux_ops) |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 259 | { |
| 260 | struct server *srv = objt_server(conn->target); |
| 261 | struct proxy *prx = objt_proxy(conn->target); |
| 262 | const struct mux_ops *mux_ops; |
| 263 | |
| 264 | if (srv) |
| 265 | prx = srv->proxy; |
| 266 | |
| 267 | if (!prx) // target must be either proxy or server |
| 268 | return -1; |
| 269 | |
Amaury Denoyelle | ac03ef2 | 2021-10-28 16:36:11 +0200 | [diff] [blame] | 270 | if (srv && srv->mux_proto && likely(!force_mux_ops)) { |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 271 | mux_ops = srv->mux_proto->mux; |
Amaury Denoyelle | ac03ef2 | 2021-10-28 16:36:11 +0200 | [diff] [blame] | 272 | } |
| 273 | else if (srv && unlikely(force_mux_ops)) { |
| 274 | mux_ops = force_mux_ops; |
| 275 | } |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 276 | else { |
| 277 | struct ist mux_proto; |
| 278 | const char *alpn_str = NULL; |
| 279 | int alpn_len = 0; |
| 280 | int mode; |
| 281 | |
| 282 | if (prx->mode == PR_MODE_HTTP) |
| 283 | mode = PROTO_MODE_HTTP; |
| 284 | else |
| 285 | mode = PROTO_MODE_TCP; |
| 286 | |
| 287 | conn_get_alpn(conn, &alpn_str, &alpn_len); |
| 288 | mux_proto = ist2(alpn_str, alpn_len); |
| 289 | |
| 290 | mux_ops = conn_get_best_mux(conn, mux_proto, PROTO_SIDE_BE, mode); |
| 291 | if (!mux_ops) |
| 292 | return -1; |
| 293 | } |
| 294 | return conn_install_mux(conn, mux_ops, ctx, prx, sess); |
| 295 | } |
| 296 | |
| 297 | /* installs the best mux for outgoing connection <conn> for a check using the |
| 298 | * upper context <ctx>. If the mux protocol is forced by the check, we use it to |
| 299 | * find the best mux. Returns < 0 on error. |
| 300 | */ |
| 301 | int conn_install_mux_chk(struct connection *conn, void *ctx, struct session *sess) |
| 302 | { |
| 303 | struct check *check = objt_check(sess->origin); |
| 304 | struct server *srv = objt_server(conn->target); |
| 305 | struct proxy *prx = objt_proxy(conn->target); |
| 306 | const struct mux_ops *mux_ops; |
| 307 | |
| 308 | if (!check) // Check must be defined |
| 309 | return -1; |
| 310 | |
| 311 | if (srv) |
| 312 | prx = srv->proxy; |
| 313 | |
| 314 | if (!prx) // target must be either proxy or server |
| 315 | return -1; |
| 316 | |
| 317 | if (check->mux_proto) |
| 318 | mux_ops = check->mux_proto->mux; |
| 319 | else { |
| 320 | struct ist mux_proto; |
| 321 | const char *alpn_str = NULL; |
| 322 | int alpn_len = 0; |
| 323 | int mode; |
| 324 | |
| 325 | if ((check->tcpcheck_rules->flags & TCPCHK_RULES_PROTO_CHK) == TCPCHK_RULES_HTTP_CHK) |
| 326 | mode = PROTO_MODE_HTTP; |
| 327 | else |
| 328 | mode = PROTO_MODE_TCP; |
| 329 | |
| 330 | conn_get_alpn(conn, &alpn_str, &alpn_len); |
| 331 | mux_proto = ist2(alpn_str, alpn_len); |
| 332 | |
| 333 | mux_ops = conn_get_best_mux(conn, mux_proto, PROTO_SIDE_BE, mode); |
| 334 | if (!mux_ops) |
| 335 | return -1; |
| 336 | } |
| 337 | return conn_install_mux(conn, mux_ops, ctx, prx, sess); |
| 338 | } |
| 339 | |
Amaury Denoyelle | 2454bda | 2021-10-18 14:32:36 +0200 | [diff] [blame] | 340 | /* Set the ALPN of connection <conn> to <alpn>. If force is false, <alpn> must |
| 341 | * be a subset or identical to the registered protos for the parent SSL_CTX. |
| 342 | * In this case <alpn> must be a single protocol value, not a list. |
| 343 | * |
| 344 | * Returns 0 if ALPN is updated else -1. |
| 345 | */ |
| 346 | int conn_update_alpn(struct connection *conn, const struct ist alpn, int force) |
| 347 | { |
| 348 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 349 | size_t alpn_len = istlen(alpn); |
| 350 | char *ctx_alpn_str = NULL; |
| 351 | int ctx_alpn_len = 0, found = 0; |
| 352 | |
| 353 | /* if not force, first search if alpn is a subset or identical to the |
| 354 | * parent SSL_CTX. |
| 355 | */ |
| 356 | if (!force) { |
| 357 | /* retrieve the SSL_CTX according to the connection side. */ |
| 358 | if (conn_is_back(conn)) { |
| 359 | if (obj_type(conn->target) == OBJ_TYPE_SERVER) { |
| 360 | struct server *srv = __objt_server(conn->target); |
| 361 | ctx_alpn_str = srv->ssl_ctx.alpn_str; |
| 362 | ctx_alpn_len = srv->ssl_ctx.alpn_len; |
| 363 | } |
| 364 | } |
| 365 | else { |
| 366 | struct session *sess = conn->owner; |
| 367 | struct listener *li = sess->listener; |
| 368 | |
Willy Tarreau | 11ba404 | 2022-05-20 15:56:32 +0200 | [diff] [blame] | 369 | if (li->bind_conf && li->bind_conf->options & BC_O_USE_SSL) { |
Amaury Denoyelle | 2454bda | 2021-10-18 14:32:36 +0200 | [diff] [blame] | 370 | ctx_alpn_str = li->bind_conf->ssl_conf.alpn_str; |
| 371 | ctx_alpn_len = li->bind_conf->ssl_conf.alpn_len; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | if (ctx_alpn_str) { |
| 376 | /* search if ALPN is present in SSL_CTX ALPN before |
| 377 | * using it. |
| 378 | */ |
| 379 | while (ctx_alpn_len) { |
| 380 | /* skip ALPN whose size is not 8 */ |
| 381 | if (*ctx_alpn_str != alpn_len - 1) { |
| 382 | ctx_alpn_len -= *ctx_alpn_str + 1; |
| 383 | } |
| 384 | else { |
| 385 | if (isteqi(ist2(ctx_alpn_str, alpn_len), alpn)) { |
| 386 | found = 1; |
| 387 | break; |
| 388 | } |
| 389 | } |
| 390 | ctx_alpn_str += *ctx_alpn_str + 1; |
| 391 | |
| 392 | /* This indicates an invalid ALPN formatted |
| 393 | * string and should never happen. */ |
| 394 | BUG_ON(ctx_alpn_len < 0); |
| 395 | } |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | if (found || force) { |
| 400 | ssl_sock_set_alpn(conn, (const uchar *)istptr(alpn), istlen(alpn)); |
| 401 | return 0; |
| 402 | } |
| 403 | |
| 404 | #endif |
| 405 | return -1; |
| 406 | } |
| 407 | |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 408 | /* Initializes all required fields for a new connection. Note that it does the |
| 409 | * minimum acceptable initialization for a connection that already exists and |
| 410 | * is about to be reused. It also leaves the addresses untouched, which makes |
| 411 | * it usable across connection retries to reset a connection to a known state. |
| 412 | */ |
| 413 | void conn_init(struct connection *conn, void *target) |
| 414 | { |
| 415 | conn->obj_type = OBJ_TYPE_CONN; |
| 416 | conn->flags = CO_FL_NONE; |
| 417 | conn->mux = NULL; |
| 418 | conn->ctx = NULL; |
| 419 | conn->owner = NULL; |
| 420 | conn->send_proxy_ofs = 0; |
| 421 | conn->handle.fd = DEAD_FD_MAGIC; |
| 422 | conn->err_code = CO_ER_NONE; |
| 423 | conn->target = target; |
| 424 | conn->destroy_cb = NULL; |
| 425 | conn->proxy_netns = NULL; |
| 426 | MT_LIST_INIT(&conn->toremove_list); |
| 427 | if (conn_is_back(conn)) |
| 428 | LIST_INIT(&conn->session_list); |
| 429 | else |
| 430 | LIST_INIT(&conn->stopping_list); |
| 431 | conn->subs = NULL; |
| 432 | conn->src = NULL; |
| 433 | conn->dst = NULL; |
| 434 | conn->proxy_authority = IST_NULL; |
| 435 | conn->proxy_unique_id = IST_NULL; |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 436 | conn->hash_node = NULL; |
| 437 | conn->xprt = NULL; |
| 438 | } |
| 439 | |
| 440 | /* Tries to allocate a new connection and initialized its main fields. The |
| 441 | * connection is returned on success, NULL on failure. The connection must |
| 442 | * be released using pool_free() or conn_free(). |
| 443 | */ |
| 444 | struct connection *conn_new(void *target) |
| 445 | { |
| 446 | struct connection *conn; |
| 447 | struct conn_hash_node *hash_node; |
| 448 | |
| 449 | conn = pool_alloc(pool_head_connection); |
| 450 | if (unlikely(!conn)) |
| 451 | return NULL; |
| 452 | |
| 453 | conn_init(conn, target); |
| 454 | |
| 455 | if (conn_is_back(conn)) { |
| 456 | if (obj_type(target) == OBJ_TYPE_SERVER) |
| 457 | srv_use_conn(__objt_server(target), conn); |
| 458 | |
| 459 | hash_node = conn_alloc_hash_node(conn); |
| 460 | if (unlikely(!hash_node)) { |
| 461 | pool_free(pool_head_connection, conn); |
| 462 | return NULL; |
| 463 | } |
| 464 | |
| 465 | conn->hash_node = hash_node; |
| 466 | } |
| 467 | |
| 468 | return conn; |
| 469 | } |
| 470 | |
| 471 | /* Releases a connection previously allocated by conn_new() */ |
| 472 | void conn_free(struct connection *conn) |
| 473 | { |
| 474 | /* If the connection is owned by the session, remove it from its list |
| 475 | */ |
| 476 | if (conn_is_back(conn) && LIST_INLIST(&conn->session_list)) { |
| 477 | session_unown_conn(conn->owner, conn); |
| 478 | } |
| 479 | else if (!(conn->flags & CO_FL_PRIVATE)) { |
| 480 | if (obj_type(conn->target) == OBJ_TYPE_SERVER) |
| 481 | srv_release_conn(__objt_server(conn->target), conn); |
| 482 | } |
| 483 | |
| 484 | /* Remove the conn from toremove_list. |
| 485 | * |
| 486 | * This is needed to prevent a double-free in case the connection was |
| 487 | * already scheduled from cleaning but is freed before via another |
| 488 | * call. |
| 489 | */ |
| 490 | MT_LIST_DELETE(&conn->toremove_list); |
| 491 | |
| 492 | sockaddr_free(&conn->src); |
| 493 | sockaddr_free(&conn->dst); |
| 494 | |
| 495 | pool_free(pool_head_authority, istptr(conn->proxy_authority)); |
| 496 | conn->proxy_authority = IST_NULL; |
| 497 | |
| 498 | pool_free(pool_head_uniqueid, istptr(conn->proxy_unique_id)); |
| 499 | conn->proxy_unique_id = IST_NULL; |
| 500 | |
| 501 | pool_free(pool_head_conn_hash_node, conn->hash_node); |
| 502 | conn->hash_node = NULL; |
| 503 | |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 504 | conn_force_unsubscribe(conn); |
| 505 | pool_free(pool_head_connection, conn); |
| 506 | } |
| 507 | |
Willy Tarreau | 8de90c7 | 2021-10-06 19:11:10 +0200 | [diff] [blame] | 508 | struct conn_hash_node *conn_alloc_hash_node(struct connection *conn) |
| 509 | { |
| 510 | struct conn_hash_node *hash_node = NULL; |
| 511 | |
| 512 | hash_node = pool_zalloc(pool_head_conn_hash_node); |
| 513 | if (unlikely(!hash_node)) |
| 514 | return NULL; |
| 515 | |
| 516 | hash_node->conn = conn; |
| 517 | |
| 518 | return hash_node; |
| 519 | } |
| 520 | |
| 521 | /* Allocates a struct sockaddr from the pool if needed, assigns it to *sap and |
| 522 | * returns it. If <sap> is NULL, the address is always allocated and returned. |
| 523 | * if <sap> is non-null, an address will only be allocated if it points to a |
| 524 | * non-null pointer. In this case the allocated address will be assigned there. |
| 525 | * If <orig> is non-null and <len> positive, the address in <sa> will be copied |
| 526 | * into the allocated address. In both situations the new pointer is returned. |
| 527 | */ |
| 528 | struct sockaddr_storage *sockaddr_alloc(struct sockaddr_storage **sap, const struct sockaddr_storage *orig, socklen_t len) |
| 529 | { |
| 530 | struct sockaddr_storage *sa; |
| 531 | |
| 532 | if (sap && *sap) |
| 533 | return *sap; |
| 534 | |
| 535 | sa = pool_alloc(pool_head_sockaddr); |
| 536 | if (sa && orig && len > 0) |
| 537 | memcpy(sa, orig, len); |
| 538 | if (sap) |
| 539 | *sap = sa; |
| 540 | return sa; |
| 541 | } |
| 542 | |
| 543 | /* Releases the struct sockaddr potentially pointed to by <sap> to the pool. It |
| 544 | * may be NULL or may point to NULL. If <sap> is not NULL, a NULL is placed |
| 545 | * there. |
| 546 | */ |
| 547 | void sockaddr_free(struct sockaddr_storage **sap) |
| 548 | { |
| 549 | if (!sap) |
| 550 | return; |
| 551 | pool_free(pool_head_sockaddr, *sap); |
| 552 | *sap = NULL; |
| 553 | } |
| 554 | |
Willy Tarreau | aac777f | 2021-10-06 18:48:28 +0200 | [diff] [blame] | 555 | /* Try to add a handshake pseudo-XPRT. If the connection's first XPRT is |
| 556 | * raw_sock, then just use the new XPRT as the connection XPRT, otherwise |
| 557 | * call the xprt's add_xprt() method. |
| 558 | * Returns 0 on success, or non-zero on failure. |
| 559 | */ |
| 560 | int xprt_add_hs(struct connection *conn) |
| 561 | { |
| 562 | void *xprt_ctx = NULL; |
| 563 | const struct xprt_ops *ops = xprt_get(XPRT_HANDSHAKE); |
| 564 | void *nextxprt_ctx = NULL; |
| 565 | const struct xprt_ops *nextxprt_ops = NULL; |
| 566 | |
| 567 | if (conn->flags & CO_FL_ERROR) |
| 568 | return -1; |
| 569 | if (ops->init(conn, &xprt_ctx) < 0) |
| 570 | return -1; |
| 571 | if (conn->xprt == xprt_get(XPRT_RAW)) { |
| 572 | nextxprt_ctx = conn->xprt_ctx; |
| 573 | nextxprt_ops = conn->xprt; |
| 574 | conn->xprt_ctx = xprt_ctx; |
| 575 | conn->xprt = ops; |
| 576 | } else { |
| 577 | if (conn->xprt->add_xprt(conn, conn->xprt_ctx, xprt_ctx, ops, |
| 578 | &nextxprt_ctx, &nextxprt_ops) != 0) { |
| 579 | ops->close(conn, xprt_ctx); |
| 580 | return -1; |
| 581 | } |
| 582 | } |
| 583 | if (ops->add_xprt(conn, xprt_ctx, nextxprt_ctx, nextxprt_ops, NULL, NULL) != 0) { |
| 584 | ops->close(conn, xprt_ctx); |
| 585 | return -1; |
| 586 | } |
| 587 | return 0; |
| 588 | } |
| 589 | |
| 590 | /* returns a human-readable error code for conn->err_code, or NULL if the code |
| 591 | * is unknown. |
| 592 | */ |
| 593 | const char *conn_err_code_str(struct connection *c) |
| 594 | { |
| 595 | switch (c->err_code) { |
| 596 | case CO_ER_NONE: return "Success"; |
| 597 | |
| 598 | case CO_ER_CONF_FDLIM: return "Reached configured maxconn value"; |
| 599 | case CO_ER_PROC_FDLIM: return "Too many sockets on the process"; |
| 600 | case CO_ER_SYS_FDLIM: return "Too many sockets on the system"; |
| 601 | case CO_ER_SYS_MEMLIM: return "Out of system buffers"; |
| 602 | case CO_ER_NOPROTO: return "Protocol or address family not supported"; |
| 603 | case CO_ER_SOCK_ERR: return "General socket error"; |
| 604 | case CO_ER_PORT_RANGE: return "Source port range exhausted"; |
| 605 | case CO_ER_CANT_BIND: return "Can't bind to source address"; |
| 606 | case CO_ER_FREE_PORTS: return "Out of local source ports on the system"; |
| 607 | case CO_ER_ADDR_INUSE: return "Local source address already in use"; |
| 608 | |
| 609 | case CO_ER_PRX_EMPTY: return "Connection closed while waiting for PROXY protocol header"; |
| 610 | case CO_ER_PRX_ABORT: return "Connection error while waiting for PROXY protocol header"; |
| 611 | case CO_ER_PRX_TIMEOUT: return "Timeout while waiting for PROXY protocol header"; |
| 612 | case CO_ER_PRX_TRUNCATED: return "Truncated PROXY protocol header received"; |
| 613 | case CO_ER_PRX_NOT_HDR: return "Received something which does not look like a PROXY protocol header"; |
| 614 | case CO_ER_PRX_BAD_HDR: return "Received an invalid PROXY protocol header"; |
| 615 | case CO_ER_PRX_BAD_PROTO: return "Received an unhandled protocol in the PROXY protocol header"; |
| 616 | |
| 617 | case CO_ER_CIP_EMPTY: return "Connection closed while waiting for NetScaler Client IP header"; |
| 618 | case CO_ER_CIP_ABORT: return "Connection error while waiting for NetScaler Client IP header"; |
| 619 | case CO_ER_CIP_TIMEOUT: return "Timeout while waiting for a NetScaler Client IP header"; |
| 620 | case CO_ER_CIP_TRUNCATED: return "Truncated NetScaler Client IP header received"; |
| 621 | case CO_ER_CIP_BAD_MAGIC: return "Received an invalid NetScaler Client IP magic number"; |
| 622 | case CO_ER_CIP_BAD_PROTO: return "Received an unhandled protocol in the NetScaler Client IP header"; |
| 623 | |
| 624 | case CO_ER_SSL_EMPTY: return "Connection closed during SSL handshake"; |
| 625 | case CO_ER_SSL_ABORT: return "Connection error during SSL handshake"; |
| 626 | case CO_ER_SSL_TIMEOUT: return "Timeout during SSL handshake"; |
| 627 | case CO_ER_SSL_TOO_MANY: return "Too many SSL connections"; |
| 628 | case CO_ER_SSL_NO_MEM: return "Out of memory when initializing an SSL connection"; |
| 629 | case CO_ER_SSL_RENEG: return "Rejected a client-initiated SSL renegotiation attempt"; |
| 630 | case CO_ER_SSL_CA_FAIL: return "SSL client CA chain cannot be verified"; |
| 631 | case CO_ER_SSL_CRT_FAIL: return "SSL client certificate not trusted"; |
| 632 | case CO_ER_SSL_MISMATCH: return "Server presented an SSL certificate different from the configured one"; |
| 633 | case CO_ER_SSL_MISMATCH_SNI: return "Server presented an SSL certificate different from the expected one"; |
| 634 | case CO_ER_SSL_HANDSHAKE: return "SSL handshake failure"; |
| 635 | case CO_ER_SSL_HANDSHAKE_HB: return "SSL handshake failure after heartbeat"; |
| 636 | case CO_ER_SSL_KILLED_HB: return "Stopped a TLSv1 heartbeat attack (CVE-2014-0160)"; |
| 637 | case CO_ER_SSL_NO_TARGET: return "Attempt to use SSL on an unknown target (internal error)"; |
| 638 | case CO_ER_SSL_EARLY_FAILED: return "Server refused early data"; |
| 639 | |
| 640 | case CO_ER_SOCKS4_SEND: return "SOCKS4 Proxy write error during handshake"; |
| 641 | case CO_ER_SOCKS4_RECV: return "SOCKS4 Proxy read error during handshake"; |
| 642 | case CO_ER_SOCKS4_DENY: return "SOCKS4 Proxy deny the request"; |
| 643 | case CO_ER_SOCKS4_ABORT: return "SOCKS4 Proxy handshake aborted by server"; |
| 644 | |
| 645 | case CO_ERR_SSL_FATAL: return "SSL fatal error"; |
| 646 | } |
| 647 | return NULL; |
| 648 | } |
| 649 | |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 650 | /* Send a message over an established connection. It makes use of send() and |
| 651 | * returns the same return code and errno. If the socket layer is not ready yet |
| 652 | * then -1 is returned and ENOTSOCK is set into errno. If the fd is not marked |
| 653 | * as ready, or if EAGAIN or ENOTCONN is returned, then we return 0. It returns |
| 654 | * EMSGSIZE if called with a zero length message. The purpose is to simplify |
| 655 | * some rare attempts to directly write on the socket from above the connection |
| 656 | * (typically send_proxy). In case of EAGAIN, the fd is marked as "cant_send". |
| 657 | * It automatically retries on EINTR. Other errors cause the connection to be |
| 658 | * marked as in error state. It takes similar arguments as send() except the |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 659 | * first one which is the connection instead of the file descriptor. <flags> |
| 660 | * only support CO_SFL_MSG_MORE. |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 661 | */ |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 662 | int conn_ctrl_send(struct connection *conn, const void *buf, int len, int flags) |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 663 | { |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 664 | const struct buffer buffer = b_make((char*)buf, len, 0, len); |
| 665 | const struct xprt_ops *xprt = xprt_get(XPRT_RAW); |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 666 | int ret; |
| 667 | |
| 668 | ret = -1; |
| 669 | errno = ENOTSOCK; |
| 670 | |
| 671 | if (conn->flags & CO_FL_SOCK_WR_SH) |
| 672 | goto fail; |
| 673 | |
| 674 | if (!conn_ctrl_ready(conn)) |
| 675 | goto fail; |
| 676 | |
| 677 | errno = EMSGSIZE; |
| 678 | if (!len) |
| 679 | goto fail; |
| 680 | |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 681 | /* snd_buf() already takes care of updating conn->flags and handling |
| 682 | * the FD polling status. |
| 683 | */ |
| 684 | ret = xprt->snd_buf(conn, NULL, &buffer, buffer.data, flags); |
| 685 | if (conn->flags & CO_FL_ERROR) |
| 686 | ret = -1; |
| 687 | return ret; |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 688 | fail: |
| 689 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH | CO_FL_ERROR; |
| 690 | return ret; |
| 691 | } |
| 692 | |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 693 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 694 | * The event subscriber <es> is not allowed to change from a previous call as |
| 695 | * long as at least one event is still subscribed. The <event_type> must only |
| 696 | * be a combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0. |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 697 | */ |
| 698 | int conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 699 | { |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 700 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 701 | BUG_ON(conn->subs && conn->subs != es); |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 702 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 703 | es->events &= ~event_type; |
| 704 | if (!es->events) |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 705 | conn->subs = NULL; |
| 706 | |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 707 | if (conn_ctrl_ready(conn) && conn->ctrl->ignore_events) |
| 708 | conn->ctrl->ignore_events(conn, event_type); |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 709 | |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 710 | return 0; |
| 711 | } |
| 712 | |
Willy Tarreau | 7e59c0a | 2020-02-28 14:24:49 +0100 | [diff] [blame] | 713 | /* Called from the upper layer, to subscribe <es> to events <event_type>. |
| 714 | * The <es> struct is not allowed to differ from the one passed during a |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 715 | * previous call to subscribe(). If the connection's ctrl layer is ready, |
| 716 | * the wait_event is immediately woken up and the subcription is cancelled. |
| 717 | * It always returns zero. |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 718 | */ |
| 719 | int conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 720 | { |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 721 | int ret = 0; |
| 722 | |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 723 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 724 | BUG_ON(conn->subs && conn->subs != es); |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 725 | |
Willy Tarreau | 7e59c0a | 2020-02-28 14:24:49 +0100 | [diff] [blame] | 726 | if (conn->subs && (conn->subs->events & event_type) == event_type) |
| 727 | return 0; |
| 728 | |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 729 | if (conn_ctrl_ready(conn) && conn->ctrl->check_events) { |
| 730 | ret = conn->ctrl->check_events(conn, event_type); |
| 731 | if (ret) |
| 732 | tasklet_wakeup(es->tasklet); |
Willy Tarreau | d1d14c3 | 2020-02-21 10:34:19 +0100 | [diff] [blame] | 733 | } |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 734 | |
| 735 | es->events = (es->events | event_type) & ~ret; |
| 736 | conn->subs = es->events ? es : NULL; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 737 | return 0; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 738 | } |
| 739 | |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 740 | /* Drains possibly pending incoming data on the connection and update the flags |
| 741 | * accordingly. This is used to know whether we need to disable lingering on |
| 742 | * close. Returns non-zero if it is safe to close without disabling lingering, |
| 743 | * otherwise zero. The CO_FL_SOCK_RD_SH flag may also be updated if the incoming |
| 744 | * shutdown was reported by the ->drain() function. |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 745 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 746 | int conn_ctrl_drain(struct connection *conn) |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 747 | { |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 748 | int ret = 0; |
Willy Tarreau | e215bba | 2018-08-24 14:31:53 +0200 | [diff] [blame] | 749 | |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 750 | if (!conn_ctrl_ready(conn) || conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) |
| 751 | ret = 1; |
| 752 | else if (conn->ctrl->drain) { |
| 753 | ret = conn->ctrl->drain(conn); |
| 754 | if (ret) |
| 755 | conn->flags |= CO_FL_SOCK_RD_SH; |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 756 | } |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 757 | return ret; |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 758 | } |
| 759 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 760 | /* |
| 761 | * Get data length from tlv |
| 762 | */ |
Tim Duesterhus | ba837ec | 2020-03-05 23:11:02 +0100 | [diff] [blame] | 763 | static inline size_t get_tlv_length(const struct tlv *src) |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 764 | { |
| 765 | return (src->length_hi << 8) | src->length_lo; |
| 766 | } |
| 767 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 768 | /* This handshake handler waits a PROXY protocol header at the beginning of the |
| 769 | * raw data stream. The header looks like this : |
| 770 | * |
| 771 | * "PROXY" <SP> PROTO <SP> SRC3 <SP> DST3 <SP> SRC4 <SP> <DST4> "\r\n" |
| 772 | * |
| 773 | * There must be exactly one space between each field. Fields are : |
| 774 | * - PROTO : layer 4 protocol, which must be "TCP4" or "TCP6". |
| 775 | * - SRC3 : layer 3 (eg: IP) source address in standard text form |
| 776 | * - DST3 : layer 3 (eg: IP) destination address in standard text form |
| 777 | * - SRC4 : layer 4 (eg: TCP port) source address in standard text form |
| 778 | * - DST4 : layer 4 (eg: TCP port) destination address in standard text form |
| 779 | * |
| 780 | * This line MUST be at the beginning of the buffer and MUST NOT wrap. |
| 781 | * |
| 782 | * The header line is small and in all cases smaller than the smallest normal |
| 783 | * TCP MSS. So it MUST always be delivered as one segment, which ensures we |
| 784 | * can safely use MSG_PEEK and avoid buffering. |
| 785 | * |
| 786 | * Once the data is fetched, the values are set in the connection's address |
| 787 | * fields, and data are removed from the socket's buffer. The function returns |
| 788 | * zero if it needs to wait for more data or if it fails, or 1 if it completed |
| 789 | * and removed itself. |
| 790 | */ |
| 791 | int conn_recv_proxy(struct connection *conn, int flag) |
| 792 | { |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 793 | struct session *sess = conn->owner; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 794 | char *line, *end; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 795 | struct proxy_hdr_v2 *hdr_v2; |
| 796 | const char v2sig[] = PP2_SIGNATURE; |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 797 | size_t total_v2_len; |
Tim Duesterhus | ba837ec | 2020-03-05 23:11:02 +0100 | [diff] [blame] | 798 | size_t tlv_offset = 0; |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 799 | int ret; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 800 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 801 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 802 | goto fail; |
| 803 | |
Willy Tarreau | 07ecfc5 | 2022-04-11 18:07:03 +0200 | [diff] [blame] | 804 | BUG_ON(conn->flags & CO_FL_FDLESS); |
| 805 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 806 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 807 | goto not_ready; |
Willy Tarreau | fd803bb | 2014-01-20 15:13:07 +0100 | [diff] [blame] | 808 | |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 809 | while (1) { |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 810 | ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK); |
| 811 | if (ret < 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 812 | if (errno == EINTR) |
| 813 | continue; |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 814 | if (errno == EAGAIN || errno == EWOULDBLOCK) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 815 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 816 | goto not_ready; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 817 | } |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 818 | goto recv_abort; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 819 | } |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 820 | trash.data = ret; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 821 | break; |
| 822 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 823 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 824 | if (!trash.data) { |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 825 | /* client shutdown */ |
| 826 | conn->err_code = CO_ER_PRX_EMPTY; |
| 827 | goto fail; |
| 828 | } |
| 829 | |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 830 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 831 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 832 | if (trash.data < 6) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 833 | goto missing; |
| 834 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 835 | line = trash.area; |
| 836 | end = trash.area + trash.data; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 837 | |
| 838 | /* Decode a possible proxy request, fail early if it does not match */ |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 839 | if (strncmp(line, "PROXY ", 6) != 0) |
| 840 | goto not_v1; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 841 | |
| 842 | line += 6; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 843 | if (trash.data < 9) /* shortest possible line */ |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 844 | goto missing; |
| 845 | |
David CARLIER | 42ff05e | 2016-03-24 09:22:36 +0000 | [diff] [blame] | 846 | if (memcmp(line, "TCP4 ", 5) == 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 847 | u32 src3, dst3, sport, dport; |
| 848 | |
| 849 | line += 5; |
| 850 | |
| 851 | src3 = inetaddr_host_lim_ret(line, end, &line); |
| 852 | if (line == end) |
| 853 | goto missing; |
| 854 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 855 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 856 | |
| 857 | dst3 = inetaddr_host_lim_ret(line, end, &line); |
| 858 | if (line == end) |
| 859 | goto missing; |
| 860 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 861 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 862 | |
| 863 | sport = read_uint((const char **)&line, end); |
| 864 | if (line == end) |
| 865 | goto missing; |
| 866 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 867 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 868 | |
| 869 | dport = read_uint((const char **)&line, end); |
| 870 | if (line > end - 2) |
| 871 | goto missing; |
| 872 | if (*line++ != '\r') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 873 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 874 | if (*line++ != '\n') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 875 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 876 | |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 877 | if (!sess || !sockaddr_alloc(&sess->src, NULL, 0) || !sockaddr_alloc(&sess->dst, NULL, 0)) |
| 878 | goto fail; |
| 879 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 880 | /* update the session's addresses and mark them set */ |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 881 | ((struct sockaddr_in *)sess->src)->sin_family = AF_INET; |
| 882 | ((struct sockaddr_in *)sess->src)->sin_addr.s_addr = htonl(src3); |
| 883 | ((struct sockaddr_in *)sess->src)->sin_port = htons(sport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 884 | |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 885 | ((struct sockaddr_in *)sess->dst)->sin_family = AF_INET; |
| 886 | ((struct sockaddr_in *)sess->dst)->sin_addr.s_addr = htonl(dst3); |
| 887 | ((struct sockaddr_in *)sess->dst)->sin_port = htons(dport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 888 | } |
David CARLIER | 42ff05e | 2016-03-24 09:22:36 +0000 | [diff] [blame] | 889 | else if (memcmp(line, "TCP6 ", 5) == 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 890 | u32 sport, dport; |
| 891 | char *src_s; |
| 892 | char *dst_s, *sport_s, *dport_s; |
| 893 | struct in6_addr src3, dst3; |
| 894 | |
| 895 | line += 5; |
| 896 | |
| 897 | src_s = line; |
| 898 | dst_s = sport_s = dport_s = NULL; |
| 899 | while (1) { |
| 900 | if (line > end - 2) { |
| 901 | goto missing; |
| 902 | } |
| 903 | else if (*line == '\r') { |
| 904 | *line = 0; |
| 905 | line++; |
| 906 | if (*line++ != '\n') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 907 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 908 | break; |
| 909 | } |
| 910 | |
| 911 | if (*line == ' ') { |
| 912 | *line = 0; |
| 913 | if (!dst_s) |
| 914 | dst_s = line + 1; |
| 915 | else if (!sport_s) |
| 916 | sport_s = line + 1; |
| 917 | else if (!dport_s) |
| 918 | dport_s = line + 1; |
| 919 | } |
| 920 | line++; |
| 921 | } |
| 922 | |
| 923 | if (!dst_s || !sport_s || !dport_s) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 924 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 925 | |
| 926 | sport = read_uint((const char **)&sport_s,dport_s - 1); |
| 927 | if (*sport_s != 0) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 928 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 929 | |
| 930 | dport = read_uint((const char **)&dport_s,line - 2); |
| 931 | if (*dport_s != 0) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 932 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 933 | |
| 934 | if (inet_pton(AF_INET6, src_s, (void *)&src3) != 1) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 935 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 936 | |
| 937 | if (inet_pton(AF_INET6, dst_s, (void *)&dst3) != 1) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 938 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 939 | |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 940 | if (!sess || !sockaddr_alloc(&sess->src, NULL, 0) || !sockaddr_alloc(&sess->dst, NULL, 0)) |
| 941 | goto fail; |
| 942 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 943 | /* update the session's addresses and mark them set */ |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 944 | ((struct sockaddr_in6 *)sess->src)->sin6_family = AF_INET6; |
| 945 | memcpy(&((struct sockaddr_in6 *)sess->src)->sin6_addr, &src3, sizeof(struct in6_addr)); |
| 946 | ((struct sockaddr_in6 *)sess->src)->sin6_port = htons(sport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 947 | |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 948 | ((struct sockaddr_in6 *)sess->dst)->sin6_family = AF_INET6; |
| 949 | memcpy(&((struct sockaddr_in6 *)sess->dst)->sin6_addr, &dst3, sizeof(struct in6_addr)); |
| 950 | ((struct sockaddr_in6 *)sess->dst)->sin6_port = htons(dport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 951 | } |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 952 | else if (memcmp(line, "UNKNOWN\r\n", 9) == 0) { |
| 953 | /* This can be a UNIX socket forwarded by an haproxy upstream */ |
| 954 | line += 9; |
| 955 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 956 | else { |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 957 | /* The protocol does not match something known (TCP4/TCP6/UNKNOWN) */ |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 958 | conn->err_code = CO_ER_PRX_BAD_PROTO; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 959 | goto fail; |
| 960 | } |
| 961 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 962 | trash.data = line - trash.area; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 963 | goto eat_header; |
| 964 | |
| 965 | not_v1: |
| 966 | /* try PPv2 */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 967 | if (trash.data < PP2_HEADER_LEN) |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 968 | goto missing; |
| 969 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 970 | hdr_v2 = (struct proxy_hdr_v2 *) trash.area; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 971 | |
| 972 | if (memcmp(hdr_v2->sig, v2sig, PP2_SIGNATURE_LEN) != 0 || |
| 973 | (hdr_v2->ver_cmd & PP2_VERSION_MASK) != PP2_VERSION) { |
| 974 | conn->err_code = CO_ER_PRX_NOT_HDR; |
| 975 | goto fail; |
| 976 | } |
| 977 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 978 | total_v2_len = PP2_HEADER_LEN + ntohs(hdr_v2->len); |
| 979 | if (trash.data < total_v2_len) |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 980 | goto missing; |
| 981 | |
| 982 | switch (hdr_v2->ver_cmd & PP2_CMD_MASK) { |
| 983 | case 0x01: /* PROXY command */ |
| 984 | switch (hdr_v2->fam) { |
| 985 | case 0x11: /* TCPv4 */ |
KOVACS Krisztian | efd3aa9 | 2014-11-19 10:53:20 +0100 | [diff] [blame] | 986 | if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET) |
| 987 | goto bad_header; |
| 988 | |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 989 | if (!sess || !sockaddr_alloc(&sess->src, NULL, 0) || !sockaddr_alloc(&sess->dst, NULL, 0)) |
| 990 | goto fail; |
| 991 | |
| 992 | ((struct sockaddr_in *)sess->src)->sin_family = AF_INET; |
| 993 | ((struct sockaddr_in *)sess->src)->sin_addr.s_addr = hdr_v2->addr.ip4.src_addr; |
| 994 | ((struct sockaddr_in *)sess->src)->sin_port = hdr_v2->addr.ip4.src_port; |
| 995 | ((struct sockaddr_in *)sess->dst)->sin_family = AF_INET; |
| 996 | ((struct sockaddr_in *)sess->dst)->sin_addr.s_addr = hdr_v2->addr.ip4.dst_addr; |
| 997 | ((struct sockaddr_in *)sess->dst)->sin_port = hdr_v2->addr.ip4.dst_port; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 998 | tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 999 | break; |
| 1000 | case 0x21: /* TCPv6 */ |
KOVACS Krisztian | efd3aa9 | 2014-11-19 10:53:20 +0100 | [diff] [blame] | 1001 | if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET6) |
| 1002 | goto bad_header; |
| 1003 | |
Christopher Faulet | c105c92 | 2021-10-25 08:17:11 +0200 | [diff] [blame] | 1004 | if (!sess || !sockaddr_alloc(&sess->src, NULL, 0) || !sockaddr_alloc(&sess->dst, NULL, 0)) |
| 1005 | goto fail; |
| 1006 | |
| 1007 | ((struct sockaddr_in6 *)sess->src)->sin6_family = AF_INET6; |
| 1008 | memcpy(&((struct sockaddr_in6 *)sess->src)->sin6_addr, hdr_v2->addr.ip6.src_addr, 16); |
| 1009 | ((struct sockaddr_in6 *)sess->src)->sin6_port = hdr_v2->addr.ip6.src_port; |
| 1010 | ((struct sockaddr_in6 *)sess->dst)->sin6_family = AF_INET6; |
| 1011 | memcpy(&((struct sockaddr_in6 *)sess->dst)->sin6_addr, hdr_v2->addr.ip6.dst_addr, 16); |
| 1012 | ((struct sockaddr_in6 *)sess->dst)->sin6_port = hdr_v2->addr.ip6.dst_port; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 1013 | tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET6; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 1014 | break; |
| 1015 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1016 | |
| 1017 | /* TLV parsing */ |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1018 | while (tlv_offset < total_v2_len) { |
| 1019 | struct tlv *tlv_packet; |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 1020 | struct ist tlv; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1021 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1022 | /* Verify that we have at least TLV_HEADER_SIZE bytes left */ |
| 1023 | if (tlv_offset + TLV_HEADER_SIZE > total_v2_len) |
| 1024 | goto bad_header; |
| 1025 | |
| 1026 | tlv_packet = (struct tlv *) &trash.area[tlv_offset]; |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 1027 | tlv = ist2((const char *)tlv_packet->value, get_tlv_length(tlv_packet)); |
| 1028 | tlv_offset += istlen(tlv) + TLV_HEADER_SIZE; |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1029 | |
| 1030 | /* Verify that the TLV length does not exceed the total PROXYv2 length */ |
| 1031 | if (tlv_offset > total_v2_len) |
| 1032 | goto bad_header; |
| 1033 | |
| 1034 | switch (tlv_packet->type) { |
| 1035 | case PP2_TYPE_CRC32C: { |
| 1036 | uint32_t n_crc32c; |
| 1037 | |
| 1038 | /* Verify that this TLV is exactly 4 bytes long */ |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 1039 | if (istlen(tlv) != 4) |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1040 | goto bad_header; |
| 1041 | |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 1042 | n_crc32c = read_n32(istptr(tlv)); |
| 1043 | write_n32(istptr(tlv), 0); // compute with CRC==0 |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1044 | |
| 1045 | if (hash_crc32c(trash.area, total_v2_len) != n_crc32c) |
| 1046 | goto bad_header; |
| 1047 | break; |
| 1048 | } |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1049 | #ifdef USE_NS |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1050 | case PP2_TYPE_NETNS: { |
| 1051 | const struct netns_entry *ns; |
| 1052 | |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 1053 | ns = netns_store_lookup(istptr(tlv), istlen(tlv)); |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1054 | if (ns) |
| 1055 | conn->proxy_netns = ns; |
| 1056 | break; |
| 1057 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1058 | #endif |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1059 | case PP2_TYPE_AUTHORITY: { |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1060 | if (istlen(tlv) > PP2_AUTHORITY_MAX) |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1061 | goto bad_header; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1062 | conn->proxy_authority = ist2(pool_alloc(pool_head_authority), 0); |
| 1063 | if (!isttest(conn->proxy_authority)) |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1064 | goto fail; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1065 | if (istcpy(&conn->proxy_authority, tlv, PP2_AUTHORITY_MAX) < 0) { |
Tim Duesterhus | f09af57 | 2022-02-25 21:44:26 +0100 | [diff] [blame] | 1066 | /* This is impossible, because we verified that the TLV value fits. */ |
| 1067 | my_unreachable(); |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1068 | goto fail; |
| 1069 | } |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1070 | break; |
| 1071 | } |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 1072 | case PP2_TYPE_UNIQUE_ID: { |
Tim Duesterhus | 002bd77 | 2021-03-06 20:06:49 +0100 | [diff] [blame] | 1073 | if (istlen(tlv) > UNIQUEID_LEN) |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 1074 | goto bad_header; |
Tim Duesterhus | 2b7f6c2 | 2020-03-14 13:07:05 +0100 | [diff] [blame] | 1075 | conn->proxy_unique_id = ist2(pool_alloc(pool_head_uniqueid), 0); |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 1076 | if (!isttest(conn->proxy_unique_id)) |
| 1077 | goto fail; |
| 1078 | if (istcpy(&conn->proxy_unique_id, tlv, UNIQUEID_LEN) < 0) { |
Tim Duesterhus | f09af57 | 2022-02-25 21:44:26 +0100 | [diff] [blame] | 1079 | /* This is impossible, because we verified that the TLV value fits. */ |
| 1080 | my_unreachable(); |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 1081 | goto fail; |
| 1082 | } |
| 1083 | break; |
| 1084 | } |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1085 | default: |
| 1086 | break; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1087 | } |
| 1088 | } |
| 1089 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1090 | /* Verify that the PROXYv2 header ends at a TLV boundary. |
Tim Duesterhus | 17e6b73 | 2022-02-25 21:44:27 +0100 | [diff] [blame] | 1091 | * This is can not be true, because the TLV parsing already |
| 1092 | * verifies that a TLV does not exceed the total length and |
| 1093 | * also that there is space for a TLV header. |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1094 | */ |
Tim Duesterhus | 17e6b73 | 2022-02-25 21:44:27 +0100 | [diff] [blame] | 1095 | BUG_ON(tlv_offset != total_v2_len); |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1096 | |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 1097 | /* unsupported protocol, keep local connection address */ |
| 1098 | break; |
| 1099 | case 0x00: /* LOCAL command */ |
| 1100 | /* keep local connection address for LOCAL */ |
| 1101 | break; |
| 1102 | default: |
| 1103 | goto bad_header; /* not a supported command */ |
| 1104 | } |
| 1105 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 1106 | trash.data = total_v2_len; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 1107 | goto eat_header; |
| 1108 | |
| 1109 | eat_header: |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1110 | /* remove the PROXY line from the request. For this we re-read the |
| 1111 | * exact line at once. If we don't get the exact same result, we |
| 1112 | * fail. |
| 1113 | */ |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1114 | while (1) { |
Tim Duesterhus | a8692f3 | 2020-03-13 12:34:25 +0100 | [diff] [blame] | 1115 | ssize_t len2 = recv(conn->handle.fd, trash.area, trash.data, 0); |
| 1116 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1117 | if (len2 < 0 && errno == EINTR) |
| 1118 | continue; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1119 | if (len2 != trash.data) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 1120 | goto recv_abort; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1121 | break; |
| 1122 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1123 | |
| 1124 | conn->flags &= ~flag; |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1125 | conn->flags |= CO_FL_RCVD_PROXY; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1126 | return 1; |
| 1127 | |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1128 | not_ready: |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1129 | return 0; |
| 1130 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1131 | missing: |
| 1132 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 1133 | * we have not read anything. Otherwise we need to fail because we won't |
| 1134 | * be able to poll anymore. |
| 1135 | */ |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 1136 | conn->err_code = CO_ER_PRX_TRUNCATED; |
| 1137 | goto fail; |
| 1138 | |
| 1139 | bad_header: |
| 1140 | /* This is not a valid proxy protocol header */ |
| 1141 | conn->err_code = CO_ER_PRX_BAD_HDR; |
| 1142 | goto fail; |
| 1143 | |
| 1144 | recv_abort: |
| 1145 | conn->err_code = CO_ER_PRX_ABORT; |
Willy Tarreau | 26f4a04 | 2013-12-04 23:44:10 +0100 | [diff] [blame] | 1146 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 1147 | goto fail; |
| 1148 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1149 | fail: |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1150 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1151 | return 0; |
| 1152 | } |
| 1153 | |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1154 | /* This callback is used to send a valid PROXY protocol line to a socket being |
| 1155 | * established. It returns 0 if it fails in a fatal way or needs to poll to go |
| 1156 | * further, otherwise it returns non-zero and removes itself from the connection's |
| 1157 | * flags (the bit is provided in <flag> by the caller). It is designed to be |
| 1158 | * called by the connection handler and relies on it to commit polling changes. |
| 1159 | * Note that it can emit a PROXY line by relying on the other end's address |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1160 | * when the connection is attached to a stream connector, or by resolving the |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1161 | * local address otherwise (also called a LOCAL line). |
| 1162 | */ |
| 1163 | int conn_send_proxy(struct connection *conn, unsigned int flag) |
| 1164 | { |
| 1165 | if (!conn_ctrl_ready(conn)) |
| 1166 | goto out_error; |
| 1167 | |
| 1168 | /* If we have a PROXY line to send, we'll use this to validate the |
| 1169 | * connection, in which case the connection is validated only once |
| 1170 | * we've sent the whole proxy line. Otherwise we use connect(). |
| 1171 | */ |
| 1172 | if (conn->send_proxy_ofs) { |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1173 | struct stconn *cs; |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1174 | int ret; |
| 1175 | |
| 1176 | /* If there is no mux attached to the connection, it means the |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1177 | * connection context is a stream connector. |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1178 | */ |
Willy Tarreau | 1084238 | 2022-05-18 18:11:27 +0200 | [diff] [blame] | 1179 | cs = conn->mux ? conn_get_first_sc(conn) : conn->ctx; |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1180 | |
| 1181 | /* The target server expects a PROXY line to be sent first. |
| 1182 | * If the send_proxy_ofs is negative, it corresponds to the |
| 1183 | * offset to start sending from then end of the proxy string |
| 1184 | * (which is recomputed every time since it's constant). If |
| 1185 | * it is positive, it means we have to send from the start. |
| 1186 | * We can only send a "normal" PROXY line when the connection |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1187 | * is attached to a stream connector. Otherwise we can only |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1188 | * send a LOCAL line (eg: for use with health checks). |
| 1189 | */ |
| 1190 | |
Willy Tarreau | ea27f48 | 2022-05-18 16:10:52 +0200 | [diff] [blame] | 1191 | if (cs && sc_strm(cs)) { |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1192 | ret = make_proxy_line(trash.area, trash.size, |
| 1193 | objt_server(conn->target), |
Willy Tarreau | 74568cf | 2022-05-27 09:03:30 +0200 | [diff] [blame] | 1194 | sc_conn(sc_opposite(cs)), |
Willy Tarreau | ea27f48 | 2022-05-18 16:10:52 +0200 | [diff] [blame] | 1195 | __sc_strm(cs)); |
Christopher Faulet | aa91d62 | 2022-04-01 13:22:50 +0200 | [diff] [blame] | 1196 | } |
| 1197 | else { |
| 1198 | /* The target server expects a LOCAL line to be sent first. Retrieving |
| 1199 | * local or remote addresses may fail until the connection is established. |
| 1200 | */ |
| 1201 | if (!conn_get_src(conn) || !conn_get_dst(conn)) |
| 1202 | goto out_wait; |
| 1203 | |
| 1204 | ret = make_proxy_line(trash.area, trash.size, |
| 1205 | objt_server(conn->target), conn, |
| 1206 | NULL); |
| 1207 | } |
| 1208 | |
| 1209 | if (!ret) |
| 1210 | goto out_error; |
| 1211 | |
| 1212 | if (conn->send_proxy_ofs > 0) |
| 1213 | conn->send_proxy_ofs = -ret; /* first call */ |
| 1214 | |
| 1215 | /* we have to send trash from (ret+sp for -sp bytes). If the |
| 1216 | * data layer has a pending write, we'll also set MSG_MORE. |
| 1217 | */ |
| 1218 | ret = conn_ctrl_send(conn, |
| 1219 | trash.area + ret + conn->send_proxy_ofs, |
| 1220 | -conn->send_proxy_ofs, |
| 1221 | (conn->subs && conn->subs->events & SUB_RETRY_SEND) ? CO_SFL_MSG_MORE : 0); |
| 1222 | |
| 1223 | if (ret < 0) |
| 1224 | goto out_error; |
| 1225 | |
| 1226 | conn->send_proxy_ofs += ret; /* becomes zero once complete */ |
| 1227 | if (conn->send_proxy_ofs != 0) |
| 1228 | goto out_wait; |
| 1229 | |
| 1230 | /* OK we've sent the whole line, we're connected */ |
| 1231 | } |
| 1232 | |
| 1233 | /* The connection is ready now, simply return and let the connection |
| 1234 | * handler notify upper layers if needed. |
| 1235 | */ |
| 1236 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 1237 | conn->flags &= ~flag; |
| 1238 | return 1; |
| 1239 | |
| 1240 | out_error: |
| 1241 | /* Write error on the file descriptor */ |
| 1242 | conn->flags |= CO_FL_ERROR; |
| 1243 | return 0; |
| 1244 | |
| 1245 | out_wait: |
| 1246 | return 0; |
| 1247 | } |
| 1248 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1249 | /* This handshake handler waits a NetScaler Client IP insertion header |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 1250 | * at the beginning of the raw data stream. The header format is |
| 1251 | * described in doc/netscaler-client-ip-insertion-protocol.txt |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1252 | * |
| 1253 | * This line MUST be at the beginning of the buffer and MUST NOT be |
| 1254 | * fragmented. |
| 1255 | * |
| 1256 | * The header line is small and in all cases smaller than the smallest normal |
| 1257 | * TCP MSS. So it MUST always be delivered as one segment, which ensures we |
| 1258 | * can safely use MSG_PEEK and avoid buffering. |
| 1259 | * |
| 1260 | * Once the data is fetched, the values are set in the connection's address |
| 1261 | * fields, and data are removed from the socket's buffer. The function returns |
| 1262 | * zero if it needs to wait for more data or if it fails, or 1 if it completed |
| 1263 | * and removed itself. |
| 1264 | */ |
| 1265 | int conn_recv_netscaler_cip(struct connection *conn, int flag) |
| 1266 | { |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1267 | struct session *sess = conn->owner; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1268 | char *line; |
Bertrand Jacquin | 7d668f9 | 2017-12-13 01:23:39 +0000 | [diff] [blame] | 1269 | uint32_t hdr_len; |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 1270 | uint8_t ip_ver; |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 1271 | int ret; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1272 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1273 | if (!conn_ctrl_ready(conn)) |
| 1274 | goto fail; |
| 1275 | |
Willy Tarreau | 07ecfc5 | 2022-04-11 18:07:03 +0200 | [diff] [blame] | 1276 | BUG_ON(conn->flags & CO_FL_FDLESS); |
| 1277 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 1278 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1279 | goto not_ready; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1280 | |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1281 | while (1) { |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 1282 | ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK); |
| 1283 | if (ret < 0) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1284 | if (errno == EINTR) |
| 1285 | continue; |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 1286 | if (errno == EAGAIN || errno == EWOULDBLOCK) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 1287 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1288 | goto not_ready; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1289 | } |
| 1290 | goto recv_abort; |
| 1291 | } |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 1292 | trash.data = ret; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1293 | break; |
| 1294 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1295 | |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1296 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 1297 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1298 | if (!trash.data) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1299 | /* client shutdown */ |
| 1300 | conn->err_code = CO_ER_CIP_EMPTY; |
| 1301 | goto fail; |
| 1302 | } |
| 1303 | |
| 1304 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 1305 | * CIP magic, header length or |
| 1306 | * CIP magic, CIP length, CIP type, header length */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1307 | if (trash.data < 12) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1308 | goto missing; |
| 1309 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1310 | line = trash.area; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1311 | |
| 1312 | /* Decode a possible NetScaler Client IP request, fail early if |
| 1313 | * it does not match */ |
Willy Tarreau | 1ac83af | 2020-02-25 10:06:49 +0100 | [diff] [blame] | 1314 | if (ntohl(read_u32(line)) != __objt_listener(conn->target)->bind_conf->ns_cip_magic) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1315 | goto bad_magic; |
| 1316 | |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 1317 | /* Legacy CIP protocol */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1318 | if ((trash.area[8] & 0xD0) == 0x40) { |
Willy Tarreau | 1ac83af | 2020-02-25 10:06:49 +0100 | [diff] [blame] | 1319 | hdr_len = ntohl(read_u32((line+4))); |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 1320 | line += 8; |
| 1321 | } |
| 1322 | /* Standard CIP protocol */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1323 | else if (trash.area[8] == 0x00) { |
Willy Tarreau | 1ac83af | 2020-02-25 10:06:49 +0100 | [diff] [blame] | 1324 | hdr_len = ntohs(read_u32((line+10))); |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 1325 | line += 12; |
| 1326 | } |
| 1327 | /* Unknown CIP protocol */ |
| 1328 | else { |
| 1329 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 1330 | goto fail; |
| 1331 | } |
| 1332 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1333 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 1334 | * a minimal IP header */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1335 | if (trash.data < 20) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1336 | goto missing; |
| 1337 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1338 | /* Get IP version from the first four bits */ |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 1339 | ip_ver = (*line & 0xf0) >> 4; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1340 | |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 1341 | if (ip_ver == 4) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1342 | struct ip *hdr_ip4; |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 1343 | struct my_tcphdr *hdr_tcp; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1344 | |
| 1345 | hdr_ip4 = (struct ip *)line; |
| 1346 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1347 | if (trash.data < 40 || trash.data < hdr_len) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1348 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 67de5a2 | 2017-12-13 01:15:05 +0000 | [diff] [blame] | 1349 | * IPv4 header, TCP header */ |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1350 | goto missing; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 1351 | } |
| 1352 | else if (hdr_ip4->ip_p != IPPROTO_TCP) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1353 | /* The protocol does not include a TCP header */ |
| 1354 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 1355 | goto fail; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 1356 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1357 | |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 1358 | hdr_tcp = (struct my_tcphdr *)(line + (hdr_ip4->ip_hl * 4)); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1359 | |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1360 | if (!sess || !sockaddr_alloc(&sess->src, NULL, 0) || !sockaddr_alloc(&sess->dst, NULL, 0)) |
| 1361 | goto fail; |
| 1362 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1363 | /* update the session's addresses and mark them set */ |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1364 | ((struct sockaddr_in *)sess->src)->sin_family = AF_INET; |
| 1365 | ((struct sockaddr_in *)sess->src)->sin_addr.s_addr = hdr_ip4->ip_src.s_addr; |
| 1366 | ((struct sockaddr_in *)sess->src)->sin_port = hdr_tcp->source; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1367 | |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1368 | ((struct sockaddr_in *)sess->dst)->sin_family = AF_INET; |
| 1369 | ((struct sockaddr_in *)sess->dst)->sin_addr.s_addr = hdr_ip4->ip_dst.s_addr; |
| 1370 | ((struct sockaddr_in *)sess->dst)->sin_port = hdr_tcp->dest; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1371 | } |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 1372 | else if (ip_ver == 6) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1373 | struct ip6_hdr *hdr_ip6; |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 1374 | struct my_tcphdr *hdr_tcp; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1375 | |
| 1376 | hdr_ip6 = (struct ip6_hdr *)line; |
| 1377 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1378 | if (trash.data < 60 || trash.data < hdr_len) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1379 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 67de5a2 | 2017-12-13 01:15:05 +0000 | [diff] [blame] | 1380 | * IPv6 header, TCP header */ |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1381 | goto missing; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 1382 | } |
| 1383 | else if (hdr_ip6->ip6_nxt != IPPROTO_TCP) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1384 | /* The protocol does not include a TCP header */ |
| 1385 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 1386 | goto fail; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 1387 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1388 | |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 1389 | hdr_tcp = (struct my_tcphdr *)(line + sizeof(struct ip6_hdr)); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1390 | |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1391 | if (!sess || !sockaddr_alloc(&sess->src, NULL, 0) || !sockaddr_alloc(&sess->dst, NULL, 0)) |
| 1392 | goto fail; |
| 1393 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1394 | /* update the session's addresses and mark them set */ |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1395 | ((struct sockaddr_in6 *)sess->src)->sin6_family = AF_INET6; |
| 1396 | ((struct sockaddr_in6 *)sess->src)->sin6_addr = hdr_ip6->ip6_src; |
| 1397 | ((struct sockaddr_in6 *)sess->src)->sin6_port = hdr_tcp->source; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1398 | |
Christopher Faulet | e83e882 | 2021-10-25 08:23:22 +0200 | [diff] [blame] | 1399 | ((struct sockaddr_in6 *)sess->dst)->sin6_family = AF_INET6; |
| 1400 | ((struct sockaddr_in6 *)sess->dst)->sin6_addr = hdr_ip6->ip6_dst; |
| 1401 | ((struct sockaddr_in6 *)sess->dst)->sin6_port = hdr_tcp->dest; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1402 | } |
| 1403 | else { |
| 1404 | /* The protocol does not match something known (IPv4/IPv6) */ |
| 1405 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 1406 | goto fail; |
| 1407 | } |
| 1408 | |
Bertrand Jacquin | 7d668f9 | 2017-12-13 01:23:39 +0000 | [diff] [blame] | 1409 | line += hdr_len; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1410 | trash.data = line - trash.area; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1411 | |
| 1412 | /* remove the NetScaler Client IP header from the request. For this |
| 1413 | * we re-read the exact line at once. If we don't get the exact same |
| 1414 | * result, we fail. |
| 1415 | */ |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1416 | while (1) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1417 | int len2 = recv(conn->handle.fd, trash.area, trash.data, 0); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1418 | if (len2 < 0 && errno == EINTR) |
| 1419 | continue; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1420 | if (len2 != trash.data) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1421 | goto recv_abort; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1422 | break; |
| 1423 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1424 | |
| 1425 | conn->flags &= ~flag; |
| 1426 | return 1; |
| 1427 | |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1428 | not_ready: |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1429 | return 0; |
| 1430 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1431 | missing: |
| 1432 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 1433 | * we have not read anything. Otherwise we need to fail because we won't |
| 1434 | * be able to poll anymore. |
| 1435 | */ |
| 1436 | conn->err_code = CO_ER_CIP_TRUNCATED; |
| 1437 | goto fail; |
| 1438 | |
| 1439 | bad_magic: |
| 1440 | conn->err_code = CO_ER_CIP_BAD_MAGIC; |
| 1441 | goto fail; |
| 1442 | |
| 1443 | recv_abort: |
| 1444 | conn->err_code = CO_ER_CIP_ABORT; |
| 1445 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
| 1446 | goto fail; |
| 1447 | |
| 1448 | fail: |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1449 | conn->flags |= CO_FL_ERROR; |
| 1450 | return 0; |
| 1451 | } |
| 1452 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1453 | |
| 1454 | int conn_send_socks4_proxy_request(struct connection *conn) |
| 1455 | { |
| 1456 | struct socks4_request req_line; |
| 1457 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1458 | if (!conn_ctrl_ready(conn)) |
| 1459 | goto out_error; |
| 1460 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 1461 | if (!conn_get_dst(conn)) |
| 1462 | goto out_error; |
| 1463 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1464 | req_line.version = 0x04; |
| 1465 | req_line.command = 0x01; |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 1466 | req_line.port = get_net_port(conn->dst); |
| 1467 | req_line.ip = is_inet_addr(conn->dst); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1468 | memcpy(req_line.user_id, "HAProxy\0", 8); |
| 1469 | |
| 1470 | if (conn->send_proxy_ofs > 0) { |
| 1471 | /* |
| 1472 | * This is the first call to send the request |
| 1473 | */ |
| 1474 | conn->send_proxy_ofs = -(int)sizeof(req_line); |
| 1475 | } |
| 1476 | |
| 1477 | if (conn->send_proxy_ofs < 0) { |
| 1478 | int ret = 0; |
| 1479 | |
| 1480 | /* we are sending the socks4_req_line here. If the data layer |
| 1481 | * has a pending write, we'll also set MSG_MORE. |
| 1482 | */ |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 1483 | ret = conn_ctrl_send( |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1484 | conn, |
| 1485 | ((char *)(&req_line)) + (sizeof(req_line)+conn->send_proxy_ofs), |
| 1486 | -conn->send_proxy_ofs, |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 1487 | (conn->subs && conn->subs->events & SUB_RETRY_SEND) ? CO_SFL_MSG_MORE : 0); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1488 | |
| 1489 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Before send remain is [%d], sent [%d]\n", |
Willy Tarreau | 0e9c264 | 2022-04-11 18:01:28 +0200 | [diff] [blame] | 1490 | conn_fd(conn), -conn->send_proxy_ofs, ret); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1491 | |
| 1492 | if (ret < 0) { |
| 1493 | goto out_error; |
| 1494 | } |
| 1495 | |
| 1496 | conn->send_proxy_ofs += ret; /* becomes zero once complete */ |
| 1497 | if (conn->send_proxy_ofs != 0) { |
| 1498 | goto out_wait; |
| 1499 | } |
| 1500 | } |
| 1501 | |
| 1502 | /* OK we've the whole request sent */ |
| 1503 | conn->flags &= ~CO_FL_SOCKS4_SEND; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1504 | |
| 1505 | /* The connection is ready now, simply return and let the connection |
| 1506 | * handler notify upper layers if needed. |
| 1507 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1508 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1509 | |
| 1510 | if (conn->flags & CO_FL_SEND_PROXY) { |
| 1511 | /* |
| 1512 | * Get the send_proxy_ofs ready for the send_proxy due to we are |
| 1513 | * reusing the "send_proxy_ofs", and SOCKS4 handshake should be done |
| 1514 | * before sending PROXY Protocol. |
| 1515 | */ |
| 1516 | conn->send_proxy_ofs = 1; |
| 1517 | } |
| 1518 | return 1; |
| 1519 | |
| 1520 | out_error: |
| 1521 | /* Write error on the file descriptor */ |
| 1522 | conn->flags |= CO_FL_ERROR; |
| 1523 | if (conn->err_code == CO_ER_NONE) { |
| 1524 | conn->err_code = CO_ER_SOCKS4_SEND; |
| 1525 | } |
| 1526 | return 0; |
| 1527 | |
| 1528 | out_wait: |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1529 | return 0; |
| 1530 | } |
| 1531 | |
| 1532 | int conn_recv_socks4_proxy_response(struct connection *conn) |
| 1533 | { |
| 1534 | char line[SOCKS4_HS_RSP_LEN]; |
| 1535 | int ret; |
| 1536 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1537 | if (!conn_ctrl_ready(conn)) |
| 1538 | goto fail; |
| 1539 | |
Willy Tarreau | 07ecfc5 | 2022-04-11 18:07:03 +0200 | [diff] [blame] | 1540 | BUG_ON(conn->flags & CO_FL_FDLESS); |
| 1541 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1542 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1543 | goto not_ready; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1544 | |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1545 | while (1) { |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1546 | /* SOCKS4 Proxy will response with 8 bytes, 0x00 | 0x5A | 0x00 0x00 | 0x00 0x00 0x00 0x00 |
| 1547 | * Try to peek into it, before all 8 bytes ready. |
| 1548 | */ |
| 1549 | ret = recv(conn->handle.fd, line, SOCKS4_HS_RSP_LEN, MSG_PEEK); |
| 1550 | |
| 1551 | if (ret == 0) { |
| 1552 | /* the socket has been closed or shutdown for send */ |
| 1553 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], errno[%d], looks like the socket has been closed or shutdown for send\n", |
| 1554 | conn->handle.fd, ret, errno); |
| 1555 | if (conn->err_code == CO_ER_NONE) { |
| 1556 | conn->err_code = CO_ER_SOCKS4_RECV; |
| 1557 | } |
| 1558 | goto fail; |
| 1559 | } |
| 1560 | |
| 1561 | if (ret > 0) { |
| 1562 | if (ret == SOCKS4_HS_RSP_LEN) { |
| 1563 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received 8 bytes, the response is [%02X|%02X|%02X %02X|%02X %02X %02X %02X]\n", |
| 1564 | conn->handle.fd, line[0], line[1], line[2], line[3], line[4], line[5], line[6], line[7]); |
| 1565 | }else{ |
| 1566 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], first byte is [%02X], last bye is [%02X]\n", conn->handle.fd, ret, line[0], line[ret-1]); |
| 1567 | } |
| 1568 | } else { |
| 1569 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], errno[%d]\n", conn->handle.fd, ret, errno); |
| 1570 | } |
| 1571 | |
| 1572 | if (ret < 0) { |
| 1573 | if (errno == EINTR) { |
| 1574 | continue; |
| 1575 | } |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 1576 | if (errno == EAGAIN || errno == EWOULDBLOCK) { |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1577 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1578 | goto not_ready; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1579 | } |
| 1580 | goto recv_abort; |
| 1581 | } |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1582 | break; |
| 1583 | } |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1584 | |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1585 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 1586 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1587 | if (ret < SOCKS4_HS_RSP_LEN) { |
| 1588 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 1589 | * we are not able to read enough data. |
| 1590 | */ |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1591 | goto not_ready; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1592 | } |
| 1593 | |
| 1594 | /* |
| 1595 | * Base on the SOCSK4 protocol: |
| 1596 | * |
| 1597 | * +----+----+----+----+----+----+----+----+ |
| 1598 | * | VN | CD | DSTPORT | DSTIP | |
| 1599 | * +----+----+----+----+----+----+----+----+ |
| 1600 | * # of bytes: 1 1 2 4 |
| 1601 | * VN is the version of the reply code and should be 0. CD is the result |
| 1602 | * code with one of the following values: |
| 1603 | * 90: request granted |
| 1604 | * 91: request rejected or failed |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 1605 | * 92: request rejected because SOCKS server cannot connect to identd on the client |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1606 | * 93: request rejected because the client program and identd report different user-ids |
| 1607 | * The remaining fields are ignored. |
| 1608 | */ |
| 1609 | if (line[1] != 90) { |
| 1610 | conn->flags &= ~CO_FL_SOCKS4_RECV; |
| 1611 | |
| 1612 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: FAIL, the response is [%02X|%02X|%02X %02X|%02X %02X %02X %02X]\n", |
| 1613 | conn->handle.fd, line[0], line[1], line[2], line[3], line[4], line[5], line[6], line[7]); |
| 1614 | if (conn->err_code == CO_ER_NONE) { |
| 1615 | conn->err_code = CO_ER_SOCKS4_DENY; |
| 1616 | } |
| 1617 | goto fail; |
| 1618 | } |
| 1619 | |
| 1620 | /* remove the 8 bytes response from the stream */ |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1621 | while (1) { |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1622 | ret = recv(conn->handle.fd, line, SOCKS4_HS_RSP_LEN, 0); |
| 1623 | if (ret < 0 && errno == EINTR) { |
| 1624 | continue; |
| 1625 | } |
| 1626 | if (ret != SOCKS4_HS_RSP_LEN) { |
| 1627 | if (conn->err_code == CO_ER_NONE) { |
| 1628 | conn->err_code = CO_ER_SOCKS4_RECV; |
| 1629 | } |
| 1630 | goto fail; |
| 1631 | } |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1632 | break; |
| 1633 | } |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1634 | |
| 1635 | conn->flags &= ~CO_FL_SOCKS4_RECV; |
| 1636 | return 1; |
| 1637 | |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1638 | not_ready: |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1639 | return 0; |
| 1640 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1641 | recv_abort: |
| 1642 | if (conn->err_code == CO_ER_NONE) { |
| 1643 | conn->err_code = CO_ER_SOCKS4_ABORT; |
| 1644 | } |
| 1645 | conn->flags |= (CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH); |
| 1646 | goto fail; |
| 1647 | |
| 1648 | fail: |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1649 | conn->flags |= CO_FL_ERROR; |
| 1650 | return 0; |
| 1651 | } |
| 1652 | |
Willy Tarreau | d318e4e | 2022-03-02 14:46:45 +0100 | [diff] [blame] | 1653 | /* registers proto mux list <list>. Modifies the list element! */ |
| 1654 | void register_mux_proto(struct mux_proto_list *list) |
| 1655 | { |
| 1656 | LIST_APPEND(&mux_proto_list.list, &list->list); |
| 1657 | } |
| 1658 | |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1659 | /* Lists the known proto mux on <out>. This function is used by "haproxy -vv" |
| 1660 | * and is suitable for early boot just after the "REGISTER" stage because it |
| 1661 | * doesn't depend on anything to be already allocated. |
| 1662 | */ |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1663 | void list_mux_proto(FILE *out) |
| 1664 | { |
| 1665 | struct mux_proto_list *item; |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1666 | struct ist proto; |
| 1667 | char *mode, *side; |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1668 | int done; |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1669 | |
| 1670 | fprintf(out, "Available multiplexer protocols :\n" |
| 1671 | "(protocols marked as <default> cannot be specified using 'proto' keyword)\n"); |
| 1672 | list_for_each_entry(item, &mux_proto_list.list, list) { |
| 1673 | proto = item->token; |
| 1674 | |
| 1675 | if (item->mode == PROTO_MODE_ANY) |
| 1676 | mode = "TCP|HTTP"; |
| 1677 | else if (item->mode == PROTO_MODE_TCP) |
| 1678 | mode = "TCP"; |
| 1679 | else if (item->mode == PROTO_MODE_HTTP) |
| 1680 | mode = "HTTP"; |
| 1681 | else |
| 1682 | mode = "NONE"; |
| 1683 | |
| 1684 | if (item->side == PROTO_SIDE_BOTH) |
| 1685 | side = "FE|BE"; |
| 1686 | else if (item->side == PROTO_SIDE_FE) |
| 1687 | side = "FE"; |
| 1688 | else if (item->side == PROTO_SIDE_BE) |
| 1689 | side = "BE"; |
| 1690 | else |
| 1691 | side = "NONE"; |
| 1692 | |
Willy Tarreau | dddfec5 | 2022-04-09 11:37:35 +0200 | [diff] [blame] | 1693 | fprintf(out, " %10s : mode=%-5s side=%-6s mux=%-5s flags=", |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1694 | (proto.len ? proto.ptr : "<default>"), mode, side, item->mux->name); |
| 1695 | |
| 1696 | done = 0; |
| 1697 | |
| 1698 | /* note: the block below could be simplied using macros but for only |
| 1699 | * 4 flags it's not worth it. |
| 1700 | */ |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1701 | if (item->mux->flags & MX_FL_HTX) |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1702 | done |= fprintf(out, "%sHTX", done ? "|" : ""); |
| 1703 | |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1704 | if (item->mux->flags & MX_FL_HOL_RISK) |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1705 | done |= fprintf(out, "%sHOL_RISK", done ? "|" : ""); |
| 1706 | |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1707 | if (item->mux->flags & MX_FL_NO_UPG) |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1708 | done |= fprintf(out, "%sNO_UPG", done ? "|" : ""); |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1709 | |
Willy Tarreau | b5821e1 | 2022-04-26 11:54:08 +0200 | [diff] [blame] | 1710 | if (item->mux->flags & MX_FL_FRAMED) |
| 1711 | done |= fprintf(out, "%sFRAMED", done ? "|" : ""); |
| 1712 | |
Willy Tarreau | add4306 | 2022-02-18 11:07:40 +0100 | [diff] [blame] | 1713 | fprintf(out, "\n"); |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1714 | } |
| 1715 | } |
| 1716 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1717 | /* Makes a PROXY protocol line from the two addresses. The output is sent to |
| 1718 | * buffer <buf> for a maximum size of <buf_len> (including the trailing zero). |
| 1719 | * It returns the number of bytes composing this line (including the trailing |
| 1720 | * LF), or zero in case of failure (eg: not enough space). It supports TCP4, |
Willy Tarreau | 2e1401a | 2013-10-01 11:41:55 +0200 | [diff] [blame] | 1721 | * TCP6 and "UNKNOWN" formats. If any of <src> or <dst> is null, UNKNOWN is |
| 1722 | * emitted as well. |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1723 | */ |
Christopher Faulet | b097aef | 2021-10-25 08:05:28 +0200 | [diff] [blame] | 1724 | static int make_proxy_line_v1(char *buf, int buf_len, const struct sockaddr_storage *src, const struct sockaddr_storage *dst) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1725 | { |
| 1726 | int ret = 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1727 | char * protocol; |
| 1728 | char src_str[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)]; |
| 1729 | char dst_str[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)]; |
| 1730 | in_port_t src_port; |
| 1731 | in_port_t dst_port; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1732 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1733 | if ( !src |
| 1734 | || !dst |
| 1735 | || (src->ss_family != AF_INET && src->ss_family != AF_INET6) |
| 1736 | || (dst->ss_family != AF_INET && dst->ss_family != AF_INET6)) { |
| 1737 | /* unknown family combination */ |
| 1738 | ret = snprintf(buf, buf_len, "PROXY UNKNOWN\r\n"); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1739 | if (ret >= buf_len) |
| 1740 | return 0; |
| 1741 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1742 | return ret; |
| 1743 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1744 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1745 | /* IPv4 for both src and dst */ |
| 1746 | if (src->ss_family == AF_INET && dst->ss_family == AF_INET) { |
| 1747 | protocol = "TCP4"; |
| 1748 | if (!inet_ntop(AF_INET, &((struct sockaddr_in *)src)->sin_addr, src_str, sizeof(src_str))) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1749 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1750 | src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1751 | if (!inet_ntop(AF_INET, &((struct sockaddr_in *)dst)->sin_addr, dst_str, sizeof(dst_str))) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1752 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1753 | dst_port = ((struct sockaddr_in *)dst)->sin_port; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1754 | } |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1755 | /* IPv6 for at least one of src and dst */ |
| 1756 | else { |
| 1757 | struct in6_addr tmp; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1758 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1759 | protocol = "TCP6"; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1760 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1761 | if (src->ss_family == AF_INET) { |
| 1762 | /* Convert src to IPv6 */ |
| 1763 | v4tov6(&tmp, &((struct sockaddr_in *)src)->sin_addr); |
| 1764 | src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1765 | } |
| 1766 | else { |
| 1767 | tmp = ((struct sockaddr_in6 *)src)->sin6_addr; |
| 1768 | src_port = ((struct sockaddr_in6 *)src)->sin6_port; |
| 1769 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1770 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1771 | if (!inet_ntop(AF_INET6, &tmp, src_str, sizeof(src_str))) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1772 | return 0; |
| 1773 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1774 | if (dst->ss_family == AF_INET) { |
| 1775 | /* Convert dst to IPv6 */ |
| 1776 | v4tov6(&tmp, &((struct sockaddr_in *)dst)->sin_addr); |
| 1777 | dst_port = ((struct sockaddr_in *)dst)->sin_port; |
| 1778 | } |
| 1779 | else { |
| 1780 | tmp = ((struct sockaddr_in6 *)dst)->sin6_addr; |
| 1781 | dst_port = ((struct sockaddr_in6 *)dst)->sin6_port; |
| 1782 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1783 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1784 | if (!inet_ntop(AF_INET6, &tmp, dst_str, sizeof(dst_str))) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1785 | return 0; |
| 1786 | } |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1787 | |
| 1788 | ret = snprintf(buf, buf_len, "PROXY %s %s %s %u %u\r\n", protocol, src_str, dst_str, ntohs(src_port), ntohs(dst_port)); |
| 1789 | if (ret >= buf_len) |
| 1790 | return 0; |
| 1791 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1792 | return ret; |
| 1793 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1794 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1795 | static int make_tlv(char *dest, int dest_len, char type, uint16_t length, const char *value) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1796 | { |
| 1797 | struct tlv *tlv; |
| 1798 | |
| 1799 | if (!dest || (length + sizeof(*tlv) > dest_len)) |
| 1800 | return 0; |
| 1801 | |
| 1802 | tlv = (struct tlv *)dest; |
| 1803 | |
| 1804 | tlv->type = type; |
| 1805 | tlv->length_hi = length >> 8; |
| 1806 | tlv->length_lo = length & 0x00ff; |
| 1807 | memcpy(tlv->value, value, length); |
| 1808 | return length + sizeof(*tlv); |
| 1809 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1810 | |
Ilya Shipitsin | ca56fce | 2018-09-15 00:50:05 +0500 | [diff] [blame] | 1811 | /* Note: <remote> is explicitly allowed to be NULL */ |
Christopher Faulet | 4bfce39 | 2021-10-22 14:33:59 +0200 | [diff] [blame] | 1812 | static int make_proxy_line_v2(char *buf, int buf_len, struct server *srv, struct connection *remote, struct stream *strm) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1813 | { |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1814 | const char pp2_signature[] = PP2_SIGNATURE; |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1815 | void *tlv_crc32c_p = NULL; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1816 | int ret = 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1817 | struct proxy_hdr_v2 *hdr = (struct proxy_hdr_v2 *)buf; |
Vincent Bernat | 6e61589 | 2016-05-18 16:17:44 +0200 | [diff] [blame] | 1818 | struct sockaddr_storage null_addr = { .ss_family = 0 }; |
Christopher Faulet | b097aef | 2021-10-25 08:05:28 +0200 | [diff] [blame] | 1819 | const struct sockaddr_storage *src = &null_addr; |
| 1820 | const struct sockaddr_storage *dst = &null_addr; |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1821 | const char *value; |
| 1822 | int value_len; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1823 | |
| 1824 | if (buf_len < PP2_HEADER_LEN) |
| 1825 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1826 | memcpy(hdr->sig, pp2_signature, PP2_SIGNATURE_LEN); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1827 | |
Christopher Faulet | b097aef | 2021-10-25 08:05:28 +0200 | [diff] [blame] | 1828 | if (strm) { |
Willy Tarreau | d68ff01 | 2022-05-27 08:57:21 +0200 | [diff] [blame] | 1829 | src = sc_src(strm->scf); |
| 1830 | dst = sc_dst(strm->scf); |
Christopher Faulet | b097aef | 2021-10-25 08:05:28 +0200 | [diff] [blame] | 1831 | } |
| 1832 | else if (remote && conn_get_src(remote) && conn_get_dst(remote)) { |
| 1833 | src = conn_src(remote); |
| 1834 | dst = conn_dst(remote); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1835 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1836 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1837 | /* At least one of src or dst is not of AF_INET or AF_INET6 */ |
| 1838 | if ( !src |
| 1839 | || !dst |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 1840 | || (!pp2_never_send_local && conn_is_back(remote)) // locally initiated connection |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1841 | || (src->ss_family != AF_INET && src->ss_family != AF_INET6) |
| 1842 | || (dst->ss_family != AF_INET && dst->ss_family != AF_INET6)) { |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1843 | if (buf_len < PP2_HDR_LEN_UNSPEC) |
| 1844 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1845 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_LOCAL; |
| 1846 | hdr->fam = PP2_FAM_UNSPEC | PP2_TRANS_UNSPEC; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1847 | ret = PP2_HDR_LEN_UNSPEC; |
| 1848 | } |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1849 | else { |
Willy Tarreau | 02c8803 | 2020-04-14 12:54:10 +0200 | [diff] [blame] | 1850 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_PROXY; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1851 | /* IPv4 for both src and dst */ |
| 1852 | if (src->ss_family == AF_INET && dst->ss_family == AF_INET) { |
| 1853 | if (buf_len < PP2_HDR_LEN_INET) |
| 1854 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1855 | hdr->fam = PP2_FAM_INET | PP2_TRANS_STREAM; |
| 1856 | hdr->addr.ip4.src_addr = ((struct sockaddr_in *)src)->sin_addr.s_addr; |
| 1857 | hdr->addr.ip4.src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1858 | hdr->addr.ip4.dst_addr = ((struct sockaddr_in *)dst)->sin_addr.s_addr; |
| 1859 | hdr->addr.ip4.dst_port = ((struct sockaddr_in *)dst)->sin_port; |
| 1860 | ret = PP2_HDR_LEN_INET; |
| 1861 | } |
| 1862 | /* IPv6 for at least one of src and dst */ |
| 1863 | else { |
| 1864 | struct in6_addr tmp; |
| 1865 | |
| 1866 | if (buf_len < PP2_HDR_LEN_INET6) |
| 1867 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1868 | hdr->fam = PP2_FAM_INET6 | PP2_TRANS_STREAM; |
| 1869 | if (src->ss_family == AF_INET) { |
| 1870 | v4tov6(&tmp, &((struct sockaddr_in *)src)->sin_addr); |
| 1871 | memcpy(hdr->addr.ip6.src_addr, &tmp, 16); |
| 1872 | hdr->addr.ip6.src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1873 | } |
| 1874 | else { |
| 1875 | memcpy(hdr->addr.ip6.src_addr, &((struct sockaddr_in6 *)src)->sin6_addr, 16); |
| 1876 | hdr->addr.ip6.src_port = ((struct sockaddr_in6 *)src)->sin6_port; |
| 1877 | } |
| 1878 | if (dst->ss_family == AF_INET) { |
| 1879 | v4tov6(&tmp, &((struct sockaddr_in *)dst)->sin_addr); |
| 1880 | memcpy(hdr->addr.ip6.dst_addr, &tmp, 16); |
William Dauchy | bd8bf67 | 2020-01-26 19:06:39 +0100 | [diff] [blame] | 1881 | hdr->addr.ip6.dst_port = ((struct sockaddr_in *)dst)->sin_port; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1882 | } |
| 1883 | else { |
| 1884 | memcpy(hdr->addr.ip6.dst_addr, &((struct sockaddr_in6 *)dst)->sin6_addr, 16); |
| 1885 | hdr->addr.ip6.dst_port = ((struct sockaddr_in6 *)dst)->sin6_port; |
| 1886 | } |
| 1887 | |
| 1888 | ret = PP2_HDR_LEN_INET6; |
| 1889 | } |
| 1890 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1891 | |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1892 | if (srv->pp_opts & SRV_PP_V2_CRC32C) { |
| 1893 | uint32_t zero_crc32c = 0; |
Tim Duesterhus | a8692f3 | 2020-03-13 12:34:25 +0100 | [diff] [blame] | 1894 | |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1895 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1896 | return 0; |
| 1897 | tlv_crc32c_p = (void *)((struct tlv *)&buf[ret])->value; |
| 1898 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_CRC32C, sizeof(zero_crc32c), (const char *)&zero_crc32c); |
| 1899 | } |
| 1900 | |
Ilya Shipitsin | ca56fce | 2018-09-15 00:50:05 +0500 | [diff] [blame] | 1901 | if (remote && conn_get_alpn(remote, &value, &value_len)) { |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1902 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1903 | return 0; |
Emmanuel Hocdet | 571c7ac | 2017-10-31 18:24:05 +0100 | [diff] [blame] | 1904 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_ALPN, value_len, value); |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1905 | } |
| 1906 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 1907 | if (srv->pp_opts & SRV_PP_V2_AUTHORITY) { |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1908 | value = NULL; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1909 | if (remote && isttest(remote->proxy_authority)) { |
| 1910 | value = istptr(remote->proxy_authority); |
| 1911 | value_len = istlen(remote->proxy_authority); |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1912 | } |
| 1913 | #ifdef USE_OPENSSL |
| 1914 | else { |
Jerome Magnin | 78891c7 | 2019-09-02 09:53:41 +0200 | [diff] [blame] | 1915 | if ((value = ssl_sock_get_sni(remote))) |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1916 | value_len = strlen(value); |
| 1917 | } |
| 1918 | #endif |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 1919 | if (value) { |
| 1920 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1921 | return 0; |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1922 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_AUTHORITY, value_len, value); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 1923 | } |
| 1924 | } |
| 1925 | |
Christopher Faulet | 3ab504f | 2020-05-26 15:16:01 +0200 | [diff] [blame] | 1926 | if (strm && (srv->pp_opts & SRV_PP_V2_UNIQUE_ID)) { |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 1927 | struct session* sess = strm_sess(strm); |
| 1928 | struct ist unique_id = stream_generate_unique_id(strm, &sess->fe->format_unique_id); |
| 1929 | |
| 1930 | value = unique_id.ptr; |
| 1931 | value_len = unique_id.len; |
| 1932 | |
| 1933 | if (value_len >= 0) { |
| 1934 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1935 | return 0; |
| 1936 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_UNIQUE_ID, value_len, value); |
| 1937 | } |
| 1938 | } |
| 1939 | |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1940 | #ifdef USE_OPENSSL |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1941 | if (srv->pp_opts & SRV_PP_V2_SSL) { |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1942 | struct tlv_ssl *tlv; |
| 1943 | int ssl_tlv_len = 0; |
Tim Duesterhus | a8692f3 | 2020-03-13 12:34:25 +0100 | [diff] [blame] | 1944 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1945 | if ((buf_len - ret) < sizeof(struct tlv_ssl)) |
| 1946 | return 0; |
| 1947 | tlv = (struct tlv_ssl *)&buf[ret]; |
| 1948 | memset(tlv, 0, sizeof(struct tlv_ssl)); |
| 1949 | ssl_tlv_len += sizeof(struct tlv_ssl); |
| 1950 | tlv->tlv.type = PP2_TYPE_SSL; |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 1951 | if (conn_is_ssl(remote)) { |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1952 | tlv->client |= PP2_CLIENT_SSL; |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 1953 | value = ssl_sock_get_proto_version(remote); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1954 | if (value) { |
Emmanuel Hocdet | 8c0c34b | 2018-02-28 12:02:14 +0100 | [diff] [blame] | 1955 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len-ret-ssl_tlv_len), PP2_SUBTYPE_SSL_VERSION, strlen(value), value); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1956 | } |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 1957 | if (ssl_sock_get_cert_used_sess(remote)) { |
| 1958 | tlv->client |= PP2_CLIENT_CERT_SESS; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1959 | tlv->verify = htonl(ssl_sock_get_verify_result(remote)); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 1960 | if (ssl_sock_get_cert_used_conn(remote)) |
| 1961 | tlv->client |= PP2_CLIENT_CERT_CONN; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1962 | } |
| 1963 | if (srv->pp_opts & SRV_PP_V2_SSL_CN) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1964 | struct buffer *cn_trash = get_trash_chunk(); |
Willy Tarreau | 3b9a0c9 | 2014-07-19 06:37:33 +0200 | [diff] [blame] | 1965 | if (ssl_sock_get_remote_common_name(remote, cn_trash) > 0) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1966 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CN, |
| 1967 | cn_trash->data, |
| 1968 | cn_trash->area); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1969 | } |
| 1970 | } |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 1971 | if (srv->pp_opts & SRV_PP_V2_SSL_KEY_ALG) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1972 | struct buffer *pkey_trash = get_trash_chunk(); |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 1973 | if (ssl_sock_get_pkey_algo(remote, pkey_trash) > 0) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1974 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_KEY_ALG, |
| 1975 | pkey_trash->data, |
| 1976 | pkey_trash->area); |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 1977 | } |
| 1978 | } |
| 1979 | if (srv->pp_opts & SRV_PP_V2_SSL_SIG_ALG) { |
| 1980 | value = ssl_sock_get_cert_sig(remote); |
| 1981 | if (value) { |
| 1982 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_SIG_ALG, strlen(value), value); |
| 1983 | } |
| 1984 | } |
| 1985 | if (srv->pp_opts & SRV_PP_V2_SSL_CIPHER) { |
| 1986 | value = ssl_sock_get_cipher_name(remote); |
| 1987 | if (value) { |
| 1988 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CIPHER, strlen(value), value); |
| 1989 | } |
| 1990 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1991 | } |
| 1992 | tlv->tlv.length_hi = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) >> 8; |
| 1993 | tlv->tlv.length_lo = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) & 0x00ff; |
| 1994 | ret += ssl_tlv_len; |
| 1995 | } |
| 1996 | #endif |
| 1997 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1998 | #ifdef USE_NS |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1999 | if (remote && (remote->proxy_netns)) { |
| 2000 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 2001 | return 0; |
Emmanuel Hocdet | 571c7ac | 2017-10-31 18:24:05 +0100 | [diff] [blame] | 2002 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_NETNS, remote->proxy_netns->name_len, remote->proxy_netns->node.key); |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 2003 | } |
| 2004 | #endif |
| 2005 | |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 2006 | hdr->len = htons((uint16_t)(ret - PP2_HEADER_LEN)); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 2007 | |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 2008 | if (tlv_crc32c_p) { |
| 2009 | write_u32(tlv_crc32c_p, htonl(hash_crc32c(buf, ret))); |
| 2010 | } |
| 2011 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 2012 | return ret; |
| 2013 | } |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 2014 | |
Christopher Faulet | 4bfce39 | 2021-10-22 14:33:59 +0200 | [diff] [blame] | 2015 | /* Note: <remote> is explicitly allowed to be NULL */ |
| 2016 | int make_proxy_line(char *buf, int buf_len, struct server *srv, struct connection *remote, struct stream *strm) |
| 2017 | { |
| 2018 | int ret = 0; |
| 2019 | |
| 2020 | if (srv && (srv->pp_opts & SRV_PP_V2)) { |
| 2021 | ret = make_proxy_line_v2(buf, buf_len, srv, remote, strm); |
| 2022 | } |
| 2023 | else { |
Christopher Faulet | b097aef | 2021-10-25 08:05:28 +0200 | [diff] [blame] | 2024 | const struct sockaddr_storage *src = NULL; |
| 2025 | const struct sockaddr_storage *dst = NULL; |
| 2026 | |
| 2027 | if (strm) { |
Willy Tarreau | d68ff01 | 2022-05-27 08:57:21 +0200 | [diff] [blame] | 2028 | src = sc_src(strm->scf); |
| 2029 | dst = sc_dst(strm->scf); |
Christopher Faulet | b097aef | 2021-10-25 08:05:28 +0200 | [diff] [blame] | 2030 | } |
| 2031 | else if (remote && conn_get_src(remote) && conn_get_dst(remote)) { |
| 2032 | src = conn_src(remote); |
| 2033 | dst = conn_dst(remote); |
| 2034 | } |
| 2035 | |
| 2036 | if (src && dst) |
| 2037 | ret = make_proxy_line_v1(buf, buf_len, src, dst); |
Christopher Faulet | 4bfce39 | 2021-10-22 14:33:59 +0200 | [diff] [blame] | 2038 | else |
| 2039 | ret = make_proxy_line_v1(buf, buf_len, NULL, NULL); |
| 2040 | } |
| 2041 | |
| 2042 | return ret; |
| 2043 | } |
| 2044 | |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 2045 | /* returns 0 on success */ |
| 2046 | static int cfg_parse_pp2_never_send_local(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 2047 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 2048 | char **err) |
| 2049 | { |
| 2050 | if (too_many_args(0, args, err, NULL)) |
| 2051 | return -1; |
| 2052 | pp2_never_send_local = 1; |
| 2053 | return 0; |
| 2054 | } |
| 2055 | |
Willy Tarreau | d943a04 | 2021-06-16 17:35:20 +0200 | [diff] [blame] | 2056 | /* extracts some info from the connection and appends them to buffer <buf>. The |
| 2057 | * connection's pointer, its direction, target (fe/be/srv), xprt/ctrl, source |
| 2058 | * when set, destination when set, are printed in a compact human-readable format |
| 2059 | * fitting on a single line. This is handy to complete traces or debug output. |
| 2060 | * It is permitted to pass a NULL conn pointer. The number of characters emitted |
| 2061 | * is returned. A prefix <pfx> might be prepended before the first field if not |
| 2062 | * NULL. |
| 2063 | */ |
| 2064 | int conn_append_debug_info(struct buffer *buf, const struct connection *conn, const char *pfx) |
| 2065 | { |
| 2066 | const struct listener *li; |
| 2067 | const struct server *sv; |
| 2068 | const struct proxy *px; |
| 2069 | char addr[40]; |
| 2070 | int old_len = buf->data; |
| 2071 | |
| 2072 | if (!conn) |
| 2073 | return 0; |
| 2074 | |
| 2075 | chunk_appendf(buf, "%sconn=%p(%s)", pfx ? pfx : "", conn, conn_is_back(conn) ? "OUT" : "IN"); |
| 2076 | |
| 2077 | if ((li = objt_listener(conn->target))) |
| 2078 | chunk_appendf(buf, " fe=%s", li->bind_conf->frontend->id); |
| 2079 | else if ((sv = objt_server(conn->target))) |
| 2080 | chunk_appendf(buf, " sv=%s/%s", sv->proxy->id, sv->id); |
| 2081 | else if ((px = objt_proxy(conn->target))) |
| 2082 | chunk_appendf(buf, " be=%s", px->id); |
| 2083 | |
| 2084 | chunk_appendf(buf, " %s/%s", conn_get_xprt_name(conn), conn_get_ctrl_name(conn)); |
| 2085 | |
Willy Tarreau | 030b3e6 | 2022-05-02 17:47:46 +0200 | [diff] [blame] | 2086 | if (conn->src && addr_to_str(conn->src, addr, sizeof(addr))) |
Willy Tarreau | d943a04 | 2021-06-16 17:35:20 +0200 | [diff] [blame] | 2087 | chunk_appendf(buf, " src=%s:%d", addr, get_host_port(conn->src)); |
| 2088 | |
Willy Tarreau | 030b3e6 | 2022-05-02 17:47:46 +0200 | [diff] [blame] | 2089 | if (conn->dst && addr_to_str(conn->dst, addr, sizeof(addr))) |
Willy Tarreau | d943a04 | 2021-06-16 17:35:20 +0200 | [diff] [blame] | 2090 | chunk_appendf(buf, " dst=%s:%d", addr, get_host_port(conn->dst)); |
| 2091 | |
| 2092 | return buf->data - old_len; |
| 2093 | } |
| 2094 | |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 2095 | /* return the major HTTP version as 1 or 2 depending on how the request arrived |
| 2096 | * before being processed. |
Christopher Faulet | f4dd9ae | 2021-04-14 15:40:30 +0200 | [diff] [blame] | 2097 | * |
| 2098 | * WARNING: Should be updated if a new major HTTP version is added. |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 2099 | */ |
| 2100 | static int |
| 2101 | smp_fetch_fc_http_major(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2102 | { |
Christopher Faulet | 242f8ce | 2021-04-14 15:46:49 +0200 | [diff] [blame] | 2103 | struct connection *conn = NULL; |
| 2104 | |
| 2105 | if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Willy Tarreau | fd9417b | 2022-05-18 16:23:22 +0200 | [diff] [blame] | 2106 | conn = (kw[0] == 'b') ? sc_conn(__objt_check(smp->sess->origin)->cs) : NULL; |
Christopher Faulet | 242f8ce | 2021-04-14 15:46:49 +0200 | [diff] [blame] | 2107 | else |
| 2108 | conn = (kw[0] != 'b') ? objt_conn(smp->sess->origin) : |
Willy Tarreau | fd9417b | 2022-05-18 16:23:22 +0200 | [diff] [blame] | 2109 | smp->strm ? sc_conn(smp->strm->scb) : NULL; |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 2110 | |
Christopher Faulet | f4dd9ae | 2021-04-14 15:40:30 +0200 | [diff] [blame] | 2111 | /* No connection or a connection with a RAW muxx */ |
| 2112 | if (!conn || (conn->mux && !(conn->mux->flags & MX_FL_HTX))) |
| 2113 | return 0; |
| 2114 | |
| 2115 | /* No mux install, this may change */ |
| 2116 | if (!conn->mux) { |
| 2117 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2118 | return 0; |
| 2119 | } |
| 2120 | |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 2121 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | f4dd9ae | 2021-04-14 15:40:30 +0200 | [diff] [blame] | 2122 | smp->data.u.sint = (strcmp(conn_get_mux_name(conn), "H2") == 0) ? 2 : 1; |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 2123 | return 1; |
| 2124 | } |
| 2125 | |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 2126 | /* fetch if the received connection used a PROXY protocol header */ |
| 2127 | int smp_fetch_fc_rcvd_proxy(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2128 | { |
| 2129 | struct connection *conn; |
| 2130 | |
| 2131 | conn = objt_conn(smp->sess->origin); |
| 2132 | if (!conn) |
| 2133 | return 0; |
| 2134 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 2135 | if (conn->flags & CO_FL_WAIT_XPRT) { |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 2136 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2137 | return 0; |
| 2138 | } |
| 2139 | |
| 2140 | smp->flags = 0; |
| 2141 | smp->data.type = SMP_T_BOOL; |
| 2142 | smp->data.u.sint = (conn->flags & CO_FL_RCVD_PROXY) ? 1 : 0; |
| 2143 | |
| 2144 | return 1; |
| 2145 | } |
| 2146 | |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 2147 | /* fetch the authority TLV from a PROXY protocol header */ |
| 2148 | int smp_fetch_fc_pp_authority(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2149 | { |
| 2150 | struct connection *conn; |
| 2151 | |
| 2152 | conn = objt_conn(smp->sess->origin); |
| 2153 | if (!conn) |
| 2154 | return 0; |
| 2155 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 2156 | if (conn->flags & CO_FL_WAIT_XPRT) { |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 2157 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2158 | return 0; |
| 2159 | } |
| 2160 | |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 2161 | if (!isttest(conn->proxy_authority)) |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 2162 | return 0; |
| 2163 | |
| 2164 | smp->flags = 0; |
| 2165 | smp->data.type = SMP_T_STR; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 2166 | smp->data.u.str.area = istptr(conn->proxy_authority); |
| 2167 | smp->data.u.str.data = istlen(conn->proxy_authority); |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 2168 | |
| 2169 | return 1; |
| 2170 | } |
| 2171 | |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 2172 | /* fetch the unique ID TLV from a PROXY protocol header */ |
| 2173 | int smp_fetch_fc_pp_unique_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2174 | { |
| 2175 | struct connection *conn; |
| 2176 | |
| 2177 | conn = objt_conn(smp->sess->origin); |
| 2178 | if (!conn) |
| 2179 | return 0; |
| 2180 | |
| 2181 | if (conn->flags & CO_FL_WAIT_XPRT) { |
| 2182 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2183 | return 0; |
| 2184 | } |
| 2185 | |
| 2186 | if (!isttest(conn->proxy_unique_id)) |
| 2187 | return 0; |
| 2188 | |
| 2189 | smp->flags = 0; |
| 2190 | smp->data.type = SMP_T_STR; |
Tim Duesterhus | 002bd77 | 2021-03-06 20:06:49 +0100 | [diff] [blame] | 2191 | smp->data.u.str.area = istptr(conn->proxy_unique_id); |
| 2192 | smp->data.u.str.data = istlen(conn->proxy_unique_id); |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 2193 | |
| 2194 | return 1; |
| 2195 | } |
| 2196 | |
Remi Tricot-Le Breton | 3d2093a | 2021-07-29 09:45:49 +0200 | [diff] [blame] | 2197 | /* fetch the error code of a connection */ |
Willy Tarreau | 6f74976 | 2021-11-05 17:07:03 +0100 | [diff] [blame] | 2198 | int smp_fetch_fc_err(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Remi Tricot-Le Breton | 3d2093a | 2021-07-29 09:45:49 +0200 | [diff] [blame] | 2199 | { |
| 2200 | struct connection *conn; |
| 2201 | |
Remi Tricot-Le Breton | 942c167 | 2021-09-01 15:52:15 +0200 | [diff] [blame] | 2202 | if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Willy Tarreau | fd9417b | 2022-05-18 16:23:22 +0200 | [diff] [blame] | 2203 | conn = (kw[0] == 'b') ? sc_conn(__objt_check(smp->sess->origin)->cs) : NULL; |
Remi Tricot-Le Breton | 942c167 | 2021-09-01 15:52:15 +0200 | [diff] [blame] | 2204 | else |
| 2205 | conn = (kw[0] != 'b') ? objt_conn(smp->sess->origin) : |
Willy Tarreau | fd9417b | 2022-05-18 16:23:22 +0200 | [diff] [blame] | 2206 | smp->strm ? sc_conn(smp->strm->scb) : NULL; |
Remi Tricot-Le Breton | 942c167 | 2021-09-01 15:52:15 +0200 | [diff] [blame] | 2207 | |
Remi Tricot-Le Breton | 3d2093a | 2021-07-29 09:45:49 +0200 | [diff] [blame] | 2208 | if (!conn) |
| 2209 | return 0; |
| 2210 | |
| 2211 | if (conn->flags & CO_FL_WAIT_XPRT && !conn->err_code) { |
| 2212 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2213 | return 0; |
| 2214 | } |
| 2215 | |
| 2216 | smp->flags = 0; |
| 2217 | smp->data.type = SMP_T_SINT; |
| 2218 | smp->data.u.sint = (unsigned long long int)conn->err_code; |
| 2219 | |
| 2220 | return 1; |
| 2221 | } |
| 2222 | |
| 2223 | /* fetch a string representation of the error code of a connection */ |
Willy Tarreau | 6f74976 | 2021-11-05 17:07:03 +0100 | [diff] [blame] | 2224 | int smp_fetch_fc_err_str(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Remi Tricot-Le Breton | 3d2093a | 2021-07-29 09:45:49 +0200 | [diff] [blame] | 2225 | { |
| 2226 | struct connection *conn; |
| 2227 | const char *err_code_str; |
| 2228 | |
Remi Tricot-Le Breton | 942c167 | 2021-09-01 15:52:15 +0200 | [diff] [blame] | 2229 | if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
Willy Tarreau | fd9417b | 2022-05-18 16:23:22 +0200 | [diff] [blame] | 2230 | conn = (kw[0] == 'b') ? sc_conn(__objt_check(smp->sess->origin)->cs) : NULL; |
Remi Tricot-Le Breton | 942c167 | 2021-09-01 15:52:15 +0200 | [diff] [blame] | 2231 | else |
| 2232 | conn = (kw[0] != 'b') ? objt_conn(smp->sess->origin) : |
Willy Tarreau | fd9417b | 2022-05-18 16:23:22 +0200 | [diff] [blame] | 2233 | smp->strm ? sc_conn(smp->strm->scb) : NULL; |
Remi Tricot-Le Breton | 942c167 | 2021-09-01 15:52:15 +0200 | [diff] [blame] | 2234 | |
Remi Tricot-Le Breton | 3d2093a | 2021-07-29 09:45:49 +0200 | [diff] [blame] | 2235 | if (!conn) |
| 2236 | return 0; |
| 2237 | |
| 2238 | if (conn->flags & CO_FL_WAIT_XPRT && !conn->err_code) { |
| 2239 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2240 | return 0; |
| 2241 | } |
| 2242 | |
| 2243 | err_code_str = conn_err_code_str(conn); |
| 2244 | |
| 2245 | if (!err_code_str) |
| 2246 | return 0; |
| 2247 | |
| 2248 | smp->flags = 0; |
| 2249 | smp->data.type = SMP_T_STR; |
| 2250 | smp->data.u.str.area = (char*)err_code_str; |
| 2251 | smp->data.u.str.data = strlen(err_code_str); |
| 2252 | |
| 2253 | return 1; |
| 2254 | } |
| 2255 | |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 2256 | /* Note: must not be declared <const> as its list will be overwritten. |
| 2257 | * Note: fetches that may return multiple types must be declared as the lowest |
| 2258 | * common denominator, the type that can be casted into all other ones. For |
| 2259 | * instance v4/v6 must be declared v4. |
| 2260 | */ |
| 2261 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Willy Tarreau | 6f74976 | 2021-11-05 17:07:03 +0100 | [diff] [blame] | 2262 | { "bc_err", smp_fetch_fc_err, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV }, |
| 2263 | { "bc_err_str", smp_fetch_fc_err_str, 0, NULL, SMP_T_STR, SMP_USE_L4SRV }, |
Jérôme Magnin | 8657742 | 2018-12-07 09:03:11 +0100 | [diff] [blame] | 2264 | { "bc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV }, |
Willy Tarreau | 6f74976 | 2021-11-05 17:07:03 +0100 | [diff] [blame] | 2265 | { "fc_err", smp_fetch_fc_err, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 2266 | { "fc_err_str", smp_fetch_fc_err_str, 0, NULL, SMP_T_STR, SMP_USE_L4CLI }, |
| 2267 | { "fc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 2268 | { "fc_rcvd_proxy", smp_fetch_fc_rcvd_proxy, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI }, |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 2269 | { "fc_pp_authority", smp_fetch_fc_pp_authority, 0, NULL, SMP_T_STR, SMP_USE_L4CLI }, |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 2270 | { "fc_pp_unique_id", smp_fetch_fc_pp_unique_id, 0, NULL, SMP_T_STR, SMP_USE_L4CLI }, |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 2271 | { /* END */ }, |
| 2272 | }}; |
| 2273 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2274 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 2275 | |
| 2276 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 2277 | { CFG_GLOBAL, "pp2-never-send-local", cfg_parse_pp2_never_send_local }, |
| 2278 | { /* END */ }, |
| 2279 | }}; |
| 2280 | |
| 2281 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 2282 | |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 2283 | /* private function to handle sockaddr as input for connection hash */ |
| 2284 | static void conn_calculate_hash_sockaddr(const struct sockaddr_storage *ss, |
| 2285 | char *buf, size_t *idx, |
| 2286 | enum conn_hash_params_t *hash_flags, |
| 2287 | enum conn_hash_params_t param_type_addr, |
| 2288 | enum conn_hash_params_t param_type_port) |
| 2289 | { |
| 2290 | struct sockaddr_in *addr; |
| 2291 | struct sockaddr_in6 *addr6; |
| 2292 | |
| 2293 | switch (ss->ss_family) { |
| 2294 | case AF_INET: |
| 2295 | addr = (struct sockaddr_in *)ss; |
| 2296 | |
| 2297 | conn_hash_update(buf, idx, |
| 2298 | &addr->sin_addr, sizeof(addr->sin_addr), |
| 2299 | hash_flags, param_type_addr); |
| 2300 | |
| 2301 | if (addr->sin_port) { |
| 2302 | conn_hash_update(buf, idx, |
| 2303 | &addr->sin_port, sizeof(addr->sin_port), |
| 2304 | hash_flags, param_type_port); |
| 2305 | } |
| 2306 | |
| 2307 | break; |
| 2308 | |
| 2309 | case AF_INET6: |
| 2310 | addr6 = (struct sockaddr_in6 *)ss; |
| 2311 | |
| 2312 | conn_hash_update(buf, idx, |
| 2313 | &addr6->sin6_addr, sizeof(addr6->sin6_addr), |
| 2314 | hash_flags, param_type_addr); |
| 2315 | |
| 2316 | if (addr6->sin6_port) { |
| 2317 | conn_hash_update(buf, idx, |
| 2318 | &addr6->sin6_port, sizeof(addr6->sin6_port), |
| 2319 | hash_flags, param_type_port); |
| 2320 | } |
| 2321 | |
| 2322 | break; |
| 2323 | } |
| 2324 | } |
| 2325 | |
Willy Tarreau | e5983ff | 2021-10-06 17:14:49 +0200 | [diff] [blame] | 2326 | /* Generate the hash of a connection with params as input |
| 2327 | * Each non-null field of params is taken into account for the hash calcul. |
| 2328 | */ |
| 2329 | uint64_t conn_hash_prehash(char *buf, size_t size) |
| 2330 | { |
| 2331 | return XXH64(buf, size, 0); |
| 2332 | } |
| 2333 | |
| 2334 | /* Append <data> into <buf> at <idx> offset in preparation for connection hash |
| 2335 | * calcul. <idx> is incremented beyond data <size>. In the same time, <flags> |
| 2336 | * are updated with <type> for the hash header. |
| 2337 | */ |
| 2338 | void conn_hash_update(char *buf, size_t *idx, |
| 2339 | const void *data, size_t size, |
| 2340 | enum conn_hash_params_t *flags, |
| 2341 | enum conn_hash_params_t type) |
| 2342 | { |
| 2343 | memcpy(&buf[*idx], data, size); |
| 2344 | *idx += size; |
| 2345 | *flags |= type; |
| 2346 | } |
| 2347 | |
| 2348 | uint64_t conn_hash_digest(char *buf, size_t bufsize, |
| 2349 | enum conn_hash_params_t flags) |
| 2350 | { |
| 2351 | const uint64_t flags_u64 = (uint64_t)flags; |
| 2352 | const uint64_t hash = XXH64(buf, bufsize, 0); |
| 2353 | |
| 2354 | return (flags_u64 << CONN_HASH_PAYLOAD_LEN) | CONN_HASH_GET_PAYLOAD(hash); |
| 2355 | } |
| 2356 | |
Willy Tarreau | fd21c6c | 2021-10-06 17:09:41 +0200 | [diff] [blame] | 2357 | uint64_t conn_calculate_hash(const struct conn_hash_params *params) |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 2358 | { |
| 2359 | char *buf; |
| 2360 | size_t idx = 0; |
Willy Tarreau | fd21c6c | 2021-10-06 17:09:41 +0200 | [diff] [blame] | 2361 | uint64_t hash = 0; |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 2362 | enum conn_hash_params_t hash_flags = 0; |
| 2363 | |
| 2364 | buf = trash.area; |
| 2365 | |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 2366 | conn_hash_update(buf, &idx, ¶ms->target, sizeof(params->target), &hash_flags, 0); |
Amaury Denoyelle | 1a58aca | 2021-01-22 16:47:46 +0100 | [diff] [blame] | 2367 | |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 2368 | if (params->sni_prehash) { |
| 2369 | conn_hash_update(buf, &idx, |
Amaury Denoyelle | 36441f4 | 2021-02-17 16:25:31 +0100 | [diff] [blame] | 2370 | ¶ms->sni_prehash, sizeof(params->sni_prehash), |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 2371 | &hash_flags, CONN_HASH_PARAMS_TYPE_SNI); |
| 2372 | } |
| 2373 | |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 2374 | if (params->dst_addr) { |
| 2375 | conn_calculate_hash_sockaddr(params->dst_addr, |
| 2376 | buf, &idx, &hash_flags, |
| 2377 | CONN_HASH_PARAMS_TYPE_DST_ADDR, |
| 2378 | CONN_HASH_PARAMS_TYPE_DST_PORT); |
| 2379 | } |
| 2380 | |
Amaury Denoyelle | d10a200 | 2021-02-11 19:45:19 +0100 | [diff] [blame] | 2381 | if (params->src_addr) { |
| 2382 | conn_calculate_hash_sockaddr(params->src_addr, |
| 2383 | buf, &idx, &hash_flags, |
| 2384 | CONN_HASH_PARAMS_TYPE_SRC_ADDR, |
| 2385 | CONN_HASH_PARAMS_TYPE_SRC_PORT); |
| 2386 | } |
| 2387 | |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 2388 | if (params->proxy_prehash) { |
| 2389 | conn_hash_update(buf, &idx, |
Amaury Denoyelle | 36441f4 | 2021-02-17 16:25:31 +0100 | [diff] [blame] | 2390 | ¶ms->proxy_prehash, sizeof(params->proxy_prehash), |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 2391 | &hash_flags, CONN_HASH_PARAMS_TYPE_PROXY); |
| 2392 | } |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 2393 | |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 2394 | hash = conn_hash_digest(buf, idx, hash_flags); |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 2395 | return hash; |
| 2396 | } |
Amaury Denoyelle | 4837293 | 2021-09-16 12:15:12 +0200 | [diff] [blame] | 2397 | |
| 2398 | /* Handler of the task of mux_stopping_data. |
| 2399 | * Called on soft-stop. |
| 2400 | */ |
| 2401 | static struct task *mux_stopping_process(struct task *t, void *ctx, unsigned int state) |
| 2402 | { |
| 2403 | struct connection *conn, *back; |
| 2404 | |
| 2405 | list_for_each_entry_safe(conn, back, &mux_stopping_data[tid].list, stopping_list) { |
| 2406 | if (conn->mux && conn->mux->wake) |
| 2407 | conn->mux->wake(conn); |
| 2408 | } |
| 2409 | |
| 2410 | return t; |
| 2411 | } |
| 2412 | |
| 2413 | static int allocate_mux_cleanup(void) |
| 2414 | { |
| 2415 | /* allocates the thread bound mux_stopping_data task */ |
Willy Tarreau | beeabf5 | 2021-10-01 18:23:30 +0200 | [diff] [blame] | 2416 | mux_stopping_data[tid].task = task_new_here(); |
Amaury Denoyelle | 4837293 | 2021-09-16 12:15:12 +0200 | [diff] [blame] | 2417 | if (!mux_stopping_data[tid].task) { |
| 2418 | ha_alert("Failed to allocate the task for connection cleanup on thread %d.\n", tid); |
| 2419 | return 0; |
| 2420 | } |
| 2421 | |
| 2422 | mux_stopping_data[tid].task->process = mux_stopping_process; |
| 2423 | LIST_INIT(&mux_stopping_data[tid].list); |
| 2424 | |
| 2425 | return 1; |
| 2426 | } |
| 2427 | REGISTER_PER_THREAD_ALLOC(allocate_mux_cleanup); |
| 2428 | |
| 2429 | static int deallocate_mux_cleanup(void) |
| 2430 | { |
| 2431 | task_destroy(mux_stopping_data[tid].task); |
| 2432 | return 1; |
| 2433 | } |
| 2434 | REGISTER_PER_THREAD_FREE(deallocate_mux_cleanup); |
Willy Tarreau | faafe4b | 2022-04-27 18:53:07 +0200 | [diff] [blame] | 2435 | |
| 2436 | static void deinit_idle_conns(void) |
| 2437 | { |
| 2438 | int i; |
| 2439 | |
| 2440 | for (i = 0; i < global.nbthread; i++) { |
| 2441 | if (idle_conns[i].cleanup_task) |
| 2442 | task_destroy(idle_conns[i].cleanup_task); |
| 2443 | } |
| 2444 | } |
| 2445 | REGISTER_POST_DEINIT(deinit_idle_conns); |