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