blob: e668a85f10f7cce345f9b3620ecd91133dec5d91 [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 Tarreau529c1392014-12-24 13:47:55 +0100249#ifdef CONFIG_HAP_NS
250 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 Tarreauac825402011-03-04 22:04:29 +0100296
Olivier Houchard637b6952018-11-23 14:23:07 +0100297 conn->flags |= CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100298
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100299 switch (obj_type(conn->target)) {
300 case OBJ_TYPE_PROXY:
301 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100302 srv = NULL;
303 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100304 case OBJ_TYPE_SERVER:
305 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100306 be = srv->proxy;
307 break;
308 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100309 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200310 return SF_ERR_INTERNAL;
Willy Tarreauac825402011-03-04 22:04:29 +0100311 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200312
Willy Tarreau585744b2017-08-24 14:31:19 +0200313 fd = conn->handle.fd = create_server_socket(conn);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100314
315 if (fd == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200316 qfprintf(stderr, "Cannot get a server socket.\n");
317
Willy Tarreau9ce70132014-01-24 16:08:19 +0100318 if (errno == ENFILE) {
319 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200320 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100321 "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n",
322 be->id, global.maxsock);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100323 }
324 else if (errno == EMFILE) {
325 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200326 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100327 "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n",
328 be->id, global.maxsock);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100329 }
330 else if (errno == ENOBUFS || errno == ENOMEM) {
331 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200332 send_log(be, LOG_EMERG,
Willy Tarreauc5532ac2018-01-29 15:06:04 +0100333 "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n",
334 be->id, global.maxsock);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100335 }
336 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
337 conn->err_code = CO_ER_NOPROTO;
338 }
339 else
340 conn->err_code = CO_ER_SOCK_ERR;
341
Willy Tarreau9650f372009-08-16 14:02:45 +0200342 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100343 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200344 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200345 }
346
347 if (fd >= global.maxsock) {
348 /* do not log anything there, it's a normal condition when this option
349 * is used to serialize connections to a server !
350 */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100351 ha_alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
Willy Tarreau9650f372009-08-16 14:02:45 +0200352 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100353 conn->err_code = CO_ER_CONF_FDLIM;
354 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200355 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau9650f372009-08-16 14:02:45 +0200356 }
357
358 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900359 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200360 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
361 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100362 conn->err_code = CO_ER_SOCK_ERR;
363 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200364 return SF_ERR_INTERNAL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200365 }
366
William Lallemandc03eb012018-11-27 12:02:37 +0100367 if (master == 1 && (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)) {
368 ha_alert("Cannot set CLOEXEC on client socket.\n");
369 close(fd);
370 conn->err_code = CO_ER_SOCK_ERR;
371 conn->flags |= CO_FL_ERROR;
372 return SF_ERR_INTERNAL;
373 }
374
Willy Tarreau9650f372009-08-16 14:02:45 +0200375 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900376 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200377
Willy Tarreau9650f372009-08-16 14:02:45 +0200378 /* allow specific binding :
379 * - server-specific at first
380 * - proxy-specific next
381 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100382 if (srv && srv->conn_src.opts & CO_SRC_BIND)
383 src = &srv->conn_src;
384 else if (be->conn_src.opts & CO_SRC_BIND)
385 src = &be->conn_src;
386 else
387 src = NULL;
388
389 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200390 int ret, flags = 0;
391
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200392 if (is_inet_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100393 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100394 case CO_SRC_TPROXY_CLI:
Willy Tarreau387ebf82015-08-04 19:24:13 +0200395 conn->flags |= CO_FL_PRIVATE;
396 /* fall through */
397 case CO_SRC_TPROXY_ADDR:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200398 flags = 3;
399 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100400 case CO_SRC_TPROXY_CIP:
401 case CO_SRC_TPROXY_DYN:
Willy Tarreau387ebf82015-08-04 19:24:13 +0200402 conn->flags |= CO_FL_PRIVATE;
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200403 flags = 1;
404 break;
405 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200406 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200407
Willy Tarreau9650f372009-08-16 14:02:45 +0200408#ifdef SO_BINDTODEVICE
409 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100410 if (src->iface_name)
411 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200412#endif
413
Willy Tarreaua4380b42012-12-08 22:49:11 +0100414 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200415 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100416 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200417
418 ret = 1;
Vincent Bernat6e615892016-05-18 16:17:44 +0200419 memcpy(&sa, &src->source_addr, sizeof(sa));
Willy Tarreau9650f372009-08-16 14:02:45 +0200420
421 do {
422 /* note: in case of retry, we may have to release a previously
423 * allocated port, hence this loop's construct.
424 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200425 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
426 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200427
428 if (!attempts)
429 break;
430 attempts--;
431
Willy Tarreaua4380b42012-12-08 22:49:11 +0100432 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100433 if (!fdinfo[fd].local_port) {
434 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200435 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100436 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200437
Willy Tarreaua4380b42012-12-08 22:49:11 +0100438 fdinfo[fd].port_range = src->sport_range;
439 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200440
Willy Tarreaua4380b42012-12-08 22:49:11 +0100441 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100442 if (ret != 0)
443 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200444 } while (ret != 0); /* binding NOK */
445 }
446 else {
Lukas Tribus7d56c6d2016-09-13 09:51:15 +0000447#ifdef IP_BIND_ADDRESS_NO_PORT
Christopher Faulet1bc04c72017-10-29 20:14:08 +0100448 static THREAD_LOCAL int bind_address_no_port = 1;
Lukas Tribus7d56c6d2016-09-13 09:51:15 +0000449 setsockopt(fd, SOL_IP, IP_BIND_ADDRESS_NO_PORT, (const void *) &bind_address_no_port, sizeof(int));
450#endif
Willy Tarreaua4380b42012-12-08 22:49:11 +0100451 ret = tcp_bind_socket(fd, flags, &src->source_addr, &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 }
455
Willy Tarreaua4380b42012-12-08 22:49:11 +0100456 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200457 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
458 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200459 close(fd);
460
Willy Tarreau9650f372009-08-16 14:02:45 +0200461 if (ret == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100462 ha_alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
463 be->id);
Willy Tarreau9650f372009-08-16 14:02:45 +0200464 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100465 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200466 be->id);
467 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100468 ha_alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
469 be->id);
Willy Tarreau9650f372009-08-16 14:02:45 +0200470 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100471 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200472 be->id);
473 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100474 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200475 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200476 }
477 }
478
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400479#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200480 /* disabling tcp quick ack now allows the first request to leave the
481 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100482 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200483 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200484 if (flags & (CONNECT_DELACK_ALWAYS) ||
485 ((flags & CONNECT_DELACK_SMART_CONNECT ||
486 (flags & CONNECT_HAS_DATA) || conn->send_proxy_ofs) &&
487 (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900488 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200489#endif
490
Willy Tarreau163d4622015-10-13 16:16:41 +0200491#ifdef TCP_USER_TIMEOUT
492 /* there is not much more we can do here when it fails, it's still minor */
493 if (srv && srv->tcp_ut)
494 setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, &srv->tcp_ut, sizeof(srv->tcp_ut));
495#endif
Willy Tarreaue803de22010-01-21 17:43:04 +0100496 if (global.tune.server_sndbuf)
497 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
498
499 if (global.tune.server_rcvbuf)
500 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
501
Willy Tarreau819efbf2017-01-25 14:12:22 +0100502 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) {
503 if (errno == EINPROGRESS || errno == EALREADY) {
504 /* common case, let's wait for connect status */
505 conn->flags |= CO_FL_WAIT_L4_CONN;
506 }
507 else if (errno == EISCONN) {
508 /* should normally not happen but if so, indicates that it's OK */
509 conn->flags &= ~CO_FL_WAIT_L4_CONN;
510 }
511 else if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200512 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100513 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200514 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100515 conn->err_code = CO_ER_FREE_PORTS;
516 }
517 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200518 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100519 conn->err_code = CO_ER_ADDR_INUSE;
520 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200521
Willy Tarreaub1719512012-12-08 23:03:28 +0100522 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200523 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
524 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200525 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100526 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100527 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200528 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200529 } else if (errno == ETIMEDOUT) {
530 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200531 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
532 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200533 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100534 conn->err_code = CO_ER_SOCK_ERR;
535 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200536 return SF_ERR_SRVTO;
Willy Tarreau9650f372009-08-16 14:02:45 +0200537 } else {
538 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
539 //qfprintf(stderr,"Connect(): %d", errno);
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 Tarreau9ce70132014-01-24 16:08:19 +0100543 conn->err_code = CO_ER_SOCK_ERR;
544 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200545 return SF_ERR_SRVCL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200546 }
547 }
Willy Tarreau819efbf2017-01-25 14:12:22 +0100548 else {
549 /* connect() == 0, this is great! */
550 conn->flags &= ~CO_FL_WAIT_L4_CONN;
551 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200552
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100553 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200554
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200555 /* Prepare to send a few handshakes related to the on-wire protocol. */
556 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200557 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200558
Willy Tarreauf79c8172013-10-21 16:30:56 +0200559 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100560 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200561
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200562 if (conn_xprt_init(conn) < 0) {
Willy Tarreau3f2770b2017-10-05 18:01:29 +0200563 conn_full_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100564 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200565 return SF_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200566 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200567
Olivier Houchardc2aae742017-09-22 18:26:28 +0200568 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN | CO_FL_EARLY_SSL_HS)) {
Willy Tarreau819efbf2017-01-25 14:12:22 +0100569 conn_sock_want_send(conn); /* for connect status, proxy protocol or SSL */
Olivier Houchardc2aae742017-09-22 18:26:28 +0200570 if (conn->flags & CO_FL_EARLY_SSL_HS)
571 conn_xprt_want_send(conn);
Willy Tarreau819efbf2017-01-25 14:12:22 +0100572 }
573 else {
574 /* If there's no more handshake, we need to notify the data
575 * layer when the connection is already OK otherwise we'll have
576 * no other opportunity to do it later (eg: health checks).
577 */
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200578 flags |= CONNECT_HAS_DATA;
Willy Tarreau819efbf2017-01-25 14:12:22 +0100579 }
580
Olivier Houchardfdcb0072019-05-06 18:32:29 +0200581 if (flags & CONNECT_HAS_DATA)
Olivier Houchard1a0545f2017-09-13 18:30:23 +0200582 conn_xprt_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200583
Willy Tarreaue7dff022015-04-03 01:14:29 +0200584 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau9650f372009-08-16 14:02:45 +0200585}
586
587
Willy Tarreau59b94792012-05-11 16:16:40 +0200588/*
589 * Retrieves the source address for the socket <fd>, with <dir> indicating
590 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
591 * success, -1 in case of error. The socket's source address is stored in
592 * <sa> for <salen> bytes.
593 */
594int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
595{
596 if (dir)
597 return getsockname(fd, sa, &salen);
598 else
599 return getpeername(fd, sa, &salen);
600}
601
602
603/*
604 * Retrieves the original destination address for the socket <fd>, with <dir>
605 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
606 * listener, if the original destination address was translated, the original
607 * address is retrieved. It returns 0 in case of success, -1 in case of error.
608 * The socket's source address is stored in <sa> for <salen> bytes.
609 */
610int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
611{
612 if (dir)
613 return getpeername(fd, sa, &salen);
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100614 else {
615 int ret = getsockname(fd, sa, &salen);
616
617 if (ret < 0)
618 return ret;
619
Willy Tarreau59b94792012-05-11 16:16:40 +0200620#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100621 /* For TPROXY and Netfilter's NAT, we can retrieve the original
622 * IPv4 address before DNAT/REDIRECT. We must not do that with
623 * other families because v6-mapped IPv4 addresses are still
624 * reported as v4.
625 */
626 if (((struct sockaddr_storage *)sa)->ss_family == AF_INET
627 && getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
628 return 0;
Willy Tarreau59b94792012-05-11 16:16:40 +0200629#endif
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100630 return ret;
631 }
Willy Tarreau59b94792012-05-11 16:16:40 +0200632}
633
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200634/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100635 * and we have nothing to send. It updates the FD polling status. It returns 0
636 * if it fails in a fatal way or needs to poll to go further, otherwise it
637 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
638 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
639 * errno. The error checking is done in two passes in order to limit the number
640 * of syscalls in the normal case :
641 * - if POLL_ERR was reported by the poller, we check for a pending error on
642 * the socket before proceeding. If found, it's assigned to errno so that
643 * upper layers can see it.
644 * - otherwise connect() is used to check the connection state again, since
645 * the getsockopt return cannot reliably be used to know if the connection
646 * is still pending or ready. This one may often return an error as well,
647 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200648 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200649int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200650{
Willy Tarreau585744b2017-08-24 14:31:19 +0200651 int fd = conn->handle.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100652 socklen_t lskerr;
653 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200654
Willy Tarreau80184712012-07-06 14:54:49 +0200655 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200656 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200657
Willy Tarreau3c728722014-01-23 13:50:42 +0100658 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200659 return 0;
660
Willy Tarreau80184712012-07-06 14:54:49 +0200661 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200662 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200663
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100664 if (!fd_send_ready(fd))
665 return 0;
666
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100667 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
668 * without FD_POLL_IN also indicates a hangup without input data meaning
669 * there was no connection.
670 */
671 if (fdtab[fd].ev & FD_POLL_ERR ||
672 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
673 skerr = 0;
674 lskerr = sizeof(skerr);
675 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
676 errno = skerr;
677 if (errno == EAGAIN)
678 errno = 0;
679 if (errno)
680 goto out_error;
681 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200682
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100683 /* Use connect() to check the state of the socket. This has the
684 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200685 * - error
686 * - connecting (EALREADY, EINPROGRESS)
687 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200688 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200689 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200690 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100691 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100692 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200693 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200694 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200695
Willy Tarreau2c6be842012-07-06 17:12:34 +0200696 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200697 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200698
Willy Tarreau2c6be842012-07-06 17:12:34 +0200699 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200700 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200701
Willy Tarreau076be252012-07-06 16:02:29 +0200702 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200703 * forward the event to the transport layer which will notify the
704 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200705 */
Willy Tarreau80184712012-07-06 14:54:49 +0200706 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200707 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200708
709 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200710 /* Write error on the file descriptor. Report it to the connection
711 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200712 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100713 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100714 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100715 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200716 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200717}
718
Olivier Houchard153659f2017-04-05 22:39:56 +0200719/* XXX: Should probably be elsewhere */
720static int compare_sockaddr(struct sockaddr_storage *a, struct sockaddr_storage *b)
721{
722 if (a->ss_family != b->ss_family) {
723 return (-1);
724 }
725 switch (a->ss_family) {
726 case AF_INET:
727 {
728 struct sockaddr_in *a4 = (void *)a, *b4 = (void *)b;
729 if (a4->sin_port != b4->sin_port)
730 return (-1);
731 return (memcmp(&a4->sin_addr, &b4->sin_addr,
732 sizeof(a4->sin_addr)));
733 }
734 case AF_INET6:
735 {
736 struct sockaddr_in6 *a6 = (void *)a, *b6 = (void *)b;
737 if (a6->sin6_port != b6->sin6_port)
738 return (-1);
739 return (memcmp(&a6->sin6_addr, &b6->sin6_addr,
740 sizeof(a6->sin6_addr)));
741 }
742 default:
743 return (-1);
744 }
745
746}
747
748#define LI_MANDATORY_FLAGS (LI_O_FOREIGN | LI_O_V6ONLY | LI_O_V4V6)
749/* When binding the listeners, check if a socket has been sent to us by the
750 * previous process that we could reuse, instead of creating a new one.
751 */
752static int tcp_find_compatible_fd(struct listener *l)
753{
754 struct xfer_sock_list *xfer_sock = xfer_sock_list;
755 int ret = -1;
756
757 while (xfer_sock) {
758 if (!compare_sockaddr(&xfer_sock->addr, &l->addr)) {
759 if ((l->interface == NULL && xfer_sock->iface == NULL) ||
760 (l->interface != NULL && xfer_sock->iface != NULL &&
761 !strcmp(l->interface, xfer_sock->iface))) {
762 if ((l->options & LI_MANDATORY_FLAGS) ==
763 (xfer_sock->options & LI_MANDATORY_FLAGS)) {
764 if ((xfer_sock->namespace == NULL &&
765 l->netns == NULL)
766#ifdef CONFIG_HAP_NS
767 || (xfer_sock->namespace != NULL &&
768 l->netns != NULL &&
769 !strcmp(xfer_sock->namespace,
770 l->netns->node.key))
771#endif
772 ) {
773 break;
774 }
775
776 }
777 }
778 }
779 xfer_sock = xfer_sock->next;
780 }
781 if (xfer_sock != NULL) {
782 ret = xfer_sock->fd;
783 if (xfer_sock == xfer_sock_list)
784 xfer_sock_list = xfer_sock->next;
785 if (xfer_sock->prev)
786 xfer_sock->prev->next = xfer_sock->next;
787 if (xfer_sock->next)
788 xfer_sock->next->prev = xfer_sock->prev;
789 free(xfer_sock->iface);
790 free(xfer_sock->namespace);
791 free(xfer_sock);
792 }
793 return ret;
794}
795#undef L1_MANDATORY_FLAGS
Willy Tarreau59b94792012-05-11 16:16:40 +0200796
Willy Tarreaue6b98942007-10-29 01:09:36 +0100797/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100798 * an error message in <errmsg> if the message is at most <errlen> bytes long
799 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
800 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100801 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
802 * was alright and that no message was returned. ERR_RETRYABLE means that an
803 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700804 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100805 * the meaning of the error, but just indicate that a message is present which
806 * should be displayed with the respective level. Last, ERR_ABORT indicates
807 * that it's pointless to try to start other listeners. No error message is
808 * returned if errlen is NULL.
809 */
810int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
811{
812 __label__ tcp_return, tcp_close_return;
813 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100814 int ext, ready;
815 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100816 const char *msg = NULL;
Olivier Houchard153659f2017-04-05 22:39:56 +0200817#ifdef TCP_MAXSEG
818
819 /* Create a temporary TCP socket to get default parameters we can't
820 * guess.
821 * */
822 ready_len = sizeof(default_tcp_maxseg);
823 if (default_tcp_maxseg == -1) {
824 default_tcp_maxseg = -2;
825 fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
826 if (fd < 0)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100827 ha_warning("Failed to create a temporary socket!\n");
Olivier Houchard153659f2017-04-05 22:39:56 +0200828 else {
829 if (getsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, &default_tcp_maxseg,
830 &ready_len) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100831 ha_warning("Failed to get the default value of TCP_MAXSEG\n");
Olivier Houchard153659f2017-04-05 22:39:56 +0200832 }
833 close(fd);
834 }
835 if (default_tcp6_maxseg == -1) {
836 default_tcp6_maxseg = -2;
837 fd = socket(AF_INET6, SOCK_STREAM, IPPROTO_TCP);
838 if (fd >= 0) {
839 if (getsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, &default_tcp6_maxseg,
840 &ready_len) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100841 ha_warning("Failed ot get the default value of TCP_MAXSEG for IPv6\n");
Olivier Houchard153659f2017-04-05 22:39:56 +0200842 close(fd);
843 }
844 }
845#endif
846
Willy Tarreaue6b98942007-10-29 01:09:36 +0100847
848 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100849 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100850 *errmsg = 0;
851
852 if (listener->state != LI_ASSIGNED)
853 return ERR_NONE; /* already bound */
854
855 err = ERR_NONE;
856
Olivier Houchard153659f2017-04-05 22:39:56 +0200857 if (listener->fd == -1)
858 listener->fd = tcp_find_compatible_fd(listener);
859
Willy Tarreau40aa0702013-03-10 23:51:38 +0100860 /* if the listener already has an fd assigned, then we were offered the
861 * fd by an external process (most likely the parent), and we don't want
862 * to create a new socket. However we still want to set a few flags on
863 * the socket.
864 */
865 fd = listener->fd;
866 ext = (fd >= 0);
867
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100868 if (!ext) {
869 fd = my_socketat(listener->netns, listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP);
870
871 if (fd == -1) {
872 err |= ERR_RETRYABLE | ERR_ALERT;
873 msg = "cannot create listening socket";
874 goto tcp_return;
875 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100876 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100877
Willy Tarreaue6b98942007-10-29 01:09:36 +0100878 if (fd >= global.maxsock) {
879 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
880 msg = "not enough free sockets (raise '-n' parameter)";
881 goto tcp_close_return;
882 }
883
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200884 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100885 err |= ERR_FATAL | ERR_ALERT;
886 msg = "cannot make socket non-blocking";
887 goto tcp_close_return;
888 }
889
Willy Tarreau40aa0702013-03-10 23:51:38 +0100890 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100891 /* not fatal but should be reported */
892 msg = "cannot do so_reuseaddr";
893 err |= ERR_ALERT;
894 }
895
896 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900897 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Olivier Houchard153659f2017-04-05 22:39:56 +0200898 else {
899 struct linger tmplinger;
900 socklen_t len = sizeof(tmplinger);
901 if (getsockopt(fd, SOL_SOCKET, SO_LINGER, &tmplinger, &len) == 0 &&
902 (tmplinger.l_onoff == 1 || tmplinger.l_linger == 0)) {
903 tmplinger.l_onoff = 0;
904 tmplinger.l_linger = 0;
905 setsockopt(fd, SOL_SOCKET, SO_LINGER, &tmplinger,
906 sizeof(tmplinger));
907 }
908 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100909
Willy Tarreaue6b98942007-10-29 01:09:36 +0100910#ifdef SO_REUSEPORT
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000911 /* OpenBSD and Linux 3.9 support this. As it's present in old libc versions of
912 * Linux, it might return an error that we will silently ignore.
Willy Tarreaue6b98942007-10-29 01:09:36 +0100913 */
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000914 if (!ext && (global.tune.options & GTUNE_USE_REUSEPORT))
Willy Tarreau40aa0702013-03-10 23:51:38 +0100915 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100916#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200917
Willy Tarreau40aa0702013-03-10 23:51:38 +0100918 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200919 switch (listener->addr.ss_family) {
920 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200921 if (1
922#if defined(IP_TRANSPARENT)
923 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
924#endif
925#if defined(IP_FREEBIND)
926 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
927#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200928#if defined(IP_BINDANY)
929 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
930#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200931#if defined(SO_BINDANY)
932 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
933#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200934 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200935 msg = "cannot make listening socket transparent";
936 err |= ERR_ALERT;
937 }
938 break;
939 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200940 if (1
Dinko Korunic7276f3a2016-09-09 09:41:15 +0200941#if defined(IPV6_TRANSPARENT) && defined(SOL_IPV6)
Pieter Baauwd551fb52013-05-08 22:49:23 +0200942 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
943#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100944#if defined(IP_FREEBIND)
945 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
946#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200947#if defined(IPV6_BINDANY)
948 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
949#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200950#if defined(SO_BINDANY)
951 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
952#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200953 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200954 msg = "cannot make listening socket transparent";
955 err |= ERR_ALERT;
956 }
957 break;
958 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100959 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200960
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100961#ifdef SO_BINDTODEVICE
962 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100963 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100964 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100965 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100966 msg = "cannot bind listener to device";
967 err |= ERR_WARN;
968 }
969 }
970#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400971#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100972 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400973 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200974 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
975 msg = "cannot set MSS";
976 err |= ERR_WARN;
977 }
Olivier Houchard153659f2017-04-05 22:39:56 +0200978 } else if (ext) {
979 int tmpmaxseg = -1;
980 int defaultmss;
981 socklen_t len = sizeof(tmpmaxseg);
982
983 if (listener->addr.ss_family == AF_INET)
984 defaultmss = default_tcp_maxseg;
985 else
986 defaultmss = default_tcp6_maxseg;
987
988 getsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, &tmpmaxseg, &len);
989 if (tmpmaxseg != defaultmss && setsockopt(fd, IPPROTO_TCP,
990 TCP_MAXSEG, &defaultmss,
991 sizeof(defaultmss)) == -1) {
992 msg = "cannot set MSS";
993 err |= ERR_WARN;
994 }
Willy Tarreaube1b9182009-06-14 18:48:19 +0200995 }
996#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +0100997#if defined(TCP_USER_TIMEOUT)
998 if (listener->tcp_ut) {
999 if (setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
1000 &listener->tcp_ut, sizeof(listener->tcp_ut)) == -1) {
1001 msg = "cannot set TCP User Timeout";
1002 err |= ERR_WARN;
1003 }
Olivier Houchard153659f2017-04-05 22:39:56 +02001004 } else
1005 setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, &zero,
1006 sizeof(zero));
Willy Tarreau2af207a2015-02-04 00:45:58 +01001007#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +02001008#if defined(TCP_DEFER_ACCEPT)
1009 if (listener->options & LI_O_DEF_ACCEPT) {
1010 /* defer accept by up to one second */
1011 int accept_delay = 1;
1012 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
1013 msg = "cannot enable DEFER_ACCEPT";
1014 err |= ERR_WARN;
1015 }
Olivier Houchard153659f2017-04-05 22:39:56 +02001016 } else
1017 setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &zero,
1018 sizeof(zero));
Willy Tarreaucb6cd432009-10-13 07:34:14 +02001019#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001020#if defined(TCP_FASTOPEN)
1021 if (listener->options & LI_O_TCP_FO) {
1022 /* TFO needs a queue length, let's use the configured backlog */
Willy Tarreaue2711c72019-02-27 15:39:41 +01001023 int qlen = listener_backlog(listener);
Willy Tarreau1c862c52012-10-05 16:21:00 +02001024 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
1025 msg = "cannot enable TCP_FASTOPEN";
1026 err |= ERR_WARN;
1027 }
Olivier Houchard153659f2017-04-05 22:39:56 +02001028 } else {
1029 socklen_t len;
1030 int qlen;
1031 len = sizeof(qlen);
1032 /* Only disable fast open if it was enabled, we don't want
1033 * the kernel to create a fast open queue if there's none.
1034 */
1035 if (getsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, &len) == 0 &&
1036 qlen != 0) {
1037 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &zero,
1038 sizeof(zero)) == -1) {
1039 msg = "cannot disable TCP_FASTOPEN";
1040 err |= ERR_WARN;
1041 }
1042 }
Willy Tarreau1c862c52012-10-05 16:21:00 +02001043 }
1044#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001045#if defined(IPV6_V6ONLY)
1046 if (listener->options & LI_O_V6ONLY)
1047 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +01001048 else if (listener->options & LI_O_V4V6)
1049 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001050#endif
1051
Willy Tarreau40aa0702013-03-10 23:51:38 +01001052 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +01001053 err |= ERR_RETRYABLE | ERR_ALERT;
1054 msg = "cannot bind socket";
1055 goto tcp_close_return;
1056 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001057
Willy Tarreau40aa0702013-03-10 23:51:38 +01001058 ready = 0;
1059 ready_len = sizeof(ready);
1060 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
1061 ready = 0;
1062
1063 if (!(ext && ready) && /* only listen if not already done by external process */
Willy Tarreaue2711c72019-02-27 15:39:41 +01001064 listen(fd, listener_backlog(listener)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +01001065 err |= ERR_RETRYABLE | ERR_ALERT;
1066 msg = "cannot listen to socket";
1067 goto tcp_close_return;
1068 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001069
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +04001070#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +02001071 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +09001072 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Olivier Houchard153659f2017-04-05 22:39:56 +02001073 else
1074 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau9ea05a72009-06-14 12:07:01 +02001075#endif
1076
Willy Tarreaue6b98942007-10-29 01:09:36 +01001077 /* the socket is ready */
1078 listener->fd = fd;
1079 listener->state = LI_LISTEN;
1080
Willy Tarreaua9786b62018-01-25 07:22:13 +01001081 fd_insert(fd, listener, listener->proto->accept,
Willy Tarreaua36b3242019-02-02 13:14:34 +01001082 thread_mask(listener->bind_conf->bind_thread));
Willy Tarreaueb472682010-05-28 18:46:57 +02001083
Willy Tarreaue6b98942007-10-29 01:09:36 +01001084 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +01001085 if (msg && errlen) {
1086 char pn[INET6_ADDRSTRLEN];
1087
Willy Tarreau631f01c2011-09-05 00:36:48 +02001088 addr_to_str(&listener->addr, pn, sizeof(pn));
1089 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +01001090 }
Willy Tarreaue6b98942007-10-29 01:09:36 +01001091 return err;
1092
1093 tcp_close_return:
1094 close(fd);
1095 goto tcp_return;
1096}
1097
1098/* This function creates all TCP sockets bound to the protocol entry <proto>.
1099 * It is intended to be used as the protocol's bind_all() function.
1100 * The sockets will be registered but not added to any fd_set, in order not to
1101 * loose them across the fork(). A call to enable_all_listeners() is needed
1102 * to complete initialization. The return value is composed from ERR_*.
1103 */
Emeric Bruncf20bf12010-10-22 16:06:11 +02001104static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001105{
1106 struct listener *listener;
1107 int err = ERR_NONE;
1108
1109 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +02001110 err |= tcp_bind_listener(listener, errmsg, errlen);
1111 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001112 break;
1113 }
1114
1115 return err;
1116}
1117
Willy Tarreau32282382017-09-15 07:44:44 +02001118/* Add <listener> to the list of tcpv4 listeners, on port <port>. The
1119 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
1120 * The number of listeners for the protocol is updated.
Willy Tarreaue6b98942007-10-29 01:09:36 +01001121 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +02001122static void tcpv4_add_listener(struct listener *listener, int port)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001123{
1124 if (listener->state != LI_INIT)
1125 return;
1126 listener->state = LI_ASSIGNED;
1127 listener->proto = &proto_tcpv4;
Willy Tarreau32282382017-09-15 07:44:44 +02001128 ((struct sockaddr_in *)(&listener->addr))->sin_port = htons(port);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001129 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
1130 proto_tcpv4.nb_listeners++;
1131}
1132
Willy Tarreau32282382017-09-15 07:44:44 +02001133/* Add <listener> to the list of tcpv6 listeners, on port <port>. The
1134 * listener's state is automatically updated from LI_INIT to LI_ASSIGNED.
1135 * The number of listeners for the protocol is updated.
Willy Tarreaue6b98942007-10-29 01:09:36 +01001136 */
Willy Tarreau9d5be5c2017-09-15 07:55:51 +02001137static void tcpv6_add_listener(struct listener *listener, int port)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001138{
1139 if (listener->state != LI_INIT)
1140 return;
1141 listener->state = LI_ASSIGNED;
1142 listener->proto = &proto_tcpv6;
Willy Tarreau32282382017-09-15 07:44:44 +02001143 ((struct sockaddr_in *)(&listener->addr))->sin_port = htons(port);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001144 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
1145 proto_tcpv6.nb_listeners++;
1146}
1147
Willy Tarreau092d8652014-07-07 20:22:12 +02001148/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
1149 * was totally stopped, or > 0 if correctly paused.
1150 */
1151int tcp_pause_listener(struct listener *l)
1152{
1153 if (shutdown(l->fd, SHUT_WR) != 0)
1154 return -1; /* Solaris dies here */
1155
Willy Tarreaue2711c72019-02-27 15:39:41 +01001156 if (listen(l->fd, listener_backlog(l)) != 0)
Willy Tarreau092d8652014-07-07 20:22:12 +02001157 return -1; /* OpenBSD dies here */
1158
1159 if (shutdown(l->fd, SHUT_RD) != 0)
1160 return -1; /* should always be OK */
1161 return 1;
1162}
1163
William Lallemand2e785f22016-05-25 01:48:42 +02001164/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001165 * Execute the "set-src" action. May be called from {tcp,http}request.
1166 * It only changes the address and tries to preserve the original port. If the
1167 * previous family was neither AF_INET nor AF_INET6, the port is set to zero.
William Lallemand2e785f22016-05-25 01:48:42 +02001168 */
1169enum act_return tcp_action_req_set_src(struct act_rule *rule, struct proxy *px,
1170 struct session *sess, struct stream *s, int flags)
1171{
1172 struct connection *cli_conn;
1173
1174 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1175 struct sample *smp;
1176
1177 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR);
1178 if (smp) {
Willy Tarreau00005ce2016-10-21 15:07:45 +02001179 int port = get_net_port(&cli_conn->addr.from);
1180
William Lallemand2e785f22016-05-25 01:48:42 +02001181 if (smp->data.type == SMP_T_IPV4) {
1182 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_family = AF_INET;
1183 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = smp->data.u.ipv4.s_addr;
Willy Tarreau00005ce2016-10-21 15:07:45 +02001184 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = port;
William Lallemand2e785f22016-05-25 01:48:42 +02001185 } else if (smp->data.type == SMP_T_IPV6) {
1186 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_family = AF_INET6;
1187 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 +02001188 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = port;
William Lallemand2e785f22016-05-25 01:48:42 +02001189 }
1190 }
William Lallemand01252ed2016-05-25 02:33:16 +02001191 cli_conn->flags |= CO_FL_ADDR_FROM_SET;
William Lallemand2e785f22016-05-25 01:48:42 +02001192 }
1193 return ACT_RET_CONT;
1194}
1195
William Lallemand44be6402016-05-25 01:51:35 +02001196/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001197 * Execute the "set-dst" action. May be called from {tcp,http}request.
1198 * It only changes the address and tries to preserve the original port. If the
1199 * previous family was neither AF_INET nor AF_INET6, the port is set to zero.
William Lallemand13e9b0c2016-05-25 02:34:07 +02001200 */
1201enum act_return tcp_action_req_set_dst(struct act_rule *rule, struct proxy *px,
1202 struct session *sess, struct stream *s, int flags)
1203{
1204 struct connection *cli_conn;
1205
1206 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1207 struct sample *smp;
1208
1209 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR);
1210 if (smp) {
Willy Tarreau00005ce2016-10-21 15:07:45 +02001211 int port = get_net_port(&cli_conn->addr.to);
1212
William Lallemand13e9b0c2016-05-25 02:34:07 +02001213 if (smp->data.type == SMP_T_IPV4) {
1214 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_family = AF_INET;
1215 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr = smp->data.u.ipv4.s_addr;
1216 } else if (smp->data.type == SMP_T_IPV6) {
1217 ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_family = AF_INET6;
1218 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 +02001219 ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_port = port;
William Lallemand13e9b0c2016-05-25 02:34:07 +02001220 }
1221 cli_conn->flags |= CO_FL_ADDR_TO_SET;
1222 }
1223 }
1224 return ACT_RET_CONT;
1225}
1226
1227/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001228 * Execute the "set-src-port" action. May be called from {tcp,http}request.
1229 * We must test the sin_family before setting the port. If the address family
1230 * is neither AF_INET nor AF_INET6, the address is forced to AF_INET "0.0.0.0"
1231 * and the port is assigned.
William Lallemand44be6402016-05-25 01:51:35 +02001232 */
1233enum act_return tcp_action_req_set_src_port(struct act_rule *rule, struct proxy *px,
1234 struct session *sess, struct stream *s, int flags)
1235{
1236 struct connection *cli_conn;
1237
1238 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1239 struct sample *smp;
1240
1241 conn_get_from_addr(cli_conn);
1242
1243 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT);
1244 if (smp) {
Willy Tarreau00005ce2016-10-21 15:07:45 +02001245 if (cli_conn->addr.from.ss_family == AF_INET6) {
William Lallemand44be6402016-05-25 01:51:35 +02001246 ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = htons(smp->data.u.sint);
Willy Tarreau00005ce2016-10-21 15:07:45 +02001247 } else {
1248 if (cli_conn->addr.from.ss_family != AF_INET) {
1249 cli_conn->addr.from.ss_family = AF_INET;
1250 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = 0;
1251 }
1252 ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = htons(smp->data.u.sint);
William Lallemand44be6402016-05-25 01:51:35 +02001253 }
1254 }
1255 }
1256 return ACT_RET_CONT;
1257}
1258
William Lallemand13e9b0c2016-05-25 02:34:07 +02001259/*
Willy Tarreau00005ce2016-10-21 15:07:45 +02001260 * Execute the "set-dst-port" action. May be called from {tcp,http}request.
1261 * We must test the sin_family before setting the port. If the address family
1262 * is neither AF_INET nor AF_INET6, the address is forced to AF_INET "0.0.0.0"
1263 * and the port is assigned.
William Lallemand13e9b0c2016-05-25 02:34:07 +02001264 */
1265enum act_return tcp_action_req_set_dst_port(struct act_rule *rule, struct proxy *px,
1266 struct session *sess, struct stream *s, int flags)
1267{
1268 struct connection *cli_conn;
1269
1270 if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) {
1271 struct sample *smp;
1272
1273 conn_get_to_addr(cli_conn);
1274
1275 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT);
1276 if (smp) {
Baptiste Assmann46392fd2017-10-03 23:16:36 +02001277 if (cli_conn->addr.to.ss_family == AF_INET6) {
1278 ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_port = htons(smp->data.u.sint);
Willy Tarreau00005ce2016-10-21 15:07:45 +02001279 } else {
Baptiste Assmann46392fd2017-10-03 23:16:36 +02001280 if (cli_conn->addr.to.ss_family != AF_INET) {
1281 cli_conn->addr.to.ss_family = AF_INET;
1282 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr = 0;
Willy Tarreau00005ce2016-10-21 15:07:45 +02001283 }
Baptiste Assmann46392fd2017-10-03 23:16:36 +02001284 ((struct sockaddr_in *)&cli_conn->addr.to)->sin_port = htons(smp->data.u.sint);
William Lallemand13e9b0c2016-05-25 02:34:07 +02001285 }
1286 }
1287 }
1288 return ACT_RET_CONT;
1289}
1290
Willy Tarreau2d392c22015-08-24 01:43:45 +02001291/* Executes the "silent-drop" action. May be called from {tcp,http}{request,response} */
1292static enum act_return tcp_exec_action_silent_drop(struct act_rule *rule, struct proxy *px, struct session *sess, struct stream *strm, int flags)
1293{
1294 struct connection *conn = objt_conn(sess->origin);
1295
1296 if (!conn)
1297 goto out;
1298
1299 if (!conn_ctrl_ready(conn))
1300 goto out;
1301
Willy Tarreau2d392c22015-08-24 01:43:45 +02001302#ifdef TCP_QUICKACK
Willy Tarreaufc2a2d92015-09-29 18:15:01 +02001303 /* drain is needed only to send the quick ACK */
1304 conn_sock_drain(conn);
1305
Willy Tarreau2d392c22015-08-24 01:43:45 +02001306 /* re-enable quickack if it was disabled to ack all data and avoid
1307 * retransmits from the client that might trigger a real reset.
1308 */
Willy Tarreau585744b2017-08-24 14:31:19 +02001309 setsockopt(conn->handle.fd, SOL_TCP, TCP_QUICKACK, &one, sizeof(one));
Willy Tarreau2d392c22015-08-24 01:43:45 +02001310#endif
1311 /* lingering must absolutely be disabled so that we don't send a
1312 * shutdown(), this is critical to the TCP_REPAIR trick. When no stream
1313 * is present, returning with ERR will cause lingering to be disabled.
1314 */
1315 if (strm)
1316 strm->si[0].flags |= SI_FL_NOLINGER;
1317
Willy Tarreauf50ec0f2015-09-29 18:11:32 +02001318 /* We're on the client-facing side, we must force to disable lingering to
1319 * ensure we will use an RST exclusively and kill any pending data.
1320 */
Willy Tarreau585744b2017-08-24 14:31:19 +02001321 fdtab[conn->handle.fd].linger_risk = 1;
Willy Tarreauf50ec0f2015-09-29 18:11:32 +02001322
Willy Tarreau2d392c22015-08-24 01:43:45 +02001323#ifdef TCP_REPAIR
Willy Tarreau585744b2017-08-24 14:31:19 +02001324 if (setsockopt(conn->handle.fd, SOL_TCP, TCP_REPAIR, &one, sizeof(one)) == 0) {
Willy Tarreau2d392c22015-08-24 01:43:45 +02001325 /* socket will be quiet now */
1326 goto out;
1327 }
1328#endif
1329 /* either TCP_REPAIR is not defined or it failed (eg: permissions).
1330 * Let's fall back on the TTL trick, though it only works for routed
1331 * network and has no effect on local net.
1332 */
1333#ifdef IP_TTL
Willy Tarreau585744b2017-08-24 14:31:19 +02001334 setsockopt(conn->handle.fd, SOL_IP, IP_TTL, &one, sizeof(one));
Willy Tarreau2d392c22015-08-24 01:43:45 +02001335#endif
1336 out:
1337 /* kill the stream if any */
1338 if (strm) {
1339 channel_abort(&strm->req);
1340 channel_abort(&strm->res);
1341 strm->req.analysers = 0;
1342 strm->res.analysers = 0;
Olivier Houchard40514102019-03-08 18:54:04 +01001343 _HA_ATOMIC_ADD(&strm->be->be_counters.denied_req, 1);
Willy Tarreau2d392c22015-08-24 01:43:45 +02001344 if (!(strm->flags & SF_ERR_MASK))
1345 strm->flags |= SF_ERR_PRXCOND;
1346 if (!(strm->flags & SF_FINST_MASK))
1347 strm->flags |= SF_FINST_R;
1348 }
1349
Olivier Houchard40514102019-03-08 18:54:04 +01001350 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Willy Tarreau2d392c22015-08-24 01:43:45 +02001351 if (sess->listener->counters)
Olivier Houchard40514102019-03-08 18:54:04 +01001352 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Willy Tarreau2d392c22015-08-24 01:43:45 +02001353
1354 return ACT_RET_STOP;
1355}
1356
William Lallemand13e9b0c2016-05-25 02:34:07 +02001357/* parse "set-{src,dst}[-port]" action */
1358enum 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 +02001359{
1360 int cur_arg;
1361 struct sample_expr *expr;
1362 unsigned int where;
1363
1364 cur_arg = *orig_arg;
1365 expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args);
1366 if (!expr)
1367 return ACT_RET_PRS_ERR;
1368
1369 where = 0;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001370 if (px->cap & PR_CAP_FE)
William Lallemand2e785f22016-05-25 01:48:42 +02001371 where |= SMP_VAL_FE_HRQ_HDR;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001372 if (px->cap & PR_CAP_BE)
William Lallemand2e785f22016-05-25 01:48:42 +02001373 where |= SMP_VAL_BE_HRQ_HDR;
1374
1375 if (!(expr->fetch->val & where)) {
1376 memprintf(err,
1377 "fetch method '%s' extracts information from '%s', none of which is available here",
1378 args[cur_arg-1], sample_src_names(expr->fetch->use));
1379 free(expr);
1380 return ACT_RET_PRS_ERR;
1381 }
1382 rule->arg.expr = expr;
1383 rule->action = ACT_CUSTOM;
1384
1385 if (!strcmp(args[*orig_arg-1], "set-src")) {
1386 rule->action_ptr = tcp_action_req_set_src;
William Lallemand44be6402016-05-25 01:51:35 +02001387 } else if (!strcmp(args[*orig_arg-1], "set-src-port")) {
1388 rule->action_ptr = tcp_action_req_set_src_port;
William Lallemand13e9b0c2016-05-25 02:34:07 +02001389 } else if (!strcmp(args[*orig_arg-1], "set-dst")) {
1390 rule->action_ptr = tcp_action_req_set_dst;
1391 } else if (!strcmp(args[*orig_arg-1], "set-dst-port")) {
1392 rule->action_ptr = tcp_action_req_set_dst_port;
William Lallemand2e785f22016-05-25 01:48:42 +02001393 } else {
1394 return ACT_RET_PRS_ERR;
1395 }
1396
1397 (*orig_arg)++;
1398
1399 return ACT_RET_PRS_OK;
1400}
1401
1402
Willy Tarreau2d392c22015-08-24 01:43:45 +02001403/* Parse a "silent-drop" action. It takes no argument. It returns ACT_RET_PRS_OK on
1404 * success, ACT_RET_PRS_ERR on error.
1405 */
1406static enum act_parse_ret tcp_parse_silent_drop(const char **args, int *orig_arg, struct proxy *px,
1407 struct act_rule *rule, char **err)
1408{
1409 rule->action = ACT_CUSTOM;
1410 rule->action_ptr = tcp_exec_action_silent_drop;
1411 return ACT_RET_PRS_OK;
1412}
1413
Willy Tarreau645513a2010-05-24 20:55:15 +02001414
1415/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001416/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001417/************************************************************************/
1418
Willy Tarreau4a129812012-04-25 17:31:42 +02001419/* fetch the connection's source IPv4/IPv6 address */
Thierry FOURNIERa123ad82015-07-24 09:12:15 +02001420int smp_fetch_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001421{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001422 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001423
1424 if (!cli_conn)
1425 return 0;
1426
1427 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001428 case AF_INET:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001429 smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001430 smp->data.type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001431 break;
1432 case AF_INET6:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001433 smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001434 smp->data.type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001435 break;
1436 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001437 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001438 }
Emeric Brunf769f512010-10-22 17:14:01 +02001439
Willy Tarreau37406352012-04-23 16:16:37 +02001440 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001441 return 1;
1442}
1443
Willy Tarreaua5e37562011-12-16 17:06:15 +01001444/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001445static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001446smp_fetch_sport(const struct arg *args, struct sample *smp, const char *k, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001447{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001448 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001449
1450 if (!cli_conn)
1451 return 0;
1452
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001453 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001454 if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001455 return 0;
1456
Willy Tarreau37406352012-04-23 16:16:37 +02001457 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001458 return 1;
1459}
1460
Willy Tarreau4a129812012-04-25 17:31:42 +02001461/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001462static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001463smp_fetch_dst(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001464{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001465 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreau645513a2010-05-24 20:55:15 +02001466
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001467 if (!cli_conn)
1468 return 0;
1469
1470 conn_get_to_addr(cli_conn);
1471
1472 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001473 case AF_INET:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001474 smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001475 smp->data.type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001476 break;
1477 case AF_INET6:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001478 smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001479 smp->data.type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001480 break;
1481 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001482 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001483 }
Emeric Brunf769f512010-10-22 17:14:01 +02001484
Willy Tarreau37406352012-04-23 16:16:37 +02001485 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001486 return 1;
1487}
1488
Willy Tarreau16e01562016-08-09 16:46:18 +02001489/* check if the destination address of the front connection is local to the
1490 * system or if it was intercepted.
1491 */
1492int smp_fetch_dst_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private)
1493{
1494 struct connection *conn = objt_conn(smp->sess->origin);
1495 struct listener *li = smp->sess->listener;
1496
1497 if (!conn)
1498 return 0;
1499
1500 conn_get_to_addr(conn);
1501 if (!(conn->flags & CO_FL_ADDR_TO_SET))
1502 return 0;
1503
1504 smp->data.type = SMP_T_BOOL;
1505 smp->flags = 0;
1506 smp->data.u.sint = addr_is_local(li->netns, &conn->addr.to);
1507 return smp->data.u.sint >= 0;
1508}
1509
1510/* check if the source address of the front connection is local to the system
1511 * or not.
1512 */
1513int smp_fetch_src_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private)
1514{
1515 struct connection *conn = objt_conn(smp->sess->origin);
1516 struct listener *li = smp->sess->listener;
1517
1518 if (!conn)
1519 return 0;
1520
1521 conn_get_from_addr(conn);
1522 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
1523 return 0;
1524
1525 smp->data.type = SMP_T_BOOL;
1526 smp->flags = 0;
1527 smp->data.u.sint = addr_is_local(li->netns, &conn->addr.from);
1528 return smp->data.u.sint >= 0;
1529}
1530
Willy Tarreaua5e37562011-12-16 17:06:15 +01001531/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001532static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001533smp_fetch_dport(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001534{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001535 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001536
1537 if (!cli_conn)
1538 return 0;
1539
1540 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001541
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001542 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001543 if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001544 return 0;
1545
Willy Tarreau37406352012-04-23 16:16:37 +02001546 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001547 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001548}
1549
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001550#ifdef TCP_INFO
1551
Joseph Herlanta6331472018-11-25 12:59:12 -08001552/* Returns some tcp_info data if it's available. "dir" must be set to 0 if
1553 * the client connection is required, otherwise it is set to 1. "val" represents
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001554 * the required value. Use 0 for rtt and 1 for rttavg. "unit" is the expected unit
1555 * 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 -08001556 * set to 1, the units are milliseconds.
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001557 * If the function fails it returns 0, otherwise it returns 1 and "result" is filled.
1558 */
1559static inline int get_tcp_info(const struct arg *args, struct sample *smp,
1560 int dir, int val)
1561{
1562 struct connection *conn;
1563 struct tcp_info info;
1564 socklen_t optlen;
1565
1566 /* strm can be null. */
1567 if (!smp->strm)
1568 return 0;
1569
1570 /* get the object associated with the stream interface.The
1571 * object can be other thing than a connection. For example,
1572 * it be a appctx. */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001573 conn = cs_conn(objt_cs(smp->strm->si[dir].end));
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001574 if (!conn)
1575 return 0;
1576
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001577 /* The fd may not be available for the tcp_info struct, and the
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001578 syscal can fail. */
1579 optlen = sizeof(info);
Willy Tarreau585744b2017-08-24 14:31:19 +02001580 if (getsockopt(conn->handle.fd, SOL_TCP, TCP_INFO, &info, &optlen) == -1)
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001581 return 0;
1582
1583 /* extract the value. */
1584 smp->data.type = SMP_T_SINT;
1585 switch (val) {
Joe Williams30fcd392016-08-10 07:06:44 -07001586 case 0: smp->data.u.sint = info.tcpi_rtt; break;
1587 case 1: smp->data.u.sint = info.tcpi_rttvar; break;
1588#if defined(__linux__)
1589 /* these ones are common to all Linux versions */
1590 case 2: smp->data.u.sint = info.tcpi_unacked; break;
1591 case 3: smp->data.u.sint = info.tcpi_sacked; break;
1592 case 4: smp->data.u.sint = info.tcpi_lost; break;
1593 case 5: smp->data.u.sint = info.tcpi_retrans; break;
1594 case 6: smp->data.u.sint = info.tcpi_fackets; break;
1595 case 7: smp->data.u.sint = info.tcpi_reordering; break;
1596#elif defined(__FreeBSD__) || defined(__NetBSD__)
1597 /* the ones are found on FreeBSD and NetBSD featuring TCP_INFO */
1598 case 2: smp->data.u.sint = info.__tcpi_unacked; break;
1599 case 3: smp->data.u.sint = info.__tcpi_sacked; break;
1600 case 4: smp->data.u.sint = info.__tcpi_lost; break;
1601 case 5: smp->data.u.sint = info.__tcpi_retrans; break;
1602 case 6: smp->data.u.sint = info.__tcpi_fackets; break;
1603 case 7: smp->data.u.sint = info.__tcpi_reordering; break;
1604#endif
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001605 default: return 0;
1606 }
1607
1608 /* Convert the value as expected. */
1609 if (args) {
1610 if (args[0].type == ARGT_STR) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001611 if (strcmp(args[0].data.str.area, "us") == 0) {
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001612 /* Do nothing. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001613 } else if (strcmp(args[0].data.str.area, "ms") == 0) {
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001614 smp->data.u.sint = (smp->data.u.sint + 500) / 1000;
1615 } else
1616 return 0;
1617 } else if (args[0].type == ARGT_STOP) {
1618 smp->data.u.sint = (smp->data.u.sint + 500) / 1000;
1619 } else
1620 return 0;
1621 }
1622
1623 return 1;
1624}
1625
1626/* get the mean rtt of a client connexion */
1627static int
1628smp_fetch_fc_rtt(const struct arg *args, struct sample *smp, const char *kw, void *private)
1629{
1630 if (!get_tcp_info(args, smp, 0, 0))
1631 return 0;
1632 return 1;
1633}
1634
1635/* get the variance of the mean rtt of a client connexion */
1636static int
1637smp_fetch_fc_rttvar(const struct arg *args, struct sample *smp, const char *kw, void *private)
1638{
1639 if (!get_tcp_info(args, smp, 0, 1))
1640 return 0;
1641 return 1;
1642}
Joe Williams30fcd392016-08-10 07:06:44 -07001643
1644#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
1645
1646/* get the unacked counter on a client connexion */
1647static int
1648smp_fetch_fc_unacked(const struct arg *args, struct sample *smp, const char *kw, void *private)
1649{
1650 if (!get_tcp_info(args, smp, 0, 2))
1651 return 0;
1652 return 1;
1653}
1654
1655/* get the sacked counter on a client connexion */
1656static int
1657smp_fetch_fc_sacked(const struct arg *args, struct sample *smp, const char *kw, void *private)
1658{
1659 if (!get_tcp_info(args, smp, 0, 3))
1660 return 0;
1661 return 1;
1662}
1663
1664/* get the lost counter on a client connexion */
1665static int
1666smp_fetch_fc_lost(const struct arg *args, struct sample *smp, const char *kw, void *private)
1667{
1668 if (!get_tcp_info(args, smp, 0, 4))
1669 return 0;
1670 return 1;
1671}
1672
1673/* get the retrans counter on a client connexion */
1674static int
1675smp_fetch_fc_retrans(const struct arg *args, struct sample *smp, const char *kw, void *private)
1676{
1677 if (!get_tcp_info(args, smp, 0, 5))
1678 return 0;
1679 return 1;
1680}
1681
1682/* get the fackets counter on a client connexion */
1683static int
1684smp_fetch_fc_fackets(const struct arg *args, struct sample *smp, const char *kw, void *private)
1685{
1686 if (!get_tcp_info(args, smp, 0, 6))
1687 return 0;
1688 return 1;
1689}
1690
1691/* get the reordering counter on a client connexion */
1692static int
1693smp_fetch_fc_reordering(const struct arg *args, struct sample *smp, const char *kw, void *private)
1694{
1695 if (!get_tcp_info(args, smp, 0, 7))
1696 return 0;
1697 return 1;
1698}
1699#endif // linux || freebsd || netbsd
1700#endif // TCP_INFO
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001701
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001702#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001703/* parse the "v4v6" bind keyword */
1704static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1705{
1706 struct listener *l;
1707
1708 list_for_each_entry(l, &conf->listeners, by_bind) {
1709 if (l->addr.ss_family == AF_INET6)
1710 l->options |= LI_O_V4V6;
1711 }
1712
1713 return 0;
1714}
1715
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001716/* parse the "v6only" bind keyword */
1717static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1718{
1719 struct listener *l;
1720
1721 list_for_each_entry(l, &conf->listeners, by_bind) {
1722 if (l->addr.ss_family == AF_INET6)
1723 l->options |= LI_O_V6ONLY;
1724 }
1725
1726 return 0;
1727}
1728#endif
1729
Pieter Baauwd551fb52013-05-08 22:49:23 +02001730#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001731/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001732static 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 +02001733{
1734 struct listener *l;
1735
Willy Tarreau4348fad2012-09-20 16:48:07 +02001736 list_for_each_entry(l, &conf->listeners, by_bind) {
1737 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1738 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001739 }
1740
Willy Tarreau44791242012-09-12 23:27:21 +02001741 return 0;
1742}
1743#endif
1744
1745#ifdef TCP_DEFER_ACCEPT
1746/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001747static 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 +02001748{
1749 struct listener *l;
1750
Willy Tarreau4348fad2012-09-20 16:48:07 +02001751 list_for_each_entry(l, &conf->listeners, by_bind) {
1752 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1753 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001754 }
1755
Willy Tarreau44791242012-09-12 23:27:21 +02001756 return 0;
1757}
1758#endif
1759
Willy Tarreau1c862c52012-10-05 16:21:00 +02001760#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001761/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001762static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1763{
1764 struct listener *l;
1765
1766 list_for_each_entry(l, &conf->listeners, by_bind) {
1767 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1768 l->options |= LI_O_TCP_FO;
1769 }
1770
1771 return 0;
1772}
1773#endif
1774
Willy Tarreau44791242012-09-12 23:27:21 +02001775#ifdef TCP_MAXSEG
1776/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001777static 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 +02001778{
1779 struct listener *l;
1780 int mss;
1781
Willy Tarreau44791242012-09-12 23:27:21 +02001782 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001783 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001784 return ERR_ALERT | ERR_FATAL;
1785 }
1786
1787 mss = atoi(args[cur_arg + 1]);
1788 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001789 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001790 return ERR_ALERT | ERR_FATAL;
1791 }
1792
Willy Tarreau4348fad2012-09-20 16:48:07 +02001793 list_for_each_entry(l, &conf->listeners, by_bind) {
1794 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1795 l->maxseg = mss;
1796 }
Willy Tarreau44791242012-09-12 23:27:21 +02001797
1798 return 0;
1799}
1800#endif
1801
Willy Tarreau2af207a2015-02-04 00:45:58 +01001802#ifdef TCP_USER_TIMEOUT
1803/* parse the "tcp-ut" bind keyword */
1804static int bind_parse_tcp_ut(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1805{
1806 const char *ptr = NULL;
1807 struct listener *l;
1808 unsigned int timeout;
1809
1810 if (!*args[cur_arg + 1]) {
1811 memprintf(err, "'%s' : missing TCP User Timeout value", args[cur_arg]);
1812 return ERR_ALERT | ERR_FATAL;
1813 }
1814
1815 ptr = parse_time_err(args[cur_arg + 1], &timeout, TIME_UNIT_MS);
1816 if (ptr) {
1817 memprintf(err, "'%s' : expects a positive delay in milliseconds", args[cur_arg]);
1818 return ERR_ALERT | ERR_FATAL;
1819 }
1820
1821 list_for_each_entry(l, &conf->listeners, by_bind) {
1822 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1823 l->tcp_ut = timeout;
1824 }
1825
1826 return 0;
1827}
1828#endif
1829
Willy Tarreau44791242012-09-12 23:27:21 +02001830#ifdef SO_BINDTODEVICE
Willy Tarreau2af207a2015-02-04 00:45:58 +01001831/* parse the "interface" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001832static 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 +02001833{
1834 struct listener *l;
1835
Willy Tarreau44791242012-09-12 23:27:21 +02001836 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001837 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001838 return ERR_ALERT | ERR_FATAL;
1839 }
1840
Willy Tarreau4348fad2012-09-20 16:48:07 +02001841 list_for_each_entry(l, &conf->listeners, by_bind) {
1842 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1843 l->interface = strdup(args[cur_arg + 1]);
1844 }
Willy Tarreau44791242012-09-12 23:27:21 +02001845
Willy Tarreau44791242012-09-12 23:27:21 +02001846 return 0;
1847}
1848#endif
1849
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001850#ifdef CONFIG_HAP_NS
1851/* parse the "namespace" bind keyword */
1852static int bind_parse_namespace(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1853{
1854 struct listener *l;
1855 char *namespace = NULL;
1856
1857 if (!*args[cur_arg + 1]) {
1858 memprintf(err, "'%s' : missing namespace id", args[cur_arg]);
1859 return ERR_ALERT | ERR_FATAL;
1860 }
1861 namespace = args[cur_arg + 1];
1862
1863 list_for_each_entry(l, &conf->listeners, by_bind) {
1864 l->netns = netns_store_lookup(namespace, strlen(namespace));
1865
1866 if (l->netns == NULL)
1867 l->netns = netns_store_insert(namespace);
1868
1869 if (l->netns == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001870 ha_alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001871 return ERR_ALERT | ERR_FATAL;
1872 }
1873 }
1874 return 0;
1875}
1876#endif
1877
Willy Tarreau163d4622015-10-13 16:16:41 +02001878#ifdef TCP_USER_TIMEOUT
1879/* parse the "tcp-ut" server keyword */
1880static int srv_parse_tcp_ut(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1881{
1882 const char *ptr = NULL;
1883 unsigned int timeout;
1884
1885 if (!*args[*cur_arg + 1]) {
1886 memprintf(err, "'%s' : missing TCP User Timeout value", args[*cur_arg]);
1887 return ERR_ALERT | ERR_FATAL;
1888 }
1889
1890 ptr = parse_time_err(args[*cur_arg + 1], &timeout, TIME_UNIT_MS);
1891 if (ptr) {
1892 memprintf(err, "'%s' : expects a positive delay in milliseconds", args[*cur_arg]);
1893 return ERR_ALERT | ERR_FATAL;
1894 }
1895
1896 if (newsrv->addr.ss_family == AF_INET || newsrv->addr.ss_family == AF_INET6)
1897 newsrv->tcp_ut = timeout;
1898
1899 return 0;
1900}
1901#endif
1902
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001903
Willy Tarreau4a129812012-04-25 17:31:42 +02001904/* Note: must not be declared <const> as its list will be overwritten.
1905 * Note: fetches that may return multiple types must be declared as the lowest
1906 * common denominator, the type that can be casted into all other ones. For
1907 * instance v4/v6 must be declared v4.
1908 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001909static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001910 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
Willy Tarreau16e01562016-08-09 16:46:18 +02001911 { "dst_is_local", smp_fetch_dst_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001912 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001913 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
Willy Tarreau16e01562016-08-09 16:46:18 +02001914 { "src_is_local", smp_fetch_src_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02001915 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Thierry Fournier / OZON.IO6310bef2016-07-24 20:16:50 +02001916#ifdef TCP_INFO
Joe Williams30fcd392016-08-10 07:06:44 -07001917 { "fc_rtt", smp_fetch_fc_rtt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1918 { "fc_rttvar", smp_fetch_fc_rttvar, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1919#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
1920 { "fc_unacked", smp_fetch_fc_unacked, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1921 { "fc_sacked", smp_fetch_fc_sacked, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1922 { "fc_retrans", smp_fetch_fc_retrans, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1923 { "fc_fackets", smp_fetch_fc_fackets, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1924 { "fc_lost", smp_fetch_fc_lost, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1925 { "fc_reordering", smp_fetch_fc_reordering, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI },
1926#endif // linux || freebsd || netbsd
1927#endif // TCP_INFO
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001928 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001929}};
1930
Willy Tarreau0108d902018-11-25 19:14:37 +01001931INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
1932
Willy Tarreau44791242012-09-12 23:27:21 +02001933/************************************************************************/
1934/* All supported bind keywords must be declared here. */
1935/************************************************************************/
1936
1937/* Note: must not be declared <const> as its list will be overwritten.
1938 * Please take care of keeping this list alphabetically sorted, doing so helps
1939 * all code contributors.
1940 * Optional keywords are also declared with a NULL ->parse() function so that
1941 * the config parser can report an appropriate error when a known keyword was
1942 * not enabled.
1943 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001944static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001945#ifdef TCP_DEFER_ACCEPT
1946 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1947#endif
1948#ifdef SO_BINDTODEVICE
1949 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1950#endif
1951#ifdef TCP_MAXSEG
1952 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1953#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +01001954#ifdef TCP_USER_TIMEOUT
1955 { "tcp-ut", bind_parse_tcp_ut, 1 }, /* set User Timeout on listening socket */
1956#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001957#ifdef TCP_FASTOPEN
1958 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1959#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001960#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001961 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1962#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001963#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001964 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001965 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1966#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001967#ifdef CONFIG_HAP_NS
1968 { "namespace", bind_parse_namespace, 1 },
1969#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001970 /* the versions with the NULL parse function*/
1971 { "defer-accept", NULL, 0 },
1972 { "interface", NULL, 1 },
1973 { "mss", NULL, 1 },
1974 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001975 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001976 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001977 { NULL, NULL, 0 },
1978}};
1979
Willy Tarreau0108d902018-11-25 19:14:37 +01001980INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
1981
Willy Tarreau163d4622015-10-13 16:16:41 +02001982static struct srv_kw_list srv_kws = { "TCP", { }, {
1983#ifdef TCP_USER_TIMEOUT
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01001984 { "tcp-ut", srv_parse_tcp_ut, 1, 1 }, /* set TCP user timeout on server */
Willy Tarreau163d4622015-10-13 16:16:41 +02001985#endif
1986 { NULL, NULL, 0 },
1987}};
Willy Tarreau2d392c22015-08-24 01:43:45 +02001988
Willy Tarreau0108d902018-11-25 19:14:37 +01001989INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
1990
Willy Tarreau2d392c22015-08-24 01:43:45 +02001991static struct action_kw_list tcp_req_conn_actions = {ILH, {
William Lallemand13e9b0c2016-05-25 02:34:07 +02001992 { "set-src", tcp_parse_set_src_dst },
1993 { "set-src-port", tcp_parse_set_src_dst },
1994 { "set-dst" , tcp_parse_set_src_dst },
1995 { "set-dst-port", tcp_parse_set_src_dst },
Baptiste Assmanne1afd4f2019-04-18 16:21:13 +02001996 { "silent-drop", tcp_parse_silent_drop },
Willy Tarreau2d392c22015-08-24 01:43:45 +02001997 { /* END */ }
1998}};
1999
Willy Tarreau0108d902018-11-25 19:14:37 +01002000INITCALL1(STG_REGISTER, tcp_req_conn_keywords_register, &tcp_req_conn_actions);
2001
Willy Tarreau620408f2016-10-21 16:37:51 +02002002static struct action_kw_list tcp_req_sess_actions = {ILH, {
Willy Tarreau620408f2016-10-21 16:37:51 +02002003 { "set-src", tcp_parse_set_src_dst },
2004 { "set-src-port", tcp_parse_set_src_dst },
2005 { "set-dst" , tcp_parse_set_src_dst },
2006 { "set-dst-port", tcp_parse_set_src_dst },
Baptiste Assmanne1afd4f2019-04-18 16:21:13 +02002007 { "silent-drop", tcp_parse_silent_drop },
Willy Tarreau620408f2016-10-21 16:37:51 +02002008 { /* END */ }
2009}};
2010
Willy Tarreau0108d902018-11-25 19:14:37 +01002011INITCALL1(STG_REGISTER, tcp_req_sess_keywords_register, &tcp_req_sess_actions);
2012
Willy Tarreau2d392c22015-08-24 01:43:45 +02002013static struct action_kw_list tcp_req_cont_actions = {ILH, {
Baptiste Assmanne1afd4f2019-04-18 16:21:13 +02002014 { "set-dst" , tcp_parse_set_src_dst },
2015 { "set-dst-port", tcp_parse_set_src_dst },
2016 { "silent-drop", tcp_parse_silent_drop },
Willy Tarreau2d392c22015-08-24 01:43:45 +02002017 { /* END */ }
2018}};
2019
Willy Tarreau0108d902018-11-25 19:14:37 +01002020INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_req_cont_actions);
2021
Willy Tarreau2d392c22015-08-24 01:43:45 +02002022static struct action_kw_list tcp_res_cont_actions = {ILH, {
2023 { "silent-drop", tcp_parse_silent_drop },
2024 { /* END */ }
2025}};
2026
Willy Tarreau0108d902018-11-25 19:14:37 +01002027INITCALL1(STG_REGISTER, tcp_res_cont_keywords_register, &tcp_res_cont_actions);
2028
Willy Tarreau2d392c22015-08-24 01:43:45 +02002029static struct action_kw_list http_req_actions = {ILH, {
William Lallemand2e785f22016-05-25 01:48:42 +02002030 { "silent-drop", tcp_parse_silent_drop },
William Lallemand13e9b0c2016-05-25 02:34:07 +02002031 { "set-src", tcp_parse_set_src_dst },
2032 { "set-src-port", tcp_parse_set_src_dst },
2033 { "set-dst", tcp_parse_set_src_dst },
2034 { "set-dst-port", tcp_parse_set_src_dst },
Willy Tarreau2d392c22015-08-24 01:43:45 +02002035 { /* END */ }
2036}};
2037
Willy Tarreau0108d902018-11-25 19:14:37 +01002038INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
2039
Willy Tarreau2d392c22015-08-24 01:43:45 +02002040static struct action_kw_list http_res_actions = {ILH, {
2041 { "silent-drop", tcp_parse_silent_drop },
2042 { /* END */ }
2043}};
2044
Willy Tarreau0108d902018-11-25 19:14:37 +01002045INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions);
Willy Tarreau2d392c22015-08-24 01:43:45 +02002046
Willy Tarreau80713382018-11-26 10:19:54 +01002047REGISTER_BUILD_OPTS("Built with transparent proxy support using:"
Willy Tarreauba962912016-12-21 18:55:02 +01002048#if defined(IP_TRANSPARENT)
Willy Tarreau80713382018-11-26 10:19:54 +01002049 " IP_TRANSPARENT"
Willy Tarreauba962912016-12-21 18:55:02 +01002050#endif
2051#if defined(IPV6_TRANSPARENT)
Willy Tarreau80713382018-11-26 10:19:54 +01002052 " IPV6_TRANSPARENT"
Willy Tarreauba962912016-12-21 18:55:02 +01002053#endif
2054#if defined(IP_FREEBIND)
Willy Tarreau80713382018-11-26 10:19:54 +01002055 " IP_FREEBIND"
Willy Tarreauba962912016-12-21 18:55:02 +01002056#endif
2057#if defined(IP_BINDANY)
Willy Tarreau80713382018-11-26 10:19:54 +01002058 " IP_BINDANY"
Willy Tarreauba962912016-12-21 18:55:02 +01002059#endif
2060#if defined(IPV6_BINDANY)
Willy Tarreau80713382018-11-26 10:19:54 +01002061 " IPV6_BINDANY"
Willy Tarreauba962912016-12-21 18:55:02 +01002062#endif
2063#if defined(SO_BINDANY)
Willy Tarreau80713382018-11-26 10:19:54 +01002064 " SO_BINDANY"
Willy Tarreauba962912016-12-21 18:55:02 +01002065#endif
Willy Tarreau80713382018-11-26 10:19:54 +01002066 "");
Willy Tarreaue6b98942007-10-29 01:09:36 +01002067
2068
2069/*
2070 * Local variables:
2071 * c-indent-level: 8
2072 * c-basic-offset: 8
2073 * End:
2074 */