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