blob: 7ae28f085e055f596ad4d32fae3319f6e6e329e2 [file] [log] [blame]
Willy Tarreaue6b98942007-10-29 01:09:36 +01001/*
2 * AF_INET/AF_INET6 SOCK_STREAM protocol layer (tcp)
3 *
Willy Tarreaud4c33c82013-01-07 21:59:07 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaue6b98942007-10-29 01:09:36 +01005 *
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
Baptiste Assmann39a5f222016-08-08 14:12:08 +020013/* this is to have tcp_info defined on systems using musl
14 * library, such as Alpine Linux
15 */
16#define _GNU_SOURCE
17
Willy Tarreaue6b98942007-10-29 01:09:36 +010018#include <ctype.h>
19#include <errno.h>
20#include <fcntl.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <time.h>
25
26#include <sys/param.h>
27#include <sys/socket.h>
28#include <sys/stat.h>
29#include <sys/types.h>
30#include <sys/un.h>
31
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040032#include <netinet/tcp.h>
Willy Tarreau2d392c22015-08-24 01:43:45 +020033#include <netinet/in.h>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040034
Willy Tarreaue6b98942007-10-29 01:09:36 +010035#include <common/compat.h>
36#include <common/config.h>
37#include <common/debug.h>
38#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010039#include <common/initcall.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010040#include <common/mini-clist.h>
41#include <common/standard.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010042#include <common/namespace.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010043
Willy Tarreau39713102016-11-25 15:49:32 +010044#include <types/action.h>
Willy Tarreau2d392c22015-08-24 01:43:45 +020045#include <types/connection.h>
Willy Tarreau39713102016-11-25 15:49:32 +010046#include <types/global.h>
47#include <types/stream.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010048
Willy Tarreau9fcb9842012-04-20 14:45:49 +020049#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020050#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020051#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020052#include <proto/fd.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020053#include <proto/http_rules.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020054#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020055#include <proto/log.h>
56#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020057#include <proto/protocol.h>
Willy Tarreau2d392c22015-08-24 01:43:45 +020058#include <proto/proto_http.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010059#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020060#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020061#include <proto/sample.h>
Willy Tarreau163d4622015-10-13 16:16:41 +020062#include <proto/server.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020063#include <proto/task.h>
Willy Tarreau39713102016-11-25 15:49:32 +010064#include <proto/tcp_rules.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010065
Emeric Bruncf20bf12010-10-22 16:06:11 +020066static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
67static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020068static void tcpv4_add_listener(struct listener *listener, int port);
69static void tcpv6_add_listener(struct listener *listener, int port);
Willy Tarreaue6b98942007-10-29 01:09:36 +010070
71/* Note: must not be declared <const> as its list will be overwritten */
72static struct protocol proto_tcpv4 = {
73 .name = "tcpv4",
74 .sock_domain = AF_INET,
75 .sock_type = SOCK_STREAM,
76 .sock_prot = IPPROTO_TCP,
77 .sock_family = AF_INET,
78 .sock_addrlen = sizeof(struct sockaddr_in),
79 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020080 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020081 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020082 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010083 .bind_all = tcp_bind_listeners,
84 .unbind_all = unbind_all_listeners,
85 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020086 .get_src = tcp_get_src,
87 .get_dst = tcp_get_dst,
Willy Tarreau092d8652014-07-07 20:22:12 +020088 .pause = tcp_pause_listener,
Willy Tarreau9d5be5c2017-09-15 07:55:51 +020089 .add = tcpv4_add_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010090 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
91 .nb_listeners = 0,
92};
93
Willy Tarreau0108d902018-11-25 19:14:37 +010094INITCALL1(STG_REGISTER, protocol_register, &proto_tcpv4);
95
Willy Tarreaue6b98942007-10-29 01:09:36 +010096/* Note: must not be declared <const> as its list will be overwritten */
97static struct protocol proto_tcpv6 = {
98 .name = "tcpv6",
99 .sock_domain = AF_INET6,
100 .sock_type = SOCK_STREAM,
101 .sock_prot = IPPROTO_TCP,
102 .sock_family = AF_INET6,
103 .sock_addrlen = sizeof(struct sockaddr_in6),
104 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200105 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +0200106 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +0200107 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100108 .bind_all = tcp_bind_listeners,
109 .unbind_all = unbind_all_listeners,
110 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200111 .get_src = tcp_get_src,
112 .get_dst = tcp_get_dst,
Willy Tarreau092d8652014-07-07 20:22:12 +0200113 .pause = tcp_pause_listener,
Willy Tarreau9d5be5c2017-09-15 07:55:51 +0200114 .add = tcpv6_add_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100115 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
116 .nb_listeners = 0,
117};
118
Willy Tarreau0108d902018-11-25 19:14:37 +0100119INITCALL1(STG_REGISTER, protocol_register, &proto_tcpv6);
120
Olivier Houchard153659f2017-04-05 22:39:56 +0200121/* Default TCP parameters, got by opening a temporary TCP socket. */
122#ifdef TCP_MAXSEG
Christopher Faulet1bc04c72017-10-29 20:14:08 +0100123static THREAD_LOCAL int default_tcp_maxseg = -1;
124static THREAD_LOCAL int default_tcp6_maxseg = -1;
Olivier Houchard153659f2017-04-05 22:39:56 +0200125#endif
126
David du Colombier6f5ccb12011-03-10 22:26:24 +0100127/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100128 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
129 * - 0 : ignore remote address (may even be a NULL pointer)
130 * - 1 : use provided address
131 * - 2 : use provided port
132 * - 3 : use both
133 *
134 * The function supports multiple foreign binding methods :
135 * - linux_tproxy: we directly bind to the foreign address
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100136 * The second one can be used as a fallback for the first one.
137 * This function returns 0 when everything's OK, 1 if it could not bind, to the
138 * local address, 2 if it could not bind to the foreign address.
139 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100140int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100141{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100142 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100143 int foreign_ok = 0;
144 int ret;
Christopher Faulet1bc04c72017-10-29 20:14:08 +0100145 static THREAD_LOCAL int ip_transp_working = 1;
146 static THREAD_LOCAL int ip6_transp_working = 1;
Pieter Baauwd551fb52013-05-08 22:49:23 +0200147
David du Colombier65c17962012-07-13 14:34:59 +0200148 switch (local->ss_family) {
149 case AF_INET:
150 if (flags && ip_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200151 /* This deserves some explanation. Some platforms will support
152 * multiple combinations of certain methods, so we try the
153 * supported ones until one succeeds.
154 */
155 if (0
156#if defined(IP_TRANSPARENT)
157 || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0)
158#endif
159#if defined(IP_FREEBIND)
160 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
161#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200162#if defined(IP_BINDANY)
163 || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0)
164#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200165#if defined(SO_BINDANY)
166 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
167#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200168 )
David du Colombier65c17962012-07-13 14:34:59 +0200169 foreign_ok = 1;
170 else
171 ip_transp_working = 0;
172 }
173 break;
174 case AF_INET6:
175 if (flags && ip6_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200176 if (0
Dinko Korunic7276f3a2016-09-09 09:41:15 +0200177#if defined(IPV6_TRANSPARENT) && defined(SOL_IPV6)
Pieter Baauwd551fb52013-05-08 22:49:23 +0200178 || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
179#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100180#if defined(IP_FREEBIND)
181 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
182#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200183#if defined(IPV6_BINDANY)
184 || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0)
185#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200186#if defined(SO_BINDANY)
187 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
188#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200189 )
David du Colombier65c17962012-07-13 14:34:59 +0200190 foreign_ok = 1;
191 else
192 ip6_transp_working = 0;
193 }
194 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100195 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200196
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100197 if (flags) {
198 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200199 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100200 switch (remote->ss_family) {
201 case AF_INET:
202 if (flags & 1)
203 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
204 if (flags & 2)
205 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
206 break;
207 case AF_INET6:
208 if (flags & 1)
209 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
210 if (flags & 2)
211 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
212 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100213 default:
214 /* we don't want to try to bind to an unknown address family */
215 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100216 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100217 }
218
Simon Hormande072bd2011-06-24 15:11:37 +0900219 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100220 if (foreign_ok) {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200221 if (is_inet_addr(&bind_addr)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200222 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
223 if (ret < 0)
224 return 2;
225 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100226 }
227 else {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200228 if (is_inet_addr(local)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200229 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
230 if (ret < 0)
231 return 1;
232 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100233 }
234
235 if (!flags)
236 return 0;
237
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100238 if (!foreign_ok)
239 /* we could not bind to a foreign address */
240 return 2;
241
242 return 0;
243}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100244
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100245static int create_server_socket(struct connection *conn)
246{
Willy Tarreau529c1392014-12-24 13:47:55 +0100247 const struct netns_entry *ns = NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100248
Willy Tarreaue5733232019-05-22 19:24:06 +0200249#ifdef USE_NS
Willy Tarreau529c1392014-12-24 13:47:55 +0100250 if (objt_server(conn->target)) {
251 if (__objt_server(conn->target)->flags & SRV_F_USE_NS_FROM_PP)
252 ns = conn->proxy_netns;
253 else
254 ns = __objt_server(conn->target)->netns;
255 }
256#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100257 return my_socketat(ns, conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP);
258}
Willy Tarreau9650f372009-08-16 14:02:45 +0200259
260/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200261 * This function initiates a TCP connection establishment to the target assigned
262 * to connection <conn> using (si->{target,addr.to}). A source address may be
263 * pointed to by conn->addr.from in case of transparent proxying. Normal source
264 * bind addresses are still determined locally (due to the possible need of a
265 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100266 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreauf0837b22012-11-24 10:24:27 +0100267 * supported. The <data> parameter is a boolean indicating whether there are data
268 * waiting for being sent or not, in order to adjust data write polling and on
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200269 * some platforms, the ability to avoid an empty initial ACK. The <flags> argument
270 * allows the caller to force using a delayed ACK when establishing the connection
Willy Tarreauf0837b22012-11-24 10:24:27 +0100271 * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200272 * - CONNECT_DELACK_SMART_CONNECT = delayed ACK if backend has tcp-smart-connect, regardless of data
273 * - CONNECT_DELACK_ALWAYS = delayed ACK regardless of backend options
Willy Tarreaub1d67742010-03-29 19:36:59 +0200274 *
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200275 * Note that a pending send_proxy message accounts for data.
276 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200277 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +0200278 * - SF_ERR_NONE if everything's OK
279 * - SF_ERR_SRVTO if there are no more servers
280 * - SF_ERR_SRVCL if the connection was refused by the server
281 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
282 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
283 * - SF_ERR_INTERNAL for any other purely internal errors
Tim Düsterhus4896c442016-11-29 02:15:19 +0100284 * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100285 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200286 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100287 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200288 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100289
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200290int tcp_connect_server(struct connection *conn, int flags)
Willy Tarreau9650f372009-08-16 14:02:45 +0200291{
292 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100293 struct server *srv;
294 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100295 struct conn_src *src;
Willy Tarreau034c88c2017-01-23 23:36:45 +0100296 int use_fastopen = 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800297 struct sockaddr_storage *addr;
Willy Tarreauac825402011-03-04 22:04:29 +0100298
Olivier Houchard637b6952018-11-23 14:23:07 +0100299 conn->flags |= CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100300
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100301 switch (obj_type(conn->target)) {
302 case OBJ_TYPE_PROXY:
303 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100304 srv = NULL;
305 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100306 case OBJ_TYPE_SERVER:
307 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100308 be = srv->proxy;
Willy Tarreau034c88c2017-01-23 23:36:45 +0100309 /* Make sure we check that we have data before activating
310 * TFO, or we could trigger a kernel issue whereby after
311 * a successful connect() == 0, any subsequent connect()
312 * will return EINPROGRESS instead of EISCONN.
313 */
314 use_fastopen = (srv->flags & SRV_F_FASTOPEN) &&
315 ((flags & (CONNECT_CAN_USE_TFO | CONNECT_HAS_DATA)) ==
316 (CONNECT_CAN_USE_TFO | CONNECT_HAS_DATA));
Willy Tarreauac825402011-03-04 22:04:29 +0100317 break;
318 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100319 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200320 return SF_ERR_INTERNAL;
Willy Tarreauac825402011-03-04 22:04:29 +0100321 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200322
Willy Tarreau585744b2017-08-24 14:31:19 +0200323 fd = conn->handle.fd = create_server_socket(conn);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100324
325 if (fd == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200326 qfprintf(stderr, "Cannot get a server socket.\n");
327
Willy Tarreau9ce70132014-01-24 16:08:19 +0100328 if (errno == ENFILE) {
329 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200330 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100331 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
332 be->id, global.maxsock);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100333 }
334 else if (errno == EMFILE) {
335 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200336 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100337 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
338 be->id, global.maxsock);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100339 }
340 else if (errno == ENOBUFS || errno == ENOMEM) {
341 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200342 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100343 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
344 be->id, global.maxsock);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100345 }
346 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
347 conn->err_code = CO_ER_NOPROTO;
348 }
349 else
350 conn->err_code = CO_ER_SOCK_ERR;
351
Willy Tarreau9650f372009-08-16 14:02:45 +0200352 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100353 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200354 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200355 }
356
357 if (fd >= global.maxsock) {
358 /* do not log anything there, it's a normal condition when this option
359 * is used to serialize connections to a server !
360 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100361 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau9650f372009-08-16 14:02:45 +0200362 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100363 conn->err_code = CO_ER_CONF_FDLIM;
364 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200365 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau9650f372009-08-16 14:02:45 +0200366 }
367
368 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900369 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200370 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
371 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100372 conn->err_code = CO_ER_SOCK_ERR;
373 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200374 return SF_ERR_INTERNAL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200375 }
376
William Lallemandc03eb012018-11-27 12:02:37 +0100377 if (master == 1 && (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)) {
378 ha_alert("Cannot set CLOEXEC on client socket.\n");
379 close(fd);
380 conn->err_code = CO_ER_SOCK_ERR;
381 conn->flags |= CO_FL_ERROR;
382 return SF_ERR_INTERNAL;
383 }
384
Willy Tarreau9650f372009-08-16 14:02:45 +0200385 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900386 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200387
Willy Tarreau9650f372009-08-16 14:02:45 +0200388 /* allow specific binding :
389 * - server-specific at first
390 * - proxy-specific next
391 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100392 if (srv && srv->conn_src.opts & CO_SRC_BIND)
393 src = &srv->conn_src;
394 else if (be->conn_src.opts & CO_SRC_BIND)
395 src = &be->conn_src;
396 else
397 src = NULL;
398
399 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200400 int ret, flags = 0;
401
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200402 if (is_inet_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100403 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100404 case CO_SRC_TPROXY_CLI:
Willy Tarreau387ebf82015-08-04 19:24:13 +0200405 conn->flags |= CO_FL_PRIVATE;
406 /* fall through */
407 case CO_SRC_TPROXY_ADDR:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200408 flags = 3;
409 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100410 case CO_SRC_TPROXY_CIP:
411 case CO_SRC_TPROXY_DYN:
Willy Tarreau387ebf82015-08-04 19:24:13 +0200412 conn->flags |= CO_FL_PRIVATE;
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200413 flags = 1;
414 break;
415 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200416 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200417
Willy Tarreau9650f372009-08-16 14:02:45 +0200418#ifdef SO_BINDTODEVICE
419 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100420 if (src->iface_name)
421 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200422#endif
423
Willy Tarreaua4380b42012-12-08 22:49:11 +0100424 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200425 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100426 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200427
428 ret = 1;
Vincent Bernat6e615892016-05-18 16:17:44 +0200429 memcpy(&sa, &src->source_addr, sizeof(sa));
Willy Tarreau9650f372009-08-16 14:02:45 +0200430
431 do {
432 /* note: in case of retry, we may have to release a previously
433 * allocated port, hence this loop's construct.
434 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200435 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
436 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200437
438 if (!attempts)
439 break;
440 attempts--;
441
Willy Tarreaua4380b42012-12-08 22:49:11 +0100442 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100443 if (!fdinfo[fd].local_port) {
444 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200445 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100446 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200447
Willy Tarreaua4380b42012-12-08 22:49:11 +0100448 fdinfo[fd].port_range = src->sport_range;
449 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200450
Willy Tarreaua4380b42012-12-08 22:49:11 +0100451 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100452 if (ret != 0)
453 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200454 } while (ret != 0); /* binding NOK */
455 }
456 else {
Lukas Tribus7d56c6d2016-09-13 09:51:15 +0000457#ifdef IP_BIND_ADDRESS_NO_PORT
Christopher Faulet1bc04c72017-10-29 20:14:08 +0100458 static THREAD_LOCAL int bind_address_no_port = 1;
Lukas Tribus7d56c6d2016-09-13 09:51:15 +0000459 setsockopt(fd, SOL_IP, IP_BIND_ADDRESS_NO_PORT, (const void *) &bind_address_no_port, sizeof(int));
460#endif
Willy Tarreaua4380b42012-12-08 22:49:11 +0100461 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100462 if (ret != 0)
463 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200464 }
465
Willy Tarreaua4380b42012-12-08 22:49:11 +0100466 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200467 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
468 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200469 close(fd);
470
Willy Tarreau9650f372009-08-16 14:02:45 +0200471 if (ret == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100472 ha_alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
473 be->id);
Willy Tarreau9650f372009-08-16 14:02:45 +0200474 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100475 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200476 be->id);
477 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100478 ha_alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
479 be->id);
Willy Tarreau9650f372009-08-16 14:02:45 +0200480 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100481 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200482 be->id);
483 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100484 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200485 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200486 }
487 }
488
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400489#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200490 /* disabling tcp quick ack now allows the first request to leave the
491 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100492 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200493 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200494 if (flags & (CONNECT_DELACK_ALWAYS) ||
495 ((flags & CONNECT_DELACK_SMART_CONNECT ||
496 (flags & CONNECT_HAS_DATA) || conn->send_proxy_ofs) &&
497 (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900498 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200499#endif
500
Willy Tarreau163d4622015-10-13 16:16:41 +0200501#ifdef TCP_USER_TIMEOUT
502 /* there is not much more we can do here when it fails, it's still minor */
503 if (srv && srv->tcp_ut)
504 setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, &srv->tcp_ut, sizeof(srv->tcp_ut));
505#endif
Willy Tarreau034c88c2017-01-23 23:36:45 +0100506
507 if (use_fastopen) {
508#if defined(TCP_FASTOPEN_CONNECT)
509 setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN_CONNECT, &one, sizeof(one));
510#endif
511 }
Willy Tarreaue803de22010-01-21 17:43:04 +0100512 if (global.tune.server_sndbuf)
513 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
514
515 if (global.tune.server_rcvbuf)
516 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
517
Alexander Liu2a54bb72019-05-22 19:44:48 +0800518 addr = (conn->flags & CO_FL_SOCKS4) ? &srv->socks4_addr : &conn->addr.to;
519 if (connect(fd, (const struct sockaddr *)addr, get_addr_len(addr)) == -1) {
Willy Tarreau819efbf2017-01-25 14:12:22 +0100520 if (errno == EINPROGRESS || errno == EALREADY) {
521 /* common case, let's wait for connect status */
522 conn->flags |= CO_FL_WAIT_L4_CONN;
523 }
524 else if (errno == EISCONN) {
525 /* should normally not happen but if so, indicates that it's OK */
526 conn->flags &= ~CO_FL_WAIT_L4_CONN;
527 }
528 else if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200529 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100530 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200531 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100532 conn->err_code = CO_ER_FREE_PORTS;
533 }
534 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200535 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100536 conn->err_code = CO_ER_ADDR_INUSE;
537 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200538
Willy Tarreaub1719512012-12-08 23:03:28 +0100539 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200540 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
541 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200542 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100543 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100544 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200545 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200546 } else if (errno == ETIMEDOUT) {
547 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200548 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
549 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200550 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100551 conn->err_code = CO_ER_SOCK_ERR;
552 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200553 return SF_ERR_SRVTO;
Willy Tarreau9650f372009-08-16 14:02:45 +0200554 } else {
555 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
556 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200557 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
558 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200559 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100560 conn->err_code = CO_ER_SOCK_ERR;
561 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200562 return SF_ERR_SRVCL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200563 }
564 }
Willy Tarreau819efbf2017-01-25 14:12:22 +0100565 else {
566 /* connect() == 0, this is great! */
567 conn->flags &= ~CO_FL_WAIT_L4_CONN;
568 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200569
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100570 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200571
Willy Tarreauf79c8172013-10-21 16:30:56 +0200572 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100573 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200574
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200575 if (conn_xprt_init(conn) < 0) {
Willy Tarreau3f2770b2017-10-05 18:01:29 +0200576 conn_full_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100577 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200578 return SF_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200579 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200580
Olivier Houchardc2aae742017-09-22 18:26:28 +0200581 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN | CO_FL_EARLY_SSL_HS)) {
Willy Tarreau819efbf2017-01-25 14:12:22 +0100582 conn_sock_want_send(conn); /* for connect status, proxy protocol or SSL */
Olivier Houchardc2aae742017-09-22 18:26:28 +0200583 if (conn->flags & CO_FL_EARLY_SSL_HS)
584 conn_xprt_want_send(conn);
Willy Tarreau819efbf2017-01-25 14:12:22 +0100585 }
586 else {
587 /* If there's no more handshake, we need to notify the data
588 * layer when the connection is already OK otherwise we'll have
589 * no other opportunity to do it later (eg: health checks).
590 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200591 flags |= CONNECT_HAS_DATA;
Willy Tarreau819efbf2017-01-25 14:12:22 +0100592 }
593
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200594 if (flags & CONNECT_HAS_DATA)
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200595 conn_xprt_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200596
Willy Tarreaue7dff022015-04-03 01:14:29 +0200597 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau9650f372009-08-16 14:02:45 +0200598}
599
600
Willy Tarreau59b94792012-05-11 16:16:40 +0200601/*
602 * Retrieves the source address for the socket <fd>, with <dir> indicating
603 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
604 * success, -1 in case of error. The socket's source address is stored in
605 * <sa> for <salen> bytes.
606 */
607int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
608{
609 if (dir)
610 return getsockname(fd, sa, &salen);
611 else
612 return getpeername(fd, sa, &salen);
613}
614
615
616/*
617 * Retrieves the original destination address for the socket <fd>, with <dir>
618 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
619 * listener, if the original destination address was translated, the original
620 * address is retrieved. It returns 0 in case of success, -1 in case of error.
621 * The socket's source address is stored in <sa> for <salen> bytes.
622 */
623int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
624{
625 if (dir)
626 return getpeername(fd, sa, &salen);
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100627 else {
628 int ret = getsockname(fd, sa, &salen);
629
630 if (ret < 0)
631 return ret;
632
Willy Tarreaue5733232019-05-22 19:24:06 +0200633#if defined(USE_TPROXY) && defined(SO_ORIGINAL_DST)
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100634 /* For TPROXY and Netfilter's NAT, we can retrieve the original
635 * IPv4 address before DNAT/REDIRECT. We must not do that with
636 * other families because v6-mapped IPv4 addresses are still
637 * reported as v4.
638 */
639 if (((struct sockaddr_storage *)sa)->ss_family == AF_INET
640 && getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
641 return 0;
Willy Tarreau59b94792012-05-11 16:16:40 +0200642#endif
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100643 return ret;
644 }
Willy Tarreau59b94792012-05-11 16:16:40 +0200645}
646
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200647/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100648 * and we have nothing to send. It updates the FD polling status. It returns 0
649 * if it fails in a fatal way or needs to poll to go further, otherwise it
650 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
651 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
652 * errno. The error checking is done in two passes in order to limit the number
653 * of syscalls in the normal case :
654 * - if POLL_ERR was reported by the poller, we check for a pending error on
655 * the socket before proceeding. If found, it's assigned to errno so that
656 * upper layers can see it.
657 * - otherwise connect() is used to check the connection state again, since
658 * the getsockopt return cannot reliably be used to know if the connection
659 * is still pending or ready. This one may often return an error as well,
660 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200661 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200662int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200663{
Alexander Liu2a54bb72019-05-22 19:44:48 +0800664 struct sockaddr_storage *addr;
Willy Tarreau585744b2017-08-24 14:31:19 +0200665 int fd = conn->handle.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100666 socklen_t lskerr;
667 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200668
Willy Tarreau80184712012-07-06 14:54:49 +0200669 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200670 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200671
Willy Tarreau3c728722014-01-23 13:50:42 +0100672 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200673 return 0;
674
Willy Tarreau80184712012-07-06 14:54:49 +0200675 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200676 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200677
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100678 if (!fd_send_ready(fd))
679 return 0;
680
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100681 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
682 * without FD_POLL_IN also indicates a hangup without input data meaning
683 * there was no connection.
684 */
685 if (fdtab[fd].ev & FD_POLL_ERR ||
686 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
687 skerr = 0;
688 lskerr = sizeof(skerr);
689 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
690 errno = skerr;
691 if (errno == EAGAIN)
692 errno = 0;
693 if (errno)
694 goto out_error;
695 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200696
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100697 /* Use connect() to check the state of the socket. This has the
698 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200699 * - error
700 * - connecting (EALREADY, EINPROGRESS)
701 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200702 */
Alexander Liu2a54bb72019-05-22 19:44:48 +0800703 addr = &conn->addr.to;
704 if ((conn->flags & CO_FL_SOCKS4) && obj_type(conn->target) == OBJ_TYPE_SERVER)
705 addr = &objt_server(conn->target)->socks4_addr;
706
707 if (connect(fd, (const struct sockaddr *)addr, get_addr_len(addr)) == -1) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200708 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100709 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100710 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200711 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200712 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200713
Willy Tarreau2c6be842012-07-06 17:12:34 +0200714 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200715 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200716
Willy Tarreau2c6be842012-07-06 17:12:34 +0200717 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200718 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200719
Willy Tarreau076be252012-07-06 16:02:29 +0200720 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200721 * forward the event to the transport layer which will notify the
722 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200723 */
Willy Tarreau80184712012-07-06 14:54:49 +0200724 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200725 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200726
727 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200728 /* Write error on the file descriptor. Report it to the connection
729 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200730 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100731 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100732 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100733 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200734 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200735}
736
Olivier Houchard153659f2017-04-05 22:39:56 +0200737/* XXX: Should probably be elsewhere */
738static int compare_sockaddr(struct sockaddr_storage *a, struct sockaddr_storage *b)
739{
740 if (a->ss_family != b->ss_family) {
741 return (-1);
742 }
743 switch (a->ss_family) {
744 case AF_INET:
745 {
746 struct sockaddr_in *a4 = (void *)a, *b4 = (void *)b;
747 if (a4->sin_port != b4->sin_port)
748 return (-1);
749 return (memcmp(&a4->sin_addr, &b4->sin_addr,
750 sizeof(a4->sin_addr)));
751 }
752 case AF_INET6:
753 {
754 struct sockaddr_in6 *a6 = (void *)a, *b6 = (void *)b;
755 if (a6->sin6_port != b6->sin6_port)
756 return (-1);
757 return (memcmp(&a6->sin6_addr, &b6->sin6_addr,
758 sizeof(a6->sin6_addr)));
759 }
760 default:
761 return (-1);
762 }
763
764}
765
766#define LI_MANDATORY_FLAGS (LI_O_FOREIGN | LI_O_V6ONLY | LI_O_V4V6)
767/* When binding the listeners, check if a socket has been sent to us by the
768 * previous process that we could reuse, instead of creating a new one.
769 */
770static int tcp_find_compatible_fd(struct listener *l)
771{
772 struct xfer_sock_list *xfer_sock = xfer_sock_list;
773 int ret = -1;
774
775 while (xfer_sock) {
776 if (!compare_sockaddr(&xfer_sock->addr, &l->addr)) {
777 if ((l->interface == NULL && xfer_sock->iface == NULL) ||
778 (l->interface != NULL && xfer_sock->iface != NULL &&
779 !strcmp(l->interface, xfer_sock->iface))) {
780 if ((l->options & LI_MANDATORY_FLAGS) ==
781 (xfer_sock->options & LI_MANDATORY_FLAGS)) {
782 if ((xfer_sock->namespace == NULL &&
783 l->netns == NULL)
Willy Tarreaue5733232019-05-22 19:24:06 +0200784#ifdef USE_NS
Olivier Houchard153659f2017-04-05 22:39:56 +0200785 || (xfer_sock->namespace != NULL &&
786 l->netns != NULL &&
787 !strcmp(xfer_sock->namespace,
788 l->netns->node.key))
789#endif
790 ) {
791 break;
792 }
793
794 }
795 }
796 }
797 xfer_sock = xfer_sock->next;
798 }
799 if (xfer_sock != NULL) {
800 ret = xfer_sock->fd;
801 if (xfer_sock == xfer_sock_list)
802 xfer_sock_list = xfer_sock->next;
803 if (xfer_sock->prev)
804 xfer_sock->prev->next = xfer_sock->next;
805 if (xfer_sock->next)
806 xfer_sock->next->prev = xfer_sock->prev;
807 free(xfer_sock->iface);
808 free(xfer_sock->namespace);
809 free(xfer_sock);
810 }
811 return ret;
812}
813#undef L1_MANDATORY_FLAGS
Willy Tarreau59b94792012-05-11 16:16:40 +0200814
Willy Tarreaue6b98942007-10-29 01:09:36 +0100815/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100816 * an error message in <errmsg> if the message is at most <errlen> bytes long
817 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
818 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100819 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
820 * was alright and that no message was returned. ERR_RETRYABLE means that an
821 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700822 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100823 * the meaning of the error, but just indicate that a message is present which
824 * should be displayed with the respective level. Last, ERR_ABORT indicates
825 * that it's pointless to try to start other listeners. No error message is
826 * returned if errlen is NULL.
827 */
828int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
829{
830 __label__ tcp_return, tcp_close_return;
831 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100832 int ext, ready;
833 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100834 const char *msg = NULL;
Olivier Houchard153659f2017-04-05 22:39:56 +0200835#ifdef TCP_MAXSEG
836
837 /* Create a temporary TCP socket to get default parameters we can't
838 * guess.
839 * */
840 ready_len = sizeof(default_tcp_maxseg);
841 if (default_tcp_maxseg == -1) {
842 default_tcp_maxseg = -2;
843 fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
844 if (fd < 0)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100845 ha_warning("Failed to create a temporary socket!\n");
Olivier Houchard153659f2017-04-05 22:39:56 +0200846 else {
847 if (getsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, &default_tcp_maxseg,
848 &ready_len) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100849 ha_warning("Failed to get the default value of TCP_MAXSEG\n");
Olivier Houchard153659f2017-04-05 22:39:56 +0200850 }
851 close(fd);
852 }
853 if (default_tcp6_maxseg == -1) {
854 default_tcp6_maxseg = -2;
855 fd = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP);
856 if (fd >= 0) {
857 if (getsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, &default_tcp6_maxseg,
858 &ready_len) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100859 ha_warning("Failed ot get the default value of TCP_MAXSEG for IPv6\n");
Olivier Houchard153659f2017-04-05 22:39:56 +0200860 close(fd);
861 }
862 }
863#endif
864
Willy Tarreaue6b98942007-10-29 01:09:36 +0100865
866 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100867 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100868 *errmsg = 0;
869
870 if (listener->state != LI_ASSIGNED)
871 return ERR_NONE; /* already bound */
872
873 err = ERR_NONE;
874
Olivier Houchard153659f2017-04-05 22:39:56 +0200875 if (listener->fd == -1)
876 listener->fd = tcp_find_compatible_fd(listener);
877
Willy Tarreau40aa0702013-03-10 23:51:38 +0100878 /* if the listener already has an fd assigned, then we were offered the
879 * fd by an external process (most likely the parent), and we don't want
880 * to create a new socket. However we still want to set a few flags on
881 * the socket.
882 */
883 fd = listener->fd;
884 ext = (fd >= 0);
885
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100886 if (!ext) {
887 fd = my_socketat(listener->netns, listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP);
888
889 if (fd == -1) {
890 err |= ERR_RETRYABLE | ERR_ALERT;
891 msg = "cannot create listening socket";
892 goto tcp_return;
893 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100894 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100895
Willy Tarreaue6b98942007-10-29 01:09:36 +0100896 if (fd >= global.maxsock) {
897 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
898 msg = "not enough free sockets (raise '-n' parameter)";
899 goto tcp_close_return;
900 }
901
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200902 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100903 err |= ERR_FATAL | ERR_ALERT;
904 msg = "cannot make socket non-blocking";
905 goto tcp_close_return;
906 }
907
Willy Tarreau40aa0702013-03-10 23:51:38 +0100908 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100909 /* not fatal but should be reported */
910 msg = "cannot do so_reuseaddr";
911 err |= ERR_ALERT;
912 }
913
914 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900915 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Olivier Houchard153659f2017-04-05 22:39:56 +0200916 else {
917 struct linger tmplinger;
918 socklen_t len = sizeof(tmplinger);
919 if (getsockopt(fd, SOL_SOCKET, SO_LINGER, &tmplinger, &len) == 0 &&
920 (tmplinger.l_onoff == 1 || tmplinger.l_linger == 0)) {
921 tmplinger.l_onoff = 0;
922 tmplinger.l_linger = 0;
923 setsockopt(fd, SOL_SOCKET, SO_LINGER, &tmplinger,
924 sizeof(tmplinger));
925 }
926 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100927
Willy Tarreaue6b98942007-10-29 01:09:36 +0100928#ifdef SO_REUSEPORT
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000929 /* OpenBSD and Linux 3.9 support this. As it's present in old libc versions of
930 * Linux, it might return an error that we will silently ignore.
Willy Tarreaue6b98942007-10-29 01:09:36 +0100931 */
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000932 if (!ext && (global.tune.options & GTUNE_USE_REUSEPORT))
Willy Tarreau40aa0702013-03-10 23:51:38 +0100933 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100934#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200935
Willy Tarreau40aa0702013-03-10 23:51:38 +0100936 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200937 switch (listener->addr.ss_family) {
938 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200939 if (1
940#if defined(IP_TRANSPARENT)
941 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
942#endif
943#if defined(IP_FREEBIND)
944 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
945#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200946#if defined(IP_BINDANY)
947 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
948#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200949#if defined(SO_BINDANY)
950 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
951#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200952 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200953 msg = "cannot make listening socket transparent";
954 err |= ERR_ALERT;
955 }
956 break;
957 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200958 if (1
Dinko Korunic7276f3a2016-09-09 09:41:15 +0200959#if defined(IPV6_TRANSPARENT) && defined(SOL_IPV6)
Pieter Baauwd551fb52013-05-08 22:49:23 +0200960 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
961#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100962#if defined(IP_FREEBIND)
963 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
964#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200965#if defined(IPV6_BINDANY)
966 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
967#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200968#if defined(SO_BINDANY)
969 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
970#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200971 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200972 msg = "cannot make listening socket transparent";
973 err |= ERR_ALERT;
974 }
975 break;
976 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100977 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200978
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100979#ifdef SO_BINDTODEVICE
980 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100981 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100982 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100983 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100984 msg = "cannot bind listener to device";
985 err |= ERR_WARN;
986 }
987 }
988#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400989#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100990 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400991 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200992 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
993 msg = "cannot set MSS";
994 err |= ERR_WARN;
995 }
Olivier Houchard153659f2017-04-05 22:39:56 +0200996 } else if (ext) {
997 int tmpmaxseg = -1;
998 int defaultmss;
999 socklen_t len = sizeof(tmpmaxseg);
1000
1001 if (listener->addr.ss_family == AF_INET)
1002 defaultmss = default_tcp_maxseg;
1003 else
1004 defaultmss = default_tcp6_maxseg;
1005
1006 getsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, &tmpmaxseg, &len);
1007 if (tmpmaxseg != defaultmss && setsockopt(fd, IPPROTO_TCP,
1008 TCP_MAXSEG, &defaultmss,
1009 sizeof(defaultmss)) == -1) {
1010 msg = "cannot set MSS";
1011 err |= ERR_WARN;
1012 }
Willy Tarreaube1b9182009-06-14 18:48:19 +02001013 }
1014#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +01001015#if defined(TCP_USER_TIMEOUT)
1016 if (listener->tcp_ut) {
1017 if (setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
1018 &listener->tcp_ut, sizeof(listener->tcp_ut)) == -1) {
1019 msg = "cannot set TCP User Timeout";
1020 err |= ERR_WARN;
1021 }
Olivier Houchard153659f2017-04-05 22:39:56 +02001022 } else
1023 setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, &zero,
1024 sizeof(zero));
Willy Tarreau2af207a2015-02-04 00:45:58 +01001025#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +02001026#if defined(TCP_DEFER_ACCEPT)
1027 if (listener->options & LI_O_DEF_ACCEPT) {
1028 /* defer accept by up to one second */
1029 int accept_delay = 1;
1030 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
1031 msg = "cannot enable DEFER_ACCEPT";
1032 err |= ERR_WARN;
1033 }
Olivier Houchard153659f2017-04-05 22:39:56 +02001034 } else
1035 setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &zero,
1036 sizeof(zero));
Willy Tarreaucb6cd432009-10-13 07:34:14 +02001037#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001038#if defined(TCP_FASTOPEN)
1039 if (listener->options & LI_O_TCP_FO) {
1040 /* TFO needs a queue length, let's use the configured backlog */
Willy Tarreaue2711c72019-02-27 15:39:41 +01001041 int qlen = listener_backlog(listener);
Willy Tarreau1c862c52012-10-05 16:21:00 +02001042 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
1043 msg = "cannot enable TCP_FASTOPEN";
1044 err |= ERR_WARN;
1045 }
Olivier Houchard153659f2017-04-05 22:39:56 +02001046 } else {
1047 socklen_t len;
1048 int qlen;
1049 len = sizeof(qlen);
1050 /* Only disable fast open if it was enabled, we don't want
1051 * the kernel to create a fast open queue if there's none.
1052 */
1053 if (getsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, &len) == 0 &&
1054 qlen != 0) {
1055 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &zero,
1056 sizeof(zero)) == -1) {
1057 msg = "cannot disable TCP_FASTOPEN";
1058 err |= ERR_WARN;
1059 }
1060 }
Willy Tarreau1c862c52012-10-05 16:21:00 +02001061 }
1062#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001063#if defined(IPV6_V6ONLY)
1064 if (listener->options & LI_O_V6ONLY)
1065 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +01001066 else if (listener->options & LI_O_V4V6)
1067 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001068#endif
1069
Willy Tarreau40aa0702013-03-10 23:51:38 +01001070 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +01001071 err |= ERR_RETRYABLE | ERR_ALERT;
1072 msg = "cannot bind socket";
1073 goto tcp_close_return;
1074 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001075
Willy Tarreau40aa0702013-03-10 23:51:38 +01001076 ready = 0;
1077 ready_len = sizeof(ready);
1078 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
1079 ready = 0;
1080
1081 if (!(ext && ready) && /* only listen if not already done by external process */
Willy Tarreaue2711c72019-02-27 15:39:41 +01001082 listen(fd, listener_backlog(listener)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +01001083 err |= ERR_RETRYABLE | ERR_ALERT;
1084 msg = "cannot listen to socket";
1085 goto tcp_close_return;
1086 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001087
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +04001088#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +02001089 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +09001090 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Olivier Houchard153659f2017-04-05 22:39:56 +02001091 else
1092 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau9ea05a72009-06-14 12:07:01 +02001093#endif
1094
Willy Tarreaue6b98942007-10-29 01:09:36 +01001095 /* the socket is ready */
1096 listener->fd = fd;
1097 listener->state = LI_LISTEN;
1098
Willy Tarreaua9786b62018-01-25 07:22:13 +01001099 fd_insert(fd, listener, listener->proto->accept,
Willy Tarreaua36b3242019-02-02 13:14:34 +01001100 thread_mask(listener->bind_conf->bind_thread));
Willy Tarreaueb472682010-05-28 18:46:57 +02001101
Willy Tarreaue6b98942007-10-29 01:09:36 +01001102 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +01001103 if (msg && errlen) {
1104 char pn[INET6_ADDRSTRLEN];
1105
Willy Tarreau631f01c2011-09-05 00:36:48 +02001106 addr_to_str(&listener->addr, pn, sizeof(pn));
1107 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +01001108 }
Willy Tarreaue6b98942007-10-29 01:09:36 +01001109 return err;
1110
1111 tcp_close_return:
1112 close(fd);
1113 goto tcp_return;
1114}
1115
1116/* This function creates all TCP sockets bound to the protocol entry <proto>.
1117 * It is intended to be used as the protocol's bind_all() function.
1118 * The sockets will be registered but not added to any fd_set, in order not to
1119 * loose them across the fork(). A call to enable_all_listeners() is needed
1120 * to complete initialization. The return value is composed from ERR_*.
1121 */
Emeric Bruncf20bf12010-10-22 16:06:11 +02001122static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001123{
1124 struct listener *listener;
1125 int err = ERR_NONE;
1126
1127 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +02001128 err |= tcp_bind_listener(listener, errmsg, errlen);
1129 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001130 break;
1131 }
1132
1133 return err;
1134}
1135
Willy Tarreau32282382017-09-15 07:44:44 +02001136/* Add <listener> to the list of tcpv4 listeners, on port <port>. The
1137 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
1138 * The number of listeners for the protocol is updated.
Willy Tarreaue6b98942007-10-29 01:09:36 +01001139 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +02001140static void tcpv4_add_listener(struct listener *listener, int port)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001141{
1142 if (listener->state != LI_INIT)
1143 return;
1144 listener->state = LI_ASSIGNED;
1145 listener->proto = &proto_tcpv4;
Willy Tarreau32282382017-09-15 07:44:44 +02001146 ((struct sockaddr_in *)(&listener->addr))->sin_port = htons(port);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001147 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
1148 proto_tcpv4.nb_listeners++;
1149}
1150
Willy Tarreau32282382017-09-15 07:44:44 +02001151/* Add <listener> to the list of tcpv6 listeners, on port <port>. The
1152 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
1153 * The number of listeners for the protocol is updated.
Willy Tarreaue6b98942007-10-29 01:09:36 +01001154 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +02001155static void tcpv6_add_listener(struct listener *listener, int port)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001156{
1157 if (listener->state != LI_INIT)
1158 return;
1159 listener->state = LI_ASSIGNED;
1160 listener->proto = &proto_tcpv6;
Willy Tarreau32282382017-09-15 07:44:44 +02001161 ((struct sockaddr_in *)(&listener->addr))->sin_port = htons(port);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001162 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
1163 proto_tcpv6.nb_listeners++;
1164}
1165
Willy Tarreau092d8652014-07-07 20:22:12 +02001166/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
1167 * was totally stopped, or > 0 if correctly paused.
1168 */
1169int tcp_pause_listener(struct listener *l)
1170{
1171 if (shutdown(l->fd, SHUT_WR) != 0)
1172 return -1; /* Solaris dies here */
1173
Willy Tarreaue2711c72019-02-27 15:39:41 +01001174 if (listen(l->fd, listener_backlog(l)) != 0)
Willy Tarreau092d8652014-07-07 20:22:12 +02001175 return -1; /* OpenBSD dies here */
1176
1177 if (shutdown(l->fd, SHUT_RD) != 0)
1178 return -1; /* should always be OK */
1179 return 1;
1180}
1181
William Lallemand2e785f22016-05-25 01:48:42 +02001182/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001183 * Execute the "set-src" action. May be called from {tcp,http}request.
1184 * It only changes the address and tries to preserve the original port. If the
1185 * previous family was neither AF_INET nor AF_INET6, the port is set to zero.
William Lallemand2e785f22016-05-25 01:48:42 +02001186 */
1187enum act_return tcp_action_req_set_src(struct act_rule *rule, struct proxy *px,
1188 struct session *sess, struct stream *s, int flags)
1189{
1190 struct connection *cli_conn;
1191
1192 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1193 struct sample *smp;
1194
1195 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR);
1196 if (smp) {
Willy Tarreau00005ce2016-10-21 15:07:45 +02001197 int port = get_net_port(&cli_conn->addr.from);
1198
William Lallemand2e785f22016-05-25 01:48:42 +02001199 if (smp->data.type == SMP_T_IPV4) {
1200 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_family = AF_INET;
1201 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = smp->data.u.ipv4.s_addr;
Willy Tarreau00005ce2016-10-21 15:07:45 +02001202 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = port;
William Lallemand2e785f22016-05-25 01:48:42 +02001203 } else if (smp->data.type == SMP_T_IPV6) {
1204 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_family = AF_INET6;
1205 memcpy(&((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, &smp->data.u.ipv6, sizeof(struct in6_addr));
Willy Tarreau00005ce2016-10-21 15:07:45 +02001206 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = port;
William Lallemand2e785f22016-05-25 01:48:42 +02001207 }
1208 }
William Lallemand01252ed2016-05-25 02:33:16 +02001209 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
William Lallemand2e785f22016-05-25 01:48:42 +02001210 }
1211 return ACT_RET_CONT;
1212}
1213
William Lallemand44be6402016-05-25 01:51:35 +02001214/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001215 * Execute the "set-dst" action. May be called from {tcp,http}request.
1216 * It only changes the address and tries to preserve the original port. If the
1217 * previous family was neither AF_INET nor AF_INET6, the port is set to zero.
William Lallemand13e9b0c2016-05-25 02:34:07 +02001218 */
1219enum act_return tcp_action_req_set_dst(struct act_rule *rule, struct proxy *px,
1220 struct session *sess, struct stream *s, int flags)
1221{
1222 struct connection *cli_conn;
1223
1224 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1225 struct sample *smp;
1226
1227 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR);
1228 if (smp) {
Willy Tarreau00005ce2016-10-21 15:07:45 +02001229 int port = get_net_port(&cli_conn->addr.to);
1230
William Lallemand13e9b0c2016-05-25 02:34:07 +02001231 if (smp->data.type == SMP_T_IPV4) {
1232 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_family = AF_INET;
1233 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr = smp->data.u.ipv4.s_addr;
1234 } else if (smp->data.type == SMP_T_IPV6) {
1235 ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_family = AF_INET6;
1236 memcpy(&((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr, &smp->data.u.ipv6, sizeof(struct in6_addr));
Willy Tarreau00005ce2016-10-21 15:07:45 +02001237 ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_port = port;
William Lallemand13e9b0c2016-05-25 02:34:07 +02001238 }
1239 cli_conn->flags |= CO_FL_ADDR_TO_SET;
1240 }
1241 }
1242 return ACT_RET_CONT;
1243}
1244
1245/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001246 * Execute the "set-src-port" action. May be called from {tcp,http}request.
1247 * We must test the sin_family before setting the port. If the address family
1248 * is neither AF_INET nor AF_INET6, the address is forced to AF_INET "0.0.0.0"
1249 * and the port is assigned.
William Lallemand44be6402016-05-25 01:51:35 +02001250 */
1251enum act_return tcp_action_req_set_src_port(struct act_rule *rule, struct proxy *px,
1252 struct session *sess, struct stream *s, int flags)
1253{
1254 struct connection *cli_conn;
1255
1256 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1257 struct sample *smp;
1258
1259 conn_get_from_addr(cli_conn);
1260
1261 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT);
1262 if (smp) {
Willy Tarreau00005ce2016-10-21 15:07:45 +02001263 if (cli_conn->addr.from.ss_family == AF_INET6) {
William Lallemand44be6402016-05-25 01:51:35 +02001264 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = htons(smp->data.u.sint);
Willy Tarreau00005ce2016-10-21 15:07:45 +02001265 } else {
1266 if (cli_conn->addr.from.ss_family != AF_INET) {
1267 cli_conn->addr.from.ss_family = AF_INET;
1268 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = 0;
1269 }
1270 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = htons(smp->data.u.sint);
William Lallemand44be6402016-05-25 01:51:35 +02001271 }
1272 }
1273 }
1274 return ACT_RET_CONT;
1275}
1276
William Lallemand13e9b0c2016-05-25 02:34:07 +02001277/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001278 * Execute the "set-dst-port" action. May be called from {tcp,http}request.
1279 * We must test the sin_family before setting the port. If the address family
1280 * is neither AF_INET nor AF_INET6, the address is forced to AF_INET "0.0.0.0"
1281 * and the port is assigned.
William Lallemand13e9b0c2016-05-25 02:34:07 +02001282 */
1283enum act_return tcp_action_req_set_dst_port(struct act_rule *rule, struct proxy *px,
1284 struct session *sess, struct stream *s, int flags)
1285{
1286 struct connection *cli_conn;
1287
1288 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1289 struct sample *smp;
1290
1291 conn_get_to_addr(cli_conn);
1292
1293 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT);
1294 if (smp) {
Baptiste Assmann46392fd2017-10-03 23:16:36 +02001295 if (cli_conn->addr.to.ss_family == AF_INET6) {
1296 ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_port = htons(smp->data.u.sint);
Willy Tarreau00005ce2016-10-21 15:07:45 +02001297 } else {
Baptiste Assmann46392fd2017-10-03 23:16:36 +02001298 if (cli_conn->addr.to.ss_family != AF_INET) {
1299 cli_conn->addr.to.ss_family = AF_INET;
1300 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr = 0;
Willy Tarreau00005ce2016-10-21 15:07:45 +02001301 }
Baptiste Assmann46392fd2017-10-03 23:16:36 +02001302 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_port = htons(smp->data.u.sint);
William Lallemand13e9b0c2016-05-25 02:34:07 +02001303 }
1304 }
1305 }
1306 return ACT_RET_CONT;
1307}
1308
Willy Tarreau2d392c22015-08-24 01:43:45 +02001309/* Executes the "silent-drop" action. May be called from {tcp,http}{request,response} */
1310static enum act_return tcp_exec_action_silent_drop(struct act_rule *rule, struct proxy *px, struct session *sess, struct stream *strm, int flags)
1311{
1312 struct connection *conn = objt_conn(sess->origin);
1313
1314 if (!conn)
1315 goto out;
1316
1317 if (!conn_ctrl_ready(conn))
1318 goto out;
1319
Willy Tarreau2d392c22015-08-24 01:43:45 +02001320#ifdef TCP_QUICKACK
Willy Tarreaufc2a2d92015-09-29 18:15:01 +02001321 /* drain is needed only to send the quick ACK */
1322 conn_sock_drain(conn);
1323
Willy Tarreau2d392c22015-08-24 01:43:45 +02001324 /* re-enable quickack if it was disabled to ack all data and avoid
1325 * retransmits from the client that might trigger a real reset.
1326 */
Willy Tarreau585744b2017-08-24 14:31:19 +02001327 setsockopt(conn->handle.fd, SOL_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau2d392c22015-08-24 01:43:45 +02001328#endif
1329 /* lingering must absolutely be disabled so that we don't send a
1330 * shutdown(), this is critical to the TCP_REPAIR trick. When no stream
1331 * is present, returning with ERR will cause lingering to be disabled.
1332 */
1333 if (strm)
1334 strm->si[0].flags |= SI_FL_NOLINGER;
1335
Willy Tarreauf50ec0f2015-09-29 18:11:32 +02001336 /* We're on the client-facing side, we must force to disable lingering to
1337 * ensure we will use an RST exclusively and kill any pending data.
1338 */
Willy Tarreau585744b2017-08-24 14:31:19 +02001339 fdtab[conn->handle.fd].linger_risk = 1;
Willy Tarreauf50ec0f2015-09-29 18:11:32 +02001340
Willy Tarreau2d392c22015-08-24 01:43:45 +02001341#ifdef TCP_REPAIR
Willy Tarreau585744b2017-08-24 14:31:19 +02001342 if (setsockopt(conn->handle.fd, SOL_TCP, TCP_REPAIR, &one, sizeof(one)) == 0) {
Willy Tarreau2d392c22015-08-24 01:43:45 +02001343 /* socket will be quiet now */
1344 goto out;
1345 }
1346#endif
1347 /* either TCP_REPAIR is not defined or it failed (eg: permissions).
1348 * Let's fall back on the TTL trick, though it only works for routed
1349 * network and has no effect on local net.
1350 */
1351#ifdef IP_TTL
Willy Tarreau585744b2017-08-24 14:31:19 +02001352 setsockopt(conn->handle.fd, SOL_IP, IP_TTL, &one, sizeof(one));
Willy Tarreau2d392c22015-08-24 01:43:45 +02001353#endif
1354 out:
1355 /* kill the stream if any */
1356 if (strm) {
1357 channel_abort(&strm->req);
1358 channel_abort(&strm->res);
1359 strm->req.analysers = 0;
1360 strm->res.analysers = 0;
Olivier Houchard40514102019-03-08 18:54:04 +01001361 _HA_ATOMIC_ADD(&strm->be->be_counters.denied_req, 1);
Willy Tarreau2d392c22015-08-24 01:43:45 +02001362 if (!(strm->flags & SF_ERR_MASK))
1363 strm->flags |= SF_ERR_PRXCOND;
1364 if (!(strm->flags & SF_FINST_MASK))
1365 strm->flags |= SF_FINST_R;
1366 }
1367
Olivier Houchard40514102019-03-08 18:54:04 +01001368 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Willy Tarreau2d392c22015-08-24 01:43:45 +02001369 if (sess->listener->counters)
Olivier Houchard40514102019-03-08 18:54:04 +01001370 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Willy Tarreau2d392c22015-08-24 01:43:45 +02001371
1372 return ACT_RET_STOP;
1373}
1374
William Lallemand13e9b0c2016-05-25 02:34:07 +02001375/* parse "set-{src,dst}[-port]" action */
1376enum act_parse_ret tcp_parse_set_src_dst(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
William Lallemand2e785f22016-05-25 01:48:42 +02001377{
1378 int cur_arg;
1379 struct sample_expr *expr;
1380 unsigned int where;
1381
1382 cur_arg = *orig_arg;
1383 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
1384 if (!expr)
1385 return ACT_RET_PRS_ERR;
1386
1387 where = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001388 if (px->cap & PR_CAP_FE)
William Lallemand2e785f22016-05-25 01:48:42 +02001389 where |= SMP_VAL_FE_HRQ_HDR;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001390 if (px->cap & PR_CAP_BE)
William Lallemand2e785f22016-05-25 01:48:42 +02001391 where |= SMP_VAL_BE_HRQ_HDR;
1392
1393 if (!(expr->fetch->val & where)) {
1394 memprintf(err,
1395 "fetch method '%s' extracts information from '%s', none of which is available here",
1396 args[cur_arg-1], sample_src_names(expr->fetch->use));
1397 free(expr);
1398 return ACT_RET_PRS_ERR;
1399 }
1400 rule->arg.expr = expr;
1401 rule->action = ACT_CUSTOM;
1402
1403 if (!strcmp(args[*orig_arg-1], "set-src")) {
1404 rule->action_ptr = tcp_action_req_set_src;
William Lallemand44be6402016-05-25 01:51:35 +02001405 } else if (!strcmp(args[*orig_arg-1], "set-src-port")) {
1406 rule->action_ptr = tcp_action_req_set_src_port;
William Lallemand13e9b0c2016-05-25 02:34:07 +02001407 } else if (!strcmp(args[*orig_arg-1], "set-dst")) {
1408 rule->action_ptr = tcp_action_req_set_dst;
1409 } else if (!strcmp(args[*orig_arg-1], "set-dst-port")) {
1410 rule->action_ptr = tcp_action_req_set_dst_port;
William Lallemand2e785f22016-05-25 01:48:42 +02001411 } else {
1412 return ACT_RET_PRS_ERR;
1413 }
1414
1415 (*orig_arg)++;
1416
1417 return ACT_RET_PRS_OK;
1418}
1419
1420
Willy Tarreau2d392c22015-08-24 01:43:45 +02001421/* Parse a "silent-drop" action. It takes no argument. It returns ACT_RET_PRS_OK on
1422 * success, ACT_RET_PRS_ERR on error.
1423 */
1424static enum act_parse_ret tcp_parse_silent_drop(const char **args, int *orig_arg, struct proxy *px,
1425 struct act_rule *rule, char **err)
1426{
1427 rule->action = ACT_CUSTOM;
1428 rule->action_ptr = tcp_exec_action_silent_drop;
1429 return ACT_RET_PRS_OK;
1430}
1431
Willy Tarreau645513a2010-05-24 20:55:15 +02001432
1433/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001434/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001435/************************************************************************/
1436
Willy Tarreau4a129812012-04-25 17:31:42 +02001437/* fetch the connection's source IPv4/IPv6 address */
Thierry FOURNIERa123ad82015-07-24 09:12:15 +02001438int smp_fetch_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001439{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001440 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001441
1442 if (!cli_conn)
1443 return 0;
1444
1445 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001446 case AF_INET:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001447 smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001448 smp->data.type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001449 break;
1450 case AF_INET6:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001451 smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001452 smp->data.type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001453 break;
1454 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001455 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001456 }
Emeric Brunf769f512010-10-22 17:14:01 +02001457
Willy Tarreau37406352012-04-23 16:16:37 +02001458 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001459 return 1;
1460}
1461
Willy Tarreaua5e37562011-12-16 17:06:15 +01001462/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001463static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001464smp_fetch_sport(const struct arg *args, struct sample *smp, const char *k, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001465{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001466 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001467
1468 if (!cli_conn)
1469 return 0;
1470
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001471 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001472 if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001473 return 0;
1474
Willy Tarreau37406352012-04-23 16:16:37 +02001475 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001476 return 1;
1477}
1478
Willy Tarreau4a129812012-04-25 17:31:42 +02001479/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001480static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001481smp_fetch_dst(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001482{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001483 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreau645513a2010-05-24 20:55:15 +02001484
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001485 if (!cli_conn)
1486 return 0;
1487
1488 conn_get_to_addr(cli_conn);
1489
1490 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001491 case AF_INET:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001492 smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001493 smp->data.type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001494 break;
1495 case AF_INET6:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001496 smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001497 smp->data.type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001498 break;
1499 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001500 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001501 }
Emeric Brunf769f512010-10-22 17:14:01 +02001502
Willy Tarreau37406352012-04-23 16:16:37 +02001503 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001504 return 1;
1505}
1506
Willy Tarreau16e01562016-08-09 16:46:18 +02001507/* check if the destination address of the front connection is local to the
1508 * system or if it was intercepted.
1509 */
1510int smp_fetch_dst_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private)
1511{
1512 struct connection *conn = objt_conn(smp->sess->origin);
1513 struct listener *li = smp->sess->listener;
1514
1515 if (!conn)
1516 return 0;
1517
1518 conn_get_to_addr(conn);
1519 if (!(conn->flags & CO_FL_ADDR_TO_SET))
1520 return 0;
1521
1522 smp->data.type = SMP_T_BOOL;
1523 smp->flags = 0;
1524 smp->data.u.sint = addr_is_local(li->netns, &conn->addr.to);
1525 return smp->data.u.sint >= 0;
1526}
1527
1528/* check if the source address of the front connection is local to the system
1529 * or not.
1530 */
1531int smp_fetch_src_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private)
1532{
1533 struct connection *conn = objt_conn(smp->sess->origin);
1534 struct listener *li = smp->sess->listener;
1535
1536 if (!conn)
1537 return 0;
1538
1539 conn_get_from_addr(conn);
1540 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
1541 return 0;
1542
1543 smp->data.type = SMP_T_BOOL;
1544 smp->flags = 0;
1545 smp->data.u.sint = addr_is_local(li->netns, &conn->addr.from);
1546 return smp->data.u.sint >= 0;
1547}
1548
Willy Tarreaua5e37562011-12-16 17:06:15 +01001549/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001550static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001551smp_fetch_dport(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001552{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001553 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001554
1555 if (!cli_conn)
1556 return 0;
1557
1558 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001559
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001560 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001561 if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001562 return 0;
1563
Willy Tarreau37406352012-04-23 16:16:37 +02001564 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001565 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001566}
1567
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001568#ifdef TCP_INFO
1569
Joseph Herlanta6331472018-11-25 12:59:12 -08001570/* Returns some tcp_info data if it's available. "dir" must be set to 0 if
1571 * the client connection is required, otherwise it is set to 1. "val" represents
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001572 * the required value. Use 0 for rtt and 1 for rttavg. "unit" is the expected unit
1573 * by default, the rtt is in us. Id "unit" is set to 0, the unit is us, if it is
Joseph Herlanta6331472018-11-25 12:59:12 -08001574 * set to 1, the units are milliseconds.
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001575 * If the function fails it returns 0, otherwise it returns 1 and "result" is filled.
1576 */
1577static inline int get_tcp_info(const struct arg *args, struct sample *smp,
1578 int dir, int val)
1579{
1580 struct connection *conn;
1581 struct tcp_info info;
1582 socklen_t optlen;
1583
1584 /* strm can be null. */
1585 if (!smp->strm)
1586 return 0;
1587
1588 /* get the object associated with the stream interface.The
1589 * object can be other thing than a connection. For example,
1590 * it be a appctx. */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001591 conn = cs_conn(objt_cs(smp->strm->si[dir].end));
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001592 if (!conn)
1593 return 0;
1594
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001595 /* The fd may not be available for the tcp_info struct, and the
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001596 syscal can fail. */
1597 optlen = sizeof(info);
Willy Tarreau585744b2017-08-24 14:31:19 +02001598 if (getsockopt(conn->handle.fd, SOL_TCP, TCP_INFO, &info, &optlen) == -1)
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001599 return 0;
1600
1601 /* extract the value. */
1602 smp->data.type = SMP_T_SINT;
1603 switch (val) {
Joe Williams30fcd392016-08-10 07:06:44 -07001604 case 0: smp->data.u.sint = info.tcpi_rtt; break;
1605 case 1: smp->data.u.sint = info.tcpi_rttvar; break;
1606#if defined(__linux__)
1607 /* these ones are common to all Linux versions */
1608 case 2: smp->data.u.sint = info.tcpi_unacked; break;
1609 case 3: smp->data.u.sint = info.tcpi_sacked; break;
1610 case 4: smp->data.u.sint = info.tcpi_lost; break;
1611 case 5: smp->data.u.sint = info.tcpi_retrans; break;
1612 case 6: smp->data.u.sint = info.tcpi_fackets; break;
1613 case 7: smp->data.u.sint = info.tcpi_reordering; break;
1614#elif defined(__FreeBSD__) || defined(__NetBSD__)
1615 /* the ones are found on FreeBSD and NetBSD featuring TCP_INFO */
1616 case 2: smp->data.u.sint = info.__tcpi_unacked; break;
1617 case 3: smp->data.u.sint = info.__tcpi_sacked; break;
1618 case 4: smp->data.u.sint = info.__tcpi_lost; break;
1619 case 5: smp->data.u.sint = info.__tcpi_retrans; break;
1620 case 6: smp->data.u.sint = info.__tcpi_fackets; break;
1621 case 7: smp->data.u.sint = info.__tcpi_reordering; break;
1622#endif
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001623 default: return 0;
1624 }
1625
1626 /* Convert the value as expected. */
1627 if (args) {
1628 if (args[0].type == ARGT_STR) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001629 if (strcmp(args[0].data.str.area, "us") == 0) {
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001630 /* Do nothing. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001631 } else if (strcmp(args[0].data.str.area, "ms") == 0) {
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001632 smp->data.u.sint = (smp->data.u.sint + 500) / 1000;
1633 } else
1634 return 0;
1635 } else if (args[0].type == ARGT_STOP) {
1636 smp->data.u.sint = (smp->data.u.sint + 500) / 1000;
1637 } else
1638 return 0;
1639 }
1640
1641 return 1;
1642}
1643
1644/* get the mean rtt of a client connexion */
1645static int
1646smp_fetch_fc_rtt(const struct arg *args, struct sample *smp, const char *kw, void *private)
1647{
1648 if (!get_tcp_info(args, smp, 0, 0))
1649 return 0;
1650 return 1;
1651}
1652
1653/* get the variance of the mean rtt of a client connexion */
1654static int
1655smp_fetch_fc_rttvar(const struct arg *args, struct sample *smp, const char *kw, void *private)
1656{
1657 if (!get_tcp_info(args, smp, 0, 1))
1658 return 0;
1659 return 1;
1660}
Joe Williams30fcd392016-08-10 07:06:44 -07001661
1662#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
1663
1664/* get the unacked counter on a client connexion */
1665static int
1666smp_fetch_fc_unacked(const struct arg *args, struct sample *smp, const char *kw, void *private)
1667{
1668 if (!get_tcp_info(args, smp, 0, 2))
1669 return 0;
1670 return 1;
1671}
1672
1673/* get the sacked counter on a client connexion */
1674static int
1675smp_fetch_fc_sacked(const struct arg *args, struct sample *smp, const char *kw, void *private)
1676{
1677 if (!get_tcp_info(args, smp, 0, 3))
1678 return 0;
1679 return 1;
1680}
1681
1682/* get the lost counter on a client connexion */
1683static int
1684smp_fetch_fc_lost(const struct arg *args, struct sample *smp, const char *kw, void *private)
1685{
1686 if (!get_tcp_info(args, smp, 0, 4))
1687 return 0;
1688 return 1;
1689}
1690
1691/* get the retrans counter on a client connexion */
1692static int
1693smp_fetch_fc_retrans(const struct arg *args, struct sample *smp, const char *kw, void *private)
1694{
1695 if (!get_tcp_info(args, smp, 0, 5))
1696 return 0;
1697 return 1;
1698}
1699
1700/* get the fackets counter on a client connexion */
1701static int
1702smp_fetch_fc_fackets(const struct arg *args, struct sample *smp, const char *kw, void *private)
1703{
1704 if (!get_tcp_info(args, smp, 0, 6))
1705 return 0;
1706 return 1;
1707}
1708
1709/* get the reordering counter on a client connexion */
1710static int
1711smp_fetch_fc_reordering(const struct arg *args, struct sample *smp, const char *kw, void *private)
1712{
1713 if (!get_tcp_info(args, smp, 0, 7))
1714 return 0;
1715 return 1;
1716}
1717#endif // linux || freebsd || netbsd
1718#endif // TCP_INFO
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001719
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001720#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001721/* parse the "v4v6" bind keyword */
1722static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1723{
1724 struct listener *l;
1725
1726 list_for_each_entry(l, &conf->listeners, by_bind) {
1727 if (l->addr.ss_family == AF_INET6)
1728 l->options |= LI_O_V4V6;
1729 }
1730
1731 return 0;
1732}
1733
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001734/* parse the "v6only" bind keyword */
1735static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1736{
1737 struct listener *l;
1738
1739 list_for_each_entry(l, &conf->listeners, by_bind) {
1740 if (l->addr.ss_family == AF_INET6)
1741 l->options |= LI_O_V6ONLY;
1742 }
1743
1744 return 0;
1745}
1746#endif
1747
Pieter Baauwd551fb52013-05-08 22:49:23 +02001748#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001749/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001750static int bind_parse_transparent(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02001751{
1752 struct listener *l;
1753
Willy Tarreau4348fad2012-09-20 16:48:07 +02001754 list_for_each_entry(l, &conf->listeners, by_bind) {
1755 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1756 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001757 }
1758
Willy Tarreau44791242012-09-12 23:27:21 +02001759 return 0;
1760}
1761#endif
1762
1763#ifdef TCP_DEFER_ACCEPT
1764/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001765static int bind_parse_defer_accept(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02001766{
1767 struct listener *l;
1768
Willy Tarreau4348fad2012-09-20 16:48:07 +02001769 list_for_each_entry(l, &conf->listeners, by_bind) {
1770 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1771 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001772 }
1773
Willy Tarreau44791242012-09-12 23:27:21 +02001774 return 0;
1775}
1776#endif
1777
Willy Tarreau1c862c52012-10-05 16:21:00 +02001778#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001779/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001780static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1781{
1782 struct listener *l;
1783
1784 list_for_each_entry(l, &conf->listeners, by_bind) {
1785 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1786 l->options |= LI_O_TCP_FO;
1787 }
1788
1789 return 0;
1790}
1791#endif
1792
Willy Tarreau44791242012-09-12 23:27:21 +02001793#ifdef TCP_MAXSEG
1794/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001795static int bind_parse_mss(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02001796{
1797 struct listener *l;
1798 int mss;
1799
Willy Tarreau44791242012-09-12 23:27:21 +02001800 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001801 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001802 return ERR_ALERT | ERR_FATAL;
1803 }
1804
1805 mss = atoi(args[cur_arg + 1]);
1806 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001807 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001808 return ERR_ALERT | ERR_FATAL;
1809 }
1810
Willy Tarreau4348fad2012-09-20 16:48:07 +02001811 list_for_each_entry(l, &conf->listeners, by_bind) {
1812 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1813 l->maxseg = mss;
1814 }
Willy Tarreau44791242012-09-12 23:27:21 +02001815
1816 return 0;
1817}
1818#endif
1819
Willy Tarreau2af207a2015-02-04 00:45:58 +01001820#ifdef TCP_USER_TIMEOUT
1821/* parse the "tcp-ut" bind keyword */
1822static int bind_parse_tcp_ut(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1823{
1824 const char *ptr = NULL;
1825 struct listener *l;
1826 unsigned int timeout;
1827
1828 if (!*args[cur_arg + 1]) {
1829 memprintf(err, "'%s' : missing TCP User Timeout value", args[cur_arg]);
1830 return ERR_ALERT | ERR_FATAL;
1831 }
1832
1833 ptr = parse_time_err(args[cur_arg + 1], &timeout, TIME_UNIT_MS);
1834 if (ptr) {
1835 memprintf(err, "'%s' : expects a positive delay in milliseconds", args[cur_arg]);
1836 return ERR_ALERT | ERR_FATAL;
1837 }
1838
1839 list_for_each_entry(l, &conf->listeners, by_bind) {
1840 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1841 l->tcp_ut = timeout;
1842 }
1843
1844 return 0;
1845}
1846#endif
1847
Willy Tarreau44791242012-09-12 23:27:21 +02001848#ifdef SO_BINDTODEVICE
Willy Tarreau2af207a2015-02-04 00:45:58 +01001849/* parse the "interface" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001850static int bind_parse_interface(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02001851{
1852 struct listener *l;
1853
Willy Tarreau44791242012-09-12 23:27:21 +02001854 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001855 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001856 return ERR_ALERT | ERR_FATAL;
1857 }
1858
Willy Tarreau4348fad2012-09-20 16:48:07 +02001859 list_for_each_entry(l, &conf->listeners, by_bind) {
1860 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1861 l->interface = strdup(args[cur_arg + 1]);
1862 }
Willy Tarreau44791242012-09-12 23:27:21 +02001863
Willy Tarreau44791242012-09-12 23:27:21 +02001864 return 0;
1865}
1866#endif
1867
Willy Tarreaue5733232019-05-22 19:24:06 +02001868#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001869/* parse the "namespace" bind keyword */
1870static int bind_parse_namespace(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1871{
1872 struct listener *l;
1873 char *namespace = NULL;
1874
1875 if (!*args[cur_arg + 1]) {
1876 memprintf(err, "'%s' : missing namespace id", args[cur_arg]);
1877 return ERR_ALERT | ERR_FATAL;
1878 }
1879 namespace = args[cur_arg + 1];
1880
1881 list_for_each_entry(l, &conf->listeners, by_bind) {
1882 l->netns = netns_store_lookup(namespace, strlen(namespace));
1883
1884 if (l->netns == NULL)
1885 l->netns = netns_store_insert(namespace);
1886
1887 if (l->netns == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001888 ha_alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001889 return ERR_ALERT | ERR_FATAL;
1890 }
1891 }
1892 return 0;
1893}
1894#endif
1895
Willy Tarreau163d4622015-10-13 16:16:41 +02001896#ifdef TCP_USER_TIMEOUT
1897/* parse the "tcp-ut" server keyword */
1898static int srv_parse_tcp_ut(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1899{
1900 const char *ptr = NULL;
1901 unsigned int timeout;
1902
1903 if (!*args[*cur_arg + 1]) {
1904 memprintf(err, "'%s' : missing TCP User Timeout value", args[*cur_arg]);
1905 return ERR_ALERT | ERR_FATAL;
1906 }
1907
1908 ptr = parse_time_err(args[*cur_arg + 1], &timeout, TIME_UNIT_MS);
1909 if (ptr) {
1910 memprintf(err, "'%s' : expects a positive delay in milliseconds", args[*cur_arg]);
1911 return ERR_ALERT | ERR_FATAL;
1912 }
1913
1914 if (newsrv->addr.ss_family == AF_INET || newsrv->addr.ss_family == AF_INET6)
1915 newsrv->tcp_ut = timeout;
1916
1917 return 0;
1918}
1919#endif
1920
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001921
Willy Tarreau4a129812012-04-25 17:31:42 +02001922/* Note: must not be declared <const> as its list will be overwritten.
1923 * Note: fetches that may return multiple types must be declared as the lowest
1924 * common denominator, the type that can be casted into all other ones. For
1925 * instance v4/v6 must be declared v4.
1926 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001927static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001928 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
Willy Tarreau16e01562016-08-09 16:46:18 +02001929 { "dst_is_local", smp_fetch_dst_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001930 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001931 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
Willy Tarreau16e01562016-08-09 16:46:18 +02001932 { "src_is_local", smp_fetch_src_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001933 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001934#ifdef TCP_INFO
Joe Williams30fcd392016-08-10 07:06:44 -07001935 { "fc_rtt", smp_fetch_fc_rtt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1936 { "fc_rttvar", smp_fetch_fc_rttvar, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1937#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
1938 { "fc_unacked", smp_fetch_fc_unacked, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1939 { "fc_sacked", smp_fetch_fc_sacked, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1940 { "fc_retrans", smp_fetch_fc_retrans, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1941 { "fc_fackets", smp_fetch_fc_fackets, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1942 { "fc_lost", smp_fetch_fc_lost, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1943 { "fc_reordering", smp_fetch_fc_reordering, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1944#endif // linux || freebsd || netbsd
1945#endif // TCP_INFO
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001946 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001947}};
1948
Willy Tarreau0108d902018-11-25 19:14:37 +01001949INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
1950
Willy Tarreau44791242012-09-12 23:27:21 +02001951/************************************************************************/
1952/* All supported bind keywords must be declared here. */
1953/************************************************************************/
1954
1955/* Note: must not be declared <const> as its list will be overwritten.
1956 * Please take care of keeping this list alphabetically sorted, doing so helps
1957 * all code contributors.
1958 * Optional keywords are also declared with a NULL ->parse() function so that
1959 * the config parser can report an appropriate error when a known keyword was
1960 * not enabled.
1961 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001962static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001963#ifdef TCP_DEFER_ACCEPT
1964 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1965#endif
1966#ifdef SO_BINDTODEVICE
1967 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1968#endif
1969#ifdef TCP_MAXSEG
1970 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1971#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +01001972#ifdef TCP_USER_TIMEOUT
1973 { "tcp-ut", bind_parse_tcp_ut, 1 }, /* set User Timeout on listening socket */
1974#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001975#ifdef TCP_FASTOPEN
1976 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1977#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001978#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001979 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1980#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001981#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001982 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001983 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1984#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001985#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001986 { "namespace", bind_parse_namespace, 1 },
1987#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001988 /* the versions with the NULL parse function*/
1989 { "defer-accept", NULL, 0 },
1990 { "interface", NULL, 1 },
1991 { "mss", NULL, 1 },
1992 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001993 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001994 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001995 { NULL, NULL, 0 },
1996}};
1997
Willy Tarreau0108d902018-11-25 19:14:37 +01001998INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1999
Willy Tarreau163d4622015-10-13 16:16:41 +02002000static struct srv_kw_list srv_kws = { "TCP", { }, {
2001#ifdef TCP_USER_TIMEOUT
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002002 { "tcp-ut", srv_parse_tcp_ut, 1, 1 }, /* set TCP user timeout on server */
Willy Tarreau163d4622015-10-13 16:16:41 +02002003#endif
2004 { NULL, NULL, 0 },
2005}};
Willy Tarreau2d392c22015-08-24 01:43:45 +02002006
Willy Tarreau0108d902018-11-25 19:14:37 +01002007INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
2008
Willy Tarreau2d392c22015-08-24 01:43:45 +02002009static struct action_kw_list tcp_req_conn_actions = {ILH, {
William Lallemand13e9b0c2016-05-25 02:34:07 +02002010 { "set-src", tcp_parse_set_src_dst },
2011 { "set-src-port", tcp_parse_set_src_dst },
2012 { "set-dst" , tcp_parse_set_src_dst },
2013 { "set-dst-port", tcp_parse_set_src_dst },
Baptiste Assmanne1afd4f2019-04-18 16:21:13 +02002014 { "silent-drop", tcp_parse_silent_drop },
Willy Tarreau2d392c22015-08-24 01:43:45 +02002015 { /* END */ }
2016}};
2017
Willy Tarreau0108d902018-11-25 19:14:37 +01002018INITCALL1(STG_REGISTER, tcp_req_conn_keywords_register, &tcp_req_conn_actions);
2019
Willy Tarreau620408f2016-10-21 16:37:51 +02002020static struct action_kw_list tcp_req_sess_actions = {ILH, {
Willy Tarreau620408f2016-10-21 16:37:51 +02002021 { "set-src", tcp_parse_set_src_dst },
2022 { "set-src-port", tcp_parse_set_src_dst },
2023 { "set-dst" , tcp_parse_set_src_dst },
2024 { "set-dst-port", tcp_parse_set_src_dst },
Baptiste Assmanne1afd4f2019-04-18 16:21:13 +02002025 { "silent-drop", tcp_parse_silent_drop },
Willy Tarreau620408f2016-10-21 16:37:51 +02002026 { /* END */ }
2027}};
2028
Willy Tarreau0108d902018-11-25 19:14:37 +01002029INITCALL1(STG_REGISTER, tcp_req_sess_keywords_register, &tcp_req_sess_actions);
2030
Willy Tarreau2d392c22015-08-24 01:43:45 +02002031static struct action_kw_list tcp_req_cont_actions = {ILH, {
Baptiste Assmanne1afd4f2019-04-18 16:21:13 +02002032 { "set-dst" , tcp_parse_set_src_dst },
2033 { "set-dst-port", tcp_parse_set_src_dst },
2034 { "silent-drop", tcp_parse_silent_drop },
Willy Tarreau2d392c22015-08-24 01:43:45 +02002035 { /* END */ }
2036}};
2037
Willy Tarreau0108d902018-11-25 19:14:37 +01002038INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
2039
Willy Tarreau2d392c22015-08-24 01:43:45 +02002040static struct action_kw_list tcp_res_cont_actions = {ILH, {
2041 { "silent-drop", tcp_parse_silent_drop },
2042 { /* END */ }
2043}};
2044
Willy Tarreau0108d902018-11-25 19:14:37 +01002045INITCALL1(STG_REGISTER, tcp_res_cont_keywords_register, &tcp_res_cont_actions);
2046
Willy Tarreau2d392c22015-08-24 01:43:45 +02002047static struct action_kw_list http_req_actions = {ILH, {
William Lallemand2e785f22016-05-25 01:48:42 +02002048 { "silent-drop", tcp_parse_silent_drop },
William Lallemand13e9b0c2016-05-25 02:34:07 +02002049 { "set-src", tcp_parse_set_src_dst },
2050 { "set-src-port", tcp_parse_set_src_dst },
2051 { "set-dst", tcp_parse_set_src_dst },
2052 { "set-dst-port", tcp_parse_set_src_dst },
Willy Tarreau2d392c22015-08-24 01:43:45 +02002053 { /* END */ }
2054}};
2055
Willy Tarreau0108d902018-11-25 19:14:37 +01002056INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
2057
Willy Tarreau2d392c22015-08-24 01:43:45 +02002058static struct action_kw_list http_res_actions = {ILH, {
2059 { "silent-drop", tcp_parse_silent_drop },
2060 { /* END */ }
2061}};
2062
Willy Tarreau0108d902018-11-25 19:14:37 +01002063INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions);
Willy Tarreau2d392c22015-08-24 01:43:45 +02002064
Willy Tarreau80713382018-11-26 10:19:54 +01002065REGISTER_BUILD_OPTS("Built with transparent proxy support using:"
Willy Tarreauba962912016-12-21 18:55:02 +01002066#if defined(IP_TRANSPARENT)
Willy Tarreau80713382018-11-26 10:19:54 +01002067 " IP_TRANSPARENT"
Willy Tarreauba962912016-12-21 18:55:02 +01002068#endif
2069#if defined(IPV6_TRANSPARENT)
Willy Tarreau80713382018-11-26 10:19:54 +01002070 " IPV6_TRANSPARENT"
Willy Tarreauba962912016-12-21 18:55:02 +01002071#endif
2072#if defined(IP_FREEBIND)
Willy Tarreau80713382018-11-26 10:19:54 +01002073 " IP_FREEBIND"
Willy Tarreauba962912016-12-21 18:55:02 +01002074#endif
2075#if defined(IP_BINDANY)
Willy Tarreau80713382018-11-26 10:19:54 +01002076 " IP_BINDANY"
Willy Tarreauba962912016-12-21 18:55:02 +01002077#endif
2078#if defined(IPV6_BINDANY)
Willy Tarreau80713382018-11-26 10:19:54 +01002079 " IPV6_BINDANY"
Willy Tarreauba962912016-12-21 18:55:02 +01002080#endif
2081#if defined(SO_BINDANY)
Willy Tarreau80713382018-11-26 10:19:54 +01002082 " SO_BINDANY"
Willy Tarreauba962912016-12-21 18:55:02 +01002083#endif
Willy Tarreau80713382018-11-26 10:19:54 +01002084 "");
Willy Tarreaue6b98942007-10-29 01:09:36 +01002085
2086
2087/*
2088 * Local variables:
2089 * c-indent-level: 8
2090 * c-basic-offset: 8
2091 * End:
2092 */