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