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