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> |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 17 | #include <common/namespace.h> |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 18 | |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 19 | #include <proto/connection.h> |
Willy Tarreau | dd2f85e | 2012-09-02 22:34:23 +0200 | [diff] [blame] | 20 | #include <proto/fd.h> |
Willy Tarreau | 5f1504f | 2012-10-04 23:55:57 +0200 | [diff] [blame] | 21 | #include <proto/frontend.h> |
Willy Tarreau | 2da156f | 2012-07-23 15:07:23 +0200 | [diff] [blame] | 22 | #include <proto/proto_tcp.h> |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 23 | #include <proto/stream_interface.h> |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 24 | #include <proto/sample.h> |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 25 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 26 | #ifdef USE_OPENSSL |
| 27 | #include <proto/ssl_sock.h> |
| 28 | #endif |
| 29 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 30 | struct pool_head *pool_head_connection; |
| 31 | struct pool_head *pool_head_connstream; |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 32 | struct xprt_ops *registered_xprt[XPRT_ENTRIES] = { NULL, }; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 33 | |
Willy Tarreau | 2386be6 | 2017-09-21 19:40:52 +0200 | [diff] [blame] | 34 | /* List head of all known muxes for ALPN */ |
| 35 | struct alpn_mux_list alpn_mux_list = { |
| 36 | .list = LIST_HEAD_INIT(alpn_mux_list.list) |
| 37 | }; |
| 38 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 39 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 40 | int init_connection() |
| 41 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 42 | pool_head_connection = create_pool("connection", sizeof (struct connection), MEM_F_SHARED); |
| 43 | if (!pool_head_connection) |
Olivier Houchard | e2b40b9 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 44 | goto fail_conn; |
| 45 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 46 | pool_head_connstream = create_pool("conn_stream", sizeof(struct conn_stream), MEM_F_SHARED); |
| 47 | if (!pool_head_connstream) |
Olivier Houchard | e2b40b9 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 48 | goto fail_cs; |
| 49 | |
| 50 | return 1; |
| 51 | fail_cs: |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 52 | pool_destroy(pool_head_connection); |
| 53 | pool_head_connection = NULL; |
Olivier Houchard | e2b40b9 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 54 | fail_conn: |
| 55 | return 0; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 56 | } |
| 57 | |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 58 | /* 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] | 59 | * provided by the connection's sock_ops, which must be valid. |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 60 | */ |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 61 | void conn_fd_handler(int fd) |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 62 | { |
Willy Tarreau | 8018471 | 2012-07-06 14:54:49 +0200 | [diff] [blame] | 63 | struct connection *conn = fdtab[fd].owner; |
Willy Tarreau | 9e272bf | 2012-10-03 21:04:48 +0200 | [diff] [blame] | 64 | unsigned int flags; |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 65 | |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 66 | if (unlikely(!conn)) |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 67 | return; |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 68 | |
Willy Tarreau | 7d28149 | 2012-12-16 19:19:13 +0100 | [diff] [blame] | 69 | conn_refresh_polling_flags(conn); |
Willy Tarreau | 916e12d | 2017-10-25 09:22:43 +0200 | [diff] [blame] | 70 | conn->flags |= CO_FL_WILL_UPDATE; |
| 71 | |
Willy Tarreau | 7d28149 | 2012-12-16 19:19:13 +0100 | [diff] [blame] | 72 | 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] | 73 | |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 74 | process_handshake: |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 75 | /* The handshake callbacks are called in sequence. If either of them is |
| 76 | * missing something, it must enable the required polling at the socket |
| 77 | * layer of the connection. Polling state is not guaranteed when entering |
| 78 | * these handlers, so any handshake handler which does not complete its |
Willy Tarreau | d6e999b | 2013-11-25 08:41:15 +0100 | [diff] [blame] | 79 | * work must explicitly disable events it's not interested in. Error |
| 80 | * handling is also performed here in order to reduce the number of tests |
| 81 | * around. |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 82 | */ |
Willy Tarreau | d6e999b | 2013-11-25 08:41:15 +0100 | [diff] [blame] | 83 | while (unlikely(conn->flags & (CO_FL_HANDSHAKE | CO_FL_ERROR))) { |
Willy Tarreau | 310987a | 2014-01-22 19:46:33 +0100 | [diff] [blame] | 84 | if (unlikely(conn->flags & CO_FL_ERROR)) |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 85 | goto leave; |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 86 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 87 | if (conn->flags & CO_FL_ACCEPT_CIP) |
| 88 | if (!conn_recv_netscaler_cip(conn, CO_FL_ACCEPT_CIP)) |
| 89 | goto leave; |
| 90 | |
Willy Tarreau | 22cda21 | 2012-08-31 17:43:29 +0200 | [diff] [blame] | 91 | if (conn->flags & CO_FL_ACCEPT_PROXY) |
| 92 | if (!conn_recv_proxy(conn, CO_FL_ACCEPT_PROXY)) |
| 93 | goto leave; |
| 94 | |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 95 | if (conn->flags & CO_FL_SEND_PROXY) |
| 96 | if (!conn_si_send_proxy(conn, CO_FL_SEND_PROXY)) |
Willy Tarreau | 5f1504f | 2012-10-04 23:55:57 +0200 | [diff] [blame] | 97 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 98 | #ifdef USE_OPENSSL |
| 99 | if (conn->flags & CO_FL_SSL_WAIT_HS) |
| 100 | if (!ssl_sock_handshake(conn, CO_FL_SSL_WAIT_HS)) |
| 101 | goto leave; |
| 102 | #endif |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 103 | } |
| 104 | |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 105 | /* Once we're purely in the data phase, we disable handshake polling */ |
| 106 | if (!(conn->flags & CO_FL_POLL_SOCK)) |
| 107 | __conn_sock_stop_both(conn); |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 108 | |
Willy Tarreau | 8e3c6ce | 2017-08-28 15:46:01 +0200 | [diff] [blame] | 109 | /* The connection owner might want to be notified about an end of |
| 110 | * handshake indicating the connection is ready, before we proceed with |
| 111 | * any data exchange. The callback may fail and cause the connection to |
| 112 | * be destroyed, thus we must not use it anymore and should immediately |
| 113 | * leave instead. The caller must immediately unregister itself once |
| 114 | * called. |
Willy Tarreau | 2542b53 | 2012-08-31 16:01:23 +0200 | [diff] [blame] | 115 | */ |
Willy Tarreau | 8e3c6ce | 2017-08-28 15:46:01 +0200 | [diff] [blame] | 116 | if (conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0) |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 117 | return; |
Willy Tarreau | 2542b53 | 2012-08-31 16:01:23 +0200 | [diff] [blame] | 118 | |
Willy Tarreau | 57ec32f | 2017-04-11 19:59:33 +0200 | [diff] [blame] | 119 | if (conn->xprt && fd_send_ready(fd) && |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 120 | ((conn->flags & (CO_FL_XPRT_WR_ENA|CO_FL_ERROR|CO_FL_HANDSHAKE)) == CO_FL_XPRT_WR_ENA)) { |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 121 | /* force reporting of activity by clearing the previous flags : |
| 122 | * we'll have at least ERROR or CONNECTED at the end of an I/O, |
| 123 | * both of which will be detected below. |
Willy Tarreau | 9e272bf | 2012-10-03 21:04:48 +0200 | [diff] [blame] | 124 | */ |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 125 | flags = 0; |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 126 | conn->mux->send(conn); |
Willy Tarreau | 9e272bf | 2012-10-03 21:04:48 +0200 | [diff] [blame] | 127 | } |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 128 | |
Willy Tarreau | 57ec32f | 2017-04-11 19:59:33 +0200 | [diff] [blame] | 129 | /* The data transfer starts here and stops on error and handshakes. Note |
| 130 | * that we must absolutely test conn->xprt at each step in case it suddenly |
| 131 | * changes due to a quick unexpected close(). |
| 132 | */ |
| 133 | if (conn->xprt && fd_recv_ready(fd) && |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 134 | ((conn->flags & (CO_FL_XPRT_RD_ENA|CO_FL_WAIT_ROOM|CO_FL_ERROR|CO_FL_HANDSHAKE)) == CO_FL_XPRT_RD_ENA)) { |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 135 | /* force reporting of activity by clearing the previous flags : |
| 136 | * we'll have at least ERROR or CONNECTED at the end of an I/O, |
| 137 | * both of which will be detected below. |
Willy Tarreau | 9e272bf | 2012-10-03 21:04:48 +0200 | [diff] [blame] | 138 | */ |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 139 | flags = 0; |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 140 | conn->mux->recv(conn); |
Willy Tarreau | 9e272bf | 2012-10-03 21:04:48 +0200 | [diff] [blame] | 141 | } |
Willy Tarreau | 2da156f | 2012-07-23 15:07:23 +0200 | [diff] [blame] | 142 | |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 143 | /* It may happen during the data phase that a handshake is |
| 144 | * enabled again (eg: SSL) |
| 145 | */ |
Willy Tarreau | d6e999b | 2013-11-25 08:41:15 +0100 | [diff] [blame] | 146 | if (unlikely(conn->flags & (CO_FL_HANDSHAKE | CO_FL_ERROR))) |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 147 | goto process_handshake; |
| 148 | |
Willy Tarreau | fd803bb | 2014-01-20 15:13:07 +0100 | [diff] [blame] | 149 | if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN)) { |
Willy Tarreau | f8deb0c | 2012-09-01 17:59:22 +0200 | [diff] [blame] | 150 | /* still waiting for a connection to establish and nothing was |
| 151 | * attempted yet to probe the connection. Then let's retry the |
| 152 | * connect(). |
Willy Tarreau | 2da156f | 2012-07-23 15:07:23 +0200 | [diff] [blame] | 153 | */ |
Willy Tarreau | 239d718 | 2012-07-23 18:53:03 +0200 | [diff] [blame] | 154 | if (!tcp_connect_probe(conn)) |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 155 | goto leave; |
Willy Tarreau | 2da156f | 2012-07-23 15:07:23 +0200 | [diff] [blame] | 156 | } |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 157 | leave: |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 158 | /* Verify if the connection just established. */ |
Willy Tarreau | 7bf3fa3 | 2017-03-14 20:19:29 +0100 | [diff] [blame] | 159 | if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) |
| 160 | conn->flags |= CO_FL_CONNECTED; |
| 161 | |
Willy Tarreau | 8e3c6ce | 2017-08-28 15:46:01 +0200 | [diff] [blame] | 162 | /* The connection owner might want to be notified about failures to |
| 163 | * complete the handshake. The callback may fail and cause the |
| 164 | * connection to be destroyed, thus we must not use it anymore and |
| 165 | * should immediately leave instead. The caller must immediately |
| 166 | * unregister itself once called. |
| 167 | */ |
| 168 | if (((conn->flags ^ flags) & CO_FL_NOTIFY_DONE) && |
| 169 | conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0) |
| 170 | return; |
| 171 | |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 172 | /* The wake callback is normally used to notify the data layer about |
| 173 | * data layer activity (successful send/recv), connection establishment, |
| 174 | * shutdown and fatal errors. We need to consider the following |
| 175 | * situations to wake up the data layer : |
| 176 | * - change among the CO_FL_NOTIFY_DATA flags : |
| 177 | * {DATA,SOCK}_{RD,WR}_SH, ERROR, |
| 178 | * - absence of any of {L4,L6}_CONN and CONNECTED, indicating the |
| 179 | * end of handshake and transition to CONNECTED |
| 180 | * - raise of CONNECTED with HANDSHAKE down |
| 181 | * - end of HANDSHAKE with CONNECTED set |
| 182 | * - regular data layer activity |
| 183 | * |
| 184 | * Note that the wake callback is allowed to release the connection and |
| 185 | * the fd (and return < 0 in this case). |
Willy Tarreau | 2396c1c | 2012-10-03 21:12:16 +0200 | [diff] [blame] | 186 | */ |
Willy Tarreau | 9fa1ee6 | 2017-03-18 15:39:57 +0100 | [diff] [blame] | 187 | if ((((conn->flags ^ flags) & CO_FL_NOTIFY_DATA) || |
Willy Tarreau | 3c0cc49 | 2017-03-19 07:54:28 +0100 | [diff] [blame] | 188 | ((flags & (CO_FL_CONNECTED|CO_FL_HANDSHAKE)) != CO_FL_CONNECTED && |
| 189 | (conn->flags & (CO_FL_CONNECTED|CO_FL_HANDSHAKE)) == CO_FL_CONNECTED)) && |
Willy Tarreau | 53a4766 | 2017-08-28 10:53:00 +0200 | [diff] [blame] | 190 | conn->mux->wake(conn) < 0) |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 191 | return; |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 192 | |
Willy Tarreau | 61ace1b | 2012-07-23 12:14:26 +0200 | [diff] [blame] | 193 | /* remove the events before leaving */ |
Willy Tarreau | 26d7cfc | 2012-12-07 00:09:43 +0100 | [diff] [blame] | 194 | fdtab[fd].ev &= FD_POLL_STICKY; |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 195 | |
| 196 | /* commit polling changes */ |
Willy Tarreau | 916e12d | 2017-10-25 09:22:43 +0200 | [diff] [blame] | 197 | conn->flags &= ~CO_FL_WILL_UPDATE; |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 198 | conn_cond_update_polling(conn); |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 199 | return; |
Willy Tarreau | 59f9839 | 2012-07-06 14:13:49 +0200 | [diff] [blame] | 200 | } |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 201 | |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 202 | /* Update polling on connection <c>'s file descriptor depending on its current |
| 203 | * state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 204 | * in CO_FL_WAIT_*, and the data layer expectations indicated by CO_FL_XPRT_*. |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 205 | * The connection flags are updated with the new flags at the end of the |
Willy Tarreau | 0ffde2c | 2012-10-04 22:21:15 +0200 | [diff] [blame] | 206 | * operation. Polling is totally disabled if an error was reported. |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 207 | */ |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 208 | void conn_update_xprt_polling(struct connection *c) |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 209 | { |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 210 | unsigned int f = c->flags; |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 211 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 212 | if (!conn_ctrl_ready(c)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 213 | return; |
| 214 | |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 215 | /* update read status if needed */ |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 216 | if (unlikely((f & (CO_FL_CURR_RD_ENA|CO_FL_XPRT_RD_ENA)) == CO_FL_XPRT_RD_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 217 | fd_want_recv(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 218 | f |= CO_FL_CURR_RD_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 219 | } |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 220 | else if (unlikely((f & (CO_FL_CURR_RD_ENA|CO_FL_XPRT_RD_ENA)) == CO_FL_CURR_RD_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 221 | fd_stop_recv(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 222 | f &= ~CO_FL_CURR_RD_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 223 | } |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 224 | |
| 225 | /* update write status if needed */ |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 226 | if (unlikely((f & (CO_FL_CURR_WR_ENA|CO_FL_XPRT_WR_ENA)) == CO_FL_XPRT_WR_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 227 | fd_want_send(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 228 | f |= CO_FL_CURR_WR_ENA; |
| 229 | } |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 230 | else if (unlikely((f & (CO_FL_CURR_WR_ENA|CO_FL_XPRT_WR_ENA)) == CO_FL_CURR_WR_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 231 | fd_stop_send(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 232 | f &= ~CO_FL_CURR_WR_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 233 | } |
Willy Tarreau | 310987a | 2014-01-22 19:46:33 +0100 | [diff] [blame] | 234 | c->flags = f; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | /* Update polling on connection <c>'s file descriptor depending on its current |
| 238 | * state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN |
| 239 | * in CO_FL_WAIT_*, and the sock layer expectations indicated by CO_FL_SOCK_*. |
| 240 | * The connection flags are updated with the new flags at the end of the |
Willy Tarreau | 0ffde2c | 2012-10-04 22:21:15 +0200 | [diff] [blame] | 241 | * operation. Polling is totally disabled if an error was reported. |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 242 | */ |
| 243 | void conn_update_sock_polling(struct connection *c) |
| 244 | { |
| 245 | unsigned int f = c->flags; |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 246 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 247 | if (!conn_ctrl_ready(c)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 248 | return; |
| 249 | |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 250 | /* update read status if needed */ |
Willy Tarreau | 310987a | 2014-01-22 19:46:33 +0100 | [diff] [blame] | 251 | if (unlikely((f & (CO_FL_CURR_RD_ENA|CO_FL_SOCK_RD_ENA)) == CO_FL_SOCK_RD_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 252 | fd_want_recv(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 253 | f |= CO_FL_CURR_RD_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 254 | } |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 255 | else if (unlikely((f & (CO_FL_CURR_RD_ENA|CO_FL_SOCK_RD_ENA)) == CO_FL_CURR_RD_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 256 | fd_stop_recv(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 257 | f &= ~CO_FL_CURR_RD_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* update write status if needed */ |
Willy Tarreau | 310987a | 2014-01-22 19:46:33 +0100 | [diff] [blame] | 261 | if (unlikely((f & (CO_FL_CURR_WR_ENA|CO_FL_SOCK_WR_ENA)) == CO_FL_SOCK_WR_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 262 | fd_want_send(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 263 | f |= CO_FL_CURR_WR_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 264 | } |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 265 | else if (unlikely((f & (CO_FL_CURR_WR_ENA|CO_FL_SOCK_WR_ENA)) == CO_FL_CURR_WR_ENA)) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 266 | fd_stop_send(c->handle.fd); |
Willy Tarreau | c8dd77f | 2012-11-05 17:52:26 +0100 | [diff] [blame] | 267 | f &= ~CO_FL_CURR_WR_ENA; |
Willy Tarreau | e9dfa79 | 2012-09-01 17:26:16 +0200 | [diff] [blame] | 268 | } |
Willy Tarreau | 310987a | 2014-01-22 19:46:33 +0100 | [diff] [blame] | 269 | c->flags = f; |
Willy Tarreau | b5e2cbd | 2012-08-17 11:55:04 +0200 | [diff] [blame] | 270 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 271 | |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 272 | /* Send a message over an established connection. It makes use of send() and |
| 273 | * returns the same return code and errno. If the socket layer is not ready yet |
| 274 | * then -1 is returned and ENOTSOCK is set into errno. If the fd is not marked |
| 275 | * as ready, or if EAGAIN or ENOTCONN is returned, then we return 0. It returns |
| 276 | * EMSGSIZE if called with a zero length message. The purpose is to simplify |
| 277 | * some rare attempts to directly write on the socket from above the connection |
| 278 | * (typically send_proxy). In case of EAGAIN, the fd is marked as "cant_send". |
| 279 | * It automatically retries on EINTR. Other errors cause the connection to be |
| 280 | * marked as in error state. It takes similar arguments as send() except the |
| 281 | * first one which is the connection instead of the file descriptor. Note, |
| 282 | * MSG_DONTWAIT and MSG_NOSIGNAL are forced on the flags. |
| 283 | */ |
| 284 | int conn_sock_send(struct connection *conn, const void *buf, int len, int flags) |
| 285 | { |
| 286 | int ret; |
| 287 | |
| 288 | ret = -1; |
| 289 | errno = ENOTSOCK; |
| 290 | |
| 291 | if (conn->flags & CO_FL_SOCK_WR_SH) |
| 292 | goto fail; |
| 293 | |
| 294 | if (!conn_ctrl_ready(conn)) |
| 295 | goto fail; |
| 296 | |
| 297 | errno = EMSGSIZE; |
| 298 | if (!len) |
| 299 | goto fail; |
| 300 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 301 | if (!fd_send_ready(conn->handle.fd)) |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 302 | goto wait; |
| 303 | |
| 304 | do { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 305 | ret = send(conn->handle.fd, buf, len, flags | MSG_DONTWAIT | MSG_NOSIGNAL); |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 306 | } while (ret < 0 && errno == EINTR); |
| 307 | |
| 308 | |
| 309 | if (ret > 0) |
| 310 | return ret; |
| 311 | |
| 312 | if (ret == 0 || errno == EAGAIN || errno == ENOTCONN) { |
| 313 | wait: |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 314 | fd_cant_send(conn->handle.fd); |
Willy Tarreau | ff3e648 | 2015-03-12 23:56:52 +0100 | [diff] [blame] | 315 | return 0; |
| 316 | } |
| 317 | fail: |
| 318 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH | CO_FL_ERROR; |
| 319 | return ret; |
| 320 | } |
| 321 | |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 322 | /* Drains possibly pending incoming data on the file descriptor attached to the |
| 323 | * connection and update the connection's flags accordingly. This is used to |
| 324 | * know whether we need to disable lingering on close. Returns non-zero if it |
| 325 | * is safe to close without disabling lingering, otherwise zero. The SOCK_RD_SH |
| 326 | * flag may also be updated if the incoming shutdown was reported by the drain() |
| 327 | * function. |
| 328 | */ |
| 329 | int conn_sock_drain(struct connection *conn) |
| 330 | { |
| 331 | if (!conn_ctrl_ready(conn)) |
| 332 | return 1; |
| 333 | |
| 334 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) |
| 335 | return 1; |
| 336 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 337 | if (fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) { |
| 338 | fdtab[conn->handle.fd].linger_risk = 0; |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 339 | } |
| 340 | else { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 341 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 342 | return 0; |
| 343 | |
| 344 | /* disable draining if we were called and have no drain function */ |
| 345 | if (!conn->ctrl->drain) { |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 346 | __conn_xprt_stop_recv(conn); |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 347 | return 0; |
| 348 | } |
| 349 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 350 | if (conn->ctrl->drain(conn->handle.fd) <= 0) |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 351 | return 0; |
| 352 | } |
| 353 | |
| 354 | conn->flags |= CO_FL_SOCK_RD_SH; |
| 355 | return 1; |
| 356 | } |
| 357 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 358 | /* |
| 359 | * Get data length from tlv |
| 360 | */ |
| 361 | static int get_tlv_length(const struct tlv *src) |
| 362 | { |
| 363 | return (src->length_hi << 8) | src->length_lo; |
| 364 | } |
| 365 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 366 | /* This handshake handler waits a PROXY protocol header at the beginning of the |
| 367 | * raw data stream. The header looks like this : |
| 368 | * |
| 369 | * "PROXY" <SP> PROTO <SP> SRC3 <SP> DST3 <SP> SRC4 <SP> <DST4> "\r\n" |
| 370 | * |
| 371 | * There must be exactly one space between each field. Fields are : |
| 372 | * - PROTO : layer 4 protocol, which must be "TCP4" or "TCP6". |
| 373 | * - SRC3 : layer 3 (eg: IP) source address in standard text form |
| 374 | * - DST3 : layer 3 (eg: IP) destination address in standard text form |
| 375 | * - SRC4 : layer 4 (eg: TCP port) source address in standard text form |
| 376 | * - DST4 : layer 4 (eg: TCP port) destination address in standard text form |
| 377 | * |
| 378 | * This line MUST be at the beginning of the buffer and MUST NOT wrap. |
| 379 | * |
| 380 | * The header line is small and in all cases smaller than the smallest normal |
| 381 | * TCP MSS. So it MUST always be delivered as one segment, which ensures we |
| 382 | * can safely use MSG_PEEK and avoid buffering. |
| 383 | * |
| 384 | * Once the data is fetched, the values are set in the connection's address |
| 385 | * fields, and data are removed from the socket's buffer. The function returns |
| 386 | * zero if it needs to wait for more data or if it fails, or 1 if it completed |
| 387 | * and removed itself. |
| 388 | */ |
| 389 | int conn_recv_proxy(struct connection *conn, int flag) |
| 390 | { |
| 391 | char *line, *end; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 392 | struct proxy_hdr_v2 *hdr_v2; |
| 393 | const char v2sig[] = PP2_SIGNATURE; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 394 | int tlv_length = 0; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 395 | int tlv_offset = 0; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 396 | |
| 397 | /* we might have been called just after an asynchronous shutr */ |
| 398 | if (conn->flags & CO_FL_SOCK_RD_SH) |
| 399 | goto fail; |
| 400 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 401 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 402 | goto fail; |
| 403 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 404 | if (!fd_recv_ready(conn->handle.fd)) |
Willy Tarreau | fd803bb | 2014-01-20 15:13:07 +0100 | [diff] [blame] | 405 | return 0; |
| 406 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 407 | do { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 408 | trash.len = recv(conn->handle.fd, trash.str, trash.size, MSG_PEEK); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 409 | if (trash.len < 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 410 | if (errno == EINTR) |
| 411 | continue; |
| 412 | if (errno == EAGAIN) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 413 | fd_cant_recv(conn->handle.fd); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 414 | return 0; |
| 415 | } |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 416 | goto recv_abort; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 417 | } |
| 418 | } while (0); |
| 419 | |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 420 | if (!trash.len) { |
| 421 | /* client shutdown */ |
| 422 | conn->err_code = CO_ER_PRX_EMPTY; |
| 423 | goto fail; |
| 424 | } |
| 425 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 426 | if (trash.len < 6) |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 427 | goto missing; |
| 428 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 429 | line = trash.str; |
| 430 | end = trash.str + trash.len; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 431 | |
| 432 | /* Decode a possible proxy request, fail early if it does not match */ |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 433 | if (strncmp(line, "PROXY ", 6) != 0) |
| 434 | goto not_v1; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 435 | |
| 436 | line += 6; |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 437 | if (trash.len < 9) /* shortest possible line */ |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 438 | goto missing; |
| 439 | |
David CARLIER | 42ff05e | 2016-03-24 09:22:36 +0000 | [diff] [blame] | 440 | if (memcmp(line, "TCP4 ", 5) == 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 441 | u32 src3, dst3, sport, dport; |
| 442 | |
| 443 | line += 5; |
| 444 | |
| 445 | src3 = inetaddr_host_lim_ret(line, end, &line); |
| 446 | if (line == end) |
| 447 | goto missing; |
| 448 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 449 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 450 | |
| 451 | dst3 = inetaddr_host_lim_ret(line, end, &line); |
| 452 | if (line == end) |
| 453 | goto missing; |
| 454 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 455 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 456 | |
| 457 | sport = read_uint((const char **)&line, end); |
| 458 | if (line == end) |
| 459 | goto missing; |
| 460 | if (*line++ != ' ') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 461 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 462 | |
| 463 | dport = read_uint((const char **)&line, end); |
| 464 | if (line > end - 2) |
| 465 | goto missing; |
| 466 | if (*line++ != '\r') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 467 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 468 | if (*line++ != '\n') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 469 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 470 | |
| 471 | /* update the session's addresses and mark them set */ |
| 472 | ((struct sockaddr_in *)&conn->addr.from)->sin_family = AF_INET; |
| 473 | ((struct sockaddr_in *)&conn->addr.from)->sin_addr.s_addr = htonl(src3); |
| 474 | ((struct sockaddr_in *)&conn->addr.from)->sin_port = htons(sport); |
| 475 | |
| 476 | ((struct sockaddr_in *)&conn->addr.to)->sin_family = AF_INET; |
| 477 | ((struct sockaddr_in *)&conn->addr.to)->sin_addr.s_addr = htonl(dst3); |
| 478 | ((struct sockaddr_in *)&conn->addr.to)->sin_port = htons(dport); |
| 479 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 480 | } |
David CARLIER | 42ff05e | 2016-03-24 09:22:36 +0000 | [diff] [blame] | 481 | else if (memcmp(line, "TCP6 ", 5) == 0) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 482 | u32 sport, dport; |
| 483 | char *src_s; |
| 484 | char *dst_s, *sport_s, *dport_s; |
| 485 | struct in6_addr src3, dst3; |
| 486 | |
| 487 | line += 5; |
| 488 | |
| 489 | src_s = line; |
| 490 | dst_s = sport_s = dport_s = NULL; |
| 491 | while (1) { |
| 492 | if (line > end - 2) { |
| 493 | goto missing; |
| 494 | } |
| 495 | else if (*line == '\r') { |
| 496 | *line = 0; |
| 497 | line++; |
| 498 | if (*line++ != '\n') |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 499 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 500 | break; |
| 501 | } |
| 502 | |
| 503 | if (*line == ' ') { |
| 504 | *line = 0; |
| 505 | if (!dst_s) |
| 506 | dst_s = line + 1; |
| 507 | else if (!sport_s) |
| 508 | sport_s = line + 1; |
| 509 | else if (!dport_s) |
| 510 | dport_s = line + 1; |
| 511 | } |
| 512 | line++; |
| 513 | } |
| 514 | |
| 515 | if (!dst_s || !sport_s || !dport_s) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 516 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 517 | |
| 518 | sport = read_uint((const char **)&sport_s,dport_s - 1); |
| 519 | if (*sport_s != 0) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 520 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 521 | |
| 522 | dport = read_uint((const char **)&dport_s,line - 2); |
| 523 | if (*dport_s != 0) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 524 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 525 | |
| 526 | if (inet_pton(AF_INET6, src_s, (void *)&src3) != 1) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 527 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 528 | |
| 529 | if (inet_pton(AF_INET6, dst_s, (void *)&dst3) != 1) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 530 | goto bad_header; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 531 | |
| 532 | /* update the session's addresses and mark them set */ |
| 533 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_family = AF_INET6; |
| 534 | memcpy(&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr, &src3, sizeof(struct in6_addr)); |
| 535 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_port = htons(sport); |
| 536 | |
| 537 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_family = AF_INET6; |
| 538 | memcpy(&((struct sockaddr_in6 *)&conn->addr.to)->sin6_addr, &dst3, sizeof(struct in6_addr)); |
| 539 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_port = htons(dport); |
| 540 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 541 | } |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 542 | else if (memcmp(line, "UNKNOWN\r\n", 9) == 0) { |
| 543 | /* This can be a UNIX socket forwarded by an haproxy upstream */ |
| 544 | line += 9; |
| 545 | } |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 546 | else { |
Willy Tarreau | 4c20d29 | 2014-06-14 11:41:36 +0200 | [diff] [blame] | 547 | /* The protocol does not match something known (TCP4/TCP6/UNKNOWN) */ |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 548 | conn->err_code = CO_ER_PRX_BAD_PROTO; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 549 | goto fail; |
| 550 | } |
| 551 | |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 552 | trash.len = line - trash.str; |
| 553 | goto eat_header; |
| 554 | |
| 555 | not_v1: |
| 556 | /* try PPv2 */ |
| 557 | if (trash.len < PP2_HEADER_LEN) |
| 558 | goto missing; |
| 559 | |
| 560 | hdr_v2 = (struct proxy_hdr_v2 *)trash.str; |
| 561 | |
| 562 | if (memcmp(hdr_v2->sig, v2sig, PP2_SIGNATURE_LEN) != 0 || |
| 563 | (hdr_v2->ver_cmd & PP2_VERSION_MASK) != PP2_VERSION) { |
| 564 | conn->err_code = CO_ER_PRX_NOT_HDR; |
| 565 | goto fail; |
| 566 | } |
| 567 | |
| 568 | if (trash.len < PP2_HEADER_LEN + ntohs(hdr_v2->len)) |
| 569 | goto missing; |
| 570 | |
| 571 | switch (hdr_v2->ver_cmd & PP2_CMD_MASK) { |
| 572 | case 0x01: /* PROXY command */ |
| 573 | switch (hdr_v2->fam) { |
| 574 | case 0x11: /* TCPv4 */ |
KOVACS Krisztian | efd3aa9 | 2014-11-19 10:53:20 +0100 | [diff] [blame] | 575 | if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET) |
| 576 | goto bad_header; |
| 577 | |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 578 | ((struct sockaddr_in *)&conn->addr.from)->sin_family = AF_INET; |
| 579 | ((struct sockaddr_in *)&conn->addr.from)->sin_addr.s_addr = hdr_v2->addr.ip4.src_addr; |
| 580 | ((struct sockaddr_in *)&conn->addr.from)->sin_port = hdr_v2->addr.ip4.src_port; |
| 581 | ((struct sockaddr_in *)&conn->addr.to)->sin_family = AF_INET; |
| 582 | ((struct sockaddr_in *)&conn->addr.to)->sin_addr.s_addr = hdr_v2->addr.ip4.dst_addr; |
| 583 | ((struct sockaddr_in *)&conn->addr.to)->sin_port = hdr_v2->addr.ip4.dst_port; |
| 584 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 585 | tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 586 | tlv_length = ntohs(hdr_v2->len) - PP2_ADDR_LEN_INET; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 587 | break; |
| 588 | case 0x21: /* TCPv6 */ |
KOVACS Krisztian | efd3aa9 | 2014-11-19 10:53:20 +0100 | [diff] [blame] | 589 | if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET6) |
| 590 | goto bad_header; |
| 591 | |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 592 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_family = AF_INET6; |
| 593 | memcpy(&((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr, hdr_v2->addr.ip6.src_addr, 16); |
| 594 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_port = hdr_v2->addr.ip6.src_port; |
| 595 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_family = AF_INET6; |
| 596 | memcpy(&((struct sockaddr_in6 *)&conn->addr.to)->sin6_addr, hdr_v2->addr.ip6.dst_addr, 16); |
| 597 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_port = hdr_v2->addr.ip6.dst_port; |
| 598 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
KOVACS Krisztian | 7209c20 | 2015-07-03 14:09:10 +0200 | [diff] [blame] | 599 | tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET6; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 600 | tlv_length = ntohs(hdr_v2->len) - PP2_ADDR_LEN_INET6; |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 601 | break; |
| 602 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 603 | |
| 604 | /* TLV parsing */ |
| 605 | if (tlv_length > 0) { |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 606 | while (tlv_offset + TLV_HEADER_SIZE <= trash.len) { |
| 607 | const struct tlv *tlv_packet = (struct tlv *) &trash.str[tlv_offset]; |
| 608 | const int tlv_len = get_tlv_length(tlv_packet); |
| 609 | tlv_offset += tlv_len + TLV_HEADER_SIZE; |
| 610 | |
| 611 | switch (tlv_packet->type) { |
| 612 | #ifdef CONFIG_HAP_NS |
| 613 | case PP2_TYPE_NETNS: { |
| 614 | const struct netns_entry *ns; |
| 615 | ns = netns_store_lookup((char*)tlv_packet->value, tlv_len); |
| 616 | if (ns) |
| 617 | conn->proxy_netns = ns; |
| 618 | break; |
| 619 | } |
| 620 | #endif |
| 621 | default: |
| 622 | break; |
| 623 | } |
| 624 | } |
| 625 | } |
| 626 | |
Willy Tarreau | 7799267 | 2014-06-14 11:06:17 +0200 | [diff] [blame] | 627 | /* unsupported protocol, keep local connection address */ |
| 628 | break; |
| 629 | case 0x00: /* LOCAL command */ |
| 630 | /* keep local connection address for LOCAL */ |
| 631 | break; |
| 632 | default: |
| 633 | goto bad_header; /* not a supported command */ |
| 634 | } |
| 635 | |
| 636 | trash.len = PP2_HEADER_LEN + ntohs(hdr_v2->len); |
| 637 | goto eat_header; |
| 638 | |
| 639 | eat_header: |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 640 | /* remove the PROXY line from the request. For this we re-read the |
| 641 | * exact line at once. If we don't get the exact same result, we |
| 642 | * fail. |
| 643 | */ |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 644 | do { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 645 | int len2 = recv(conn->handle.fd, trash.str, trash.len, 0); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 646 | if (len2 < 0 && errno == EINTR) |
| 647 | continue; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 648 | if (len2 != trash.len) |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 649 | goto recv_abort; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 650 | } while (0); |
| 651 | |
| 652 | conn->flags &= ~flag; |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 653 | conn->flags |= CO_FL_RCVD_PROXY; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 654 | return 1; |
| 655 | |
| 656 | missing: |
| 657 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 658 | * we have not read anything. Otherwise we need to fail because we won't |
| 659 | * be able to poll anymore. |
| 660 | */ |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 661 | conn->err_code = CO_ER_PRX_TRUNCATED; |
| 662 | goto fail; |
| 663 | |
| 664 | bad_header: |
| 665 | /* This is not a valid proxy protocol header */ |
| 666 | conn->err_code = CO_ER_PRX_BAD_HDR; |
| 667 | goto fail; |
| 668 | |
| 669 | recv_abort: |
| 670 | conn->err_code = CO_ER_PRX_ABORT; |
Willy Tarreau | 26f4a04 | 2013-12-04 23:44:10 +0100 | [diff] [blame] | 671 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
Willy Tarreau | 8e3bf69 | 2012-12-03 15:41:18 +0100 | [diff] [blame] | 672 | goto fail; |
| 673 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 674 | fail: |
Willy Tarreau | d486ef5 | 2012-12-10 17:03:52 +0100 | [diff] [blame] | 675 | __conn_sock_stop_both(conn); |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 676 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 677 | return 0; |
| 678 | } |
| 679 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 680 | /* This handshake handler waits a NetScaler Client IP insertion header |
| 681 | * at the beginning of the raw data stream. The header looks like this: |
| 682 | * |
| 683 | * 4 bytes: CIP magic number |
| 684 | * 4 bytes: Header length |
| 685 | * 20+ bytes: Header of the last IP packet sent by the client during |
| 686 | * TCP handshake. |
| 687 | * 20+ bytes: Header of the last TCP packet sent by the client during |
| 688 | * TCP handshake. |
| 689 | * |
| 690 | * This line MUST be at the beginning of the buffer and MUST NOT be |
| 691 | * fragmented. |
| 692 | * |
| 693 | * The header line is small and in all cases smaller than the smallest normal |
| 694 | * TCP MSS. So it MUST always be delivered as one segment, which ensures we |
| 695 | * can safely use MSG_PEEK and avoid buffering. |
| 696 | * |
| 697 | * Once the data is fetched, the values are set in the connection's address |
| 698 | * fields, and data are removed from the socket's buffer. The function returns |
| 699 | * zero if it needs to wait for more data or if it fails, or 1 if it completed |
| 700 | * and removed itself. |
| 701 | */ |
| 702 | int conn_recv_netscaler_cip(struct connection *conn, int flag) |
| 703 | { |
| 704 | char *line; |
| 705 | uint32_t cip_magic; |
| 706 | uint32_t cip_len; |
| 707 | uint8_t ip_v; |
| 708 | |
| 709 | /* we might have been called just after an asynchronous shutr */ |
| 710 | if (conn->flags & CO_FL_SOCK_RD_SH) |
| 711 | goto fail; |
| 712 | |
| 713 | if (!conn_ctrl_ready(conn)) |
| 714 | goto fail; |
| 715 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 716 | if (!fd_recv_ready(conn->handle.fd)) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 717 | return 0; |
| 718 | |
| 719 | do { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 720 | trash.len = recv(conn->handle.fd, trash.str, trash.size, MSG_PEEK); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 721 | if (trash.len < 0) { |
| 722 | if (errno == EINTR) |
| 723 | continue; |
| 724 | if (errno == EAGAIN) { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 725 | fd_cant_recv(conn->handle.fd); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 726 | return 0; |
| 727 | } |
| 728 | goto recv_abort; |
| 729 | } |
| 730 | } while (0); |
| 731 | |
| 732 | if (!trash.len) { |
| 733 | /* client shutdown */ |
| 734 | conn->err_code = CO_ER_CIP_EMPTY; |
| 735 | goto fail; |
| 736 | } |
| 737 | |
| 738 | /* Fail if buffer length is not large enough to contain |
| 739 | * CIP magic, CIP length */ |
| 740 | if (trash.len < 8) |
| 741 | goto missing; |
| 742 | |
| 743 | line = trash.str; |
| 744 | |
| 745 | cip_magic = ntohl(*(uint32_t *)line); |
| 746 | cip_len = ntohl(*(uint32_t *)(line+4)); |
| 747 | |
| 748 | /* Decode a possible NetScaler Client IP request, fail early if |
| 749 | * it does not match */ |
| 750 | if (cip_magic != objt_listener(conn->target)->bind_conf->ns_cip_magic) |
| 751 | goto bad_magic; |
| 752 | |
| 753 | /* Fail if buffer length is not large enough to contain |
| 754 | * CIP magic, CIP length, minimal IP header */ |
| 755 | if (trash.len < 28) |
| 756 | goto missing; |
| 757 | |
| 758 | line += 8; |
| 759 | |
| 760 | /* Get IP version from the first four bits */ |
| 761 | ip_v = (*line & 0xf0) >> 4; |
| 762 | |
| 763 | if (ip_v == 4) { |
| 764 | struct ip *hdr_ip4; |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 765 | struct my_tcphdr *hdr_tcp; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 766 | |
| 767 | hdr_ip4 = (struct ip *)line; |
| 768 | |
| 769 | if (trash.len < (8 + ntohs(hdr_ip4->ip_len))) { |
| 770 | /* Fail if buffer length is not large enough to contain |
| 771 | * CIP magic, CIP length, IPv4 header */ |
| 772 | goto missing; |
| 773 | } else if (hdr_ip4->ip_p != IPPROTO_TCP) { |
| 774 | /* The protocol does not include a TCP header */ |
| 775 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 776 | goto fail; |
| 777 | } else if (trash.len < (28 + ntohs(hdr_ip4->ip_len))) { |
| 778 | /* Fail if buffer length is not large enough to contain |
| 779 | * CIP magic, CIP length, IPv4 header, TCP header */ |
| 780 | goto missing; |
| 781 | } |
| 782 | |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 783 | hdr_tcp = (struct my_tcphdr *)(line + (hdr_ip4->ip_hl * 4)); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 784 | |
| 785 | /* update the session's addresses and mark them set */ |
| 786 | ((struct sockaddr_in *)&conn->addr.from)->sin_family = AF_INET; |
| 787 | ((struct sockaddr_in *)&conn->addr.from)->sin_addr.s_addr = hdr_ip4->ip_src.s_addr; |
| 788 | ((struct sockaddr_in *)&conn->addr.from)->sin_port = hdr_tcp->source; |
| 789 | |
| 790 | ((struct sockaddr_in *)&conn->addr.to)->sin_family = AF_INET; |
| 791 | ((struct sockaddr_in *)&conn->addr.to)->sin_addr.s_addr = hdr_ip4->ip_dst.s_addr; |
| 792 | ((struct sockaddr_in *)&conn->addr.to)->sin_port = hdr_tcp->dest; |
| 793 | |
| 794 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 795 | } |
| 796 | else if (ip_v == 6) { |
| 797 | struct ip6_hdr *hdr_ip6; |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 798 | struct my_tcphdr *hdr_tcp; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 799 | |
| 800 | hdr_ip6 = (struct ip6_hdr *)line; |
| 801 | |
| 802 | if (trash.len < 28) { |
| 803 | /* Fail if buffer length is not large enough to contain |
| 804 | * CIP magic, CIP length, IPv6 header */ |
| 805 | goto missing; |
| 806 | } else if (hdr_ip6->ip6_nxt != IPPROTO_TCP) { |
| 807 | /* The protocol does not include a TCP header */ |
| 808 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 809 | goto fail; |
| 810 | } else if (trash.len < 48) { |
| 811 | /* Fail if buffer length is not large enough to contain |
| 812 | * CIP magic, CIP length, IPv6 header, TCP header */ |
| 813 | goto missing; |
| 814 | } |
| 815 | |
David Carlier | 3015a2e | 2016-07-04 22:51:33 +0100 | [diff] [blame] | 816 | hdr_tcp = (struct my_tcphdr *)(line + sizeof(struct ip6_hdr)); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 817 | |
| 818 | /* update the session's addresses and mark them set */ |
| 819 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_family = AF_INET6; |
| 820 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_addr = hdr_ip6->ip6_src; |
| 821 | ((struct sockaddr_in6 *)&conn->addr.from)->sin6_port = hdr_tcp->source; |
| 822 | |
| 823 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_family = AF_INET6; |
| 824 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_addr = hdr_ip6->ip6_dst; |
| 825 | ((struct sockaddr_in6 *)&conn->addr.to)->sin6_port = hdr_tcp->dest; |
| 826 | |
| 827 | conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET; |
| 828 | } |
| 829 | else { |
| 830 | /* The protocol does not match something known (IPv4/IPv6) */ |
| 831 | conn->err_code = CO_ER_CIP_BAD_PROTO; |
| 832 | goto fail; |
| 833 | } |
| 834 | |
| 835 | line += cip_len; |
| 836 | trash.len = line - trash.str; |
| 837 | |
| 838 | /* remove the NetScaler Client IP header from the request. For this |
| 839 | * we re-read the exact line at once. If we don't get the exact same |
| 840 | * result, we fail. |
| 841 | */ |
| 842 | do { |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 843 | int len2 = recv(conn->handle.fd, trash.str, trash.len, 0); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 844 | if (len2 < 0 && errno == EINTR) |
| 845 | continue; |
| 846 | if (len2 != trash.len) |
| 847 | goto recv_abort; |
| 848 | } while (0); |
| 849 | |
| 850 | conn->flags &= ~flag; |
| 851 | return 1; |
| 852 | |
| 853 | missing: |
| 854 | /* Missing data. Since we're using MSG_PEEK, we can only poll again if |
| 855 | * we have not read anything. Otherwise we need to fail because we won't |
| 856 | * be able to poll anymore. |
| 857 | */ |
| 858 | conn->err_code = CO_ER_CIP_TRUNCATED; |
| 859 | goto fail; |
| 860 | |
| 861 | bad_magic: |
| 862 | conn->err_code = CO_ER_CIP_BAD_MAGIC; |
| 863 | goto fail; |
| 864 | |
| 865 | recv_abort: |
| 866 | conn->err_code = CO_ER_CIP_ABORT; |
| 867 | conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
| 868 | goto fail; |
| 869 | |
| 870 | fail: |
| 871 | __conn_sock_stop_both(conn); |
| 872 | conn->flags |= CO_FL_ERROR; |
| 873 | return 0; |
| 874 | } |
| 875 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 876 | int make_proxy_line(char *buf, int buf_len, struct server *srv, struct connection *remote) |
| 877 | { |
| 878 | int ret = 0; |
| 879 | |
| 880 | if (srv && (srv->pp_opts & SRV_PP_V2)) { |
| 881 | ret = make_proxy_line_v2(buf, buf_len, srv, remote); |
| 882 | } |
| 883 | else { |
| 884 | if (remote) |
| 885 | ret = make_proxy_line_v1(buf, buf_len, &remote->addr.from, &remote->addr.to); |
| 886 | else |
| 887 | ret = make_proxy_line_v1(buf, buf_len, NULL, NULL); |
| 888 | } |
| 889 | |
| 890 | return ret; |
| 891 | } |
| 892 | |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 893 | /* Makes a PROXY protocol line from the two addresses. The output is sent to |
| 894 | * buffer <buf> for a maximum size of <buf_len> (including the trailing zero). |
| 895 | * It returns the number of bytes composing this line (including the trailing |
| 896 | * 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] | 897 | * TCP6 and "UNKNOWN" formats. If any of <src> or <dst> is null, UNKNOWN is |
| 898 | * emitted as well. |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 899 | */ |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 900 | 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] | 901 | { |
| 902 | int ret = 0; |
| 903 | |
Willy Tarreau | 2e1401a | 2013-10-01 11:41:55 +0200 | [diff] [blame] | 904 | if (src && dst && src->ss_family == dst->ss_family && src->ss_family == AF_INET) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 905 | ret = snprintf(buf + ret, buf_len - ret, "PROXY TCP4 "); |
| 906 | if (ret >= buf_len) |
| 907 | return 0; |
| 908 | |
| 909 | /* IPv4 src */ |
| 910 | if (!inet_ntop(src->ss_family, &((struct sockaddr_in *)src)->sin_addr, buf + ret, buf_len - ret)) |
| 911 | return 0; |
| 912 | |
| 913 | ret += strlen(buf + ret); |
| 914 | if (ret >= buf_len) |
| 915 | return 0; |
| 916 | |
| 917 | buf[ret++] = ' '; |
| 918 | |
| 919 | /* IPv4 dst */ |
| 920 | if (!inet_ntop(dst->ss_family, &((struct sockaddr_in *)dst)->sin_addr, buf + ret, buf_len - ret)) |
| 921 | return 0; |
| 922 | |
| 923 | ret += strlen(buf + ret); |
| 924 | if (ret >= buf_len) |
| 925 | return 0; |
| 926 | |
| 927 | /* source and destination ports */ |
| 928 | ret += snprintf(buf + ret, buf_len - ret, " %u %u\r\n", |
| 929 | ntohs(((struct sockaddr_in *)src)->sin_port), |
| 930 | ntohs(((struct sockaddr_in *)dst)->sin_port)); |
| 931 | if (ret >= buf_len) |
| 932 | return 0; |
| 933 | } |
Willy Tarreau | 2e1401a | 2013-10-01 11:41:55 +0200 | [diff] [blame] | 934 | else if (src && dst && src->ss_family == dst->ss_family && src->ss_family == AF_INET6) { |
Willy Tarreau | e1e4a61 | 2012-10-05 00:10:55 +0200 | [diff] [blame] | 935 | ret = snprintf(buf + ret, buf_len - ret, "PROXY TCP6 "); |
| 936 | if (ret >= buf_len) |
| 937 | return 0; |
| 938 | |
| 939 | /* IPv6 src */ |
| 940 | if (!inet_ntop(src->ss_family, &((struct sockaddr_in6 *)src)->sin6_addr, buf + ret, buf_len - ret)) |
| 941 | return 0; |
| 942 | |
| 943 | ret += strlen(buf + ret); |
| 944 | if (ret >= buf_len) |
| 945 | return 0; |
| 946 | |
| 947 | buf[ret++] = ' '; |
| 948 | |
| 949 | /* IPv6 dst */ |
| 950 | if (!inet_ntop(dst->ss_family, &((struct sockaddr_in6 *)dst)->sin6_addr, buf + ret, buf_len - ret)) |
| 951 | return 0; |
| 952 | |
| 953 | ret += strlen(buf + ret); |
| 954 | if (ret >= buf_len) |
| 955 | return 0; |
| 956 | |
| 957 | /* source and destination ports */ |
| 958 | ret += snprintf(buf + ret, buf_len - ret, " %u %u\r\n", |
| 959 | ntohs(((struct sockaddr_in6 *)src)->sin6_port), |
| 960 | ntohs(((struct sockaddr_in6 *)dst)->sin6_port)); |
| 961 | if (ret >= buf_len) |
| 962 | return 0; |
| 963 | } |
| 964 | else { |
| 965 | /* unknown family combination */ |
| 966 | ret = snprintf(buf, buf_len, "PROXY UNKNOWN\r\n"); |
| 967 | if (ret >= buf_len) |
| 968 | return 0; |
| 969 | } |
| 970 | return ret; |
| 971 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 972 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 973 | 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] | 974 | { |
| 975 | struct tlv *tlv; |
| 976 | |
| 977 | if (!dest || (length + sizeof(*tlv) > dest_len)) |
| 978 | return 0; |
| 979 | |
| 980 | tlv = (struct tlv *)dest; |
| 981 | |
| 982 | tlv->type = type; |
| 983 | tlv->length_hi = length >> 8; |
| 984 | tlv->length_lo = length & 0x00ff; |
| 985 | memcpy(tlv->value, value, length); |
| 986 | return length + sizeof(*tlv); |
| 987 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 988 | |
| 989 | int make_proxy_line_v2(char *buf, int buf_len, struct server *srv, struct connection *remote) |
| 990 | { |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 991 | const char pp2_signature[] = PP2_SIGNATURE; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 992 | int ret = 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 993 | struct proxy_hdr_v2 *hdr = (struct proxy_hdr_v2 *)buf; |
Vincent Bernat | 6e61589 | 2016-05-18 16:17:44 +0200 | [diff] [blame] | 994 | struct sockaddr_storage null_addr = { .ss_family = 0 }; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 995 | struct sockaddr_storage *src = &null_addr; |
| 996 | struct sockaddr_storage *dst = &null_addr; |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 997 | const char *value; |
| 998 | int value_len; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 999 | |
| 1000 | if (buf_len < PP2_HEADER_LEN) |
| 1001 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1002 | memcpy(hdr->sig, pp2_signature, PP2_SIGNATURE_LEN); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1003 | |
| 1004 | if (remote) { |
| 1005 | src = &remote->addr.from; |
| 1006 | dst = &remote->addr.to; |
| 1007 | } |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1008 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1009 | if (src && dst && src->ss_family == dst->ss_family && src->ss_family == AF_INET) { |
| 1010 | if (buf_len < PP2_HDR_LEN_INET) |
| 1011 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1012 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_PROXY; |
| 1013 | hdr->fam = PP2_FAM_INET | PP2_TRANS_STREAM; |
| 1014 | hdr->addr.ip4.src_addr = ((struct sockaddr_in *)src)->sin_addr.s_addr; |
| 1015 | hdr->addr.ip4.dst_addr = ((struct sockaddr_in *)dst)->sin_addr.s_addr; |
| 1016 | hdr->addr.ip4.src_port = ((struct sockaddr_in *)src)->sin_port; |
| 1017 | hdr->addr.ip4.dst_port = ((struct sockaddr_in *)dst)->sin_port; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1018 | ret = PP2_HDR_LEN_INET; |
| 1019 | } |
| 1020 | else if (src && dst && src->ss_family == dst->ss_family && src->ss_family == AF_INET6) { |
| 1021 | if (buf_len < PP2_HDR_LEN_INET6) |
| 1022 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1023 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_PROXY; |
| 1024 | hdr->fam = PP2_FAM_INET6 | PP2_TRANS_STREAM; |
| 1025 | memcpy(hdr->addr.ip6.src_addr, &((struct sockaddr_in6 *)src)->sin6_addr, 16); |
| 1026 | memcpy(hdr->addr.ip6.dst_addr, &((struct sockaddr_in6 *)dst)->sin6_addr, 16); |
| 1027 | hdr->addr.ip6.src_port = ((struct sockaddr_in6 *)src)->sin6_port; |
| 1028 | hdr->addr.ip6.dst_port = ((struct sockaddr_in6 *)dst)->sin6_port; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1029 | ret = PP2_HDR_LEN_INET6; |
| 1030 | } |
| 1031 | else { |
| 1032 | if (buf_len < PP2_HDR_LEN_UNSPEC) |
| 1033 | return 0; |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1034 | hdr->ver_cmd = PP2_VERSION | PP2_CMD_LOCAL; |
| 1035 | hdr->fam = PP2_FAM_UNSPEC | PP2_TRANS_UNSPEC; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1036 | ret = PP2_HDR_LEN_UNSPEC; |
| 1037 | } |
| 1038 | |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1039 | if (conn_get_alpn(remote, &value, &value_len)) { |
| 1040 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1041 | return 0; |
Emmanuel Hocdet | 571c7ac | 2017-10-31 18:24:05 +0100 | [diff] [blame] | 1042 | 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] | 1043 | } |
| 1044 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1045 | #ifdef USE_OPENSSL |
| 1046 | if (srv->pp_opts & SRV_PP_V2_SSL) { |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1047 | struct tlv_ssl *tlv; |
| 1048 | int ssl_tlv_len = 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1049 | if ((buf_len - ret) < sizeof(struct tlv_ssl)) |
| 1050 | return 0; |
| 1051 | tlv = (struct tlv_ssl *)&buf[ret]; |
| 1052 | memset(tlv, 0, sizeof(struct tlv_ssl)); |
| 1053 | ssl_tlv_len += sizeof(struct tlv_ssl); |
| 1054 | tlv->tlv.type = PP2_TYPE_SSL; |
| 1055 | if (ssl_sock_is_ssl(remote)) { |
| 1056 | tlv->client |= PP2_CLIENT_SSL; |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 1057 | value = ssl_sock_get_proto_version(remote); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1058 | if (value) { |
Emmanuel Hocdet | 82913e4 | 2017-10-31 18:31:36 +0100 | [diff] [blame] | 1059 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_VERSION, strlen(value)+1, value); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1060 | } |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 1061 | if (ssl_sock_get_cert_used_sess(remote)) { |
| 1062 | tlv->client |= PP2_CLIENT_CERT_SESS; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1063 | tlv->verify = htonl(ssl_sock_get_verify_result(remote)); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 1064 | if (ssl_sock_get_cert_used_conn(remote)) |
| 1065 | tlv->client |= PP2_CLIENT_CERT_CONN; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1066 | } |
| 1067 | if (srv->pp_opts & SRV_PP_V2_SSL_CN) { |
Emmanuel Hocdet | 404d978 | 2017-10-24 10:55:14 +0200 | [diff] [blame] | 1068 | struct chunk *cn_trash = get_trash_chunk(); |
Willy Tarreau | 3b9a0c9 | 2014-07-19 06:37:33 +0200 | [diff] [blame] | 1069 | if (ssl_sock_get_remote_common_name(remote, cn_trash) > 0) { |
Emmanuel Hocdet | 58118b4 | 2017-10-13 12:15:28 +0200 | [diff] [blame] | 1070 | ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CN, cn_trash->len, cn_trash->str); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1071 | } |
| 1072 | } |
| 1073 | } |
| 1074 | tlv->tlv.length_hi = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) >> 8; |
| 1075 | tlv->tlv.length_lo = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) & 0x00ff; |
| 1076 | ret += ssl_tlv_len; |
| 1077 | } |
| 1078 | #endif |
| 1079 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1080 | #ifdef CONFIG_HAP_NS |
| 1081 | if (remote && (remote->proxy_netns)) { |
| 1082 | if ((buf_len - ret) < sizeof(struct tlv)) |
| 1083 | return 0; |
Emmanuel Hocdet | 571c7ac | 2017-10-31 18:24:05 +0100 | [diff] [blame] | 1084 | 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] | 1085 | } |
| 1086 | #endif |
| 1087 | |
Willy Tarreau | 8fccfa2 | 2014-06-14 08:28:06 +0200 | [diff] [blame] | 1088 | hdr->len = htons((uint16_t)(ret - PP2_HEADER_LEN)); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 1089 | |
| 1090 | return ret; |
| 1091 | } |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1092 | |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1093 | /* return the major HTTP version as 1 or 2 depending on how the request arrived |
| 1094 | * before being processed. |
| 1095 | */ |
| 1096 | static int |
| 1097 | smp_fetch_fc_http_major(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1098 | { |
| 1099 | struct connection *conn = objt_conn(smp->sess->origin); |
| 1100 | |
| 1101 | smp->data.type = SMP_T_SINT; |
| 1102 | smp->data.u.sint = (conn && strcmp(conn_get_mux_name(conn), "H2") == 0) ? 2 : 1; |
| 1103 | return 1; |
| 1104 | } |
| 1105 | |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1106 | /* fetch if the received connection used a PROXY protocol header */ |
| 1107 | int smp_fetch_fc_rcvd_proxy(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1108 | { |
| 1109 | struct connection *conn; |
| 1110 | |
| 1111 | conn = objt_conn(smp->sess->origin); |
| 1112 | if (!conn) |
| 1113 | return 0; |
| 1114 | |
| 1115 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 1116 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1117 | return 0; |
| 1118 | } |
| 1119 | |
| 1120 | smp->flags = 0; |
| 1121 | smp->data.type = SMP_T_BOOL; |
| 1122 | smp->data.u.sint = (conn->flags & CO_FL_RCVD_PROXY) ? 1 : 0; |
| 1123 | |
| 1124 | return 1; |
| 1125 | } |
| 1126 | |
| 1127 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1128 | * Note: fetches that may return multiple types must be declared as the lowest |
| 1129 | * common denominator, the type that can be casted into all other ones. For |
| 1130 | * instance v4/v6 must be declared v4. |
| 1131 | */ |
| 1132 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Willy Tarreau | 60ca10a | 2017-08-18 15:26:54 +0200 | [diff] [blame] | 1133 | { "fc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
Emeric Brun | 4f60301 | 2017-01-05 15:11:44 +0100 | [diff] [blame] | 1134 | { "fc_rcvd_proxy", smp_fetch_fc_rcvd_proxy, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI }, |
| 1135 | { /* END */ }, |
| 1136 | }}; |
| 1137 | |
| 1138 | |
| 1139 | __attribute__((constructor)) |
| 1140 | static void __connection_init(void) |
| 1141 | { |
| 1142 | sample_register_fetches(&sample_fetch_keywords); |
| 1143 | } |