blob: 5617a1a0384ede6700af913f8720fc8333853fba [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));
34
Willy Tarreau13e14102016-12-22 20:25:26 +010035struct xprt_ops *registered_xprt[XPRT_ENTRIES] = { NULL, };
Willy Tarreauf2943dc2012-10-26 20:10:28 +020036
Christopher Faulet32f61c02018-04-10 14:33:41 +020037/* List head of all known muxes for PROTO */
38struct mux_proto_list mux_proto_list = {
39 .list = LIST_HEAD_INIT(mux_proto_list.list)
Willy Tarreau2386be62017-09-21 19:40:52 +020040};
41
Willy Tarreau59f98392012-07-06 14:13:49 +020042/* I/O callback for fd-based connections. It calls the read/write handlers
Willy Tarreau7a798e52016-04-14 11:13:20 +020043 * provided by the connection's sock_ops, which must be valid.
Willy Tarreau59f98392012-07-06 14:13:49 +020044 */
Willy Tarreau7a798e52016-04-14 11:13:20 +020045void conn_fd_handler(int fd)
Willy Tarreau59f98392012-07-06 14:13:49 +020046{
Willy Tarreau80184712012-07-06 14:54:49 +020047 struct connection *conn = fdtab[fd].owner;
Willy Tarreau9e272bf2012-10-03 21:04:48 +020048 unsigned int flags;
Olivier Houchardaf4021e2018-08-09 13:06:55 +020049 int io_available = 0;
Willy Tarreau59f98392012-07-06 14:13:49 +020050
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010051 if (unlikely(!conn)) {
52 activity[tid].conn_dead++;
Willy Tarreau7a798e52016-04-14 11:13:20 +020053 return;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +010054 }
Willy Tarreau59f98392012-07-06 14:13:49 +020055
Willy Tarreau7d281492012-12-16 19:19:13 +010056 conn_refresh_polling_flags(conn);
Willy Tarreau916e12d2017-10-25 09:22:43 +020057 conn->flags |= CO_FL_WILL_UPDATE;
58
Willy Tarreau7d281492012-12-16 19:19:13 +010059 flags = conn->flags & ~CO_FL_ERROR; /* ensure to call the wake handler upon error */
Willy Tarreaud29a0662012-12-10 16:33:38 +010060
Willy Tarreau8e3c6ce2017-08-28 15:46:01 +020061 /* 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 Tarreau2542b532012-08-31 16:01:23 +020067 */
Olivier Houchardfe50bfb2019-05-27 12:09:19 +020068 if (!(conn->flags & CO_FL_HANDSHAKE) &&
Olivier Houchardea8dd942019-05-20 14:02:16 +020069 conn->xprt_done_cb && conn->xprt_done_cb(conn) < 0)
Willy Tarreau7a798e52016-04-14 11:13:20 +020070 return;
Willy Tarreau2542b532012-08-31 16:01:23 +020071
Olivier Houchardc3df4502019-06-05 17:07:45 +020072 if (conn->xprt && fd_send_ready(fd)) {
Willy Tarreau3c0cc492017-03-19 07:54:28 +010073 /* 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 Tarreau9e272bf2012-10-03 21:04:48 +020076 */
Willy Tarreau3c0cc492017-03-19 07:54:28 +010077 flags = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +020078 if (conn->send_wait != NULL) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +010079 conn->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +020080 tasklet_wakeup(conn->send_wait->tasklet);
Olivier Houchardfa8aa862018-10-10 18:25:41 +020081 conn->send_wait = NULL;
82 } else
83 io_available = 1;
Olivier Houchard53216e72018-10-10 15:46:36 +020084 __conn_xprt_stop_send(conn);
Willy Tarreau9e272bf2012-10-03 21:04:48 +020085 }
Willy Tarreau59f98392012-07-06 14:13:49 +020086
Willy Tarreau57ec32f2017-04-11 19:59:33 +020087 /* 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 Houchardc3df4502019-06-05 17:07:45 +020091 if (conn->xprt && fd_recv_ready(fd)) {
Willy Tarreau3c0cc492017-03-19 07:54:28 +010092 /* 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 Tarreau9e272bf2012-10-03 21:04:48 +020095 */
Willy Tarreau3c0cc492017-03-19 07:54:28 +010096 flags = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +020097 if (conn->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +010098 conn->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +020099 tasklet_wakeup(conn->recv_wait->tasklet);
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200100 conn->recv_wait = NULL;
101 } else
102 io_available = 1;
Olivier Houchard53216e72018-10-10 15:46:36 +0200103 __conn_xprt_stop_recv(conn);
Willy Tarreau9e272bf2012-10-03 21:04:48 +0200104 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200105
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100106 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreauf8deb0c2012-09-01 17:59:22 +0200107 /* 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 Tarreau2da156f2012-07-23 15:07:23 +0200110 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200111 if (!tcp_connect_probe(conn))
Willy Tarreauafad0e02012-08-09 14:45:22 +0200112 goto leave;
Willy Tarreau2da156f2012-07-23 15:07:23 +0200113 }
Willy Tarreau2c6be842012-07-06 17:12:34 +0200114 leave:
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100115 /* Verify if the connection just established. */
Willy Tarreau7bf3fa32017-03-14 20:19:29 +0100116 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 Tarreau8e3c6ce2017-08-28 15:46:01 +0200119 /* 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 Tarreau3c0cc492017-03-19 07:54:28 +0100129 /* 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 Tarreau2396c1c2012-10-03 21:12:16 +0200143 */
Olivier Houchardaf4021e2018-08-09 13:06:55 +0200144 if ((io_available || (((conn->flags ^ flags) & CO_FL_NOTIFY_DATA) ||
Willy Tarreau3c0cc492017-03-19 07:54:28 +0100145 ((flags & (CO_FL_CONNECTED|CO_FL_HANDSHAKE)) != CO_FL_CONNECTED &&
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200146 (conn->flags & (CO_FL_CONNECTED|CO_FL_HANDSHAKE)) == CO_FL_CONNECTED))) &&
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200147 conn->mux && conn->mux->wake && conn->mux->wake(conn) < 0)
Willy Tarreau7a798e52016-04-14 11:13:20 +0200148 return;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200149
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200150 /* commit polling changes */
Willy Tarreau916e12d2017-10-25 09:22:43 +0200151 conn->flags &= ~CO_FL_WILL_UPDATE;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200152 conn_cond_update_polling(conn);
Willy Tarreau7a798e52016-04-14 11:13:20 +0200153 return;
Willy Tarreau59f98392012-07-06 14:13:49 +0200154}
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200155
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200156/* 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 Houchard1a0545f2017-09-13 18:30:23 +0200158 * in CO_FL_WAIT_*, and the data layer expectations indicated by CO_FL_XPRT_*.
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200159 * The connection flags are updated with the new flags at the end of the
Willy Tarreau0ffde2c2012-10-04 22:21:15 +0200160 * operation. Polling is totally disabled if an error was reported.
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200161 */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200162void conn_update_xprt_polling(struct connection *c)
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200163{
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200164 unsigned int f = c->flags;
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200165
Willy Tarreau3c728722014-01-23 13:50:42 +0100166 if (!conn_ctrl_ready(c))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200167 return;
168
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200169 /* update read status if needed */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200170 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 +0200171 fd_want_recv(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100172 f |= CO_FL_CURR_RD_ENA;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200173 }
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200174 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 +0200175 fd_stop_recv(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100176 f &= ~CO_FL_CURR_RD_ENA;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200177 }
Willy Tarreaub5e2cbd2012-08-17 11:55:04 +0200178
179 /* update write status if needed */
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200180 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 +0200181 fd_want_send(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100182 f |= CO_FL_CURR_WR_ENA;
183 }
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200184 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 +0200185 fd_stop_send(c->handle.fd);
Willy Tarreauc8dd77f2012-11-05 17:52:26 +0100186 f &= ~CO_FL_CURR_WR_ENA;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200187 }
Willy Tarreau310987a2014-01-22 19:46:33 +0100188 c->flags = f;
Willy Tarreaue9dfa792012-09-01 17:26:16 +0200189}
190
Willy Tarreauff3e6482015-03-12 23:56:52 +0100191/* 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 */
203int 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 Tarreau585744b2017-08-24 14:31:19 +0200220 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauff3e6482015-03-12 23:56:52 +0100221 goto wait;
222
223 do {
Willy Tarreau585744b2017-08-24 14:31:19 +0200224 ret = send(conn->handle.fd, buf, len, flags | MSG_DONTWAIT | MSG_NOSIGNAL);
Willy Tarreauff3e6482015-03-12 23:56:52 +0100225 } 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 Tarreau585744b2017-08-24 14:31:19 +0200233 fd_cant_send(conn->handle.fd);
Willy Tarreauff3e6482015-03-12 23:56:52 +0100234 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 Houcharde179d0e2019-03-21 18:27:17 +0100241int conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param)
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200242{
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200243 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200244
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100245 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200246 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200247 BUG_ON(conn->recv_wait != sw);
248 conn->recv_wait = NULL;
249 sw->events &= ~SUB_RETRY_RECV;
Olivier Houchard53216e72018-10-10 15:46:36 +0200250 __conn_xprt_stop_recv(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200251 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100252 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200253 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200254 BUG_ON(conn->send_wait != sw);
255 conn->send_wait = NULL;
256 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchard53216e72018-10-10 15:46:36 +0200257 __conn_xprt_stop_send(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200258 }
Olivier Houchard53216e72018-10-10 15:46:36 +0200259 conn_update_xprt_polling(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200260 return 0;
261}
262
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100263int conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param)
Olivier Houchard6ff20392018-07-17 18:46:31 +0200264{
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200265 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +0200266
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100267 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +0200268 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200269 BUG_ON(conn->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
270 sw->events |= SUB_RETRY_RECV;
271 conn->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100272 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard53216e72018-10-10 15:46:36 +0200273 __conn_xprt_want_recv(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200274 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100275 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +0200276 sw = param;
Olivier Houchard35d11682019-05-14 18:02:47 +0200277 BUG_ON(conn->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
278 sw->events |= SUB_RETRY_SEND;
279 conn->send_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100280 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard53216e72018-10-10 15:46:36 +0200281 __conn_xprt_want_send(conn);
Olivier Houchard6ff20392018-07-17 18:46:31 +0200282 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200283 if (event_type != 0)
284 return (-1);
Olivier Houchard53216e72018-10-10 15:46:36 +0200285 conn_update_xprt_polling(conn);
Olivier Houchard83a0cd82018-09-28 17:57:58 +0200286 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +0200287}
288
Willy Tarreaud85c4852015-03-13 00:40:28 +0100289/* 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 */
296int conn_sock_drain(struct connection *conn)
297{
Willy Tarreaue215bba2018-08-24 14:31:53 +0200298 int turns = 2;
299 int len;
300
Willy Tarreaud85c4852015-03-13 00:40:28 +0100301 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 Tarreaue215bba2018-08-24 14:31:53 +0200307 if (fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP))
308 goto shut;
Willy Tarreaud85c4852015-03-13 00:40:28 +0100309
Willy Tarreaue215bba2018-08-24 14:31:53 +0200310 if (!fd_recv_ready(conn->handle.fd))
311 return 0;
Willy Tarreaud85c4852015-03-13 00:40:28 +0100312
Willy Tarreaue215bba2018-08-24 14:31:53 +0200313 if (conn->ctrl->drain) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200314 if (conn->ctrl->drain(conn->handle.fd) <= 0)
Willy Tarreaud85c4852015-03-13 00:40:28 +0100315 return 0;
Willy Tarreaue215bba2018-08-24 14:31:53 +0200316 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 Tarreaud85c4852015-03-13 00:40:28 +0100345 }
346
Willy Tarreaue215bba2018-08-24 14:31:53 +0200347 /* 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 Tarreaud85c4852015-03-13 00:40:28 +0100353 conn->flags |= CO_FL_SOCK_RD_SH;
354 return 1;
355}
356
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100357/*
358 * Get data length from tlv
359 */
360static int get_tlv_length(const struct tlv *src)
361{
362 return (src->length_hi << 8) | src->length_lo;
363}
364
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200365/* 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 */
388int conn_recv_proxy(struct connection *conn, int flag)
389{
390 char *line, *end;
Willy Tarreau77992672014-06-14 11:06:17 +0200391 struct proxy_hdr_v2 *hdr_v2;
392 const char v2sig[] = PP2_SIGNATURE;
Tim Duesterhusf30d6ac2020-03-05 22:55:20 +0100393 size_t total_v2_len;
KOVACS Krisztian7209c202015-07-03 14:09:10 +0200394 int tlv_offset = 0;
Willy Tarreaub406b872018-08-22 05:20:32 +0200395 int ret;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200396
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 Tarreau3c728722014-01-23 13:50:42 +0100401 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200402 goto fail;
403
Willy Tarreau585744b2017-08-24 14:31:19 +0200404 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200405 goto not_ready;
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100406
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200407 do {
Willy Tarreaub406b872018-08-22 05:20:32 +0200408 ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK);
409 if (ret < 0) {
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200410 if (errno == EINTR)
411 continue;
412 if (errno == EAGAIN) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200413 fd_cant_recv(conn->handle.fd);
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200414 goto not_ready;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200415 }
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100416 goto recv_abort;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200417 }
Willy Tarreaub406b872018-08-22 05:20:32 +0200418 trash.data = ret;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200419 } while (0);
420
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200421 if (!trash.data) {
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100422 /* client shutdown */
423 conn->err_code = CO_ER_PRX_EMPTY;
424 goto fail;
425 }
426
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200427 if (trash.data < 6)
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200428 goto missing;
429
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200430 line = trash.area;
431 end = trash.area + trash.data;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200432
433 /* Decode a possible proxy request, fail early if it does not match */
Willy Tarreau77992672014-06-14 11:06:17 +0200434 if (strncmp(line, "PROXY ", 6) != 0)
435 goto not_v1;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200436
437 line += 6;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200438 if (trash.data < 9) /* shortest possible line */
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200439 goto missing;
440
David CARLIER42ff05e2016-03-24 09:22:36 +0000441 if (memcmp(line, "TCP4 ", 5) == 0) {
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200442 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 Tarreau8e3bf692012-12-03 15:41:18 +0100450 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200451
452 dst3 = inetaddr_host_lim_ret(line, end, &line);
453 if (line == end)
454 goto missing;
455 if (*line++ != ' ')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100456 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200457
458 sport = read_uint((const char **)&line, end);
459 if (line == end)
460 goto missing;
461 if (*line++ != ' ')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100462 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200463
464 dport = read_uint((const char **)&line, end);
465 if (line > end - 2)
466 goto missing;
467 if (*line++ != '\r')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100468 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200469 if (*line++ != '\n')
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100470 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200471
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 CARLIER42ff05e2016-03-24 09:22:36 +0000482 else if (memcmp(line, "TCP6 ", 5) == 0) {
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200483 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 Tarreau8e3bf692012-12-03 15:41:18 +0100500 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200501 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 Tarreau8e3bf692012-12-03 15:41:18 +0100517 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200518
519 sport = read_uint((const char **)&sport_s,dport_s - 1);
520 if (*sport_s != 0)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100521 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200522
523 dport = read_uint((const char **)&dport_s,line - 2);
524 if (*dport_s != 0)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100525 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200526
527 if (inet_pton(AF_INET6, src_s, (void *)&src3) != 1)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100528 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200529
530 if (inet_pton(AF_INET6, dst_s, (void *)&dst3) != 1)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100531 goto bad_header;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200532
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 Tarreau4c20d292014-06-14 11:41:36 +0200543 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 Tarreaue1e4a612012-10-05 00:10:55 +0200547 else {
Willy Tarreau4c20d292014-06-14 11:41:36 +0200548 /* The protocol does not match something known (TCP4/TCP6/UNKNOWN) */
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100549 conn->err_code = CO_ER_PRX_BAD_PROTO;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200550 goto fail;
551 }
552
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200553 trash.data = line - trash.area;
Willy Tarreau77992672014-06-14 11:06:17 +0200554 goto eat_header;
555
556 not_v1:
557 /* try PPv2 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200558 if (trash.data < PP2_HEADER_LEN)
Willy Tarreau77992672014-06-14 11:06:17 +0200559 goto missing;
560
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200561 hdr_v2 = (struct proxy_hdr_v2 *) trash.area;
Willy Tarreau77992672014-06-14 11:06:17 +0200562
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 Duesterhusf30d6ac2020-03-05 22:55:20 +0100569 total_v2_len = PP2_HEADER_LEN + ntohs(hdr_v2->len);
570 if (trash.data < total_v2_len)
Willy Tarreau77992672014-06-14 11:06:17 +0200571 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 Krisztianefd3aa92014-11-19 10:53:20 +0100577 if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET)
578 goto bad_header;
579
Willy Tarreau77992672014-06-14 11:06:17 +0200580 ((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 Krisztian7209c202015-07-03 14:09:10 +0200587 tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET;
Willy Tarreau77992672014-06-14 11:06:17 +0200588 break;
589 case 0x21: /* TCPv6 */
KOVACS Krisztianefd3aa92014-11-19 10:53:20 +0100590 if (ntohs(hdr_v2->len) < PP2_ADDR_LEN_INET6)
591 goto bad_header;
592
Willy Tarreau77992672014-06-14 11:06:17 +0200593 ((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 Krisztian7209c202015-07-03 14:09:10 +0200600 tlv_offset = PP2_HEADER_LEN + PP2_ADDR_LEN_INET6;
Willy Tarreau77992672014-06-14 11:06:17 +0200601 break;
602 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100603
604 /* TLV parsing */
Tim Duesterhusf30d6ac2020-03-05 22:55:20 +0100605 while (tlv_offset < total_v2_len) {
606 struct tlv *tlv_packet;
607 int tlv_len;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100608
Tim Duesterhusf30d6ac2020-03-05 22:55:20 +0100609 /* 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 Tarreaue5733232019-05-22 19:24:06 +0200636#ifdef USE_NS
Tim Duesterhusf30d6ac2020-03-05 22:55:20 +0100637 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 Krisztianb3e54fe2014-11-17 15:11:45 +0100645#endif
Tim Duesterhusf30d6ac2020-03-05 22:55:20 +0100646 default:
647 break;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100648 }
649 }
650
Tim Duesterhusf30d6ac2020-03-05 22:55:20 +0100651 /* 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 Tarreau77992672014-06-14 11:06:17 +0200659 /* 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 Duesterhusf30d6ac2020-03-05 22:55:20 +0100668 trash.data = total_v2_len;
Willy Tarreau77992672014-06-14 11:06:17 +0200669 goto eat_header;
670
671 eat_header:
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200672 /* 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 Tarreaue1e4a612012-10-05 00:10:55 +0200676 do {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200677 int len2 = recv(conn->handle.fd, trash.area, trash.data, 0);
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200678 if (len2 < 0 && errno == EINTR)
679 continue;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200680 if (len2 != trash.data)
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100681 goto recv_abort;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200682 } while (0);
683
684 conn->flags &= ~flag;
Emeric Brun4f603012017-01-05 15:11:44 +0100685 conn->flags |= CO_FL_RCVD_PROXY;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200686 return 1;
687
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200688 not_ready:
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200689 return 0;
690
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200691 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 Tarreau8e3bf692012-12-03 15:41:18 +0100696 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 Tarreau26f4a042013-12-04 23:44:10 +0100706 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau8e3bf692012-12-03 15:41:18 +0100707 goto fail;
708
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200709 fail:
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200710 conn->flags |= CO_FL_ERROR;
Willy Tarreaue1e4a612012-10-05 00:10:55 +0200711 return 0;
712}
713
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100714/* This handshake handler waits a NetScaler Client IP insertion header
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000715 * at the beginning of the raw data stream. The header format is
716 * described in doc/netscaler-client-ip-insertion-protocol.txt
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100717 *
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 */
730int conn_recv_netscaler_cip(struct connection *conn, int flag)
731{
732 char *line;
Bertrand Jacquin7d668f92017-12-13 01:23:39 +0000733 uint32_t hdr_len;
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100734 uint8_t ip_ver;
Willy Tarreaub406b872018-08-22 05:20:32 +0200735 int ret;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100736
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 Tarreau585744b2017-08-24 14:31:19 +0200744 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200745 goto not_ready;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100746
747 do {
Willy Tarreaub406b872018-08-22 05:20:32 +0200748 ret = recv(conn->handle.fd, trash.area, trash.size, MSG_PEEK);
749 if (ret < 0) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100750 if (errno == EINTR)
751 continue;
752 if (errno == EAGAIN) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200753 fd_cant_recv(conn->handle.fd);
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200754 goto not_ready;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100755 }
756 goto recv_abort;
757 }
Willy Tarreaub406b872018-08-22 05:20:32 +0200758 trash.data = ret;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100759 } while (0);
760
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200761 if (!trash.data) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100762 /* 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 Jacquin72fa1ec2017-12-12 01:17:23 +0000768 * CIP magic, header length or
769 * CIP magic, CIP length, CIP type, header length */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200770 if (trash.data < 12)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100771 goto missing;
772
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200773 line = trash.area;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100774
775 /* Decode a possible NetScaler Client IP request, fail early if
776 * it does not match */
Willy Tarreau55e0da62018-09-20 11:26:52 +0200777 if (ntohl(*(uint32_t *)line) != __objt_listener(conn->target)->bind_conf->ns_cip_magic)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100778 goto bad_magic;
779
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000780 /* Legacy CIP protocol */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200781 if ((trash.area[8] & 0xD0) == 0x40) {
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000782 hdr_len = ntohl(*(uint32_t *)(line+4));
783 line += 8;
784 }
785 /* Standard CIP protocol */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200786 else if (trash.area[8] == 0x00) {
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000787 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 Jacquin93b227d2016-06-04 15:11:10 +0100796 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin72fa1ec2017-12-12 01:17:23 +0000797 * a minimal IP header */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200798 if (trash.data < 20)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100799 goto missing;
800
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100801 /* Get IP version from the first four bits */
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100802 ip_ver = (*line & 0xf0) >> 4;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100803
Willy Tarreau0ca24aa2019-03-29 17:35:32 +0100804 if (ip_ver == 4) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100805 struct ip *hdr_ip4;
David Carlier3015a2e2016-07-04 22:51:33 +0100806 struct my_tcphdr *hdr_tcp;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100807
808 hdr_ip4 = (struct ip *)line;
809
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200810 if (trash.data < 40 || trash.data < hdr_len) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100811 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin67de5a22017-12-13 01:15:05 +0000812 * IPv4 header, TCP header */
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100813 goto missing;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000814 }
815 else if (hdr_ip4->ip_p != IPPROTO_TCP) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100816 /* The protocol does not include a TCP header */
817 conn->err_code = CO_ER_CIP_BAD_PROTO;
818 goto fail;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000819 }
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100820
David Carlier3015a2e2016-07-04 22:51:33 +0100821 hdr_tcp = (struct my_tcphdr *)(line + (hdr_ip4->ip_hl * 4));
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100822
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 Tarreau0ca24aa2019-03-29 17:35:32 +0100834 else if (ip_ver == 6) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100835 struct ip6_hdr *hdr_ip6;
David Carlier3015a2e2016-07-04 22:51:33 +0100836 struct my_tcphdr *hdr_tcp;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100837
838 hdr_ip6 = (struct ip6_hdr *)line;
839
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200840 if (trash.data < 60 || trash.data < hdr_len) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100841 /* Fail if buffer length is not large enough to contain
Bertrand Jacquin67de5a22017-12-13 01:15:05 +0000842 * IPv6 header, TCP header */
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100843 goto missing;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000844 }
845 else if (hdr_ip6->ip6_nxt != IPPROTO_TCP) {
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100846 /* The protocol does not include a TCP header */
847 conn->err_code = CO_ER_CIP_BAD_PROTO;
848 goto fail;
Bertrand Jacquinb3875912017-12-13 00:58:51 +0000849 }
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100850
David Carlier3015a2e2016-07-04 22:51:33 +0100851 hdr_tcp = (struct my_tcphdr *)(line + sizeof(struct ip6_hdr));
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100852
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 Jacquin7d668f92017-12-13 01:23:39 +0000870 line += hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200871 trash.data = line - trash.area;
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100872
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 Tarreau843b7cb2018-07-13 10:54:26 +0200878 int len2 = recv(conn->handle.fd, trash.area, trash.data, 0);
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100879 if (len2 < 0 && errno == EINTR)
880 continue;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200881 if (len2 != trash.data)
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100882 goto recv_abort;
883 } while (0);
884
885 conn->flags &= ~flag;
886 return 1;
887
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200888 not_ready:
Willy Tarreau6499b9d2019-06-03 08:17:30 +0200889 return 0;
890
Bertrand Jacquin93b227d2016-06-04 15:11:10 +0100891 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 Jacquin93b227d2016-06-04 15:11:10 +0100909 conn->flags |= CO_FL_ERROR;
910 return 0;
911}
912
Alexander Liu2a54bb72019-05-22 19:44:48 +0800913
914int 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 Liu2a54bb72019-05-22 19:44:48 +0800965
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 Liu2a54bb72019-05-22 19:44:48 +0800991 return 0;
992}
993
994int 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 Tarreau6499b9d2019-06-03 08:17:30 +02001007 goto not_ready;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001008
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 Tarreau6499b9d2019-06-03 08:17:30 +02001042 goto not_ready;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001043 }
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 Tarreau6499b9d2019-06-03 08:17:30 +02001052 goto not_ready;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001053 }
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 Tarreau6499b9d2019-06-03 08:17:30 +02001098 not_ready:
Willy Tarreau6499b9d2019-06-03 08:17:30 +02001099 return 0;
1100
Alexander Liu2a54bb72019-05-22 19:44:48 +08001101 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 Liu2a54bb72019-05-22 19:44:48 +08001109 conn->flags |= CO_FL_ERROR;
1110 return 0;
1111}
1112
Ilya Shipitsinca56fce2018-09-15 00:50:05 +05001113/* Note: <remote> is explicitly allowed to be NULL */
David Safb76832014-05-08 23:42:08 -04001114int 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 Tarreaue1e4a612012-10-05 00:10:55 +02001131/* 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 Tarreau2e1401a2013-10-01 11:41:55 +02001135 * TCP6 and "UNKNOWN" formats. If any of <src> or <dst> is null, UNKNOWN is
1136 * emitted as well.
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001137 */
David Safb76832014-05-08 23:42:08 -04001138int make_proxy_line_v1(char *buf, int buf_len, struct sockaddr_storage *src, struct sockaddr_storage *dst)
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001139{
1140 int ret = 0;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001141 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 Tarreaue1e4a612012-10-05 00:10:55 +02001146
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001147 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 Tarreaue1e4a612012-10-05 00:10:55 +02001153 if (ret >= buf_len)
1154 return 0;
1155
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001156 return ret;
1157 }
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001158
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001159 /* 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 Tarreaue1e4a612012-10-05 00:10:55 +02001163 return 0;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001164 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 Tarreaue1e4a612012-10-05 00:10:55 +02001166 return 0;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001167 dst_port = ((struct sockaddr_in *)dst)->sin_port;
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001168 }
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001169 /* IPv6 for at least one of src and dst */
1170 else {
1171 struct in6_addr tmp;
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001172
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001173 protocol = "TCP6";
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001174
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001175 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 Tarreaue1e4a612012-10-05 00:10:55 +02001184
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001185 if (!inet_ntop(AF_INET6, &tmp, src_str, sizeof(src_str)))
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001186 return 0;
1187
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001188 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 Tarreaue1e4a612012-10-05 00:10:55 +02001197
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001198 if (!inet_ntop(AF_INET6, &tmp, dst_str, sizeof(dst_str)))
Willy Tarreaue1e4a612012-10-05 00:10:55 +02001199 return 0;
1200 }
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001201
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 Tarreaue1e4a612012-10-05 00:10:55 +02001206 return ret;
1207}
David Safb76832014-05-08 23:42:08 -04001208
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001209static int make_tlv(char *dest, int dest_len, char type, uint16_t length, const char *value)
David Safb76832014-05-08 23:42:08 -04001210{
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 Safb76832014-05-08 23:42:08 -04001224
Ilya Shipitsinca56fce2018-09-15 00:50:05 +05001225/* Note: <remote> is explicitly allowed to be NULL */
David Safb76832014-05-08 23:42:08 -04001226int make_proxy_line_v2(char *buf, int buf_len, struct server *srv, struct connection *remote)
1227{
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001228 const char pp2_signature[] = PP2_SIGNATURE;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +01001229 void *tlv_crc32c_p = NULL;
David Safb76832014-05-08 23:42:08 -04001230 int ret = 0;
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001231 struct proxy_hdr_v2 *hdr = (struct proxy_hdr_v2 *)buf;
Vincent Bernat6e615892016-05-18 16:17:44 +02001232 struct sockaddr_storage null_addr = { .ss_family = 0 };
David Safb76832014-05-08 23:42:08 -04001233 struct sockaddr_storage *src = &null_addr;
1234 struct sockaddr_storage *dst = &null_addr;
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001235 const char *value;
1236 int value_len;
David Safb76832014-05-08 23:42:08 -04001237
1238 if (buf_len < PP2_HEADER_LEN)
1239 return 0;
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001240 memcpy(hdr->sig, pp2_signature, PP2_SIGNATURE_LEN);
David Safb76832014-05-08 23:42:08 -04001241
1242 if (remote) {
1243 src = &remote->addr.from;
1244 dst = &remote->addr.to;
1245 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001246
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001247 /* 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 Safb76832014-05-08 23:42:08 -04001252 if (buf_len < PP2_HDR_LEN_UNSPEC)
1253 return 0;
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001254 hdr->ver_cmd = PP2_VERSION | PP2_CMD_LOCAL;
1255 hdr->fam = PP2_FAM_UNSPEC | PP2_TRANS_UNSPEC;
David Safb76832014-05-08 23:42:08 -04001256 ret = PP2_HDR_LEN_UNSPEC;
1257 }
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001258 else {
Willy Tarreau52d0ed92020-02-19 15:10:00 +01001259 /* 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 Duesterhus7fec0212018-07-27 18:46:13 +02001267 /* 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 Duesterhus7fec0212018-07-27 18:46:13 +02001271 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 Duesterhus7fec0212018-07-27 18:46:13 +02001284 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 Dauchy1d231d52020-01-26 19:06:39 +01001297 hdr->addr.ip6.dst_port = ((struct sockaddr_in *)dst)->sin_port;
Tim Duesterhus7fec0212018-07-27 18:46:13 +02001298 }
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 Safb76832014-05-08 23:42:08 -04001307
Emmanuel Hocdet4399c752018-02-05 15:26:43 +01001308 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 Shipitsinca56fce2018-09-15 00:50:05 +05001316 if (remote && conn_get_alpn(remote, &value, &value_len)) {
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001317 if ((buf_len - ret) < sizeof(struct tlv))
1318 return 0;
Emmanuel Hocdet571c7ac2017-10-31 18:24:05 +01001319 ret += make_tlv(&buf[ret], (buf_len - ret), PP2_TYPE_ALPN, value_len, value);
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001320 }
1321
David Safb76832014-05-08 23:42:08 -04001322#ifdef USE_OPENSSL
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01001323 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 Safb76832014-05-08 23:42:08 -04001332 if (srv->pp_opts & SRV_PP_V2_SSL) {
Emmanuel Hocdet404d9782017-10-24 10:55:14 +02001333 struct tlv_ssl *tlv;
1334 int ssl_tlv_len = 0;
David Safb76832014-05-08 23:42:08 -04001335 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 Hocdet01da5712017-10-13 16:59:49 +02001343 value = ssl_sock_get_proto_version(remote);
David Safb76832014-05-08 23:42:08 -04001344 if (value) {
Emmanuel Hocdet8c0c34b2018-02-28 12:02:14 +01001345 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 -04001346 }
Dave McCowan328fb582014-07-30 10:39:13 -04001347 if (ssl_sock_get_cert_used_sess(remote)) {
1348 tlv->client |= PP2_CLIENT_CERT_SESS;
David Safb76832014-05-08 23:42:08 -04001349 tlv->verify = htonl(ssl_sock_get_verify_result(remote));
Dave McCowan328fb582014-07-30 10:39:13 -04001350 if (ssl_sock_get_cert_used_conn(remote))
1351 tlv->client |= PP2_CLIENT_CERT_CONN;
David Safb76832014-05-08 23:42:08 -04001352 }
1353 if (srv->pp_opts & SRV_PP_V2_SSL_CN) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001354 struct buffer *cn_trash = get_trash_chunk();
Willy Tarreau3b9a0c92014-07-19 06:37:33 +02001355 if (ssl_sock_get_remote_common_name(remote, cn_trash) > 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001356 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 Safb76832014-05-08 23:42:08 -04001359 }
1360 }
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +01001361 if (srv->pp_opts & SRV_PP_V2_SSL_KEY_ALG) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001362 struct buffer *pkey_trash = get_trash_chunk();
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +01001363 if (ssl_sock_get_pkey_algo(remote, pkey_trash) > 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001364 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 Hocdetfa8d0f12018-02-01 15:53:52 +01001367 }
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 Safb76832014-05-08 23:42:08 -04001381 }
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 Tarreaue5733232019-05-22 19:24:06 +02001388#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001389 if (remote && (remote->proxy_netns)) {
1390 if ((buf_len - ret) < sizeof(struct tlv))
1391 return 0;
Emmanuel Hocdet571c7ac2017-10-31 18:24:05 +01001392 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 +01001393 }
1394#endif
1395
Willy Tarreau8fccfa22014-06-14 08:28:06 +02001396 hdr->len = htons((uint16_t)(ret - PP2_HEADER_LEN));
David Safb76832014-05-08 23:42:08 -04001397
Emmanuel Hocdet4399c752018-02-05 15:26:43 +01001398 if (tlv_crc32c_p) {
1399 write_u32(tlv_crc32c_p, htonl(hash_crc32c(buf, ret)));
1400 }
1401
David Safb76832014-05-08 23:42:08 -04001402 return ret;
1403}
Emeric Brun4f603012017-01-05 15:11:44 +01001404
Willy Tarreau60ca10a2017-08-18 15:26:54 +02001405/* return the major HTTP version as 1 or 2 depending on how the request arrived
1406 * before being processed.
1407 */
1408static int
1409smp_fetch_fc_http_major(const struct arg *args, struct sample *smp, const char *kw, void *private)
1410{
Jérôme Magnin86577422018-12-07 09:03:11 +01001411 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 Tarreau60ca10a2017-08-18 15:26:54 +02001413
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 Brun4f603012017-01-05 15:11:44 +01001419/* fetch if the received connection used a PROXY protocol header */
1420int 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 */
1445static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreau60ca10a2017-08-18 15:26:54 +02001446 { "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 +01001447 { "bc_http_major", smp_fetch_fc_http_major, 0, NULL, SMP_T_SINT, SMP_USE_L4SRV },
Emeric Brun4f603012017-01-05 15:11:44 +01001448 { "fc_rcvd_proxy", smp_fetch_fc_rcvd_proxy, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
1449 { /* END */ },
1450}};
1451
Willy Tarreau0108d902018-11-25 19:14:37 +01001452INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);