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