blob: 3f3e99d1234d6cdab3d1e85a5fa2dbe468f2966a [file] [log] [blame]
Willy Tarreau59f98392012-07-06 14:13:49 +02001/*
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 Tarreaue1e4a612012-10-05 00:10:55 +020013#include <errno.h>
14
Willy Tarreau59f98392012-07-06 14:13:49 +020015#include <common/compat.h>
16#include <common/config.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010017#include <common/initcall.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010018#include <common/namespace.h>
Emmanuel Hocdet4399c752018-02-05 15:26:43 +010019#include <common/hash.h>
20#include <common/net_helper.h>
Willy Tarreau59f98392012-07-06 14:13:49 +020021
Willy Tarreauc5788912012-08-24 18:12:41 +020022#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020023#include <proto/fd.h>
Willy Tarreau5f1504f2012-10-04 23:55:57 +020024#include <proto/frontend.h>
Willy Tarreau2da156f2012-07-23 15:07:23 +020025#include <proto/proto_tcp.h>
Willy Tarreau2c6be842012-07-06 17:12:34 +020026#include <proto/stream_interface.h>
Emeric Brun4f603012017-01-05 15:11:44 +010027#include <proto/sample.h>
Emeric Brun46591952012-05-18 15:47:34 +020028#include <proto/ssl_sock.h>
Emeric Brun46591952012-05-18 15:47:34 +020029
Alexander Liu2a54bb72019-05-22 19:44:48 +080030#include <common/debug.h>
31
Willy Tarreau8ceae722018-11-26 11:58:30 +010032DECLARE_POOL(pool_head_connection, "connection", sizeof(struct connection));
33DECLARE_POOL(pool_head_connstream, "conn_stream", sizeof(struct conn_stream));
Willy Tarreauff5d57b2019-07-17 18:37:02 +020034DECLARE_POOL(pool_head_sockaddr, "sockaddr", sizeof(struct sockaddr_storage));
Geoff Simmons7185b782019-08-27 18:31:16 +020035DECLARE_POOL(pool_head_authority, "authority", PP2_AUTHORITY_MAX);
Willy Tarreau8ceae722018-11-26 11:58:30 +010036
Willy Tarreau13e14102016-12-22 20:25:26 +010037struct xprt_ops *registered_xprt[XPRT_ENTRIES] = { NULL, };
Willy Tarreauf2943dc2012-10-26 20:10:28 +020038
Christopher Faulet32f61c02018-04-10 14:33:41 +020039/* List head of all known muxes for PROTO */
40struct mux_proto_list mux_proto_list = {
41 .list = LIST_HEAD_INIT(mux_proto_list.list)
Willy Tarreau2386be62017-09-21 19:40:52 +020042};
43
Willy Tarreau59f98392012-07-06 14:13:49 +020044/* I/O callback for fd-based connections. It calls the read/write handlers
Willy Tarreau7a798e52016-04-14 11:13:20 +020045 * provided by the connection's sock_ops, which must be valid.
Willy Tarreau59f98392012-07-06 14:13:49 +020046 */
Willy Tarreau7a798e52016-04-14 11:13:20 +020047void conn_fd_handler(int fd)
Willy Tarreau59f98392012-07-06 14:13:49 +020048{
Willy Tarreau80184712012-07-06 14:54:49 +020049 struct connection *conn = fdtab[fd].owner;
Willy Tarreau9e272bf2012-10-03 21:04:48 +020050 unsigned int flags;
Olivier Houchardaf4021e2018-08-09 13:06:55 +020051 int io_available = 0;
Willy Tarreau59f98392012-07-06 14:13:49 +020052
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010053 if (unlikely(!conn)) {
54 activity[tid].conn_dead++;
Willy Tarreau7a798e52016-04-14 11:13:20 +020055 return;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010056 }
Willy Tarreau59f98392012-07-06 14:13:49 +020057
Willy Tarreau7d281492012-12-16 19:19:13 +010058 conn_refresh_polling_flags(conn);
Willy Tarreau916e12d2017-10-25 09:22:43 +020059 conn->flags |= CO_FL_WILL_UPDATE;
60
Willy Tarreau7d281492012-12-16 19:19:13 +010061 flags = conn->flags & ~CO_FL_ERROR; /* ensure to call the wake handler upon error */
Willy Tarreaud29a0662012-12-10 16:33:38 +010062
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +020063 /* The connection owner might want to be notified about an end of
64 * handshake indicating the connection is ready, before we proceed with
65 * any data exchange. The callback may fail and cause the connection to
66 * be destroyed, thus we must not use it anymore and should immediately
67 * leave instead. The caller must immediately unregister itself once
68 * called.
Willy Tarreau2542b532012-08-31 16:01:23 +020069 */
Olivier Houchardfe50bfb2019-05-27 12:09:19 +020070 if (!(conn->flags & CO_FL_HANDSHAKE) &&
Olivier Houchardea8dd942019-05-20 14:02:16 +020071 conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0)
Willy Tarreau7a798e52016-04-14 11:13:20 +020072 return;
Willy Tarreau2542b532012-08-31 16:01:23 +020073
Willy Tarreau8081abe2019-11-28 18:08:49 +010074 if (fd_send_ready(fd) && fd_send_active(fd)) {
Willy Tarreau3c0cc492017-03-19 07:54:28 +010075 /* force reporting of activity by clearing the previous flags :
76 * we'll have at least ERROR or CONNECTED at the end of an I/O,
77 * both of which will be detected below.
Willy Tarreau9e272bf2012-10-03 21:04:48 +020078 */
Willy Tarreau3c0cc492017-03-19 07:54:28 +010079 flags = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +020080 if (conn->send_wait != NULL) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +010081 conn->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +020082 tasklet_wakeup(conn->send_wait->tasklet);
Olivier Houchardfa8aa862018-10-10 18:25:41 +020083 conn->send_wait = NULL;
84 } else
85 io_available = 1;
Olivier Houchard53216e72018-10-10 15:46:36 +020086 __conn_xprt_stop_send(conn);
Willy Tarreau9e272bf2012-10-03 21:04:48 +020087 }
Willy Tarreau59f98392012-07-06 14:13:49 +020088
Willy Tarreauccf3f6d2019-09-05 17:05:05 +020089 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN)) {
90 /* still waiting for a connection to establish and nothing was
91 * attempted yet to probe the connection. Then let's retry the
92 * connect().
93 */
Willy Tarreau4970e5a2019-12-27 10:40:21 +010094 if (!conn_fd_check(conn))
Willy Tarreauccf3f6d2019-09-05 17:05:05 +020095 goto leave;
96 }
97
Willy Tarreau57ec32f2017-04-11 19:59:33 +020098 /* The data transfer starts here and stops on error and handshakes. Note
99 * that we must absolutely test conn->xprt at each step in case it suddenly
100 * changes due to a quick unexpected close().
101 */
Willy Tarreau8081abe2019-11-28 18:08:49 +0100102 if (fd_recv_ready(fd) && fd_recv_active(fd)) {
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100103 /* force reporting of activity by clearing the previous flags :
104 * we'll have at least ERROR or CONNECTED at the end of an I/O,
105 * both of which will be detected below.
Willy Tarreau9e272bf2012-10-03 21:04:48 +0200106 */
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100107 flags = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200108 if (conn->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100109 conn->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200110 tasklet_wakeup(conn->recv_wait->tasklet);
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200111 conn->recv_wait = NULL;
112 } else
113 io_available = 1;
Olivier Houchard53216e72018-10-10 15:46:36 +0200114 __conn_xprt_stop_recv(conn);
Willy Tarreau9e272bf2012-10-03 21:04:48 +0200115 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200116
Willy Tarreau2c6be842012-07-06 17:12:34 +0200117 leave:
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100118 /* Verify if the connection just established. */
Willy Tarreau7bf3fa32017-03-14 20:19:29 +0100119 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED))))
120 conn->flags |= CO_FL_CONNECTED;
121
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +0200122 /* The connection owner might want to be notified about failures to
123 * complete the handshake. The callback may fail and cause the
124 * connection to be destroyed, thus we must not use it anymore and
125 * should immediately leave instead. The caller must immediately
126 * unregister itself once called.
127 */
128 if (((conn->flags ^ flags) & CO_FL_NOTIFY_DONE) &&
129 conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0)
130 return;
131
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100132 /* The wake callback is normally used to notify the data layer about
133 * data layer activity (successful send/recv), connection establishment,
134 * shutdown and fatal errors. We need to consider the following
135 * situations to wake up the data layer :
136 * - change among the CO_FL_NOTIFY_DATA flags :
137 * {DATA,SOCK}_{RD,WR}_SH, ERROR,
138 * - absence of any of {L4,L6}_CONN and CONNECTED, indicating the
139 * end of handshake and transition to CONNECTED
140 * - raise of CONNECTED with HANDSHAKE down
141 * - end of HANDSHAKE with CONNECTED set
142 * - regular data layer activity
143 *
144 * Note that the wake callback is allowed to release the connection and
145 * the fd (and return < 0 in this case).
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200146 */
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200147 if ((io_available || (((conn->flags ^ flags) & CO_FL_NOTIFY_DATA) ||
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100148 ((flags & (CO_FL_CONNECTED|CO_FL_HANDSHAKE)) != CO_FL_CONNECTED &&
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200149 (conn->flags & (CO_FL_CONNECTED|CO_FL_HANDSHAKE)) == CO_FL_CONNECTED))) &&
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200150 conn->mux && conn->mux->wake && conn->mux->wake(conn) < 0)
Willy Tarreau7a798e52016-04-14 11:13:20 +0200151 return;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200152
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200153 /* commit polling changes */
Willy Tarreau916e12d2017-10-25 09:22:43 +0200154 conn->flags &= ~CO_FL_WILL_UPDATE;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200155 conn_cond_update_polling(conn);
Willy Tarreau7a798e52016-04-14 11:13:20 +0200156 return;
Willy Tarreau59f98392012-07-06 14:13:49 +0200157}
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200158
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200159/* Update polling on connection <c>'s file descriptor depending on its current
160 * state as reported in the connection's CO_FL_CURR_* flags, reports of EAGAIN
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200161 * in CO_FL_WAIT_*, and the data layer expectations indicated by CO_FL_XPRT_*.
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200162 * The connection flags are updated with the new flags at the end of the
Willy Tarreau0ffde2c2012-10-04 22:21:15 +0200163 * operation. Polling is totally disabled if an error was reported.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200164 */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200165void conn_update_xprt_polling(struct connection *c)
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200166{
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200167 unsigned int f = c->flags;
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200168
Willy Tarreau3c728722014-01-23 13:50:42 +0100169 if (!conn_ctrl_ready(c))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200170 return;
171
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200172 /* update read status if needed */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200173 if (unlikely((f & (CO_FL_CURR_RD_ENA|CO_FL_XPRT_RD_ENA)) == CO_FL_XPRT_RD_ENA)) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200174 fd_want_recv(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100175 f |= CO_FL_CURR_RD_ENA;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200176 }
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200177 else if (unlikely((f & (CO_FL_CURR_RD_ENA|CO_FL_XPRT_RD_ENA)) == CO_FL_CURR_RD_ENA)) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200178 fd_stop_recv(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100179 f &= ~CO_FL_CURR_RD_ENA;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200180 }
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200181
182 /* update write status if needed */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200183 if (unlikely((f & (CO_FL_CURR_WR_ENA|CO_FL_XPRT_WR_ENA)) == CO_FL_XPRT_WR_ENA)) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200184 fd_want_send(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100185 f |= CO_FL_CURR_WR_ENA;
186 }
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200187 else if (unlikely((f & (CO_FL_CURR_WR_ENA|CO_FL_XPRT_WR_ENA)) == CO_FL_CURR_WR_ENA)) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200188 fd_stop_send(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100189 f &= ~CO_FL_CURR_WR_ENA;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200190 }
Willy Tarreau310987a2014-01-22 19:46:33 +0100191 c->flags = f;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200192}
193
Willy Tarreau4970e5a2019-12-27 10:40:21 +0100194/* This is the callback which is set when a connection establishment is pending
195 * and we have nothing to send. It may update the FD polling status to indicate
196 * !READY. It returns 0 if it fails in a fatal way or needs to poll to go
197 * further, otherwise it returns non-zero and removes the CO_FL_WAIT_L4_CONN
198 * flag from the connection's flags. In case of error, it sets CO_FL_ERROR and
199 * leaves the error code in errno.
200 */
201int conn_fd_check(struct connection *conn)
202{
203 struct sockaddr_storage *addr;
204 int fd = conn->handle.fd;
205
206 if (conn->flags & CO_FL_ERROR)
207 return 0;
208
209 if (!conn_ctrl_ready(conn))
210 return 0;
211
212 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
213 return 1; /* strange we were called while ready */
214
215 if (!fd_send_ready(fd))
216 return 0;
217
218 /* Here we have 2 cases :
219 * - modern pollers, able to report ERR/HUP. If these ones return any
220 * of these flags then it's likely a failure, otherwise it possibly
221 * is a success (i.e. there may have been data received just before
222 * the error was reported).
223 * - select, which doesn't report these and with which it's always
224 * necessary either to try connect() again or to check for SO_ERROR.
225 * In order to simplify everything, we double-check using connect() as
226 * soon as we meet either of these delicate situations. Note that
227 * SO_ERROR would clear the error after reporting it!
228 */
229 if (cur_poller.flags & HAP_POLL_F_ERRHUP) {
230 /* modern poller, able to report ERR/HUP */
231 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_IN)
232 goto done;
233 if ((fdtab[fd].ev & (FD_POLL_OUT|FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_OUT)
234 goto done;
235 if (!(fdtab[fd].ev & (FD_POLL_ERR|FD_POLL_HUP)))
236 goto wait;
237 /* error present, fall through common error check path */
238 }
239
240 /* Use connect() to check the state of the socket. This has the double
241 * advantage of *not* clearing the error (so that health checks can
242 * still use getsockopt(SO_ERROR)) and giving us the following info :
243 * - error
244 * - connecting (EALREADY, EINPROGRESS)
245 * - connected (EISCONN, 0)
246 */
247 addr = conn->dst;
248 if ((conn->flags & CO_FL_SOCKS4) && obj_type(conn->target) == OBJ_TYPE_SERVER)
249 addr = &objt_server(conn->target)->socks4_addr;
250
251 if (connect(fd, (const struct sockaddr *)addr, get_addr_len(addr)) == -1) {
252 if (errno == EALREADY || errno == EINPROGRESS)
253 goto wait;
254
255 if (errno && errno != EISCONN)
256 goto out_error;
257 }
258
259 done:
260 /* The FD is ready now, we'll mark the connection as complete and
261 * forward the event to the transport layer which will notify the
262 * data layer.
263 */
264 conn->flags &= ~CO_FL_WAIT_L4_CONN;
265 fd_may_send(fd);
266 fd_cond_recv(fd);
267 errno = 0; // make health checks happy
268 return 1;
269
270 out_error:
271 /* Write error on the file descriptor. Report it to the connection
272 * and disable polling on this FD.
273 */
274 fdtab[fd].linger_risk = 0;
275 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
276 __conn_xprt_stop_both(conn);
277 return 0;
278
279 wait:
280 __conn_xprt_want_send(conn);
281 fd_cant_send(fd);
282 return 0;
283}
284
Willy Tarreauff3e6482015-03-12 23:56:52 +0100285/* Send a message over an established connection. It makes use of send() and
286 * returns the same return code and errno. If the socket layer is not ready yet
287 * then -1 is returned and ENOTSOCK is set into errno. If the fd is not marked
288 * as ready, or if EAGAIN or ENOTCONN is returned, then we return 0. It returns
289 * EMSGSIZE if called with a zero length message. The purpose is to simplify
290 * some rare attempts to directly write on the socket from above the connection
291 * (typically send_proxy). In case of EAGAIN, the fd is marked as "cant_send".
292 * It automatically retries on EINTR. Other errors cause the connection to be
293 * marked as in error state. It takes similar arguments as send() except the
294 * first one which is the connection instead of the file descriptor. Note,
295 * MSG_DONTWAIT and MSG_NOSIGNAL are forced on the flags.
296 */
297int conn_sock_send(struct connection *conn, const void *buf, int len, int flags)
298{
299 int ret;
300
301 ret = -1;
302 errno = ENOTSOCK;
303
304 if (conn->flags & CO_FL_SOCK_WR_SH)
305 goto fail;
306
307 if (!conn_ctrl_ready(conn))
308 goto fail;
309
310 errno = EMSGSIZE;
311 if (!len)
312 goto fail;
313
Willy Tarreau585744b2017-08-24 14:31:19 +0200314 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauff3e6482015-03-12 23:56:52 +0100315 goto wait;
316
317 do {
Willy Tarreau585744b2017-08-24 14:31:19 +0200318 ret = send(conn->handle.fd, buf, len, flags | MSG_DONTWAIT | MSG_NOSIGNAL);
Willy Tarreauff3e6482015-03-12 23:56:52 +0100319 } while (ret < 0 && errno == EINTR);
320
321
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200322 if (ret > 0) {
323 if (conn->flags & CO_FL_WAIT_L4_CONN) {
324 conn->flags &= ~CO_FL_WAIT_L4_CONN;
325 fd_may_send(conn->handle.fd);
326 fd_cond_recv(conn->handle.fd);
327 }
Willy Tarreauff3e6482015-03-12 23:56:52 +0100328 return ret;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200329 }
Willy Tarreauff3e6482015-03-12 23:56:52 +0100330
331 if (ret == 0 || errno == EAGAIN || errno == ENOTCONN) {
332 wait:
Willy Tarreau585744b2017-08-24 14:31:19 +0200333 fd_cant_send(conn->handle.fd);
Willy Tarreauff3e6482015-03-12 23:56:52 +0100334 return 0;
335 }
336 fail:
337 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH | CO_FL_ERROR;
338 return ret;
339}
340
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100341int conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param)
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200342{
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200343 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200344
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100345 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200346 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200347 BUG_ON(conn->recv_wait != sw);
348 conn->recv_wait = NULL;
349 sw->events &= ~SUB_RETRY_RECV;
Olivier Houchard53216e72018-10-10 15:46:36 +0200350 __conn_xprt_stop_recv(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200351 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100352 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200353 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200354 BUG_ON(conn->send_wait != sw);
355 conn->send_wait = NULL;
356 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchard53216e72018-10-10 15:46:36 +0200357 __conn_xprt_stop_send(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200358 }
Olivier Houchard53216e72018-10-10 15:46:36 +0200359 conn_update_xprt_polling(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200360 return 0;
361}
362
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100363int conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param)
Olivier Houchard6ff20392018-07-17 18:46:31 +0200364{
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200365 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +0200366
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100367 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +0200368 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200369 BUG_ON(conn->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
370 sw->events |= SUB_RETRY_RECV;
371 conn->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100372 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard53216e72018-10-10 15:46:36 +0200373 __conn_xprt_want_recv(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200374 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100375 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +0200376 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200377 BUG_ON(conn->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
378 sw->events |= SUB_RETRY_SEND;
379 conn->send_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100380 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard53216e72018-10-10 15:46:36 +0200381 __conn_xprt_want_send(conn);
Olivier Houchard6ff20392018-07-17 18:46:31 +0200382 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200383 if (event_type != 0)
384 return (-1);
Olivier Houchard53216e72018-10-10 15:46:36 +0200385 conn_update_xprt_polling(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200386 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +0200387}
388
Willy Tarreaud85c4852015-03-13 00:40:28 +0100389/* Drains possibly pending incoming data on the file descriptor attached to the
390 * connection and update the connection's flags accordingly. This is used to
391 * know whether we need to disable lingering on close. Returns non-zero if it
392 * is safe to close without disabling lingering, otherwise zero. The SOCK_RD_SH
393 * flag may also be updated if the incoming shutdown was reported by the drain()
394 * function.
395 */
396int conn_sock_drain(struct connection *conn)
397{
Willy Tarreaue215bba2018-08-24 14:31:53 +0200398 int turns = 2;
399 int len;
400
Willy Tarreaud85c4852015-03-13 00:40:28 +0100401 if (!conn_ctrl_ready(conn))
402 return 1;
403
404 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))
405 return 1;
406
Willy Tarreaue215bba2018-08-24 14:31:53 +0200407 if (fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP))
408 goto shut;
Willy Tarreaud85c4852015-03-13 00:40:28 +0100409
Willy Tarreaue215bba2018-08-24 14:31:53 +0200410 if (!fd_recv_ready(conn->handle.fd))
411 return 0;
Willy Tarreaud85c4852015-03-13 00:40:28 +0100412
Willy Tarreaue215bba2018-08-24 14:31:53 +0200413 if (conn->ctrl->drain) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200414 if (conn->ctrl->drain(conn->handle.fd) <= 0)
Willy Tarreaud85c4852015-03-13 00:40:28 +0100415 return 0;
Willy Tarreaue215bba2018-08-24 14:31:53 +0200416 goto shut;
417 }
418
419 /* no drain function defined, use the generic one */
420
421 while (turns) {
422#ifdef MSG_TRUNC_CLEARS_INPUT
423 len = recv(conn->handle.fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
424 if (len == -1 && errno == EFAULT)
425#endif
426 len = recv(conn->handle.fd, trash.area, trash.size,
427 MSG_DONTWAIT | MSG_NOSIGNAL);
428
429 if (len == 0)
430 goto shut;
431
432 if (len < 0) {
433 if (errno == EAGAIN) {
434 /* connection not closed yet */
435 fd_cant_recv(conn->handle.fd);
436 break;
437 }
438 if (errno == EINTR) /* oops, try again */
439 continue;
440 /* other errors indicate a dead connection, fine. */
441 goto shut;
442 }
443 /* OK we read some data, let's try again once */
444 turns--;
Willy Tarreaud85c4852015-03-13 00:40:28 +0100445 }
446
Willy Tarreaue215bba2018-08-24 14:31:53 +0200447 /* some data are still present, give up */
448 return 0;
449
450 shut:
451 /* we're certain the connection was shut down */
452 fdtab[conn->handle.fd].linger_risk = 0;
Willy Tarreaud85c4852015-03-13 00:40:28 +0100453 conn->flags |= CO_FL_SOCK_RD_SH;
454 return 1;
455}
456
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100457/*
458 * Get data length from tlv
459 */
460static int get_tlv_length(const struct tlv *src)
461{
462 return (src->length_hi << 8) | src->length_lo;
463}
464
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200465/* This handshake handler waits a PROXY protocol header at the beginning of the
466 * raw data stream. The header looks like this :
467 *
468 * "PROXY" <SP> PROTO <SP> SRC3 <SP> DST3 <SP> SRC4 <SP> <DST4> "\r\n"
469 *
470 * There must be exactly one space between each field. Fields are :
471 * - PROTO : layer 4 protocol, which must be "TCP4" or "TCP6".
472 * - SRC3 : layer 3 (eg: IP) source address in standard text form
473 * - DST3 : layer 3 (eg: IP) destination address in standard text form
474 * - SRC4 : layer 4 (eg: TCP port) source address in standard text form
475 * - DST4 : layer 4 (eg: TCP port) destination address in standard text form
476 *
477 * This line MUST be at the beginning of the buffer and MUST NOT wrap.
478 *
479 * The header line is small and in all cases smaller than the smallest normal
480 * TCP MSS. So it MUST always be delivered as one segment, which ensures we
481 * can safely use MSG_PEEK and avoid buffering.
482 *
483 * Once the data is fetched, the values are set in the connection's address
484 * fields, and data are removed from the socket's buffer. The function returns
485 * zero if it needs to wait for more data or if it fails, or 1 if it completed
486 * and removed itself.
487 */
488int conn_recv_proxy(struct connection *conn, int flag)
489{
490 char *line, *end;
Willy Tarreau77992672014-06-14 11:06:17 +0200491 struct proxy_hdr_v2 *hdr_v2;
492 const char v2sig[] = PP2_SIGNATURE;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100493 int tlv_length = 0;
KOVACS Krisztian7209c202015-07-03 14:09:10 +0200494 int tlv_offset = 0;
Willy Tarreaub406b872018-08-22 05:20:32 +0200495 int ret;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200496
497 /* we might have been called just after an asynchronous shutr */
498 if (conn->flags & CO_FL_SOCK_RD_SH)
499 goto fail;
500
Willy Tarreau3c728722014-01-23 13:50:42 +0100501 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200502 goto fail;
503
Willy Tarreauca79f592019-07-17 19:04:47 +0200504 if (!sockaddr_alloc(&conn->src) || !sockaddr_alloc(&conn->dst))
505 goto fail;
506
Willy Tarreau585744b2017-08-24 14:31:19 +0200507 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200508 goto not_ready;
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100509
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200510 do {
Willy Tarreaub406b872018-08-22 05:20:32 +0200511 ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK);
512 if (ret < 0) {
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200513 if (errno == EINTR)
514 continue;
515 if (errno == EAGAIN) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200516 fd_cant_recv(conn->handle.fd);
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200517 goto not_ready;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200518 }
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100519 goto recv_abort;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200520 }
Willy Tarreaub406b872018-08-22 05:20:32 +0200521 trash.data = ret;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200522 } while (0);
523
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200524 if (!trash.data) {
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100525 /* client shutdown */
526 conn->err_code = CO_ER_PRX_EMPTY;
527 goto fail;
528 }
529
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200530 if (trash.data < 6)
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200531 goto missing;
532
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200533 line = trash.area;
534 end = trash.area + trash.data;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200535
536 /* Decode a possible proxy request, fail early if it does not match */
Willy Tarreau77992672014-06-14 11:06:17 +0200537 if (strncmp(line, "PROXY ", 6) != 0)
538 goto not_v1;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200539
540 line += 6;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200541 if (trash.data < 9) /* shortest possible line */
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200542 goto missing;
543
David CARLIER42ff05e2016-03-24 09:22:36 +0000544 if (memcmp(line, "TCP4 ", 5) == 0) {
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200545 u32 src3, dst3, sport, dport;
546
547 line += 5;
548
549 src3 = inetaddr_host_lim_ret(line, end, &line);
550 if (line == end)
551 goto missing;
552 if (*line++ != ' ')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100553 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200554
555 dst3 = inetaddr_host_lim_ret(line, end, &line);
556 if (line == end)
557 goto missing;
558 if (*line++ != ' ')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100559 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200560
561 sport = read_uint((const char **)&line, end);
562 if (line == end)
563 goto missing;
564 if (*line++ != ' ')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100565 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200566
567 dport = read_uint((const char **)&line, end);
568 if (line > end - 2)
569 goto missing;
570 if (*line++ != '\r')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100571 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200572 if (*line++ != '\n')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100573 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200574
575 /* update the session's addresses and mark them set */
Willy Tarreau226572f2019-07-17 14:46:00 +0200576 ((struct sockaddr_in *)conn->src)->sin_family = AF_INET;
577 ((struct sockaddr_in *)conn->src)->sin_addr.s_addr = htonl(src3);
578 ((struct sockaddr_in *)conn->src)->sin_port = htons(sport);
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200579
Willy Tarreau226572f2019-07-17 14:46:00 +0200580 ((struct sockaddr_in *)conn->dst)->sin_family = AF_INET;
581 ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr = htonl(dst3);
582 ((struct sockaddr_in *)conn->dst)->sin_port = htons(dport);
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200583 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
584 }
David CARLIER42ff05e2016-03-24 09:22:36 +0000585 else if (memcmp(line, "TCP6 ", 5) == 0) {
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200586 u32 sport, dport;
587 char *src_s;
588 char *dst_s, *sport_s, *dport_s;
589 struct in6_addr src3, dst3;
590
591 line += 5;
592
593 src_s = line;
594 dst_s = sport_s = dport_s = NULL;
595 while (1) {
596 if (line > end - 2) {
597 goto missing;
598 }
599 else if (*line == '\r') {
600 *line = 0;
601 line++;
602 if (*line++ != '\n')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100603 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200604 break;
605 }
606
607 if (*line == ' ') {
608 *line = 0;
609 if (!dst_s)
610 dst_s = line + 1;
611 else if (!sport_s)
612 sport_s = line + 1;
613 else if (!dport_s)
614 dport_s = line + 1;
615 }
616 line++;
617 }
618
619 if (!dst_s || !sport_s || !dport_s)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100620 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200621
622 sport = read_uint((const char **)&sport_s,dport_s - 1);
623 if (*sport_s != 0)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100624 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200625
626 dport = read_uint((const char **)&dport_s,line - 2);
627 if (*dport_s != 0)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100628 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200629
630 if (inet_pton(AF_INET6, src_s, (void *)&src3) != 1)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100631 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200632
633 if (inet_pton(AF_INET6, dst_s, (void *)&dst3) != 1)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100634 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200635
636 /* update the session's addresses and mark them set */
Willy Tarreau226572f2019-07-17 14:46:00 +0200637 ((struct sockaddr_in6 *)conn->src)->sin6_family = AF_INET6;
638 memcpy(&((struct sockaddr_in6 *)conn->src)->sin6_addr, &src3, sizeof(struct in6_addr));
639 ((struct sockaddr_in6 *)conn->src)->sin6_port = htons(sport);
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200640
Willy Tarreau226572f2019-07-17 14:46:00 +0200641 ((struct sockaddr_in6 *)conn->dst)->sin6_family = AF_INET6;
642 memcpy(&((struct sockaddr_in6 *)conn->dst)->sin6_addr, &dst3, sizeof(struct in6_addr));
643 ((struct sockaddr_in6 *)conn->dst)->sin6_port = htons(dport);
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200644 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
645 }
Willy Tarreau4c20d292014-06-14 11:41:36 +0200646 else if (memcmp(line, "UNKNOWN\r\n", 9) == 0) {
647 /* This can be a UNIX socket forwarded by an haproxy upstream */
648 line += 9;
649 }
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200650 else {
Willy Tarreau4c20d292014-06-14 11:41:36 +0200651 /* The protocol does not match something known (TCP4/TCP6/UNKNOWN) */
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100652 conn->err_code = CO_ER_PRX_BAD_PROTO;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200653 goto fail;
654 }
655
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200656 trash.data = line - trash.area;
Willy Tarreau77992672014-06-14 11:06:17 +0200657 goto eat_header;
658
659 not_v1:
660 /* try PPv2 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200661 if (trash.data < PP2_HEADER_LEN)
Willy Tarreau77992672014-06-14 11:06:17 +0200662 goto missing;
663
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200664 hdr_v2 = (struct proxy_hdr_v2 *) trash.area;
Willy Tarreau77992672014-06-14 11:06:17 +0200665
666 if (memcmp(hdr_v2->sig, v2sig, PP2_SIGNATURE_LEN) != 0 ||
667 (hdr_v2->ver_cmd & PP2_VERSION_MASK) != PP2_VERSION) {
668 conn->err_code = CO_ER_PRX_NOT_HDR;
669 goto fail;
670 }
671
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200672 if (trash.data < PP2_HEADER_LEN + ntohs(hdr_v2->len))
Willy Tarreau77992672014-06-14 11:06:17 +0200673 goto missing;
674
675 switch (hdr_v2->ver_cmd & PP2_CMD_MASK) {
676 case 0x01: /* PROXY command */
677 switch (hdr_v2->fam) {
678 case 0x11: /* TCPv4 */
KOVACS Krisztianefd3aa92014-11-19 10:53:20 +0100679 if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET)
680 goto bad_header;
681
Willy Tarreau226572f2019-07-17 14:46:00 +0200682 ((struct sockaddr_in *)conn->src)->sin_family = AF_INET;
683 ((struct sockaddr_in *)conn->src)->sin_addr.s_addr = hdr_v2->addr.ip4.src_addr;
684 ((struct sockaddr_in *)conn->src)->sin_port = hdr_v2->addr.ip4.src_port;
685 ((struct sockaddr_in *)conn->dst)->sin_family = AF_INET;
686 ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr = hdr_v2->addr.ip4.dst_addr;
687 ((struct sockaddr_in *)conn->dst)->sin_port = hdr_v2->addr.ip4.dst_port;
Willy Tarreau77992672014-06-14 11:06:17 +0200688 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
KOVACS Krisztian7209c202015-07-03 14:09:10 +0200689 tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100690 tlv_length = ntohs(hdr_v2->len) - PP2_ADDR_LEN_INET;
Willy Tarreau77992672014-06-14 11:06:17 +0200691 break;
692 case 0x21: /* TCPv6 */
KOVACS Krisztianefd3aa92014-11-19 10:53:20 +0100693 if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET6)
694 goto bad_header;
695
Willy Tarreau226572f2019-07-17 14:46:00 +0200696 ((struct sockaddr_in6 *)conn->src)->sin6_family = AF_INET6;
697 memcpy(&((struct sockaddr_in6 *)conn->src)->sin6_addr, hdr_v2->addr.ip6.src_addr, 16);
698 ((struct sockaddr_in6 *)conn->src)->sin6_port = hdr_v2->addr.ip6.src_port;
699 ((struct sockaddr_in6 *)conn->dst)->sin6_family = AF_INET6;
700 memcpy(&((struct sockaddr_in6 *)conn->dst)->sin6_addr, hdr_v2->addr.ip6.dst_addr, 16);
701 ((struct sockaddr_in6 *)conn->dst)->sin6_port = hdr_v2->addr.ip6.dst_port;
Willy Tarreau77992672014-06-14 11:06:17 +0200702 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
KOVACS Krisztian7209c202015-07-03 14:09:10 +0200703 tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET6;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100704 tlv_length = ntohs(hdr_v2->len) - PP2_ADDR_LEN_INET6;
Willy Tarreau77992672014-06-14 11:06:17 +0200705 break;
706 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100707
708 /* TLV parsing */
709 if (tlv_length > 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200710 while (tlv_offset + TLV_HEADER_SIZE <= trash.data) {
711 const struct tlv *tlv_packet = (struct tlv *) &trash.area[tlv_offset];
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100712 const int tlv_len = get_tlv_length(tlv_packet);
713 tlv_offset += tlv_len + TLV_HEADER_SIZE;
714
715 switch (tlv_packet->type) {
Emmanuel Hocdet115df3e2018-02-05 16:23:23 +0100716 case PP2_TYPE_CRC32C: {
717 void *tlv_crc32c_p = (void *)tlv_packet->value;
718 uint32_t n_crc32c = ntohl(read_u32(tlv_crc32c_p));
719 write_u32(tlv_crc32c_p, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200720 if (hash_crc32c(trash.area, PP2_HEADER_LEN + ntohs(hdr_v2->len)) != n_crc32c)
Emmanuel Hocdet115df3e2018-02-05 16:23:23 +0100721 goto bad_header;
722 break;
723 }
Willy Tarreaue5733232019-05-22 19:24:06 +0200724#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100725 case PP2_TYPE_NETNS: {
726 const struct netns_entry *ns;
727 ns = netns_store_lookup((char*)tlv_packet->value, tlv_len);
728 if (ns)
729 conn->proxy_netns = ns;
730 break;
731 }
732#endif
Geoff Simmons7185b782019-08-27 18:31:16 +0200733 case PP2_TYPE_AUTHORITY: {
734 if (tlv_len > PP2_AUTHORITY_MAX)
735 goto bad_header;
736 conn->proxy_authority = pool_alloc(pool_head_authority);
737 if (conn->proxy_authority == NULL)
738 goto fail;
739 memcpy(conn->proxy_authority, (const char *)tlv_packet->value, tlv_len);
740 conn->proxy_authority_len = tlv_len;
741 break;
742 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100743 default:
744 break;
745 }
746 }
747 }
748
Willy Tarreau77992672014-06-14 11:06:17 +0200749 /* unsupported protocol, keep local connection address */
750 break;
751 case 0x00: /* LOCAL command */
752 /* keep local connection address for LOCAL */
753 break;
754 default:
755 goto bad_header; /* not a supported command */
756 }
757
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200758 trash.data = PP2_HEADER_LEN + ntohs(hdr_v2->len);
Willy Tarreau77992672014-06-14 11:06:17 +0200759 goto eat_header;
760
761 eat_header:
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200762 /* remove the PROXY line from the request. For this we re-read the
763 * exact line at once. If we don't get the exact same result, we
764 * fail.
765 */
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200766 do {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200767 int len2 = recv(conn->handle.fd, trash.area, trash.data, 0);
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200768 if (len2 < 0 && errno == EINTR)
769 continue;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200770 if (len2 != trash.data)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100771 goto recv_abort;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200772 } while (0);
773
774 conn->flags &= ~flag;
Emeric Brun4f603012017-01-05 15:11:44 +0100775 conn->flags |= CO_FL_RCVD_PROXY;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200776 return 1;
777
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200778 not_ready:
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200779 return 0;
780
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200781 missing:
782 /* Missing data. Since we're using MSG_PEEK, we can only poll again if
783 * we have not read anything. Otherwise we need to fail because we won't
784 * be able to poll anymore.
785 */
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100786 conn->err_code = CO_ER_PRX_TRUNCATED;
787 goto fail;
788
789 bad_header:
790 /* This is not a valid proxy protocol header */
791 conn->err_code = CO_ER_PRX_BAD_HDR;
792 goto fail;
793
794 recv_abort:
795 conn->err_code = CO_ER_PRX_ABORT;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100796 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100797 goto fail;
798
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200799 fail:
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200800 conn->flags |= CO_FL_ERROR;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200801 return 0;
802}
803
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100804/* This handshake handler waits a NetScaler Client IP insertion header
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000805 * at the beginning of the raw data stream. The header format is
806 * described in doc/netscaler-client-ip-insertion-protocol.txt
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100807 *
808 * This line MUST be at the beginning of the buffer and MUST NOT be
809 * fragmented.
810 *
811 * The header line is small and in all cases smaller than the smallest normal
812 * TCP MSS. So it MUST always be delivered as one segment, which ensures we
813 * can safely use MSG_PEEK and avoid buffering.
814 *
815 * Once the data is fetched, the values are set in the connection's address
816 * fields, and data are removed from the socket's buffer. The function returns
817 * zero if it needs to wait for more data or if it fails, or 1 if it completed
818 * and removed itself.
819 */
820int conn_recv_netscaler_cip(struct connection *conn, int flag)
821{
822 char *line;
Bertrand Jacquin7d668f92017-12-13 01:23:39 +0000823 uint32_t hdr_len;
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100824 uint8_t ip_ver;
Willy Tarreaub406b872018-08-22 05:20:32 +0200825 int ret;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100826
827 /* we might have been called just after an asynchronous shutr */
828 if (conn->flags & CO_FL_SOCK_RD_SH)
829 goto fail;
830
831 if (!conn_ctrl_ready(conn))
832 goto fail;
833
Willy Tarreau585744b2017-08-24 14:31:19 +0200834 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200835 goto not_ready;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100836
837 do {
Willy Tarreaub406b872018-08-22 05:20:32 +0200838 ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK);
839 if (ret < 0) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100840 if (errno == EINTR)
841 continue;
842 if (errno == EAGAIN) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200843 fd_cant_recv(conn->handle.fd);
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200844 goto not_ready;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100845 }
846 goto recv_abort;
847 }
Willy Tarreaub406b872018-08-22 05:20:32 +0200848 trash.data = ret;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100849 } while (0);
850
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200851 if (!trash.data) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100852 /* client shutdown */
853 conn->err_code = CO_ER_CIP_EMPTY;
854 goto fail;
855 }
856
857 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000858 * CIP magic, header length or
859 * CIP magic, CIP length, CIP type, header length */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200860 if (trash.data < 12)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100861 goto missing;
862
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200863 line = trash.area;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100864
865 /* Decode a possible NetScaler Client IP request, fail early if
866 * it does not match */
Willy Tarreau55e0da62018-09-20 11:26:52 +0200867 if (ntohl(*(uint32_t *)line) != __objt_listener(conn->target)->bind_conf->ns_cip_magic)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100868 goto bad_magic;
869
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000870 /* Legacy CIP protocol */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200871 if ((trash.area[8] & 0xD0) == 0x40) {
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000872 hdr_len = ntohl(*(uint32_t *)(line+4));
873 line += 8;
874 }
875 /* Standard CIP protocol */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200876 else if (trash.area[8] == 0x00) {
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000877 hdr_len = ntohs(*(uint32_t *)(line+10));
878 line += 12;
879 }
880 /* Unknown CIP protocol */
881 else {
882 conn->err_code = CO_ER_CIP_BAD_PROTO;
883 goto fail;
884 }
885
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100886 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000887 * a minimal IP header */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200888 if (trash.data < 20)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100889 goto missing;
890
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100891 /* Get IP version from the first four bits */
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100892 ip_ver = (*line & 0xf0) >> 4;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100893
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100894 if (ip_ver == 4) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100895 struct ip *hdr_ip4;
David Carlier3015a2e2016-07-04 22:51:33 +0100896 struct my_tcphdr *hdr_tcp;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100897
898 hdr_ip4 = (struct ip *)line;
899
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200900 if (trash.data < 40 || trash.data < hdr_len) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100901 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin67de5a22017-12-13 01:15:05 +0000902 * IPv4 header, TCP header */
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100903 goto missing;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000904 }
905 else if (hdr_ip4->ip_p != IPPROTO_TCP) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100906 /* The protocol does not include a TCP header */
907 conn->err_code = CO_ER_CIP_BAD_PROTO;
908 goto fail;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000909 }
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100910
David Carlier3015a2e2016-07-04 22:51:33 +0100911 hdr_tcp = (struct my_tcphdr *)(line + (hdr_ip4->ip_hl * 4));
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100912
913 /* update the session's addresses and mark them set */
Willy Tarreau226572f2019-07-17 14:46:00 +0200914 ((struct sockaddr_in *)conn->src)->sin_family = AF_INET;
915 ((struct sockaddr_in *)conn->src)->sin_addr.s_addr = hdr_ip4->ip_src.s_addr;
916 ((struct sockaddr_in *)conn->src)->sin_port = hdr_tcp->source;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100917
Willy Tarreau226572f2019-07-17 14:46:00 +0200918 ((struct sockaddr_in *)conn->dst)->sin_family = AF_INET;
919 ((struct sockaddr_in *)conn->dst)->sin_addr.s_addr = hdr_ip4->ip_dst.s_addr;
920 ((struct sockaddr_in *)conn->dst)->sin_port = hdr_tcp->dest;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100921
922 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
923 }
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100924 else if (ip_ver == 6) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100925 struct ip6_hdr *hdr_ip6;
David Carlier3015a2e2016-07-04 22:51:33 +0100926 struct my_tcphdr *hdr_tcp;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100927
928 hdr_ip6 = (struct ip6_hdr *)line;
929
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200930 if (trash.data < 60 || trash.data < hdr_len) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100931 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin67de5a22017-12-13 01:15:05 +0000932 * IPv6 header, TCP header */
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100933 goto missing;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000934 }
935 else if (hdr_ip6->ip6_nxt != IPPROTO_TCP) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100936 /* The protocol does not include a TCP header */
937 conn->err_code = CO_ER_CIP_BAD_PROTO;
938 goto fail;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000939 }
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100940
David Carlier3015a2e2016-07-04 22:51:33 +0100941 hdr_tcp = (struct my_tcphdr *)(line + sizeof(struct ip6_hdr));
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100942
943 /* update the session's addresses and mark them set */
Willy Tarreau226572f2019-07-17 14:46:00 +0200944 ((struct sockaddr_in6 *)conn->src)->sin6_family = AF_INET6;
945 ((struct sockaddr_in6 *)conn->src)->sin6_addr = hdr_ip6->ip6_src;
946 ((struct sockaddr_in6 *)conn->src)->sin6_port = hdr_tcp->source;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100947
Willy Tarreau226572f2019-07-17 14:46:00 +0200948 ((struct sockaddr_in6 *)conn->dst)->sin6_family = AF_INET6;
949 ((struct sockaddr_in6 *)conn->dst)->sin6_addr = hdr_ip6->ip6_dst;
950 ((struct sockaddr_in6 *)conn->dst)->sin6_port = hdr_tcp->dest;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100951
952 conn->flags |= CO_FL_ADDR_FROM_SET | CO_FL_ADDR_TO_SET;
953 }
954 else {
955 /* The protocol does not match something known (IPv4/IPv6) */
956 conn->err_code = CO_ER_CIP_BAD_PROTO;
957 goto fail;
958 }
959
Bertrand Jacquin7d668f92017-12-13 01:23:39 +0000960 line += hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200961 trash.data = line - trash.area;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100962
963 /* remove the NetScaler Client IP header from the request. For this
964 * we re-read the exact line at once. If we don't get the exact same
965 * result, we fail.
966 */
967 do {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200968 int len2 = recv(conn->handle.fd, trash.area, trash.data, 0);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100969 if (len2 < 0 && errno == EINTR)
970 continue;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200971 if (len2 != trash.data)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100972 goto recv_abort;
973 } while (0);
974
975 conn->flags &= ~flag;
976 return 1;
977
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200978 not_ready:
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200979 return 0;
980
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100981 missing:
982 /* Missing data. Since we're using MSG_PEEK, we can only poll again if
983 * we have not read anything. Otherwise we need to fail because we won't
984 * be able to poll anymore.
985 */
986 conn->err_code = CO_ER_CIP_TRUNCATED;
987 goto fail;
988
989 bad_magic:
990 conn->err_code = CO_ER_CIP_BAD_MAGIC;
991 goto fail;
992
993 recv_abort:
994 conn->err_code = CO_ER_CIP_ABORT;
995 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
996 goto fail;
997
998 fail:
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100999 conn->flags |= CO_FL_ERROR;
1000 return 0;
1001}
1002
Alexander Liu2a54bb72019-05-22 19:44:48 +08001003
1004int conn_send_socks4_proxy_request(struct connection *conn)
1005{
1006 struct socks4_request req_line;
1007
1008 /* we might have been called just after an asynchronous shutw */
1009 if (conn->flags & CO_FL_SOCK_WR_SH)
1010 goto out_error;
1011
1012 if (!conn_ctrl_ready(conn))
1013 goto out_error;
1014
Willy Tarreau226572f2019-07-17 14:46:00 +02001015 if (!conn_get_dst(conn))
1016 goto out_error;
1017
Alexander Liu2a54bb72019-05-22 19:44:48 +08001018 req_line.version = 0x04;
1019 req_line.command = 0x01;
Willy Tarreau226572f2019-07-17 14:46:00 +02001020 req_line.port = get_net_port(conn->dst);
1021 req_line.ip = is_inet_addr(conn->dst);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001022 memcpy(req_line.user_id, "HAProxy\0", 8);
1023
1024 if (conn->send_proxy_ofs > 0) {
1025 /*
1026 * This is the first call to send the request
1027 */
1028 conn->send_proxy_ofs = -(int)sizeof(req_line);
1029 }
1030
1031 if (conn->send_proxy_ofs < 0) {
1032 int ret = 0;
1033
1034 /* we are sending the socks4_req_line here. If the data layer
1035 * has a pending write, we'll also set MSG_MORE.
1036 */
1037 ret = conn_sock_send(
1038 conn,
1039 ((char *)(&req_line)) + (sizeof(req_line)+conn->send_proxy_ofs),
1040 -conn->send_proxy_ofs,
1041 (conn->flags & CO_FL_XPRT_WR_ENA) ? MSG_MORE : 0);
1042
1043 DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Before send remain is [%d], sent [%d]\n",
1044 conn->handle.fd, -conn->send_proxy_ofs, ret);
1045
1046 if (ret < 0) {
1047 goto out_error;
1048 }
1049
1050 conn->send_proxy_ofs += ret; /* becomes zero once complete */
1051 if (conn->send_proxy_ofs != 0) {
1052 goto out_wait;
1053 }
1054 }
1055
1056 /* OK we've the whole request sent */
1057 conn->flags &= ~CO_FL_SOCKS4_SEND;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001058
1059 /* The connection is ready now, simply return and let the connection
1060 * handler notify upper layers if needed.
1061 */
1062 if (conn->flags & CO_FL_WAIT_L4_CONN)
1063 conn->flags &= ~CO_FL_WAIT_L4_CONN;
1064
1065 if (conn->flags & CO_FL_SEND_PROXY) {
1066 /*
1067 * Get the send_proxy_ofs ready for the send_proxy due to we are
1068 * reusing the "send_proxy_ofs", and SOCKS4 handshake should be done
1069 * before sending PROXY Protocol.
1070 */
1071 conn->send_proxy_ofs = 1;
1072 }
1073 return 1;
1074
1075 out_error:
1076 /* Write error on the file descriptor */
1077 conn->flags |= CO_FL_ERROR;
1078 if (conn->err_code == CO_ER_NONE) {
1079 conn->err_code = CO_ER_SOCKS4_SEND;
1080 }
1081 return 0;
1082
1083 out_wait:
Alexander Liu2a54bb72019-05-22 19:44:48 +08001084 return 0;
1085}
1086
1087int conn_recv_socks4_proxy_response(struct connection *conn)
1088{
1089 char line[SOCKS4_HS_RSP_LEN];
1090 int ret;
1091
1092 /* we might have been called just after an asynchronous shutr */
1093 if (conn->flags & CO_FL_SOCK_RD_SH)
1094 goto fail;
1095
1096 if (!conn_ctrl_ready(conn))
1097 goto fail;
1098
1099 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreau6499b9d2019-06-03 08:17:30 +02001100 goto not_ready;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001101
1102 do {
1103 /* SOCKS4 Proxy will response with 8 bytes, 0x00 | 0x5A | 0x00 0x00 | 0x00 0x00 0x00 0x00
1104 * Try to peek into it, before all 8 bytes ready.
1105 */
1106 ret = recv(conn->handle.fd, line, SOCKS4_HS_RSP_LEN, MSG_PEEK);
1107
1108 if (ret == 0) {
1109 /* the socket has been closed or shutdown for send */
1110 DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], errno[%d], looks like the socket has been closed or shutdown for send\n",
1111 conn->handle.fd, ret, errno);
1112 if (conn->err_code == CO_ER_NONE) {
1113 conn->err_code = CO_ER_SOCKS4_RECV;
1114 }
1115 goto fail;
1116 }
1117
1118 if (ret > 0) {
1119 if (ret == SOCKS4_HS_RSP_LEN) {
1120 DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received 8 bytes, the response is [%02X|%02X|%02X %02X|%02X %02X %02X %02X]\n",
1121 conn->handle.fd, line[0], line[1], line[2], line[3], line[4], line[5], line[6], line[7]);
1122 }else{
1123 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]);
1124 }
1125 } else {
1126 DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: Received ret[%d], errno[%d]\n", conn->handle.fd, ret, errno);
1127 }
1128
1129 if (ret < 0) {
1130 if (errno == EINTR) {
1131 continue;
1132 }
1133 if (errno == EAGAIN) {
1134 fd_cant_recv(conn->handle.fd);
Willy Tarreau6499b9d2019-06-03 08:17:30 +02001135 goto not_ready;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001136 }
1137 goto recv_abort;
1138 }
1139 } while (0);
1140
1141 if (ret < SOCKS4_HS_RSP_LEN) {
1142 /* Missing data. Since we're using MSG_PEEK, we can only poll again if
1143 * we are not able to read enough data.
1144 */
Willy Tarreau6499b9d2019-06-03 08:17:30 +02001145 goto not_ready;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001146 }
1147
1148 /*
1149 * Base on the SOCSK4 protocol:
1150 *
1151 * +----+----+----+----+----+----+----+----+
1152 * | VN | CD | DSTPORT | DSTIP |
1153 * +----+----+----+----+----+----+----+----+
1154 * # of bytes: 1 1 2 4
1155 * VN is the version of the reply code and should be 0. CD is the result
1156 * code with one of the following values:
1157 * 90: request granted
1158 * 91: request rejected or failed
1159 * 92: request rejected becasue SOCKS server cannot connect to identd on the client
1160 * 93: request rejected because the client program and identd report different user-ids
1161 * The remaining fields are ignored.
1162 */
1163 if (line[1] != 90) {
1164 conn->flags &= ~CO_FL_SOCKS4_RECV;
1165
1166 DPRINTF(stderr, "SOCKS PROXY HS FD[%04X]: FAIL, the response is [%02X|%02X|%02X %02X|%02X %02X %02X %02X]\n",
1167 conn->handle.fd, line[0], line[1], line[2], line[3], line[4], line[5], line[6], line[7]);
1168 if (conn->err_code == CO_ER_NONE) {
1169 conn->err_code = CO_ER_SOCKS4_DENY;
1170 }
1171 goto fail;
1172 }
1173
1174 /* remove the 8 bytes response from the stream */
1175 do {
1176 ret = recv(conn->handle.fd, line, SOCKS4_HS_RSP_LEN, 0);
1177 if (ret < 0 && errno == EINTR) {
1178 continue;
1179 }
1180 if (ret != SOCKS4_HS_RSP_LEN) {
1181 if (conn->err_code == CO_ER_NONE) {
1182 conn->err_code = CO_ER_SOCKS4_RECV;
1183 }
1184 goto fail;
1185 }
1186 } while (0);
1187
1188 conn->flags &= ~CO_FL_SOCKS4_RECV;
1189 return 1;
1190
Willy Tarreau6499b9d2019-06-03 08:17:30 +02001191 not_ready:
Willy Tarreau6499b9d2019-06-03 08:17:30 +02001192 return 0;
1193
Alexander Liu2a54bb72019-05-22 19:44:48 +08001194 recv_abort:
1195 if (conn->err_code == CO_ER_NONE) {
1196 conn->err_code = CO_ER_SOCKS4_ABORT;
1197 }
1198 conn->flags |= (CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH);
1199 goto fail;
1200
1201 fail:
Alexander Liu2a54bb72019-05-22 19:44:48 +08001202 conn->flags |= CO_FL_ERROR;
1203 return 0;
1204}
1205
Ilya Shipitsinca56fce2018-09-15 00:50:05 +05001206/* Note: <remote> is explicitly allowed to be NULL */
David Safb76832014-05-08 23:42:08 -04001207int make_proxy_line(char *buf, int buf_len, struct server *srv, struct connection *remote)
1208{
1209 int ret = 0;
1210
1211 if (srv && (srv->pp_opts & SRV_PP_V2)) {
1212 ret = make_proxy_line_v2(buf, buf_len, srv, remote);
1213 }
1214 else {
Willy Tarreau226572f2019-07-17 14:46:00 +02001215 if (remote && conn_get_src(remote) && conn_get_dst(remote))
1216 ret = make_proxy_line_v1(buf, buf_len, remote->src, remote->dst);
David Safb76832014-05-08 23:42:08 -04001217 else
1218 ret = make_proxy_line_v1(buf, buf_len, NULL, NULL);
1219 }
1220
1221 return ret;
1222}
1223
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001224/* Makes a PROXY protocol line from the two addresses. The output is sent to
1225 * buffer <buf> for a maximum size of <buf_len> (including the trailing zero).
1226 * It returns the number of bytes composing this line (including the trailing
1227 * LF), or zero in case of failure (eg: not enough space). It supports TCP4,
Willy Tarreau2e1401a2013-10-01 11:41:55 +02001228 * TCP6 and "UNKNOWN" formats. If any of <src> or <dst> is null, UNKNOWN is
1229 * emitted as well.
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001230 */
David Safb76832014-05-08 23:42:08 -04001231int make_proxy_line_v1(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst)
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001232{
1233 int ret = 0;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001234 char * protocol;
1235 char src_str[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)];
1236 char dst_str[MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN)];
1237 in_port_t src_port;
1238 in_port_t dst_port;
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001239
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001240 if ( !src
1241 || !dst
1242 || (src->ss_family != AF_INET && src->ss_family != AF_INET6)
1243 || (dst->ss_family != AF_INET && dst->ss_family != AF_INET6)) {
1244 /* unknown family combination */
1245 ret = snprintf(buf, buf_len, "PROXY UNKNOWN\r\n");
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001246 if (ret >= buf_len)
1247 return 0;
1248
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001249 return ret;
1250 }
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001251
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001252 /* IPv4 for both src and dst */
1253 if (src->ss_family == AF_INET && dst->ss_family == AF_INET) {
1254 protocol = "TCP4";
1255 if (!inet_ntop(AF_INET, &((struct sockaddr_in *)src)->sin_addr, src_str, sizeof(src_str)))
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001256 return 0;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001257 src_port = ((struct sockaddr_in *)src)->sin_port;
1258 if (!inet_ntop(AF_INET, &((struct sockaddr_in *)dst)->sin_addr, dst_str, sizeof(dst_str)))
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001259 return 0;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001260 dst_port = ((struct sockaddr_in *)dst)->sin_port;
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001261 }
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001262 /* IPv6 for at least one of src and dst */
1263 else {
1264 struct in6_addr tmp;
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001265
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001266 protocol = "TCP6";
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001267
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001268 if (src->ss_family == AF_INET) {
1269 /* Convert src to IPv6 */
1270 v4tov6(&tmp, &((struct sockaddr_in *)src)->sin_addr);
1271 src_port = ((struct sockaddr_in *)src)->sin_port;
1272 }
1273 else {
1274 tmp = ((struct sockaddr_in6 *)src)->sin6_addr;
1275 src_port = ((struct sockaddr_in6 *)src)->sin6_port;
1276 }
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001277
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001278 if (!inet_ntop(AF_INET6, &tmp, src_str, sizeof(src_str)))
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001279 return 0;
1280
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001281 if (dst->ss_family == AF_INET) {
1282 /* Convert dst to IPv6 */
1283 v4tov6(&tmp, &((struct sockaddr_in *)dst)->sin_addr);
1284 dst_port = ((struct sockaddr_in *)dst)->sin_port;
1285 }
1286 else {
1287 tmp = ((struct sockaddr_in6 *)dst)->sin6_addr;
1288 dst_port = ((struct sockaddr_in6 *)dst)->sin6_port;
1289 }
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001290
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001291 if (!inet_ntop(AF_INET6, &tmp, dst_str, sizeof(dst_str)))
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001292 return 0;
1293 }
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001294
1295 ret = snprintf(buf, buf_len, "PROXY %s %s %s %u %u\r\n", protocol, src_str, dst_str, ntohs(src_port), ntohs(dst_port));
1296 if (ret >= buf_len)
1297 return 0;
1298
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001299 return ret;
1300}
David Safb76832014-05-08 23:42:08 -04001301
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001302static int make_tlv(char *dest, int dest_len, char type, uint16_t length, const char *value)
David Safb76832014-05-08 23:42:08 -04001303{
1304 struct tlv *tlv;
1305
1306 if (!dest || (length + sizeof(*tlv) > dest_len))
1307 return 0;
1308
1309 tlv = (struct tlv *)dest;
1310
1311 tlv->type = type;
1312 tlv->length_hi = length >> 8;
1313 tlv->length_lo = length & 0x00ff;
1314 memcpy(tlv->value, value, length);
1315 return length + sizeof(*tlv);
1316}
David Safb76832014-05-08 23:42:08 -04001317
Ilya Shipitsinca56fce2018-09-15 00:50:05 +05001318/* Note: <remote> is explicitly allowed to be NULL */
David Safb76832014-05-08 23:42:08 -04001319int make_proxy_line_v2(char *buf, int buf_len, struct server *srv, struct connection *remote)
1320{
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001321 const char pp2_signature[] = PP2_SIGNATURE;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +01001322 void *tlv_crc32c_p = NULL;
David Safb76832014-05-08 23:42:08 -04001323 int ret = 0;
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001324 struct proxy_hdr_v2 *hdr = (struct proxy_hdr_v2 *)buf;
Vincent Bernat6e615892016-05-18 16:17:44 +02001325 struct sockaddr_storage null_addr = { .ss_family = 0 };
David Safb76832014-05-08 23:42:08 -04001326 struct sockaddr_storage *src = &null_addr;
1327 struct sockaddr_storage *dst = &null_addr;
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001328 const char *value;
1329 int value_len;
David Safb76832014-05-08 23:42:08 -04001330
1331 if (buf_len < PP2_HEADER_LEN)
1332 return 0;
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001333 memcpy(hdr->sig, pp2_signature, PP2_SIGNATURE_LEN);
David Safb76832014-05-08 23:42:08 -04001334
Willy Tarreau226572f2019-07-17 14:46:00 +02001335 if (remote && conn_get_src(remote) && conn_get_dst(remote)) {
1336 src = remote->src;
1337 dst = remote->dst;
David Safb76832014-05-08 23:42:08 -04001338 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001339
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001340 /* At least one of src or dst is not of AF_INET or AF_INET6 */
1341 if ( !src
1342 || !dst
1343 || (src->ss_family != AF_INET && src->ss_family != AF_INET6)
1344 || (dst->ss_family != AF_INET && dst->ss_family != AF_INET6)) {
David Safb76832014-05-08 23:42:08 -04001345 if (buf_len < PP2_HDR_LEN_UNSPEC)
1346 return 0;
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001347 hdr->ver_cmd = PP2_VERSION | PP2_CMD_LOCAL;
1348 hdr->fam = PP2_FAM_UNSPEC | PP2_TRANS_UNSPEC;
David Safb76832014-05-08 23:42:08 -04001349 ret = PP2_HDR_LEN_UNSPEC;
1350 }
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001351 else {
1352 /* IPv4 for both src and dst */
1353 if (src->ss_family == AF_INET && dst->ss_family == AF_INET) {
1354 if (buf_len < PP2_HDR_LEN_INET)
1355 return 0;
1356 hdr->ver_cmd = PP2_VERSION | PP2_CMD_PROXY;
1357 hdr->fam = PP2_FAM_INET | PP2_TRANS_STREAM;
1358 hdr->addr.ip4.src_addr = ((struct sockaddr_in *)src)->sin_addr.s_addr;
1359 hdr->addr.ip4.src_port = ((struct sockaddr_in *)src)->sin_port;
1360 hdr->addr.ip4.dst_addr = ((struct sockaddr_in *)dst)->sin_addr.s_addr;
1361 hdr->addr.ip4.dst_port = ((struct sockaddr_in *)dst)->sin_port;
1362 ret = PP2_HDR_LEN_INET;
1363 }
1364 /* IPv6 for at least one of src and dst */
1365 else {
1366 struct in6_addr tmp;
1367
1368 if (buf_len < PP2_HDR_LEN_INET6)
1369 return 0;
1370 hdr->ver_cmd = PP2_VERSION | PP2_CMD_PROXY;
1371 hdr->fam = PP2_FAM_INET6 | PP2_TRANS_STREAM;
1372 if (src->ss_family == AF_INET) {
1373 v4tov6(&tmp, &((struct sockaddr_in *)src)->sin_addr);
1374 memcpy(hdr->addr.ip6.src_addr, &tmp, 16);
1375 hdr->addr.ip6.src_port = ((struct sockaddr_in *)src)->sin_port;
1376 }
1377 else {
1378 memcpy(hdr->addr.ip6.src_addr, &((struct sockaddr_in6 *)src)->sin6_addr, 16);
1379 hdr->addr.ip6.src_port = ((struct sockaddr_in6 *)src)->sin6_port;
1380 }
1381 if (dst->ss_family == AF_INET) {
1382 v4tov6(&tmp, &((struct sockaddr_in *)dst)->sin_addr);
1383 memcpy(hdr->addr.ip6.dst_addr, &tmp, 16);
1384 hdr->addr.ip6.src_port = ((struct sockaddr_in *)src)->sin_port;
1385 }
1386 else {
1387 memcpy(hdr->addr.ip6.dst_addr, &((struct sockaddr_in6 *)dst)->sin6_addr, 16);
1388 hdr->addr.ip6.dst_port = ((struct sockaddr_in6 *)dst)->sin6_port;
1389 }
1390
1391 ret = PP2_HDR_LEN_INET6;
1392 }
1393 }
David Safb76832014-05-08 23:42:08 -04001394
Emmanuel Hocdet4399c752018-02-05 15:26:43 +01001395 if (srv->pp_opts & SRV_PP_V2_CRC32C) {
1396 uint32_t zero_crc32c = 0;
1397 if ((buf_len - ret) < sizeof(struct tlv))
1398 return 0;
1399 tlv_crc32c_p = (void *)((struct tlv *)&buf[ret])->value;
1400 ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_CRC32C, sizeof(zero_crc32c), (const char *)&zero_crc32c);
1401 }
1402
Ilya Shipitsinca56fce2018-09-15 00:50:05 +05001403 if (remote && conn_get_alpn(remote, &value, &value_len)) {
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001404 if ((buf_len - ret) < sizeof(struct tlv))
1405 return 0;
Emmanuel Hocdet571c7ac2017-10-31 18:24:05 +01001406 ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_ALPN, value_len, value);
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001407 }
1408
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01001409 if (srv->pp_opts & SRV_PP_V2_AUTHORITY) {
Emmanuel Hocdet8a4ffa02019-08-29 11:54:51 +02001410 value = NULL;
1411 if (remote && remote->proxy_authority) {
1412 value = remote->proxy_authority;
1413 value_len = remote->proxy_authority_len;
1414 }
1415#ifdef USE_OPENSSL
1416 else {
Jerome Magnin78891c72019-09-02 09:53:41 +02001417 if ((value = ssl_sock_get_sni(remote)))
Emmanuel Hocdet8a4ffa02019-08-29 11:54:51 +02001418 value_len = strlen(value);
1419 }
1420#endif
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01001421 if (value) {
1422 if ((buf_len - ret) < sizeof(struct tlv))
1423 return 0;
Emmanuel Hocdet8a4ffa02019-08-29 11:54:51 +02001424 ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_AUTHORITY, value_len, value);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01001425 }
1426 }
1427
Emmanuel Hocdet8a4ffa02019-08-29 11:54:51 +02001428#ifdef USE_OPENSSL
David Safb76832014-05-08 23:42:08 -04001429 if (srv->pp_opts & SRV_PP_V2_SSL) {
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001430 struct tlv_ssl *tlv;
1431 int ssl_tlv_len = 0;
David Safb76832014-05-08 23:42:08 -04001432 if ((buf_len - ret) < sizeof(struct tlv_ssl))
1433 return 0;
1434 tlv = (struct tlv_ssl *)&buf[ret];
1435 memset(tlv, 0, sizeof(struct tlv_ssl));
1436 ssl_tlv_len += sizeof(struct tlv_ssl);
1437 tlv->tlv.type = PP2_TYPE_SSL;
1438 if (ssl_sock_is_ssl(remote)) {
1439 tlv->client |= PP2_CLIENT_SSL;
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02001440 value = ssl_sock_get_proto_version(remote);
David Safb76832014-05-08 23:42:08 -04001441 if (value) {
Emmanuel Hocdet8c0c34b2018-02-28 12:02:14 +01001442 ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len-ret-ssl_tlv_len), PP2_SUBTYPE_SSL_VERSION, strlen(value), value);
David Safb76832014-05-08 23:42:08 -04001443 }
Dave McCowan328fb582014-07-30 10:39:13 -04001444 if (ssl_sock_get_cert_used_sess(remote)) {
1445 tlv->client |= PP2_CLIENT_CERT_SESS;
David Safb76832014-05-08 23:42:08 -04001446 tlv->verify = htonl(ssl_sock_get_verify_result(remote));
Dave McCowan328fb582014-07-30 10:39:13 -04001447 if (ssl_sock_get_cert_used_conn(remote))
1448 tlv->client |= PP2_CLIENT_CERT_CONN;
David Safb76832014-05-08 23:42:08 -04001449 }
1450 if (srv->pp_opts & SRV_PP_V2_SSL_CN) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001451 struct buffer *cn_trash = get_trash_chunk();
Willy Tarreau3b9a0c92014-07-19 06:37:33 +02001452 if (ssl_sock_get_remote_common_name(remote, cn_trash) > 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001453 ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CN,
1454 cn_trash->data,
1455 cn_trash->area);
David Safb76832014-05-08 23:42:08 -04001456 }
1457 }
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +01001458 if (srv->pp_opts & SRV_PP_V2_SSL_KEY_ALG) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001459 struct buffer *pkey_trash = get_trash_chunk();
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +01001460 if (ssl_sock_get_pkey_algo(remote, pkey_trash) > 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001461 ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_KEY_ALG,
1462 pkey_trash->data,
1463 pkey_trash->area);
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +01001464 }
1465 }
1466 if (srv->pp_opts & SRV_PP_V2_SSL_SIG_ALG) {
1467 value = ssl_sock_get_cert_sig(remote);
1468 if (value) {
1469 ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_SIG_ALG, strlen(value), value);
1470 }
1471 }
1472 if (srv->pp_opts & SRV_PP_V2_SSL_CIPHER) {
1473 value = ssl_sock_get_cipher_name(remote);
1474 if (value) {
1475 ssl_tlv_len += make_tlv(&buf[ret+ssl_tlv_len], (buf_len - ret - ssl_tlv_len), PP2_SUBTYPE_SSL_CIPHER, strlen(value), value);
1476 }
1477 }
David Safb76832014-05-08 23:42:08 -04001478 }
1479 tlv->tlv.length_hi = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) >> 8;
1480 tlv->tlv.length_lo = (uint16_t)(ssl_tlv_len - sizeof(struct tlv)) & 0x00ff;
1481 ret += ssl_tlv_len;
1482 }
1483#endif
1484
Willy Tarreaue5733232019-05-22 19:24:06 +02001485#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001486 if (remote && (remote->proxy_netns)) {
1487 if ((buf_len - ret) < sizeof(struct tlv))
1488 return 0;
Emmanuel Hocdet571c7ac2017-10-31 18:24:05 +01001489 ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_NETNS, remote->proxy_netns->name_len, remote->proxy_netns->node.key);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001490 }
1491#endif
1492
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001493 hdr->len = htons((uint16_t)(ret - PP2_HEADER_LEN));
David Safb76832014-05-08 23:42:08 -04001494
Emmanuel Hocdet4399c752018-02-05 15:26:43 +01001495 if (tlv_crc32c_p) {
1496 write_u32(tlv_crc32c_p, htonl(hash_crc32c(buf, ret)));
1497 }
1498
David Safb76832014-05-08 23:42:08 -04001499 return ret;
1500}
Emeric Brun4f603012017-01-05 15:11:44 +01001501
Willy Tarreau60ca10a2017-08-18 15:26:54 +02001502/* return the major HTTP version as 1 or 2 depending on how the request arrived
1503 * before being processed.
1504 */
1505static int
1506smp_fetch_fc_http_major(const struct arg *args, struct sample *smp, const char *kw, void *private)
1507{
Jérôme Magnin86577422018-12-07 09:03:11 +01001508 struct connection *conn = (kw[0] != 'b') ? objt_conn(smp->sess->origin) :
1509 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Willy Tarreau60ca10a2017-08-18 15:26:54 +02001510
1511 smp->data.type = SMP_T_SINT;
1512 smp->data.u.sint = (conn && strcmp(conn_get_mux_name(conn), "H2") == 0) ? 2 : 1;
1513 return 1;
1514}
1515
Emeric Brun4f603012017-01-05 15:11:44 +01001516/* fetch if the received connection used a PROXY protocol header */
1517int smp_fetch_fc_rcvd_proxy(const struct arg *args, struct sample *smp, const char *kw, void *private)
1518{
1519 struct connection *conn;
1520
1521 conn = objt_conn(smp->sess->origin);
1522 if (!conn)
1523 return 0;
1524
1525 if (!(conn->flags & CO_FL_CONNECTED)) {
1526 smp->flags |= SMP_F_MAY_CHANGE;
1527 return 0;
1528 }
1529
1530 smp->flags = 0;
1531 smp->data.type = SMP_T_BOOL;
1532 smp->data.u.sint = (conn->flags & CO_FL_RCVD_PROXY) ? 1 : 0;
1533
1534 return 1;
1535}
1536
Geoff Simmons7185b782019-08-27 18:31:16 +02001537/* fetch the authority TLV from a PROXY protocol header */
1538int smp_fetch_fc_pp_authority(const struct arg *args, struct sample *smp, const char *kw, void *private)
1539{
1540 struct connection *conn;
1541
1542 conn = objt_conn(smp->sess->origin);
1543 if (!conn)
1544 return 0;
1545
1546 if (!(conn->flags & CO_FL_CONNECTED)) {
1547 smp->flags |= SMP_F_MAY_CHANGE;
1548 return 0;
1549 }
1550
1551 if (conn->proxy_authority == NULL)
1552 return 0;
1553
1554 smp->flags = 0;
1555 smp->data.type = SMP_T_STR;
1556 smp->data.u.str.area = conn->proxy_authority;
1557 smp->data.u.str.data = conn->proxy_authority_len;
1558
1559 return 1;
1560}
1561
Emeric Brun4f603012017-01-05 15:11:44 +01001562/* Note: must not be declared <const> as its list will be overwritten.
1563 * Note: fetches that may return multiple types must be declared as the lowest
1564 * common denominator, the type that can be casted into all other ones. For
1565 * instance v4/v6 must be declared v4.
1566 */
1567static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreau60ca10a2017-08-18 15:26:54 +02001568 { "fc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Jérôme Magnin86577422018-12-07 09:03:11 +01001569 { "bc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV },
Emeric Brun4f603012017-01-05 15:11:44 +01001570 { "fc_rcvd_proxy", smp_fetch_fc_rcvd_proxy, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
Geoff Simmons7185b782019-08-27 18:31:16 +02001571 { "fc_pp_authority", smp_fetch_fc_pp_authority, 0, NULL, SMP_T_STR, SMP_USE_L4CLI },
Emeric Brun4f603012017-01-05 15:11:44 +01001572 { /* END */ },
1573}};
1574
Willy Tarreau0108d902018-11-25 19:14:37 +01001575INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);