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 | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 15 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 16 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 17 | #include <haproxy/connection.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 18 | #include <haproxy/fd.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 19 | #include <haproxy/frontend.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 20 | #include <haproxy/hash.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 21 | #include <haproxy/log-t.h> |
Willy Tarreau | 7a00efb | 2020-06-02 17:02:59 +0200 | [diff] [blame] | 22 | #include <haproxy/namespace.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 23 | #include <haproxy/net_helper.h> |
Willy Tarreau | fc77454 | 2020-06-04 17:31:04 +0200 | [diff] [blame] | 24 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 25 | #include <haproxy/sample.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 26 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 27 | #include <haproxy/stream_interface.h> |
Willy Tarreau | 908908e | 2021-05-08 13:07:31 +0200 | [diff] [blame] | 28 | #include <haproxy/tools.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 29 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 30 | |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 31 | DECLARE_POOL(pool_head_connection, "connection", sizeof(struct connection)); |
| 32 | DECLARE_POOL(pool_head_connstream, "conn_stream", sizeof(struct conn_stream)); |
| 33 | DECLARE_POOL(pool_head_conn_hash_node, "conn_hash_node", sizeof(struct conn_hash_node)); |
| 34 | DECLARE_POOL(pool_head_sockaddr, "sockaddr", sizeof(struct sockaddr_storage)); |
| 35 | DECLARE_POOL(pool_head_authority, "authority", PP2_AUTHORITY_MAX); |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 36 | |
Willy Tarreau | 4d82bf5 | 2020-06-28 00:19:17 +0200 | [diff] [blame] | 37 | struct idle_conns idle_conns[MAX_THREADS] = { }; |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 38 | struct xprt_ops *registered_xprt[XPRT_ENTRIES] = { NULL, }; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 39 | |
Christopher Faulet | 32f61c0 | 2018-04-10 14:33:41 +0200 | [diff] [blame] | 40 | /* List head of all known muxes for PROTO */ |
| 41 | struct mux_proto_list mux_proto_list = { |
| 42 | .list = LIST_HEAD_INIT(mux_proto_list.list) |
Willy Tarreau | 2386be6 | 2017-09-21 19:40:52 +0200 | [diff] [blame] | 43 | }; |
| 44 | |
Amaury Denoyelle | d3a88c1 | 2021-05-03 10:47:51 +0200 | [diff] [blame] | 45 | struct mux_stopping_data mux_stopping_data[MAX_THREADS]; |
| 46 | |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 47 | /* disables sending of proxy-protocol-v2's LOCAL command */ |
| 48 | static int pp2_never_send_local; |
| 49 | |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 50 | int conn_create_mux(struct connection *conn) |
| 51 | { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 52 | if (conn_is_back(conn)) { |
| 53 | struct server *srv; |
| 54 | struct conn_stream *cs = conn->ctx; |
Christopher Faulet | 14cd316 | 2020-04-16 14:50:06 +0200 | [diff] [blame] | 55 | struct session *sess = conn->owner; |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 56 | |
| 57 | if (conn->flags & CO_FL_ERROR) |
| 58 | goto fail; |
Olivier Houchard | a8a415d | 2020-01-23 13:15:14 +0100 | [diff] [blame] | 59 | |
Christopher Faulet | 14cd316 | 2020-04-16 14:50:06 +0200 | [diff] [blame] | 60 | if (sess && obj_type(sess->origin) == OBJ_TYPE_CHECK) { |
Willy Tarreau | 38b4d2e | 2020-11-20 17:08:15 +0100 | [diff] [blame] | 61 | if (conn_install_mux_chk(conn, conn->ctx, sess) < 0) |
Christopher Faulet | 14cd316 | 2020-04-16 14:50:06 +0200 | [diff] [blame] | 62 | goto fail; |
| 63 | } |
Amaury Denoyelle | 6037887 | 2021-10-28 16:36:11 +0200 | [diff] [blame] | 64 | else if (conn_install_mux_be(conn, conn->ctx, sess, NULL) < 0) |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 65 | goto fail; |
| 66 | srv = objt_server(conn->target); |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 67 | |
| 68 | /* If we're doing http-reuse always, and the connection is not |
| 69 | * private with available streams (an http2 connection), add it |
| 70 | * to the available list, so that others can use it right |
| 71 | * away. If the connection is private, add it in the session |
| 72 | * server list. |
| 73 | */ |
Christopher Faulet | 2883fcf | 2020-07-01 14:59:43 +0200 | [diff] [blame] | 74 | 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] | 75 | !(conn->flags & CO_FL_PRIVATE) && conn->mux->avail_streams(conn) > 0) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 76 | 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] | 77 | else if (conn->flags & CO_FL_PRIVATE) { |
Ilya Shipitsin | 6b79f38 | 2020-07-23 00:32:55 +0500 | [diff] [blame] | 78 | /* 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] | 79 | session_add_conn(sess, conn, conn->target); |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 80 | } |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 81 | return 0; |
| 82 | fail: |
| 83 | /* let the upper layer know the connection failed */ |
| 84 | cs->data_cb->wake(cs); |
| 85 | return -1; |
| 86 | } else |
| 87 | return conn_complete_session(conn); |
| 88 | |
| 89 | } |
| 90 | |
Amaury Denoyelle | 9262101 | 2021-10-18 14:32:36 +0200 | [diff] [blame] | 91 | /* Set the ALPN of connection <conn> to <alpn>. If force is false, <alpn> must |
| 92 | * be a subset or identical to the registered protos for the parent SSL_CTX. |
| 93 | * In this case <alpn> must be a single protocol value, not a list. |
| 94 | * |
| 95 | * Returns 0 if ALPN is updated else -1. |
| 96 | */ |
| 97 | int conn_update_alpn(struct connection *conn, const struct ist alpn, int force) |
| 98 | { |
| 99 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 100 | size_t alpn_len = istlen(alpn); |
| 101 | char *ctx_alpn_str = NULL; |
| 102 | int ctx_alpn_len = 0, found = 0; |
| 103 | |
| 104 | /* if not force, first search if alpn is a subset or identical to the |
| 105 | * parent SSL_CTX. |
| 106 | */ |
| 107 | if (!force) { |
| 108 | /* retrieve the SSL_CTX according to the connection side. */ |
| 109 | if (conn_is_back(conn)) { |
| 110 | if (obj_type(conn->target) == OBJ_TYPE_SERVER) { |
| 111 | struct server *srv = __objt_server(conn->target); |
| 112 | ctx_alpn_str = srv->ssl_ctx.alpn_str; |
| 113 | ctx_alpn_len = srv->ssl_ctx.alpn_len; |
| 114 | } |
| 115 | } |
| 116 | else { |
| 117 | struct session *sess = conn->owner; |
| 118 | struct listener *li = sess->listener; |
| 119 | |
| 120 | if (li->bind_conf && li->bind_conf->is_ssl) { |
| 121 | ctx_alpn_str = li->bind_conf->ssl_conf.alpn_str; |
| 122 | ctx_alpn_len = li->bind_conf->ssl_conf.alpn_len; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | if (ctx_alpn_str) { |
| 127 | /* search if ALPN is present in SSL_CTX ALPN before |
| 128 | * using it. |
| 129 | */ |
| 130 | while (ctx_alpn_len) { |
| 131 | /* skip ALPN whose size is not 8 */ |
| 132 | if (*ctx_alpn_str != alpn_len - 1) { |
| 133 | ctx_alpn_len -= *ctx_alpn_str + 1; |
| 134 | } |
| 135 | else { |
| 136 | if (isteqi(ist2(ctx_alpn_str, alpn_len), alpn)) { |
| 137 | found = 1; |
| 138 | break; |
| 139 | } |
| 140 | } |
| 141 | ctx_alpn_str += *ctx_alpn_str + 1; |
| 142 | |
| 143 | /* This indicates an invalid ALPN formatted |
| 144 | * string and should never happen. */ |
| 145 | BUG_ON(ctx_alpn_len < 0); |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | if (found || force) { |
| 151 | ssl_sock_set_alpn(conn, (const uchar *)istptr(alpn), istlen(alpn)); |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | #endif |
| 156 | return -1; |
| 157 | } |
| 158 | |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 159 | /* Send a message over an established connection. It makes use of send() and |
| 160 | * returns the same return code and errno. If the socket layer is not ready yet |
| 161 | * then -1 is returned and ENOTSOCK is set into errno. If the fd is not marked |
| 162 | * as ready, or if EAGAIN or ENOTCONN is returned, then we return 0. It returns |
| 163 | * EMSGSIZE if called with a zero length message. The purpose is to simplify |
| 164 | * some rare attempts to directly write on the socket from above the connection |
| 165 | * (typically send_proxy). In case of EAGAIN, the fd is marked as "cant_send". |
| 166 | * It automatically retries on EINTR. Other errors cause the connection to be |
| 167 | * 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] | 168 | * first one which is the connection instead of the file descriptor. <flags> |
| 169 | * only support CO_SFL_MSG_MORE. |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 170 | */ |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 171 | 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] | 172 | { |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 173 | const struct buffer buffer = b_make((char*)buf, len, 0, len); |
| 174 | const struct xprt_ops *xprt = xprt_get(XPRT_RAW); |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 175 | int ret; |
| 176 | |
| 177 | ret = -1; |
| 178 | errno = ENOTSOCK; |
| 179 | |
| 180 | if (conn->flags & CO_FL_SOCK_WR_SH) |
| 181 | goto fail; |
| 182 | |
| 183 | if (!conn_ctrl_ready(conn)) |
| 184 | goto fail; |
| 185 | |
| 186 | errno = EMSGSIZE; |
| 187 | if (!len) |
| 188 | goto fail; |
| 189 | |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 190 | /* snd_buf() already takes care of updating conn->flags and handling |
| 191 | * the FD polling status. |
| 192 | */ |
| 193 | ret = xprt->snd_buf(conn, NULL, &buffer, buffer.data, flags); |
| 194 | if (conn->flags & CO_FL_ERROR) |
| 195 | ret = -1; |
| 196 | return ret; |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 197 | fail: |
| 198 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH | CO_FL_ERROR; |
| 199 | return ret; |
| 200 | } |
| 201 | |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 202 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 203 | * The event subscriber <es> is not allowed to change from a previous call as |
| 204 | * long as at least one event is still subscribed. The <event_type> must only |
| 205 | * 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] | 206 | */ |
| 207 | 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] | 208 | { |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 209 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 210 | BUG_ON(conn->subs && conn->subs != es); |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 211 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 212 | es->events &= ~event_type; |
| 213 | if (!es->events) |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 214 | conn->subs = NULL; |
| 215 | |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 216 | if (conn_ctrl_ready(conn) && conn->ctrl->ignore_events) |
| 217 | conn->ctrl->ignore_events(conn, event_type); |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 218 | |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 219 | return 0; |
| 220 | } |
| 221 | |
Willy Tarreau | 7e59c0a | 2020-02-28 14:24:49 +0100 | [diff] [blame] | 222 | /* Called from the upper layer, to subscribe <es> to events <event_type>. |
| 223 | * 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] | 224 | * previous call to subscribe(). If the connection's ctrl layer is ready, |
| 225 | * the wait_event is immediately woken up and the subcription is cancelled. |
| 226 | * It always returns zero. |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 227 | */ |
| 228 | 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] | 229 | { |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 230 | int ret = 0; |
| 231 | |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 232 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 233 | BUG_ON(conn->subs && conn->subs != es); |
Willy Tarreau | 7872d1f | 2020-01-10 07:06:05 +0100 | [diff] [blame] | 234 | |
Willy Tarreau | 7e59c0a | 2020-02-28 14:24:49 +0100 | [diff] [blame] | 235 | if (conn->subs && (conn->subs->events & event_type) == event_type) |
| 236 | return 0; |
| 237 | |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 238 | if (conn_ctrl_ready(conn) && conn->ctrl->check_events) { |
| 239 | ret = conn->ctrl->check_events(conn, event_type); |
| 240 | if (ret) |
| 241 | tasklet_wakeup(es->tasklet); |
Willy Tarreau | d1d14c3 | 2020-02-21 10:34:19 +0100 | [diff] [blame] | 242 | } |
Willy Tarreau | 746b051 | 2020-12-11 17:06:11 +0100 | [diff] [blame] | 243 | |
| 244 | es->events = (es->events | event_type) & ~ret; |
| 245 | conn->subs = es->events ? es : NULL; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 246 | return 0; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 247 | } |
| 248 | |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 249 | /* Drains possibly pending incoming data on the connection and update the flags |
| 250 | * accordingly. This is used to know whether we need to disable lingering on |
| 251 | * close. Returns non-zero if it is safe to close without disabling lingering, |
| 252 | * otherwise zero. The CO_FL_SOCK_RD_SH flag may also be updated if the incoming |
| 253 | * shutdown was reported by the ->drain() function. |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 254 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 255 | int conn_ctrl_drain(struct connection *conn) |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 256 | { |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 257 | int ret = 0; |
Willy Tarreau | e215bba | 2018-08-24 14:31:53 +0200 | [diff] [blame] | 258 | |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 259 | if (!conn_ctrl_ready(conn) || conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) |
| 260 | ret = 1; |
| 261 | else if (conn->ctrl->drain) { |
| 262 | ret = conn->ctrl->drain(conn); |
| 263 | if (ret) |
| 264 | conn->flags |= CO_FL_SOCK_RD_SH; |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 265 | } |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 266 | return ret; |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 267 | } |
| 268 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 269 | /* |
| 270 | * Get data length from tlv |
| 271 | */ |
Tim Duesterhus | ba837ec | 2020-03-05 23:11:02 +0100 | [diff] [blame] | 272 | static inline size_t get_tlv_length(const struct tlv *src) |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 273 | { |
| 274 | return (src->length_hi << 8) | src->length_lo; |
| 275 | } |
| 276 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 277 | /* This handshake handler waits a PROXY protocol header at the beginning of the |
| 278 | * raw data stream. The header looks like this : |
| 279 | * |
| 280 | * "PROXY" <SP> PROTO <SP> SRC3 <SP> DST3 <SP> SRC4 <SP> <DST4> "\r\n" |
| 281 | * |
| 282 | * There must be exactly one space between each field. Fields are : |
| 283 | * - PROTO : layer 4 protocol, which must be "TCP4" or "TCP6". |
| 284 | * - SRC3 : layer 3 (eg: IP) source address in standard text form |
| 285 | * - DST3 : layer 3 (eg: IP) destination address in standard text form |
| 286 | * - SRC4 : layer 4 (eg: TCP port) source address in standard text form |
| 287 | * - DST4 : layer 4 (eg: TCP port) destination address in standard text form |
| 288 | * |
| 289 | * This line MUST be at the beginning of the buffer and MUST NOT wrap. |
| 290 | * |
| 291 | * The header line is small and in all cases smaller than the smallest normal |
| 292 | * TCP MSS. So it MUST always be delivered as one segment, which ensures we |
| 293 | * can safely use MSG_PEEK and avoid buffering. |
| 294 | * |
| 295 | * Once the data is fetched, the values are set in the connection's address |
| 296 | * fields, and data are removed from the socket's buffer. The function returns |
| 297 | * zero if it needs to wait for more data or if it fails, or 1 if it completed |
| 298 | * and removed itself. |
| 299 | */ |
| 300 | int conn_recv_proxy(struct connection *conn, int flag) |
| 301 | { |
| 302 | char *line, *end; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 303 | struct proxy_hdr_v2 *hdr_v2; |
| 304 | const char v2sig[] = PP2_SIGNATURE; |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 305 | size_t total_v2_len; |
Tim Duesterhus | ba837ec | 2020-03-05 23:11:02 +0100 | [diff] [blame] | 306 | size_t tlv_offset = 0; |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 307 | int ret; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 308 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 309 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 310 | goto fail; |
| 311 | |
Willy Tarreau | 9b7587a | 2020-10-15 07:32:10 +0200 | [diff] [blame] | 312 | if (!sockaddr_alloc(&conn->src, NULL, 0) || !sockaddr_alloc(&conn->dst, NULL, 0)) |
Willy Tarreau | ca79f59 | 2019-07-17 19:04:47 +0200 | [diff] [blame] | 313 | goto fail; |
| 314 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 315 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 316 | goto not_ready; |
Willy Tarreau | fd803bb | 2014-01-20 15:13:07 +0100 | [diff] [blame] | 317 | |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 318 | while (1) { |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 319 | ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK); |
| 320 | if (ret < 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 321 | if (errno == EINTR) |
| 322 | continue; |
| 323 | if (errno == EAGAIN) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 324 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 325 | goto not_ready; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 326 | } |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 327 | goto recv_abort; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 328 | } |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 329 | trash.data = ret; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 330 | break; |
| 331 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 332 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 333 | if (!trash.data) { |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 334 | /* client shutdown */ |
| 335 | conn->err_code = CO_ER_PRX_EMPTY; |
| 336 | goto fail; |
| 337 | } |
| 338 | |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 339 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 340 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 341 | if (trash.data < 6) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 342 | goto missing; |
| 343 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 344 | line = trash.area; |
| 345 | end = trash.area + trash.data; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 346 | |
| 347 | /* Decode a possible proxy request, fail early if it does not match */ |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 348 | if (strncmp(line, "PROXY ", 6) != 0) |
| 349 | goto not_v1; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 350 | |
| 351 | line += 6; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 352 | if (trash.data < 9) /* shortest possible line */ |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 353 | goto missing; |
| 354 | |
David CARLIER | 42ff05e | 2016-03-24 09:22:36 +0000 | [diff] [blame] | 355 | if (memcmp(line, "TCP4 ", 5) == 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 356 | u32 src3, dst3, sport, dport; |
| 357 | |
| 358 | line += 5; |
| 359 | |
| 360 | src3 = inetaddr_host_lim_ret(line, end, &line); |
| 361 | if (line == end) |
| 362 | goto missing; |
| 363 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 364 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 365 | |
| 366 | dst3 = inetaddr_host_lim_ret(line, end, &line); |
| 367 | if (line == end) |
| 368 | goto missing; |
| 369 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 370 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 371 | |
| 372 | sport = read_uint((const char **)&line, end); |
| 373 | if (line == end) |
| 374 | goto missing; |
| 375 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 376 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 377 | |
| 378 | dport = read_uint((const char **)&line, end); |
| 379 | if (line > end - 2) |
| 380 | goto missing; |
| 381 | if (*line++ != '\r') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 382 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 383 | if (*line++ != '\n') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 384 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 385 | |
| 386 | /* update the session's addresses and mark them set */ |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 387 | ((struct sockaddr_in *)conn->src)->sin_family = AF_INET; |
| 388 | ((struct sockaddr_in *)conn->src)->sin_addr.s_addr = htonl(src3); |
| 389 | ((struct sockaddr_in *)conn->src)->sin_port = htons(sport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 390 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 391 | ((struct sockaddr_in *)conn->dst)->sin_family = AF_INET; |
| 392 | ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr = htonl(dst3); |
| 393 | ((struct sockaddr_in *)conn->dst)->sin_port = htons(dport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 394 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 395 | } |
David CARLIER | 42ff05e | 2016-03-24 09:22:36 +0000 | [diff] [blame] | 396 | else if (memcmp(line, "TCP6 ", 5) == 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 397 | u32 sport, dport; |
| 398 | char *src_s; |
| 399 | char *dst_s, *sport_s, *dport_s; |
| 400 | struct in6_addr src3, dst3; |
| 401 | |
| 402 | line += 5; |
| 403 | |
| 404 | src_s = line; |
| 405 | dst_s = sport_s = dport_s = NULL; |
| 406 | while (1) { |
| 407 | if (line > end - 2) { |
| 408 | goto missing; |
| 409 | } |
| 410 | else if (*line == '\r') { |
| 411 | *line = 0; |
| 412 | line++; |
| 413 | if (*line++ != '\n') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 414 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 415 | break; |
| 416 | } |
| 417 | |
| 418 | if (*line == ' ') { |
| 419 | *line = 0; |
| 420 | if (!dst_s) |
| 421 | dst_s = line + 1; |
| 422 | else if (!sport_s) |
| 423 | sport_s = line + 1; |
| 424 | else if (!dport_s) |
| 425 | dport_s = line + 1; |
| 426 | } |
| 427 | line++; |
| 428 | } |
| 429 | |
| 430 | if (!dst_s || !sport_s || !dport_s) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 431 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 432 | |
| 433 | sport = read_uint((const char **)&sport_s,dport_s - 1); |
| 434 | if (*sport_s != 0) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 435 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 436 | |
| 437 | dport = read_uint((const char **)&dport_s,line - 2); |
| 438 | if (*dport_s != 0) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 439 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 440 | |
| 441 | if (inet_pton(AF_INET6, src_s, (void *)&src3) != 1) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 442 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 443 | |
| 444 | if (inet_pton(AF_INET6, dst_s, (void *)&dst3) != 1) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 445 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 446 | |
| 447 | /* update the session's addresses and mark them set */ |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 448 | ((struct sockaddr_in6 *)conn->src)->sin6_family = AF_INET6; |
| 449 | memcpy(&((struct sockaddr_in6 *)conn->src)->sin6_addr, &src3, sizeof(struct in6_addr)); |
| 450 | ((struct sockaddr_in6 *)conn->src)->sin6_port = htons(sport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 451 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 452 | ((struct sockaddr_in6 *)conn->dst)->sin6_family = AF_INET6; |
| 453 | memcpy(&((struct sockaddr_in6 *)conn->dst)->sin6_addr, &dst3, sizeof(struct in6_addr)); |
| 454 | ((struct sockaddr_in6 *)conn->dst)->sin6_port = htons(dport); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 455 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 456 | } |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 457 | else if (memcmp(line, "UNKNOWN\r\n", 9) == 0) { |
| 458 | /* This can be a UNIX socket forwarded by an haproxy upstream */ |
| 459 | line += 9; |
| 460 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 461 | else { |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 462 | /* The protocol does not match something known (TCP4/TCP6/UNKNOWN) */ |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 463 | conn->err_code = CO_ER_PRX_BAD_PROTO; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 464 | goto fail; |
| 465 | } |
| 466 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 467 | trash.data = line - trash.area; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 468 | goto eat_header; |
| 469 | |
| 470 | not_v1: |
| 471 | /* try PPv2 */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 472 | if (trash.data < PP2_HEADER_LEN) |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 473 | goto missing; |
| 474 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 475 | hdr_v2 = (struct proxy_hdr_v2 *) trash.area; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 476 | |
| 477 | if (memcmp(hdr_v2->sig, v2sig, PP2_SIGNATURE_LEN) != 0 || |
| 478 | (hdr_v2->ver_cmd & PP2_VERSION_MASK) != PP2_VERSION) { |
| 479 | conn->err_code = CO_ER_PRX_NOT_HDR; |
| 480 | goto fail; |
| 481 | } |
| 482 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 483 | total_v2_len = PP2_HEADER_LEN + ntohs(hdr_v2->len); |
| 484 | if (trash.data < total_v2_len) |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 485 | goto missing; |
| 486 | |
| 487 | switch (hdr_v2->ver_cmd & PP2_CMD_MASK) { |
| 488 | case 0x01: /* PROXY command */ |
| 489 | switch (hdr_v2->fam) { |
| 490 | case 0x11: /* TCPv4 */ |
KOVACS Krisztian | efd3aa9 | 2014-11-19 10:53:20 +0100 | [diff] [blame] | 491 | if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET) |
| 492 | goto bad_header; |
| 493 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 494 | ((struct sockaddr_in *)conn->src)->sin_family = AF_INET; |
| 495 | ((struct sockaddr_in *)conn->src)->sin_addr.s_addr = hdr_v2->addr.ip4.src_addr; |
| 496 | ((struct sockaddr_in *)conn->src)->sin_port = hdr_v2->addr.ip4.src_port; |
| 497 | ((struct sockaddr_in *)conn->dst)->sin_family = AF_INET; |
| 498 | ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr = hdr_v2->addr.ip4.dst_addr; |
| 499 | ((struct sockaddr_in *)conn->dst)->sin_port = hdr_v2->addr.ip4.dst_port; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 500 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 501 | tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 502 | break; |
| 503 | case 0x21: /* TCPv6 */ |
KOVACS Krisztian | efd3aa9 | 2014-11-19 10:53:20 +0100 | [diff] [blame] | 504 | if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET6) |
| 505 | goto bad_header; |
| 506 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 507 | ((struct sockaddr_in6 *)conn->src)->sin6_family = AF_INET6; |
| 508 | memcpy(&((struct sockaddr_in6 *)conn->src)->sin6_addr, hdr_v2->addr.ip6.src_addr, 16); |
| 509 | ((struct sockaddr_in6 *)conn->src)->sin6_port = hdr_v2->addr.ip6.src_port; |
| 510 | ((struct sockaddr_in6 *)conn->dst)->sin6_family = AF_INET6; |
| 511 | memcpy(&((struct sockaddr_in6 *)conn->dst)->sin6_addr, hdr_v2->addr.ip6.dst_addr, 16); |
| 512 | ((struct sockaddr_in6 *)conn->dst)->sin6_port = hdr_v2->addr.ip6.dst_port; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 513 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 514 | tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET6; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 515 | break; |
| 516 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 517 | |
| 518 | /* TLV parsing */ |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 519 | while (tlv_offset < total_v2_len) { |
| 520 | struct tlv *tlv_packet; |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 521 | struct ist tlv; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 522 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 523 | /* Verify that we have at least TLV_HEADER_SIZE bytes left */ |
| 524 | if (tlv_offset + TLV_HEADER_SIZE > total_v2_len) |
| 525 | goto bad_header; |
| 526 | |
| 527 | tlv_packet = (struct tlv *) &trash.area[tlv_offset]; |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 528 | tlv = ist2((const char *)tlv_packet->value, get_tlv_length(tlv_packet)); |
| 529 | tlv_offset += istlen(tlv) + TLV_HEADER_SIZE; |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 530 | |
| 531 | /* Verify that the TLV length does not exceed the total PROXYv2 length */ |
| 532 | if (tlv_offset > total_v2_len) |
| 533 | goto bad_header; |
| 534 | |
| 535 | switch (tlv_packet->type) { |
| 536 | case PP2_TYPE_CRC32C: { |
| 537 | uint32_t n_crc32c; |
| 538 | |
| 539 | /* Verify that this TLV is exactly 4 bytes long */ |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 540 | if (istlen(tlv) != 4) |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 541 | goto bad_header; |
| 542 | |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 543 | n_crc32c = read_n32(istptr(tlv)); |
| 544 | write_n32(istptr(tlv), 0); // compute with CRC==0 |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 545 | |
| 546 | if (hash_crc32c(trash.area, total_v2_len) != n_crc32c) |
| 547 | goto bad_header; |
| 548 | break; |
| 549 | } |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 550 | #ifdef USE_NS |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 551 | case PP2_TYPE_NETNS: { |
| 552 | const struct netns_entry *ns; |
| 553 | |
Tim Duesterhus | 56c176a | 2021-03-06 20:06:51 +0100 | [diff] [blame] | 554 | ns = netns_store_lookup(istptr(tlv), istlen(tlv)); |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 555 | if (ns) |
| 556 | conn->proxy_netns = ns; |
| 557 | break; |
| 558 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 559 | #endif |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 560 | case PP2_TYPE_AUTHORITY: { |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 561 | if (istlen(tlv) > PP2_AUTHORITY_MAX) |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 562 | goto bad_header; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 563 | conn->proxy_authority = ist2(pool_alloc(pool_head_authority), 0); |
| 564 | if (!isttest(conn->proxy_authority)) |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 565 | goto fail; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 566 | if (istcpy(&conn->proxy_authority, tlv, PP2_AUTHORITY_MAX) < 0) { |
| 567 | /* This is technically unreachable, because we verified above |
| 568 | * that the TLV value fits. |
| 569 | */ |
| 570 | goto fail; |
| 571 | } |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 572 | break; |
| 573 | } |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 574 | case PP2_TYPE_UNIQUE_ID: { |
Tim Duesterhus | 002bd77 | 2021-03-06 20:06:49 +0100 | [diff] [blame] | 575 | if (istlen(tlv) > UNIQUEID_LEN) |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 576 | goto bad_header; |
Tim Duesterhus | 2b7f6c2 | 2020-03-14 13:07:05 +0100 | [diff] [blame] | 577 | conn->proxy_unique_id = ist2(pool_alloc(pool_head_uniqueid), 0); |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 578 | if (!isttest(conn->proxy_unique_id)) |
| 579 | goto fail; |
| 580 | if (istcpy(&conn->proxy_unique_id, tlv, UNIQUEID_LEN) < 0) { |
| 581 | /* This is technically unreachable, because we verified above |
| 582 | * that the TLV value fits. |
| 583 | */ |
| 584 | goto fail; |
| 585 | } |
| 586 | break; |
| 587 | } |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 588 | default: |
| 589 | break; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 590 | } |
| 591 | } |
| 592 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 593 | /* Verify that the PROXYv2 header ends at a TLV boundary. |
| 594 | * This is technically unreachable, because the TLV parsing already |
| 595 | * verifies that a TLV does not exceed the total length and also |
| 596 | * that there is space for a TLV header. |
| 597 | */ |
| 598 | if (tlv_offset != total_v2_len) |
| 599 | goto bad_header; |
| 600 | |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 601 | /* unsupported protocol, keep local connection address */ |
| 602 | break; |
| 603 | case 0x00: /* LOCAL command */ |
| 604 | /* keep local connection address for LOCAL */ |
| 605 | break; |
| 606 | default: |
| 607 | goto bad_header; /* not a supported command */ |
| 608 | } |
| 609 | |
Tim Duesterhus | 488ee7f | 2020-03-05 22:55:20 +0100 | [diff] [blame] | 610 | trash.data = total_v2_len; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 611 | goto eat_header; |
| 612 | |
| 613 | eat_header: |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 614 | /* remove the PROXY line from the request. For this we re-read the |
| 615 | * exact line at once. If we don't get the exact same result, we |
| 616 | * fail. |
| 617 | */ |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 618 | while (1) { |
Tim Duesterhus | a8692f3 | 2020-03-13 12:34:25 +0100 | [diff] [blame] | 619 | ssize_t len2 = recv(conn->handle.fd, trash.area, trash.data, 0); |
| 620 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 621 | if (len2 < 0 && errno == EINTR) |
| 622 | continue; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 623 | if (len2 != trash.data) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 624 | goto recv_abort; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 625 | break; |
| 626 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 627 | |
| 628 | conn->flags &= ~flag; |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 629 | conn->flags |= CO_FL_RCVD_PROXY; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 630 | return 1; |
| 631 | |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 632 | not_ready: |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 633 | return 0; |
| 634 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 635 | missing: |
| 636 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 637 | * we have not read anything. Otherwise we need to fail because we won't |
| 638 | * be able to poll anymore. |
| 639 | */ |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 640 | conn->err_code = CO_ER_PRX_TRUNCATED; |
| 641 | goto fail; |
| 642 | |
| 643 | bad_header: |
| 644 | /* This is not a valid proxy protocol header */ |
| 645 | conn->err_code = CO_ER_PRX_BAD_HDR; |
| 646 | goto fail; |
| 647 | |
| 648 | recv_abort: |
| 649 | conn->err_code = CO_ER_PRX_ABORT; |
Willy Tarreau | 26f4a04 | 2013-12-04 23:44:10 +0100 | [diff] [blame] | 650 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 651 | goto fail; |
| 652 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 653 | fail: |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 654 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 655 | return 0; |
| 656 | } |
| 657 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 658 | /* This handshake handler waits a NetScaler Client IP insertion header |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 659 | * at the beginning of the raw data stream. The header format is |
| 660 | * described in doc/netscaler-client-ip-insertion-protocol.txt |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 661 | * |
| 662 | * This line MUST be at the beginning of the buffer and MUST NOT be |
| 663 | * fragmented. |
| 664 | * |
| 665 | * The header line is small and in all cases smaller than the smallest normal |
| 666 | * TCP MSS. So it MUST always be delivered as one segment, which ensures we |
| 667 | * can safely use MSG_PEEK and avoid buffering. |
| 668 | * |
| 669 | * Once the data is fetched, the values are set in the connection's address |
| 670 | * fields, and data are removed from the socket's buffer. The function returns |
| 671 | * zero if it needs to wait for more data or if it fails, or 1 if it completed |
| 672 | * and removed itself. |
| 673 | */ |
| 674 | int conn_recv_netscaler_cip(struct connection *conn, int flag) |
| 675 | { |
| 676 | char *line; |
Bertrand Jacquin | 7d668f9 | 2017-12-13 01:23:39 +0000 | [diff] [blame] | 677 | uint32_t hdr_len; |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 678 | uint8_t ip_ver; |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 679 | int ret; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 680 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 681 | if (!conn_ctrl_ready(conn)) |
| 682 | goto fail; |
| 683 | |
Willy Tarreau | 9b7587a | 2020-10-15 07:32:10 +0200 | [diff] [blame] | 684 | if (!sockaddr_alloc(&conn->src, NULL, 0) || !sockaddr_alloc(&conn->dst, NULL, 0)) |
Olivier Houchard | 1a9dbe5 | 2020-01-22 15:31:09 +0100 | [diff] [blame] | 685 | goto fail; |
| 686 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 687 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 688 | goto not_ready; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 689 | |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 690 | while (1) { |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 691 | ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK); |
| 692 | if (ret < 0) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 693 | if (errno == EINTR) |
| 694 | continue; |
| 695 | if (errno == EAGAIN) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 696 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 697 | goto not_ready; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 698 | } |
| 699 | goto recv_abort; |
| 700 | } |
Willy Tarreau | b406b87 | 2018-08-22 05:20:32 +0200 | [diff] [blame] | 701 | trash.data = ret; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 702 | break; |
| 703 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 704 | |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 705 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 706 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 707 | if (!trash.data) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 708 | /* client shutdown */ |
| 709 | conn->err_code = CO_ER_CIP_EMPTY; |
| 710 | goto fail; |
| 711 | } |
| 712 | |
| 713 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 714 | * CIP magic, header length or |
| 715 | * CIP magic, CIP length, CIP type, header length */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 716 | if (trash.data < 12) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 717 | goto missing; |
| 718 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 719 | line = trash.area; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 720 | |
| 721 | /* Decode a possible NetScaler Client IP request, fail early if |
| 722 | * it does not match */ |
Willy Tarreau | 1ac83af | 2020-02-25 10:06:49 +0100 | [diff] [blame] | 723 | 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] | 724 | goto bad_magic; |
| 725 | |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 726 | /* Legacy CIP protocol */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 727 | if ((trash.area[8] & 0xD0) == 0x40) { |
Willy Tarreau | 1ac83af | 2020-02-25 10:06:49 +0100 | [diff] [blame] | 728 | hdr_len = ntohl(read_u32((line+4))); |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 729 | line += 8; |
| 730 | } |
| 731 | /* Standard CIP protocol */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 732 | else if (trash.area[8] == 0x00) { |
Willy Tarreau | 1ac83af | 2020-02-25 10:06:49 +0100 | [diff] [blame] | 733 | hdr_len = ntohs(read_u32((line+10))); |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 734 | line += 12; |
| 735 | } |
| 736 | /* Unknown CIP protocol */ |
| 737 | else { |
| 738 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 739 | goto fail; |
| 740 | } |
| 741 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 742 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 72fa1ec | 2017-12-12 01:17:23 +0000 | [diff] [blame] | 743 | * a minimal IP header */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 744 | if (trash.data < 20) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 745 | goto missing; |
| 746 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 747 | /* Get IP version from the first four bits */ |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 748 | ip_ver = (*line & 0xf0) >> 4; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 749 | |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 750 | if (ip_ver == 4) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 751 | struct ip *hdr_ip4; |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 752 | struct my_tcphdr *hdr_tcp; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 753 | |
| 754 | hdr_ip4 = (struct ip *)line; |
| 755 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 756 | if (trash.data < 40 || trash.data < hdr_len) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 757 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 67de5a2 | 2017-12-13 01:15:05 +0000 | [diff] [blame] | 758 | * IPv4 header, TCP header */ |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 759 | goto missing; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 760 | } |
| 761 | else if (hdr_ip4->ip_p != IPPROTO_TCP) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 762 | /* The protocol does not include a TCP header */ |
| 763 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 764 | goto fail; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 765 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 766 | |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 767 | hdr_tcp = (struct my_tcphdr *)(line + (hdr_ip4->ip_hl * 4)); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 768 | |
| 769 | /* update the session's addresses and mark them set */ |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 770 | ((struct sockaddr_in *)conn->src)->sin_family = AF_INET; |
| 771 | ((struct sockaddr_in *)conn->src)->sin_addr.s_addr = hdr_ip4->ip_src.s_addr; |
| 772 | ((struct sockaddr_in *)conn->src)->sin_port = hdr_tcp->source; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 773 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 774 | ((struct sockaddr_in *)conn->dst)->sin_family = AF_INET; |
| 775 | ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr = hdr_ip4->ip_dst.s_addr; |
| 776 | ((struct sockaddr_in *)conn->dst)->sin_port = hdr_tcp->dest; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 777 | |
| 778 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 779 | } |
Willy Tarreau | 0ca24aa | 2019-03-29 17:35:32 +0100 | [diff] [blame] | 780 | else if (ip_ver == 6) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 781 | struct ip6_hdr *hdr_ip6; |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 782 | struct my_tcphdr *hdr_tcp; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 783 | |
| 784 | hdr_ip6 = (struct ip6_hdr *)line; |
| 785 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 786 | if (trash.data < 60 || trash.data < hdr_len) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 787 | /* Fail if buffer length is not large enough to contain |
Bertrand Jacquin | 67de5a2 | 2017-12-13 01:15:05 +0000 | [diff] [blame] | 788 | * IPv6 header, TCP header */ |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 789 | goto missing; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 790 | } |
| 791 | else if (hdr_ip6->ip6_nxt != IPPROTO_TCP) { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 792 | /* The protocol does not include a TCP header */ |
| 793 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 794 | goto fail; |
Bertrand Jacquin | b387591 | 2017-12-13 00:58:51 +0000 | [diff] [blame] | 795 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 796 | |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 797 | hdr_tcp = (struct my_tcphdr *)(line + sizeof(struct ip6_hdr)); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 798 | |
| 799 | /* update the session's addresses and mark them set */ |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 800 | ((struct sockaddr_in6 *)conn->src)->sin6_family = AF_INET6; |
| 801 | ((struct sockaddr_in6 *)conn->src)->sin6_addr = hdr_ip6->ip6_src; |
| 802 | ((struct sockaddr_in6 *)conn->src)->sin6_port = hdr_tcp->source; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 803 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 804 | ((struct sockaddr_in6 *)conn->dst)->sin6_family = AF_INET6; |
| 805 | ((struct sockaddr_in6 *)conn->dst)->sin6_addr = hdr_ip6->ip6_dst; |
| 806 | ((struct sockaddr_in6 *)conn->dst)->sin6_port = hdr_tcp->dest; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 807 | |
| 808 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 809 | } |
| 810 | else { |
| 811 | /* The protocol does not match something known (IPv4/IPv6) */ |
| 812 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 813 | goto fail; |
| 814 | } |
| 815 | |
Bertrand Jacquin | 7d668f9 | 2017-12-13 01:23:39 +0000 | [diff] [blame] | 816 | line += hdr_len; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 817 | trash.data = line - trash.area; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 818 | |
| 819 | /* remove the NetScaler Client IP header from the request. For this |
| 820 | * we re-read the exact line at once. If we don't get the exact same |
| 821 | * result, we fail. |
| 822 | */ |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 823 | while (1) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 824 | int len2 = recv(conn->handle.fd, trash.area, trash.data, 0); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 825 | if (len2 < 0 && errno == EINTR) |
| 826 | continue; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 827 | if (len2 != trash.data) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 828 | goto recv_abort; |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 829 | break; |
| 830 | } |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 831 | |
| 832 | conn->flags &= ~flag; |
| 833 | return 1; |
| 834 | |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 835 | not_ready: |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 836 | return 0; |
| 837 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 838 | missing: |
| 839 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 840 | * we have not read anything. Otherwise we need to fail because we won't |
| 841 | * be able to poll anymore. |
| 842 | */ |
| 843 | conn->err_code = CO_ER_CIP_TRUNCATED; |
| 844 | goto fail; |
| 845 | |
| 846 | bad_magic: |
| 847 | conn->err_code = CO_ER_CIP_BAD_MAGIC; |
| 848 | goto fail; |
| 849 | |
| 850 | recv_abort: |
| 851 | conn->err_code = CO_ER_CIP_ABORT; |
| 852 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
| 853 | goto fail; |
| 854 | |
| 855 | fail: |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 856 | conn->flags |= CO_FL_ERROR; |
| 857 | return 0; |
| 858 | } |
| 859 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 860 | |
| 861 | int conn_send_socks4_proxy_request(struct connection *conn) |
| 862 | { |
| 863 | struct socks4_request req_line; |
| 864 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 865 | if (!conn_ctrl_ready(conn)) |
| 866 | goto out_error; |
| 867 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 868 | if (!conn_get_dst(conn)) |
| 869 | goto out_error; |
| 870 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 871 | req_line.version = 0x04; |
| 872 | req_line.command = 0x01; |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 873 | req_line.port = get_net_port(conn->dst); |
| 874 | req_line.ip = is_inet_addr(conn->dst); |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 875 | memcpy(req_line.user_id, "HAProxy\0", 8); |
| 876 | |
| 877 | if (conn->send_proxy_ofs > 0) { |
| 878 | /* |
| 879 | * This is the first call to send the request |
| 880 | */ |
| 881 | conn->send_proxy_ofs = -(int)sizeof(req_line); |
| 882 | } |
| 883 | |
| 884 | if (conn->send_proxy_ofs < 0) { |
| 885 | int ret = 0; |
| 886 | |
| 887 | /* we are sending the socks4_req_line here. If the data layer |
| 888 | * has a pending write, we'll also set MSG_MORE. |
| 889 | */ |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 890 | ret = conn_ctrl_send( |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 891 | conn, |
| 892 | ((char *)(&req_line)) + (sizeof(req_line)+conn->send_proxy_ofs), |
| 893 | -conn->send_proxy_ofs, |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 894 | (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] | 895 | |
| 896 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Before send remain is [%d], sent [%d]\n", |
| 897 | conn->handle.fd, -conn->send_proxy_ofs, ret); |
| 898 | |
| 899 | if (ret < 0) { |
| 900 | goto out_error; |
| 901 | } |
| 902 | |
| 903 | conn->send_proxy_ofs += ret; /* becomes zero once complete */ |
| 904 | if (conn->send_proxy_ofs != 0) { |
| 905 | goto out_wait; |
| 906 | } |
| 907 | } |
| 908 | |
| 909 | /* OK we've the whole request sent */ |
| 910 | conn->flags &= ~CO_FL_SOCKS4_SEND; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 911 | |
| 912 | /* The connection is ready now, simply return and let the connection |
| 913 | * handler notify upper layers if needed. |
| 914 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 915 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 916 | |
| 917 | if (conn->flags & CO_FL_SEND_PROXY) { |
| 918 | /* |
| 919 | * Get the send_proxy_ofs ready for the send_proxy due to we are |
| 920 | * reusing the "send_proxy_ofs", and SOCKS4 handshake should be done |
| 921 | * before sending PROXY Protocol. |
| 922 | */ |
| 923 | conn->send_proxy_ofs = 1; |
| 924 | } |
| 925 | return 1; |
| 926 | |
| 927 | out_error: |
| 928 | /* Write error on the file descriptor */ |
| 929 | conn->flags |= CO_FL_ERROR; |
| 930 | if (conn->err_code == CO_ER_NONE) { |
| 931 | conn->err_code = CO_ER_SOCKS4_SEND; |
| 932 | } |
| 933 | return 0; |
| 934 | |
| 935 | out_wait: |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 936 | return 0; |
| 937 | } |
| 938 | |
| 939 | int conn_recv_socks4_proxy_response(struct connection *conn) |
| 940 | { |
| 941 | char line[SOCKS4_HS_RSP_LEN]; |
| 942 | int ret; |
| 943 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 944 | if (!conn_ctrl_ready(conn)) |
| 945 | goto fail; |
| 946 | |
| 947 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 948 | goto not_ready; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 949 | |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 950 | while (1) { |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 951 | /* SOCKS4 Proxy will response with 8 bytes, 0x00 | 0x5A | 0x00 0x00 | 0x00 0x00 0x00 0x00 |
| 952 | * Try to peek into it, before all 8 bytes ready. |
| 953 | */ |
| 954 | ret = recv(conn->handle.fd, line, SOCKS4_HS_RSP_LEN, MSG_PEEK); |
| 955 | |
| 956 | if (ret == 0) { |
| 957 | /* the socket has been closed or shutdown for send */ |
| 958 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], errno[%d], looks like the socket has been closed or shutdown for send\n", |
| 959 | conn->handle.fd, ret, errno); |
| 960 | if (conn->err_code == CO_ER_NONE) { |
| 961 | conn->err_code = CO_ER_SOCKS4_RECV; |
| 962 | } |
| 963 | goto fail; |
| 964 | } |
| 965 | |
| 966 | if (ret > 0) { |
| 967 | if (ret == SOCKS4_HS_RSP_LEN) { |
| 968 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received 8 bytes, the response is [%02X|%02X|%02X %02X|%02X %02X %02X %02X]\n", |
| 969 | conn->handle.fd, line[0], line[1], line[2], line[3], line[4], line[5], line[6], line[7]); |
| 970 | }else{ |
| 971 | 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]); |
| 972 | } |
| 973 | } else { |
| 974 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], errno[%d]\n", conn->handle.fd, ret, errno); |
| 975 | } |
| 976 | |
| 977 | if (ret < 0) { |
| 978 | if (errno == EINTR) { |
| 979 | continue; |
| 980 | } |
| 981 | if (errno == EAGAIN) { |
| 982 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 983 | goto not_ready; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 984 | } |
| 985 | goto recv_abort; |
| 986 | } |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 987 | break; |
| 988 | } |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 989 | |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 990 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 991 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 992 | if (ret < SOCKS4_HS_RSP_LEN) { |
| 993 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 994 | * we are not able to read enough data. |
| 995 | */ |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 996 | goto not_ready; |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | /* |
| 1000 | * Base on the SOCSK4 protocol: |
| 1001 | * |
| 1002 | * +----+----+----+----+----+----+----+----+ |
| 1003 | * | VN | CD | DSTPORT | DSTIP | |
| 1004 | * +----+----+----+----+----+----+----+----+ |
| 1005 | * # of bytes: 1 1 2 4 |
| 1006 | * VN is the version of the reply code and should be 0. CD is the result |
| 1007 | * code with one of the following values: |
| 1008 | * 90: request granted |
| 1009 | * 91: request rejected or failed |
Ilya Shipitsin | ce7b00f | 2020-03-23 22:28:40 +0500 | [diff] [blame] | 1010 | * 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] | 1011 | * 93: request rejected because the client program and identd report different user-ids |
| 1012 | * The remaining fields are ignored. |
| 1013 | */ |
| 1014 | if (line[1] != 90) { |
| 1015 | conn->flags &= ~CO_FL_SOCKS4_RECV; |
| 1016 | |
| 1017 | DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: FAIL, the response is [%02X|%02X|%02X %02X|%02X %02X %02X %02X]\n", |
| 1018 | conn->handle.fd, line[0], line[1], line[2], line[3], line[4], line[5], line[6], line[7]); |
| 1019 | if (conn->err_code == CO_ER_NONE) { |
| 1020 | conn->err_code = CO_ER_SOCKS4_DENY; |
| 1021 | } |
| 1022 | goto fail; |
| 1023 | } |
| 1024 | |
| 1025 | /* remove the 8 bytes response from the stream */ |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1026 | while (1) { |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1027 | ret = recv(conn->handle.fd, line, SOCKS4_HS_RSP_LEN, 0); |
| 1028 | if (ret < 0 && errno == EINTR) { |
| 1029 | continue; |
| 1030 | } |
| 1031 | if (ret != SOCKS4_HS_RSP_LEN) { |
| 1032 | if (conn->err_code == CO_ER_NONE) { |
| 1033 | conn->err_code = CO_ER_SOCKS4_RECV; |
| 1034 | } |
| 1035 | goto fail; |
| 1036 | } |
Willy Tarreau | 157788c | 2020-02-11 10:08:05 +0100 | [diff] [blame] | 1037 | break; |
| 1038 | } |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1039 | |
| 1040 | conn->flags &= ~CO_FL_SOCKS4_RECV; |
| 1041 | return 1; |
| 1042 | |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1043 | not_ready: |
Willy Tarreau | 6499b9d | 2019-06-03 08:17:30 +0200 | [diff] [blame] | 1044 | return 0; |
| 1045 | |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1046 | recv_abort: |
| 1047 | if (conn->err_code == CO_ER_NONE) { |
| 1048 | conn->err_code = CO_ER_SOCKS4_ABORT; |
| 1049 | } |
| 1050 | conn->flags |= (CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH); |
| 1051 | goto fail; |
| 1052 | |
| 1053 | fail: |
Alexander Liu | 2a54bb7 | 2019-05-22 19:44:48 +0800 | [diff] [blame] | 1054 | conn->flags |= CO_FL_ERROR; |
| 1055 | return 0; |
| 1056 | } |
| 1057 | |
Willy Tarreau | e59b516 | 2021-05-08 14:06:09 +0200 | [diff] [blame] | 1058 | /* Lists the known proto mux on <out> */ |
| 1059 | void list_mux_proto(FILE *out) |
| 1060 | { |
| 1061 | struct mux_proto_list *item; |
| 1062 | struct buffer *chk = get_trash_chunk(); |
| 1063 | struct ist proto; |
| 1064 | char *mode, *side; |
| 1065 | |
| 1066 | fprintf(out, "Available multiplexer protocols :\n" |
| 1067 | "(protocols marked as <default> cannot be specified using 'proto' keyword)\n"); |
| 1068 | list_for_each_entry(item, &mux_proto_list.list, list) { |
| 1069 | proto = item->token; |
| 1070 | |
| 1071 | if (item->mode == PROTO_MODE_ANY) |
| 1072 | mode = "TCP|HTTP"; |
| 1073 | else if (item->mode == PROTO_MODE_TCP) |
| 1074 | mode = "TCP"; |
| 1075 | else if (item->mode == PROTO_MODE_HTTP) |
| 1076 | mode = "HTTP"; |
| 1077 | else |
| 1078 | mode = "NONE"; |
| 1079 | |
| 1080 | if (item->side == PROTO_SIDE_BOTH) |
| 1081 | side = "FE|BE"; |
| 1082 | else if (item->side == PROTO_SIDE_FE) |
| 1083 | side = "FE"; |
| 1084 | else if (item->side == PROTO_SIDE_BE) |
| 1085 | side = "BE"; |
| 1086 | else |
| 1087 | side = "NONE"; |
| 1088 | |
| 1089 | chunk_reset(chk); |
| 1090 | if (item->mux->flags & MX_FL_HTX) |
| 1091 | chunk_strcpy(chk, "HTX"); |
| 1092 | if (item->mux->flags & MX_FL_CLEAN_ABRT) |
| 1093 | chunk_appendf(chk, "%sCLEAN_ABRT", (b_data(chk) ? "|": "")); |
| 1094 | if (item->mux->flags & MX_FL_HOL_RISK) |
| 1095 | chunk_appendf(chk, "%sHOL_RISK", (b_data(chk) ? "|": "")); |
| 1096 | if (item->mux->flags & MX_FL_NO_UPG) |
| 1097 | chunk_appendf(chk, "%sNO_UPG", (b_data(chk) ? "|": "")); |
| 1098 | |
| 1099 | fprintf(out, " %15s : mode=%-10s side=%-8s mux=%-8s flags=%.*s\n", |
| 1100 | (proto.len ? proto.ptr : "<default>"), mode, side, item->mux->name, |
| 1101 | (int)b_data(chk), b_orig(chk)); |
| 1102 | } |
| 1103 | } |
| 1104 | |
Ilya Shipitsin | ca56fce | 2018-09-15 00:50:05 +0500 | [diff] [blame] | 1105 | /* Note: <remote> is explicitly allowed to be NULL */ |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 1106 | int make_proxy_line(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] | 1107 | { |
| 1108 | int ret = 0; |
| 1109 | |
| 1110 | if (srv && (srv->pp_opts & SRV_PP_V2)) { |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 1111 | ret = make_proxy_line_v2(buf, buf_len, srv, remote, strm); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1112 | } |
| 1113 | else { |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 1114 | if (remote && conn_get_src(remote) && conn_get_dst(remote)) |
| 1115 | ret = make_proxy_line_v1(buf, buf_len, remote->src, remote->dst); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1116 | else |
| 1117 | ret = make_proxy_line_v1(buf, buf_len, NULL, NULL); |
| 1118 | } |
| 1119 | |
| 1120 | return ret; |
| 1121 | } |
| 1122 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1123 | /* Makes a PROXY protocol line from the two addresses. The output is sent to |
| 1124 | * buffer <buf> for a maximum size of <buf_len> (including the trailing zero). |
| 1125 | * It returns the number of bytes composing this line (including the trailing |
| 1126 | * 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] | 1127 | * TCP6 and "UNKNOWN" formats. If any of <src> or <dst> is null, UNKNOWN is |
| 1128 | * emitted as well. |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1129 | */ |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1130 | int make_proxy_line_v1(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1131 | { |
| 1132 | int ret = 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1133 | char * protocol; |
| 1134 | char src_str[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)]; |
| 1135 | char dst_str[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)]; |
| 1136 | in_port_t src_port; |
| 1137 | in_port_t dst_port; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1138 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1139 | if ( !src |
| 1140 | || !dst |
| 1141 | || (src->ss_family != AF_INET && src->ss_family != AF_INET6) |
| 1142 | || (dst->ss_family != AF_INET && dst->ss_family != AF_INET6)) { |
| 1143 | /* unknown family combination */ |
| 1144 | ret = snprintf(buf, buf_len, "PROXY UNKNOWN\r\n"); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1145 | if (ret >= buf_len) |
| 1146 | return 0; |
| 1147 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1148 | return ret; |
| 1149 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1150 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1151 | /* IPv4 for both src and dst */ |
| 1152 | if (src->ss_family == AF_INET && dst->ss_family == AF_INET) { |
| 1153 | protocol = "TCP4"; |
| 1154 | 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] | 1155 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1156 | src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1157 | 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] | 1158 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1159 | dst_port = ((struct sockaddr_in *)dst)->sin_port; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1160 | } |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1161 | /* IPv6 for at least one of src and dst */ |
| 1162 | else { |
| 1163 | struct in6_addr tmp; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1164 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1165 | protocol = "TCP6"; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1166 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1167 | if (src->ss_family == AF_INET) { |
| 1168 | /* Convert src to IPv6 */ |
| 1169 | v4tov6(&tmp, &((struct sockaddr_in *)src)->sin_addr); |
| 1170 | src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1171 | } |
| 1172 | else { |
| 1173 | tmp = ((struct sockaddr_in6 *)src)->sin6_addr; |
| 1174 | src_port = ((struct sockaddr_in6 *)src)->sin6_port; |
| 1175 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1176 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1177 | if (!inet_ntop(AF_INET6, &tmp, src_str, sizeof(src_str))) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1178 | return 0; |
| 1179 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1180 | if (dst->ss_family == AF_INET) { |
| 1181 | /* Convert dst to IPv6 */ |
| 1182 | v4tov6(&tmp, &((struct sockaddr_in *)dst)->sin_addr); |
| 1183 | dst_port = ((struct sockaddr_in *)dst)->sin_port; |
| 1184 | } |
| 1185 | else { |
| 1186 | tmp = ((struct sockaddr_in6 *)dst)->sin6_addr; |
| 1187 | dst_port = ((struct sockaddr_in6 *)dst)->sin6_port; |
| 1188 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1189 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1190 | if (!inet_ntop(AF_INET6, &tmp, dst_str, sizeof(dst_str))) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1191 | return 0; |
| 1192 | } |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1193 | |
| 1194 | ret = snprintf(buf, buf_len, "PROXY %s %s %s %u %u\r\n", protocol, src_str, dst_str, ntohs(src_port), ntohs(dst_port)); |
| 1195 | if (ret >= buf_len) |
| 1196 | return 0; |
| 1197 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 1198 | return ret; |
| 1199 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1200 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1201 | 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] | 1202 | { |
| 1203 | struct tlv *tlv; |
| 1204 | |
| 1205 | if (!dest || (length + sizeof(*tlv) > dest_len)) |
| 1206 | return 0; |
| 1207 | |
| 1208 | tlv = (struct tlv *)dest; |
| 1209 | |
| 1210 | tlv->type = type; |
| 1211 | tlv->length_hi = length >> 8; |
| 1212 | tlv->length_lo = length & 0x00ff; |
| 1213 | memcpy(tlv->value, value, length); |
| 1214 | return length + sizeof(*tlv); |
| 1215 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1216 | |
Ilya Shipitsin | ca56fce | 2018-09-15 00:50:05 +0500 | [diff] [blame] | 1217 | /* Note: <remote> is explicitly allowed to be NULL */ |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 1218 | 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] | 1219 | { |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1220 | const char pp2_signature[] = PP2_SIGNATURE; |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1221 | void *tlv_crc32c_p = NULL; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1222 | int ret = 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1223 | struct proxy_hdr_v2 *hdr = (struct proxy_hdr_v2 *)buf; |
Vincent Bernat | 6e61589 | 2016-05-18 16:17:44 +0200 | [diff] [blame] | 1224 | struct sockaddr_storage null_addr = { .ss_family = 0 }; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1225 | struct sockaddr_storage *src = &null_addr; |
| 1226 | struct sockaddr_storage *dst = &null_addr; |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1227 | const char *value; |
| 1228 | int value_len; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1229 | |
| 1230 | if (buf_len < PP2_HEADER_LEN) |
| 1231 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1232 | memcpy(hdr->sig, pp2_signature, PP2_SIGNATURE_LEN); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1233 | |
Willy Tarreau | 226572f | 2019-07-17 14:46:00 +0200 | [diff] [blame] | 1234 | if (remote && conn_get_src(remote) && conn_get_dst(remote)) { |
| 1235 | src = remote->src; |
| 1236 | dst = remote->dst; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1237 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1238 | |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1239 | /* At least one of src or dst is not of AF_INET or AF_INET6 */ |
| 1240 | if ( !src |
| 1241 | || !dst |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 1242 | || (!pp2_never_send_local && conn_is_back(remote)) // locally initiated connection |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1243 | || (src->ss_family != AF_INET && src->ss_family != AF_INET6) |
| 1244 | || (dst->ss_family != AF_INET && dst->ss_family != AF_INET6)) { |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1245 | if (buf_len < PP2_HDR_LEN_UNSPEC) |
| 1246 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1247 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_LOCAL; |
| 1248 | hdr->fam = PP2_FAM_UNSPEC | PP2_TRANS_UNSPEC; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1249 | ret = PP2_HDR_LEN_UNSPEC; |
| 1250 | } |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1251 | else { |
Willy Tarreau | 02c8803 | 2020-04-14 12:54:10 +0200 | [diff] [blame] | 1252 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_PROXY; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1253 | /* IPv4 for both src and dst */ |
| 1254 | if (src->ss_family == AF_INET && dst->ss_family == AF_INET) { |
| 1255 | if (buf_len < PP2_HDR_LEN_INET) |
| 1256 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1257 | hdr->fam = PP2_FAM_INET | PP2_TRANS_STREAM; |
| 1258 | hdr->addr.ip4.src_addr = ((struct sockaddr_in *)src)->sin_addr.s_addr; |
| 1259 | hdr->addr.ip4.src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1260 | hdr->addr.ip4.dst_addr = ((struct sockaddr_in *)dst)->sin_addr.s_addr; |
| 1261 | hdr->addr.ip4.dst_port = ((struct sockaddr_in *)dst)->sin_port; |
| 1262 | ret = PP2_HDR_LEN_INET; |
| 1263 | } |
| 1264 | /* IPv6 for at least one of src and dst */ |
| 1265 | else { |
| 1266 | struct in6_addr tmp; |
| 1267 | |
| 1268 | if (buf_len < PP2_HDR_LEN_INET6) |
| 1269 | return 0; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1270 | hdr->fam = PP2_FAM_INET6 | PP2_TRANS_STREAM; |
| 1271 | if (src->ss_family == AF_INET) { |
| 1272 | v4tov6(&tmp, &((struct sockaddr_in *)src)->sin_addr); |
| 1273 | memcpy(hdr->addr.ip6.src_addr, &tmp, 16); |
| 1274 | hdr->addr.ip6.src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1275 | } |
| 1276 | else { |
| 1277 | memcpy(hdr->addr.ip6.src_addr, &((struct sockaddr_in6 *)src)->sin6_addr, 16); |
| 1278 | hdr->addr.ip6.src_port = ((struct sockaddr_in6 *)src)->sin6_port; |
| 1279 | } |
| 1280 | if (dst->ss_family == AF_INET) { |
| 1281 | v4tov6(&tmp, &((struct sockaddr_in *)dst)->sin_addr); |
| 1282 | memcpy(hdr->addr.ip6.dst_addr, &tmp, 16); |
William Dauchy | bd8bf67 | 2020-01-26 19:06:39 +0100 | [diff] [blame] | 1283 | hdr->addr.ip6.dst_port = ((struct sockaddr_in *)dst)->sin_port; |
Tim Duesterhus | 7fec021 | 2018-07-27 18:46:13 +0200 | [diff] [blame] | 1284 | } |
| 1285 | else { |
| 1286 | memcpy(hdr->addr.ip6.dst_addr, &((struct sockaddr_in6 *)dst)->sin6_addr, 16); |
| 1287 | hdr->addr.ip6.dst_port = ((struct sockaddr_in6 *)dst)->sin6_port; |
| 1288 | } |
| 1289 | |
| 1290 | ret = PP2_HDR_LEN_INET6; |
| 1291 | } |
| 1292 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1293 | |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1294 | if (srv->pp_opts & SRV_PP_V2_CRC32C) { |
| 1295 | uint32_t zero_crc32c = 0; |
Tim Duesterhus | a8692f3 | 2020-03-13 12:34:25 +0100 | [diff] [blame] | 1296 | |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1297 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1298 | return 0; |
| 1299 | tlv_crc32c_p = (void *)((struct tlv *)&buf[ret])->value; |
| 1300 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_CRC32C, sizeof(zero_crc32c), (const char *)&zero_crc32c); |
| 1301 | } |
| 1302 | |
Ilya Shipitsin | ca56fce | 2018-09-15 00:50:05 +0500 | [diff] [blame] | 1303 | if (remote && conn_get_alpn(remote, &value, &value_len)) { |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1304 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1305 | return 0; |
Emmanuel Hocdet | 571c7ac | 2017-10-31 18:24:05 +0100 | [diff] [blame] | 1306 | 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] | 1307 | } |
| 1308 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 1309 | if (srv->pp_opts & SRV_PP_V2_AUTHORITY) { |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1310 | value = NULL; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1311 | if (remote && isttest(remote->proxy_authority)) { |
| 1312 | value = istptr(remote->proxy_authority); |
| 1313 | value_len = istlen(remote->proxy_authority); |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1314 | } |
| 1315 | #ifdef USE_OPENSSL |
| 1316 | else { |
Jerome Magnin | 78891c7 | 2019-09-02 09:53:41 +0200 | [diff] [blame] | 1317 | if ((value = ssl_sock_get_sni(remote))) |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1318 | value_len = strlen(value); |
| 1319 | } |
| 1320 | #endif |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 1321 | if (value) { |
| 1322 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1323 | return 0; |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1324 | 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] | 1325 | } |
| 1326 | } |
| 1327 | |
Christopher Faulet | 3ab504f | 2020-05-26 15:16:01 +0200 | [diff] [blame] | 1328 | if (strm && (srv->pp_opts & SRV_PP_V2_UNIQUE_ID)) { |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 1329 | struct session* sess = strm_sess(strm); |
| 1330 | struct ist unique_id = stream_generate_unique_id(strm, &sess->fe->format_unique_id); |
| 1331 | |
| 1332 | value = unique_id.ptr; |
| 1333 | value_len = unique_id.len; |
| 1334 | |
| 1335 | if (value_len >= 0) { |
| 1336 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1337 | return 0; |
| 1338 | ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_UNIQUE_ID, value_len, value); |
| 1339 | } |
| 1340 | } |
| 1341 | |
Emmanuel Hocdet | 8a4ffa0 | 2019-08-29 11:54:51 +0200 | [diff] [blame] | 1342 | #ifdef USE_OPENSSL |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1343 | if (srv->pp_opts & SRV_PP_V2_SSL) { |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1344 | struct tlv_ssl *tlv; |
| 1345 | int ssl_tlv_len = 0; |
Tim Duesterhus | a8692f3 | 2020-03-13 12:34:25 +0100 | [diff] [blame] | 1346 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1347 | if ((buf_len - ret) < sizeof(struct tlv_ssl)) |
| 1348 | return 0; |
| 1349 | tlv = (struct tlv_ssl *)&buf[ret]; |
| 1350 | memset(tlv, 0, sizeof(struct tlv_ssl)); |
| 1351 | ssl_tlv_len += sizeof(struct tlv_ssl); |
| 1352 | tlv->tlv.type = PP2_TYPE_SSL; |
| 1353 | if (ssl_sock_is_ssl(remote)) { |
| 1354 | tlv->client |= PP2_CLIENT_SSL; |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 1355 | value = ssl_sock_get_proto_version(remote); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1356 | if (value) { |
Emmanuel Hocdet | 8c0c34b | 2018-02-28 12:02:14 +0100 | [diff] [blame] | 1357 | 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] | 1358 | } |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 1359 | if (ssl_sock_get_cert_used_sess(remote)) { |
| 1360 | tlv->client |= PP2_CLIENT_CERT_SESS; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1361 | tlv->verify = htonl(ssl_sock_get_verify_result(remote)); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 1362 | if (ssl_sock_get_cert_used_conn(remote)) |
| 1363 | tlv->client |= PP2_CLIENT_CERT_CONN; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1364 | } |
| 1365 | if (srv->pp_opts & SRV_PP_V2_SSL_CN) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1366 | struct buffer *cn_trash = get_trash_chunk(); |
Willy Tarreau | 3b9a0c9 | 2014-07-19 06:37:33 +0200 | [diff] [blame] | 1367 | if (ssl_sock_get_remote_common_name(remote, cn_trash) > 0) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1368 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CN, |
| 1369 | cn_trash->data, |
| 1370 | cn_trash->area); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1371 | } |
| 1372 | } |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 1373 | if (srv->pp_opts & SRV_PP_V2_SSL_KEY_ALG) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1374 | struct buffer *pkey_trash = get_trash_chunk(); |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 1375 | if (ssl_sock_get_pkey_algo(remote, pkey_trash) > 0) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1376 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_KEY_ALG, |
| 1377 | pkey_trash->data, |
| 1378 | pkey_trash->area); |
Emmanuel Hocdet | fa8d0f1 | 2018-02-01 15:53:52 +0100 | [diff] [blame] | 1379 | } |
| 1380 | } |
| 1381 | if (srv->pp_opts & SRV_PP_V2_SSL_SIG_ALG) { |
| 1382 | value = ssl_sock_get_cert_sig(remote); |
| 1383 | if (value) { |
| 1384 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_SIG_ALG, strlen(value), value); |
| 1385 | } |
| 1386 | } |
| 1387 | if (srv->pp_opts & SRV_PP_V2_SSL_CIPHER) { |
| 1388 | value = ssl_sock_get_cipher_name(remote); |
| 1389 | if (value) { |
| 1390 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CIPHER, strlen(value), value); |
| 1391 | } |
| 1392 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1393 | } |
| 1394 | tlv->tlv.length_hi = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) >> 8; |
| 1395 | tlv->tlv.length_lo = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) & 0x00ff; |
| 1396 | ret += ssl_tlv_len; |
| 1397 | } |
| 1398 | #endif |
| 1399 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1400 | #ifdef USE_NS |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1401 | if (remote && (remote->proxy_netns)) { |
| 1402 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1403 | return 0; |
Emmanuel Hocdet | 571c7ac | 2017-10-31 18:24:05 +0100 | [diff] [blame] | 1404 | 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] | 1405 | } |
| 1406 | #endif |
| 1407 | |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1408 | hdr->len = htons((uint16_t)(ret - PP2_HEADER_LEN)); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1409 | |
Emmanuel Hocdet | 4399c75 | 2018-02-05 15:26:43 +0100 | [diff] [blame] | 1410 | if (tlv_crc32c_p) { |
| 1411 | write_u32(tlv_crc32c_p, htonl(hash_crc32c(buf, ret))); |
| 1412 | } |
| 1413 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1414 | return ret; |
| 1415 | } |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1416 | |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 1417 | /* returns 0 on success */ |
| 1418 | 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] | 1419 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 1420 | char **err) |
| 1421 | { |
| 1422 | if (too_many_args(0, args, err, NULL)) |
| 1423 | return -1; |
| 1424 | pp2_never_send_local = 1; |
| 1425 | return 0; |
| 1426 | } |
| 1427 | |
Willy Tarreau | a7d1455 | 2021-06-16 17:35:20 +0200 | [diff] [blame] | 1428 | /* extracts some info from the connection and appends them to buffer <buf>. The |
| 1429 | * connection's pointer, its direction, target (fe/be/srv), xprt/ctrl, source |
| 1430 | * when set, destination when set, are printed in a compact human-readable format |
| 1431 | * fitting on a single line. This is handy to complete traces or debug output. |
| 1432 | * It is permitted to pass a NULL conn pointer. The number of characters emitted |
| 1433 | * is returned. A prefix <pfx> might be prepended before the first field if not |
| 1434 | * NULL. |
| 1435 | */ |
| 1436 | int conn_append_debug_info(struct buffer *buf, const struct connection *conn, const char *pfx) |
| 1437 | { |
| 1438 | const struct listener *li; |
| 1439 | const struct server *sv; |
| 1440 | const struct proxy *px; |
| 1441 | char addr[40]; |
| 1442 | int old_len = buf->data; |
| 1443 | |
| 1444 | if (!conn) |
| 1445 | return 0; |
| 1446 | |
| 1447 | chunk_appendf(buf, "%sconn=%p(%s)", pfx ? pfx : "", conn, conn_is_back(conn) ? "OUT" : "IN"); |
| 1448 | |
| 1449 | if ((li = objt_listener(conn->target))) |
| 1450 | chunk_appendf(buf, " fe=%s", li->bind_conf->frontend->id); |
| 1451 | else if ((sv = objt_server(conn->target))) |
| 1452 | chunk_appendf(buf, " sv=%s/%s", sv->proxy->id, sv->id); |
| 1453 | else if ((px = objt_proxy(conn->target))) |
| 1454 | chunk_appendf(buf, " be=%s", px->id); |
| 1455 | |
| 1456 | chunk_appendf(buf, " %s/%s", conn_get_xprt_name(conn), conn_get_ctrl_name(conn)); |
| 1457 | |
| 1458 | if (conn->flags & CO_FL_ADDR_FROM_SET && addr_to_str(conn->src, addr, sizeof(addr))) |
| 1459 | chunk_appendf(buf, " src=%s:%d", addr, get_host_port(conn->src)); |
| 1460 | |
| 1461 | if (conn->flags & CO_FL_ADDR_TO_SET && addr_to_str(conn->dst, addr, sizeof(addr))) |
| 1462 | chunk_appendf(buf, " dst=%s:%d", addr, get_host_port(conn->dst)); |
| 1463 | |
| 1464 | return buf->data - old_len; |
| 1465 | } |
| 1466 | |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1467 | /* return the major HTTP version as 1 or 2 depending on how the request arrived |
| 1468 | * before being processed. |
Christopher Faulet | f4dd9ae | 2021-04-14 15:40:30 +0200 | [diff] [blame] | 1469 | * |
| 1470 | * WARNING: Should be updated if a new major HTTP version is added. |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1471 | */ |
| 1472 | static int |
| 1473 | smp_fetch_fc_http_major(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1474 | { |
Christopher Faulet | 242f8ce | 2021-04-14 15:46:49 +0200 | [diff] [blame] | 1475 | struct connection *conn = NULL; |
| 1476 | |
| 1477 | if (obj_type(smp->sess->origin) == OBJ_TYPE_CHECK) |
| 1478 | conn = (kw[0] == 'b') ? cs_conn(__objt_check(smp->sess->origin)->cs) : NULL; |
| 1479 | else |
| 1480 | conn = (kw[0] != 'b') ? objt_conn(smp->sess->origin) : |
| 1481 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1482 | |
Christopher Faulet | f4dd9ae | 2021-04-14 15:40:30 +0200 | [diff] [blame] | 1483 | /* No connection or a connection with a RAW muxx */ |
| 1484 | if (!conn || (conn->mux && !(conn->mux->flags & MX_FL_HTX))) |
| 1485 | return 0; |
| 1486 | |
| 1487 | /* No mux install, this may change */ |
| 1488 | if (!conn->mux) { |
| 1489 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1490 | return 0; |
| 1491 | } |
| 1492 | |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1493 | smp->data.type = SMP_T_SINT; |
Christopher Faulet | f4dd9ae | 2021-04-14 15:40:30 +0200 | [diff] [blame] | 1494 | 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] | 1495 | return 1; |
| 1496 | } |
| 1497 | |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1498 | /* fetch if the received connection used a PROXY protocol header */ |
| 1499 | int smp_fetch_fc_rcvd_proxy(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1500 | { |
| 1501 | struct connection *conn; |
| 1502 | |
| 1503 | conn = objt_conn(smp->sess->origin); |
| 1504 | if (!conn) |
| 1505 | return 0; |
| 1506 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 1507 | if (conn->flags & CO_FL_WAIT_XPRT) { |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1508 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1509 | return 0; |
| 1510 | } |
| 1511 | |
| 1512 | smp->flags = 0; |
| 1513 | smp->data.type = SMP_T_BOOL; |
| 1514 | smp->data.u.sint = (conn->flags & CO_FL_RCVD_PROXY) ? 1 : 0; |
| 1515 | |
| 1516 | return 1; |
| 1517 | } |
| 1518 | |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 1519 | /* fetch the authority TLV from a PROXY protocol header */ |
| 1520 | int smp_fetch_fc_pp_authority(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1521 | { |
| 1522 | struct connection *conn; |
| 1523 | |
| 1524 | conn = objt_conn(smp->sess->origin); |
| 1525 | if (!conn) |
| 1526 | return 0; |
| 1527 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 1528 | if (conn->flags & CO_FL_WAIT_XPRT) { |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 1529 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1530 | return 0; |
| 1531 | } |
| 1532 | |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1533 | if (!isttest(conn->proxy_authority)) |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 1534 | return 0; |
| 1535 | |
| 1536 | smp->flags = 0; |
| 1537 | smp->data.type = SMP_T_STR; |
Tim Duesterhus | 615f81e | 2021-03-06 20:06:50 +0100 | [diff] [blame] | 1538 | smp->data.u.str.area = istptr(conn->proxy_authority); |
| 1539 | smp->data.u.str.data = istlen(conn->proxy_authority); |
Geoff Simmons | 7185b78 | 2019-08-27 18:31:16 +0200 | [diff] [blame] | 1540 | |
| 1541 | return 1; |
| 1542 | } |
| 1543 | |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 1544 | /* fetch the unique ID TLV from a PROXY protocol header */ |
| 1545 | int smp_fetch_fc_pp_unique_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1546 | { |
| 1547 | struct connection *conn; |
| 1548 | |
| 1549 | conn = objt_conn(smp->sess->origin); |
| 1550 | if (!conn) |
| 1551 | return 0; |
| 1552 | |
| 1553 | if (conn->flags & CO_FL_WAIT_XPRT) { |
| 1554 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1555 | return 0; |
| 1556 | } |
| 1557 | |
| 1558 | if (!isttest(conn->proxy_unique_id)) |
| 1559 | return 0; |
| 1560 | |
| 1561 | smp->flags = 0; |
| 1562 | smp->data.type = SMP_T_STR; |
Tim Duesterhus | 002bd77 | 2021-03-06 20:06:49 +0100 | [diff] [blame] | 1563 | smp->data.u.str.area = istptr(conn->proxy_unique_id); |
| 1564 | smp->data.u.str.data = istlen(conn->proxy_unique_id); |
Tim Duesterhus | d1b15b6 | 2020-03-13 12:34:23 +0100 | [diff] [blame] | 1565 | |
| 1566 | return 1; |
| 1567 | } |
| 1568 | |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1569 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1570 | * Note: fetches that may return multiple types must be declared as the lowest |
| 1571 | * common denominator, the type that can be casted into all other ones. For |
| 1572 | * instance v4/v6 must be declared v4. |
| 1573 | */ |
| 1574 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1575 | { "fc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
Jérôme Magnin | 8657742 | 2018-12-07 09:03:11 +0100 | [diff] [blame] | 1576 | { "bc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV }, |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1577 | { "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] | 1578 | { "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] | 1579 | { "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] | 1580 | { /* END */ }, |
| 1581 | }}; |
| 1582 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1583 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |
Willy Tarreau | 119e50e | 2020-05-22 13:53:29 +0200 | [diff] [blame] | 1584 | |
| 1585 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 1586 | { CFG_GLOBAL, "pp2-never-send-local", cfg_parse_pp2_never_send_local }, |
| 1587 | { /* END */ }, |
| 1588 | }}; |
| 1589 | |
| 1590 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 1591 | |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1592 | /* private function to handle sockaddr as input for connection hash */ |
| 1593 | static void conn_calculate_hash_sockaddr(const struct sockaddr_storage *ss, |
| 1594 | char *buf, size_t *idx, |
| 1595 | enum conn_hash_params_t *hash_flags, |
| 1596 | enum conn_hash_params_t param_type_addr, |
| 1597 | enum conn_hash_params_t param_type_port) |
| 1598 | { |
| 1599 | struct sockaddr_in *addr; |
| 1600 | struct sockaddr_in6 *addr6; |
| 1601 | |
| 1602 | switch (ss->ss_family) { |
| 1603 | case AF_INET: |
| 1604 | addr = (struct sockaddr_in *)ss; |
| 1605 | |
| 1606 | conn_hash_update(buf, idx, |
| 1607 | &addr->sin_addr, sizeof(addr->sin_addr), |
| 1608 | hash_flags, param_type_addr); |
| 1609 | |
| 1610 | if (addr->sin_port) { |
| 1611 | conn_hash_update(buf, idx, |
| 1612 | &addr->sin_port, sizeof(addr->sin_port), |
| 1613 | hash_flags, param_type_port); |
| 1614 | } |
| 1615 | |
| 1616 | break; |
| 1617 | |
| 1618 | case AF_INET6: |
| 1619 | addr6 = (struct sockaddr_in6 *)ss; |
| 1620 | |
| 1621 | conn_hash_update(buf, idx, |
| 1622 | &addr6->sin6_addr, sizeof(addr6->sin6_addr), |
| 1623 | hash_flags, param_type_addr); |
| 1624 | |
| 1625 | if (addr6->sin6_port) { |
| 1626 | conn_hash_update(buf, idx, |
| 1627 | &addr6->sin6_port, sizeof(addr6->sin6_port), |
| 1628 | hash_flags, param_type_port); |
| 1629 | } |
| 1630 | |
| 1631 | break; |
| 1632 | } |
| 1633 | } |
| 1634 | |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 1635 | XXH64_hash_t conn_calculate_hash(const struct conn_hash_params *params) |
| 1636 | { |
| 1637 | char *buf; |
| 1638 | size_t idx = 0; |
| 1639 | XXH64_hash_t hash = 0; |
| 1640 | enum conn_hash_params_t hash_flags = 0; |
| 1641 | |
| 1642 | buf = trash.area; |
| 1643 | |
Amaury Denoyelle | 8ede3db | 2021-03-02 14:38:53 +0100 | [diff] [blame] | 1644 | 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] | 1645 | |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1646 | if (params->sni_prehash) { |
| 1647 | conn_hash_update(buf, &idx, |
Amaury Denoyelle | 36441f4 | 2021-02-17 16:25:31 +0100 | [diff] [blame] | 1648 | ¶ms->sni_prehash, sizeof(params->sni_prehash), |
Amaury Denoyelle | 9b626e3 | 2021-01-06 17:03:27 +0100 | [diff] [blame] | 1649 | &hash_flags, CONN_HASH_PARAMS_TYPE_SNI); |
| 1650 | } |
| 1651 | |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1652 | if (params->dst_addr) { |
| 1653 | conn_calculate_hash_sockaddr(params->dst_addr, |
| 1654 | buf, &idx, &hash_flags, |
| 1655 | CONN_HASH_PARAMS_TYPE_DST_ADDR, |
| 1656 | CONN_HASH_PARAMS_TYPE_DST_PORT); |
| 1657 | } |
| 1658 | |
Amaury Denoyelle | d10a200 | 2021-02-11 19:45:19 +0100 | [diff] [blame] | 1659 | if (params->src_addr) { |
| 1660 | conn_calculate_hash_sockaddr(params->src_addr, |
| 1661 | buf, &idx, &hash_flags, |
| 1662 | CONN_HASH_PARAMS_TYPE_SRC_ADDR, |
| 1663 | CONN_HASH_PARAMS_TYPE_SRC_PORT); |
| 1664 | } |
| 1665 | |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 1666 | if (params->proxy_prehash) { |
| 1667 | conn_hash_update(buf, &idx, |
Amaury Denoyelle | 36441f4 | 2021-02-17 16:25:31 +0100 | [diff] [blame] | 1668 | ¶ms->proxy_prehash, sizeof(params->proxy_prehash), |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 1669 | &hash_flags, CONN_HASH_PARAMS_TYPE_PROXY); |
| 1670 | } |
Amaury Denoyelle | 01a287f | 2021-02-11 16:46:53 +0100 | [diff] [blame] | 1671 | |
Amaury Denoyelle | 1921d20 | 2021-01-14 10:15:29 +0100 | [diff] [blame] | 1672 | hash = conn_hash_digest(buf, idx, hash_flags); |
Amaury Denoyelle | 81c6f76 | 2021-01-18 14:57:50 +0100 | [diff] [blame] | 1673 | return hash; |
| 1674 | } |
Amaury Denoyelle | 1e57268 | 2021-09-16 12:15:12 +0200 | [diff] [blame] | 1675 | |
| 1676 | /* Handler of the task of mux_stopping_data. |
| 1677 | * Called on soft-stop. |
| 1678 | */ |
| 1679 | static struct task *mux_stopping_process(struct task *t, void *ctx, unsigned int state) |
| 1680 | { |
| 1681 | struct connection *conn, *back; |
| 1682 | |
| 1683 | list_for_each_entry_safe(conn, back, &mux_stopping_data[tid].list, stopping_list) { |
| 1684 | if (conn->mux && conn->mux->wake) |
| 1685 | conn->mux->wake(conn); |
| 1686 | } |
| 1687 | |
| 1688 | return t; |
| 1689 | } |
| 1690 | |
| 1691 | static int allocate_mux_cleanup(void) |
| 1692 | { |
| 1693 | /* allocates the thread bound mux_stopping_data task */ |
| 1694 | mux_stopping_data[tid].task = task_new(tid_bit); |
| 1695 | if (!mux_stopping_data[tid].task) { |
| 1696 | ha_alert("Failed to allocate the task for connection cleanup on thread %d.\n", tid); |
| 1697 | return 0; |
| 1698 | } |
| 1699 | |
| 1700 | mux_stopping_data[tid].task->process = mux_stopping_process; |
| 1701 | LIST_INIT(&mux_stopping_data[tid].list); |
| 1702 | |
| 1703 | return 1; |
| 1704 | } |
| 1705 | REGISTER_PER_THREAD_ALLOC(allocate_mux_cleanup); |
| 1706 | |
| 1707 | static int deallocate_mux_cleanup(void) |
| 1708 | { |
| 1709 | task_destroy(mux_stopping_data[tid].task); |
| 1710 | return 1; |
| 1711 | } |
| 1712 | REGISTER_PER_THREAD_FREE(deallocate_mux_cleanup); |