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