blob: 1c55b6a6f619167a361884df62f8cb52ffdb5bda [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
13#include <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <time.h>
20
21#include <sys/param.h>
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <sys/un.h>
26
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040027#include <netinet/tcp.h>
28
Willy Tarreaub6866442008-07-14 23:54:42 +020029#include <common/cfgparse.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010030#include <common/compat.h>
31#include <common/config.h>
32#include <common/debug.h>
33#include <common/errors.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010034#include <common/mini-clist.h>
35#include <common/standard.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010036
Willy Tarreaue6b98942007-10-29 01:09:36 +010037#include <types/global.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020038#include <types/server.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010039
40#include <proto/acl.h>
Willy Tarreau9fcb9842012-04-20 14:45:49 +020041#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020042#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020043#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020044#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020045#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020046#include <proto/log.h>
47#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020048#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010049#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020050#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020051#include <proto/sample.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020052#include <proto/session.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020053#include <proto/stick_table.h>
Willy Tarreaucc1e04b2013-09-11 23:20:29 +020054#include <proto/stream_interface.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020055#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010056
Willy Tarreaue8c66af2008-01-13 18:40:14 +010057#ifdef CONFIG_HAP_CTTPROXY
58#include <import/ip_tproxy.h>
59#endif
60
Emeric Bruncf20bf12010-10-22 16:06:11 +020061static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
62static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010063
64/* Note: must not be declared <const> as its list will be overwritten */
65static struct protocol proto_tcpv4 = {
66 .name = "tcpv4",
67 .sock_domain = AF_INET,
68 .sock_type = SOCK_STREAM,
69 .sock_prot = IPPROTO_TCP,
70 .sock_family = AF_INET,
71 .sock_addrlen = sizeof(struct sockaddr_in),
72 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020073 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020074 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020075 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010076 .bind_all = tcp_bind_listeners,
77 .unbind_all = unbind_all_listeners,
78 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020079 .get_src = tcp_get_src,
80 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +020081 .drain = tcp_drain,
Willy Tarreaue6b98942007-10-29 01:09:36 +010082 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
83 .nb_listeners = 0,
84};
85
86/* Note: must not be declared <const> as its list will be overwritten */
87static struct protocol proto_tcpv6 = {
88 .name = "tcpv6",
89 .sock_domain = AF_INET6,
90 .sock_type = SOCK_STREAM,
91 .sock_prot = IPPROTO_TCP,
92 .sock_family = AF_INET6,
93 .sock_addrlen = sizeof(struct sockaddr_in6),
94 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020095 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020096 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020097 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010098 .bind_all = tcp_bind_listeners,
99 .unbind_all = unbind_all_listeners,
100 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200101 .get_src = tcp_get_src,
102 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200103 .drain = tcp_drain,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100104 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
105 .nb_listeners = 0,
106};
107
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100108
David du Colombier6f5ccb12011-03-10 22:26:24 +0100109/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100110 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
111 * - 0 : ignore remote address (may even be a NULL pointer)
112 * - 1 : use provided address
113 * - 2 : use provided port
114 * - 3 : use both
115 *
116 * The function supports multiple foreign binding methods :
117 * - linux_tproxy: we directly bind to the foreign address
118 * - cttproxy: we bind to a local address then nat.
119 * The second one can be used as a fallback for the first one.
120 * This function returns 0 when everything's OK, 1 if it could not bind, to the
121 * local address, 2 if it could not bind to the foreign address.
122 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100123int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100124{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100125 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100126 int foreign_ok = 0;
127 int ret;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100128 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200129 static int ip6_transp_working = 1;
Pieter Baauwd551fb52013-05-08 22:49:23 +0200130
David du Colombier65c17962012-07-13 14:34:59 +0200131 switch (local->ss_family) {
132 case AF_INET:
133 if (flags && ip_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200134 /* This deserves some explanation. Some platforms will support
135 * multiple combinations of certain methods, so we try the
136 * supported ones until one succeeds.
137 */
138 if (0
139#if defined(IP_TRANSPARENT)
140 || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0)
141#endif
142#if defined(IP_FREEBIND)
143 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
144#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200145#if defined(IP_BINDANY)
146 || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0)
147#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200148#if defined(SO_BINDANY)
149 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
150#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200151 )
David du Colombier65c17962012-07-13 14:34:59 +0200152 foreign_ok = 1;
153 else
154 ip_transp_working = 0;
155 }
156 break;
157 case AF_INET6:
158 if (flags && ip6_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200159 if (0
160#if defined(IPV6_TRANSPARENT)
161 || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
162#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200163#if defined(IPV6_BINDANY)
164 || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0)
165#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200166#if defined(SO_BINDANY)
167 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
168#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200169 )
David du Colombier65c17962012-07-13 14:34:59 +0200170 foreign_ok = 1;
171 else
172 ip6_transp_working = 0;
173 }
174 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100175 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200176
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100177 if (flags) {
178 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200179 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100180 switch (remote->ss_family) {
181 case AF_INET:
182 if (flags & 1)
183 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
184 if (flags & 2)
185 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
186 break;
187 case AF_INET6:
188 if (flags & 1)
189 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
190 if (flags & 2)
191 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
192 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100193 default:
194 /* we don't want to try to bind to an unknown address family */
195 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100196 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100197 }
198
Simon Hormande072bd2011-06-24 15:11:37 +0900199 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100200 if (foreign_ok) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200201 if (is_addr(&bind_addr)) {
202 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
203 if (ret < 0)
204 return 2;
205 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100206 }
207 else {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200208 if (is_addr(local)) {
209 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
210 if (ret < 0)
211 return 1;
212 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100213 }
214
215 if (!flags)
216 return 0;
217
218#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100219 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100220 struct in_tproxy itp1, itp2;
221 memset(&itp1, 0, sizeof(itp1));
222
223 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100224 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
225 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100226
227 /* set connect flag on socket */
228 itp2.op = TPROXY_FLAGS;
229 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
230
231 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
232 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
233 foreign_ok = 1;
234 }
235 }
236#endif
237 if (!foreign_ok)
238 /* we could not bind to a foreign address */
239 return 2;
240
241 return 0;
242}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100243
Willy Tarreau9650f372009-08-16 14:02:45 +0200244
245/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200246 * This function initiates a TCP connection establishment to the target assigned
247 * to connection <conn> using (si->{target,addr.to}). A source address may be
248 * pointed to by conn->addr.from in case of transparent proxying. Normal source
249 * bind addresses are still determined locally (due to the possible need of a
250 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100251 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreauf0837b22012-11-24 10:24:27 +0100252 * supported. The <data> parameter is a boolean indicating whether there are data
253 * waiting for being sent or not, in order to adjust data write polling and on
254 * some platforms, the ability to avoid an empty initial ACK. The <delack> argument
255 * allows the caller to force using a delayed ACK when establishing the connection :
256 * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect
257 * - 1 = delayed ACK if backend has tcp-smart-connect, regardless of data
258 * - 2 = delayed ACK regardless of backend options
Willy Tarreaub1d67742010-03-29 19:36:59 +0200259 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200260 * It can return one of :
261 * - SN_ERR_NONE if everything's OK
262 * - SN_ERR_SRVTO if there are no more servers
263 * - SN_ERR_SRVCL if the connection was refused by the server
264 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
265 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
266 * - SN_ERR_INTERNAL for any other purely internal errors
267 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100268 *
269 * The connection's fd is inserted only when SN_ERR_NONE is returned, otherwise
270 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200271 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100272
Willy Tarreauf0837b22012-11-24 10:24:27 +0100273int tcp_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau9650f372009-08-16 14:02:45 +0200274{
275 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100276 struct server *srv;
277 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100278 struct conn_src *src;
Willy Tarreauac825402011-03-04 22:04:29 +0100279
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100280 switch (obj_type(conn->target)) {
281 case OBJ_TYPE_PROXY:
282 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100283 srv = NULL;
284 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100285 case OBJ_TYPE_SERVER:
286 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100287 be = srv->proxy;
288 break;
289 default:
290 return SN_ERR_INTERNAL;
291 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200292
Willy Tarreau986a9d22012-08-30 21:11:38 +0200293 if ((fd = conn->t.sock.fd = socket(conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200294 qfprintf(stderr, "Cannot get a server socket.\n");
295
296 if (errno == ENFILE)
297 send_log(be, LOG_EMERG,
298 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
299 be->id, maxfd);
300 else if (errno == EMFILE)
301 send_log(be, LOG_EMERG,
302 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
303 be->id, maxfd);
304 else if (errno == ENOBUFS || errno == ENOMEM)
305 send_log(be, LOG_EMERG,
306 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
307 be->id, maxfd);
308 /* this is a resource error */
309 return SN_ERR_RESOURCE;
310 }
311
312 if (fd >= global.maxsock) {
313 /* do not log anything there, it's a normal condition when this option
314 * is used to serialize connections to a server !
315 */
316 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
317 close(fd);
318 return SN_ERR_PRXCOND; /* it is a configuration limit */
319 }
320
321 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900322 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200323 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
324 close(fd);
325 return SN_ERR_INTERNAL;
326 }
327
328 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900329 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200330
Willy Tarreau9650f372009-08-16 14:02:45 +0200331 /* allow specific binding :
332 * - server-specific at first
333 * - proxy-specific next
334 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100335 if (srv && srv->conn_src.opts & CO_SRC_BIND)
336 src = &srv->conn_src;
337 else if (be->conn_src.opts & CO_SRC_BIND)
338 src = &be->conn_src;
339 else
340 src = NULL;
341
342 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200343 int ret, flags = 0;
344
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200345 if (is_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100346 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100347 case CO_SRC_TPROXY_ADDR:
348 case CO_SRC_TPROXY_CLI:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200349 flags = 3;
350 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100351 case CO_SRC_TPROXY_CIP:
352 case CO_SRC_TPROXY_DYN:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200353 flags = 1;
354 break;
355 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200356 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200357
Willy Tarreau9650f372009-08-16 14:02:45 +0200358#ifdef SO_BINDTODEVICE
359 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100360 if (src->iface_name)
361 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200362#endif
363
Willy Tarreaua4380b42012-12-08 22:49:11 +0100364 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200365 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100366 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200367
368 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100369 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200370
371 do {
372 /* note: in case of retry, we may have to release a previously
373 * allocated port, hence this loop's construct.
374 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200375 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
376 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200377
378 if (!attempts)
379 break;
380 attempts--;
381
Willy Tarreaua4380b42012-12-08 22:49:11 +0100382 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200383 if (!fdinfo[fd].local_port)
Willy Tarreau9650f372009-08-16 14:02:45 +0200384 break;
385
Willy Tarreaua4380b42012-12-08 22:49:11 +0100386 fdinfo[fd].port_range = src->sport_range;
387 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200388
Willy Tarreaua4380b42012-12-08 22:49:11 +0100389 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200390 } while (ret != 0); /* binding NOK */
391 }
392 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100393 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200394 }
395
Willy Tarreaua4380b42012-12-08 22:49:11 +0100396 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200397 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
398 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200399 close(fd);
400
Willy Tarreau9650f372009-08-16 14:02:45 +0200401 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100402 Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200403 be->id);
404 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100405 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200406 be->id);
407 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100408 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200409 be->id);
410 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100411 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200412 be->id);
413 }
414 return SN_ERR_RESOURCE;
415 }
416 }
417
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400418#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200419 /* disabling tcp quick ack now allows the first request to leave the
420 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100421 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200422 */
Willy Tarreauf0837b22012-11-24 10:24:27 +0100423 if (delack == 2 || ((delack || data) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900424 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200425#endif
426
Willy Tarreaue803de22010-01-21 17:43:04 +0100427 if (global.tune.server_sndbuf)
428 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
429
430 if (global.tune.server_rcvbuf)
431 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
432
Willy Tarreau986a9d22012-08-30 21:11:38 +0200433 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200434 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
435
Willy Tarreaub1719512012-12-08 23:03:28 +0100436 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200437 char *msg;
Willy Tarreaub1719512012-12-08 23:03:28 +0100438 if (errno == EAGAIN || errno == EADDRNOTAVAIL)
Willy Tarreau9650f372009-08-16 14:02:45 +0200439 msg = "no free ports";
440 else
441 msg = "local address already in use";
442
Willy Tarreaub1719512012-12-08 23:03:28 +0100443 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200444 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
445 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200446 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100447 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9650f372009-08-16 14:02:45 +0200448 return SN_ERR_RESOURCE;
449 } else if (errno == ETIMEDOUT) {
450 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200451 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
452 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200453 close(fd);
454 return SN_ERR_SRVTO;
455 } else {
456 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
457 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200458 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
459 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200460 close(fd);
461 return SN_ERR_SRVCL;
462 }
463 }
464
Willy Tarreau986a9d22012-08-30 21:11:38 +0200465 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100466 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200467
Willy Tarreauf79c8172013-10-21 16:30:56 +0200468 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200469 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200470
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200471 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200472 conn_force_close(conn);
Willy Tarreau15678ef2012-08-31 13:54:11 +0200473 return SN_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200474 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200475
Willy Tarreau14f8e862012-08-30 22:23:13 +0200476 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200477 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200478
Willy Tarreau9650f372009-08-16 14:02:45 +0200479 return SN_ERR_NONE; /* connection is OK */
480}
481
482
Willy Tarreau59b94792012-05-11 16:16:40 +0200483/*
484 * Retrieves the source address for the socket <fd>, with <dir> indicating
485 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
486 * success, -1 in case of error. The socket's source address is stored in
487 * <sa> for <salen> bytes.
488 */
489int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
490{
491 if (dir)
492 return getsockname(fd, sa, &salen);
493 else
494 return getpeername(fd, sa, &salen);
495}
496
497
498/*
499 * Retrieves the original destination address for the socket <fd>, with <dir>
500 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
501 * listener, if the original destination address was translated, the original
502 * address is retrieved. It returns 0 in case of success, -1 in case of error.
503 * The socket's source address is stored in <sa> for <salen> bytes.
504 */
505int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
506{
507 if (dir)
508 return getpeername(fd, sa, &salen);
509#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
510 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
511 return 0;
512#endif
513 else
514 return getsockname(fd, sa, &salen);
515}
516
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200517/* Tries to drain any pending incoming data from the socket to reach the
518 * receive shutdown. Returns non-zero if the shutdown was found, otherwise
519 * zero. This is useful to decide whether we can close a connection cleanly
520 * are we must kill it hard.
521 */
522int tcp_drain(int fd)
523{
524 int turns = 2;
525 int len;
526
527 while (turns) {
528#ifdef MSG_TRUNC_CLEARS_INPUT
529 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
530 if (len == -1 && errno == EFAULT)
531#endif
532 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
533
534 if (len == 0) /* cool, shutdown received */
535 return 1;
536
537 if (len < 0) {
538 if (errno == EAGAIN) /* connection not closed yet */
539 return 0;
540 if (errno == EINTR) /* oops, try again */
541 continue;
542 /* other errors indicate a dead connection, fine. */
543 return 1;
544 }
545 /* OK we read some data, let's try again once */
546 turns--;
547 }
548 /* some data are still present, give up */
549 return 0;
550}
551
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200552/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100553 * and we have nothing to send. It updates the FD polling status. It returns 0
554 * if it fails in a fatal way or needs to poll to go further, otherwise it
555 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
556 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
557 * errno. The error checking is done in two passes in order to limit the number
558 * of syscalls in the normal case :
559 * - if POLL_ERR was reported by the poller, we check for a pending error on
560 * the socket before proceeding. If found, it's assigned to errno so that
561 * upper layers can see it.
562 * - otherwise connect() is used to check the connection state again, since
563 * the getsockopt return cannot reliably be used to know if the connection
564 * is still pending or ready. This one may often return an error as well,
565 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200566 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200567int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200568{
Willy Tarreau239d7182012-07-23 18:53:03 +0200569 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100570 socklen_t lskerr;
571 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200572
Willy Tarreau80184712012-07-06 14:54:49 +0200573 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200574 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200575
Willy Tarreauf79c8172013-10-21 16:30:56 +0200576 if (!(conn->flags & CO_FL_CTRL_READY))
577 return 0;
578
Willy Tarreau80184712012-07-06 14:54:49 +0200579 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200580 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200581
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100582 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
583 * without FD_POLL_IN also indicates a hangup without input data meaning
584 * there was no connection.
585 */
586 if (fdtab[fd].ev & FD_POLL_ERR ||
587 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
588 skerr = 0;
589 lskerr = sizeof(skerr);
590 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
591 errno = skerr;
592 if (errno == EAGAIN)
593 errno = 0;
594 if (errno)
595 goto out_error;
596 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200597
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100598 /* Use connect() to check the state of the socket. This has the
599 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200600 * - error
601 * - connecting (EALREADY, EINPROGRESS)
602 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200603 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200604 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200605 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100606 __conn_sock_stop_recv(conn);
607 __conn_sock_poll_send(conn);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200608 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200609 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200610
Willy Tarreau2c6be842012-07-06 17:12:34 +0200611 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200612 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200613
Willy Tarreau2c6be842012-07-06 17:12:34 +0200614 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200615 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200616
Willy Tarreau076be252012-07-06 16:02:29 +0200617 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200618 * forward the event to the transport layer which will notify the
619 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200620 */
Willy Tarreau80184712012-07-06 14:54:49 +0200621 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200622 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200623
624 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200625 /* Write error on the file descriptor. Report it to the connection
626 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200627 */
628
Willy Tarreau26f4a042013-12-04 23:44:10 +0100629 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100630 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200631 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200632}
633
Willy Tarreau59b94792012-05-11 16:16:40 +0200634
Willy Tarreaue6b98942007-10-29 01:09:36 +0100635/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100636 * an error message in <errmsg> if the message is at most <errlen> bytes long
637 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
638 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100639 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
640 * was alright and that no message was returned. ERR_RETRYABLE means that an
641 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700642 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100643 * the meaning of the error, but just indicate that a message is present which
644 * should be displayed with the respective level. Last, ERR_ABORT indicates
645 * that it's pointless to try to start other listeners. No error message is
646 * returned if errlen is NULL.
647 */
648int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
649{
650 __label__ tcp_return, tcp_close_return;
651 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100652 int ext, ready;
653 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100654 const char *msg = NULL;
655
656 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100657 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100658 *errmsg = 0;
659
660 if (listener->state != LI_ASSIGNED)
661 return ERR_NONE; /* already bound */
662
663 err = ERR_NONE;
664
Willy Tarreau40aa0702013-03-10 23:51:38 +0100665 /* if the listener already has an fd assigned, then we were offered the
666 * fd by an external process (most likely the parent), and we don't want
667 * to create a new socket. However we still want to set a few flags on
668 * the socket.
669 */
670 fd = listener->fd;
671 ext = (fd >= 0);
672
673 if (!ext && (fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100674 err |= ERR_RETRYABLE | ERR_ALERT;
675 msg = "cannot create listening socket";
676 goto tcp_return;
677 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100678
Willy Tarreaue6b98942007-10-29 01:09:36 +0100679 if (fd >= global.maxsock) {
680 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
681 msg = "not enough free sockets (raise '-n' parameter)";
682 goto tcp_close_return;
683 }
684
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200685 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100686 err |= ERR_FATAL | ERR_ALERT;
687 msg = "cannot make socket non-blocking";
688 goto tcp_close_return;
689 }
690
Willy Tarreau40aa0702013-03-10 23:51:38 +0100691 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100692 /* not fatal but should be reported */
693 msg = "cannot do so_reuseaddr";
694 err |= ERR_ALERT;
695 }
696
697 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900698 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100699
Willy Tarreaue6b98942007-10-29 01:09:36 +0100700#ifdef SO_REUSEPORT
701 /* OpenBSD supports this. As it's present in old libc versions of Linux,
702 * it might return an error that we will silently ignore.
703 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100704 if (!ext)
705 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100706#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200707
Willy Tarreau40aa0702013-03-10 23:51:38 +0100708 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200709 switch (listener->addr.ss_family) {
710 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200711 if (1
712#if defined(IP_TRANSPARENT)
713 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
714#endif
715#if defined(IP_FREEBIND)
716 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
717#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200718#if defined(IP_BINDANY)
719 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
720#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200721#if defined(SO_BINDANY)
722 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
723#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200724 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200725 msg = "cannot make listening socket transparent";
726 err |= ERR_ALERT;
727 }
728 break;
729 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200730 if (1
731#if defined(IPV6_TRANSPARENT)
732 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
733#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200734#if defined(IPV6_BINDANY)
735 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
736#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200737#if defined(SO_BINDANY)
738 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
739#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200740 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200741 msg = "cannot make listening socket transparent";
742 err |= ERR_ALERT;
743 }
744 break;
745 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100746 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200747
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100748#ifdef SO_BINDTODEVICE
749 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100750 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100751 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100752 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100753 msg = "cannot bind listener to device";
754 err |= ERR_WARN;
755 }
756 }
757#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400758#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100759 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400760 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200761 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
762 msg = "cannot set MSS";
763 err |= ERR_WARN;
764 }
765 }
766#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200767#if defined(TCP_DEFER_ACCEPT)
768 if (listener->options & LI_O_DEF_ACCEPT) {
769 /* defer accept by up to one second */
770 int accept_delay = 1;
771 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
772 msg = "cannot enable DEFER_ACCEPT";
773 err |= ERR_WARN;
774 }
775 }
776#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200777#if defined(TCP_FASTOPEN)
778 if (listener->options & LI_O_TCP_FO) {
779 /* TFO needs a queue length, let's use the configured backlog */
780 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
781 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
782 msg = "cannot enable TCP_FASTOPEN";
783 err |= ERR_WARN;
784 }
785 }
786#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100787#if defined(IPV6_V6ONLY)
788 if (listener->options & LI_O_V6ONLY)
789 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100790 else if (listener->options & LI_O_V4V6)
791 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100792#endif
793
Willy Tarreau40aa0702013-03-10 23:51:38 +0100794 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100795 err |= ERR_RETRYABLE | ERR_ALERT;
796 msg = "cannot bind socket";
797 goto tcp_close_return;
798 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100799
Willy Tarreau40aa0702013-03-10 23:51:38 +0100800 ready = 0;
801 ready_len = sizeof(ready);
802 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
803 ready = 0;
804
805 if (!(ext && ready) && /* only listen if not already done by external process */
806 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100807 err |= ERR_RETRYABLE | ERR_ALERT;
808 msg = "cannot listen to socket";
809 goto tcp_close_return;
810 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100811
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400812#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200813 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900814 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200815#endif
816
Willy Tarreaue6b98942007-10-29 01:09:36 +0100817 /* the socket is ready */
818 listener->fd = fd;
819 listener->state = LI_LISTEN;
820
Willy Tarreaueabf3132008-08-29 23:36:51 +0200821 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200822 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200823 fd_insert(fd);
824
Willy Tarreaue6b98942007-10-29 01:09:36 +0100825 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100826 if (msg && errlen) {
827 char pn[INET6_ADDRSTRLEN];
828
Willy Tarreau631f01c2011-09-05 00:36:48 +0200829 addr_to_str(&listener->addr, pn, sizeof(pn));
830 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100831 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100832 return err;
833
834 tcp_close_return:
835 close(fd);
836 goto tcp_return;
837}
838
839/* This function creates all TCP sockets bound to the protocol entry <proto>.
840 * It is intended to be used as the protocol's bind_all() function.
841 * The sockets will be registered but not added to any fd_set, in order not to
842 * loose them across the fork(). A call to enable_all_listeners() is needed
843 * to complete initialization. The return value is composed from ERR_*.
844 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200845static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100846{
847 struct listener *listener;
848 int err = ERR_NONE;
849
850 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200851 err |= tcp_bind_listener(listener, errmsg, errlen);
852 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100853 break;
854 }
855
856 return err;
857}
858
859/* Add listener to the list of tcpv4 listeners. The listener's state
860 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
861 * listeners is updated. This is the function to use to add a new listener.
862 */
863void tcpv4_add_listener(struct listener *listener)
864{
865 if (listener->state != LI_INIT)
866 return;
867 listener->state = LI_ASSIGNED;
868 listener->proto = &proto_tcpv4;
869 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
870 proto_tcpv4.nb_listeners++;
871}
872
873/* Add listener to the list of tcpv4 listeners. The listener's state
874 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
875 * listeners is updated. This is the function to use to add a new listener.
876 */
877void tcpv6_add_listener(struct listener *listener)
878{
879 if (listener->state != LI_INIT)
880 return;
881 listener->state = LI_ASSIGNED;
882 listener->proto = &proto_tcpv6;
883 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
884 proto_tcpv6.nb_listeners++;
885}
886
Willy Tarreauedcf6682008-11-30 23:15:34 +0100887/* This function performs the TCP request analysis on the current request. It
888 * returns 1 if the processing can continue on next analysers, or zero if it
889 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200890 * request. It relies on buffers flags, and updates s->req->analysers. The
891 * function may be called for frontend rules and backend rules. It only relies
892 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100893 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200894int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100895{
896 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200897 struct stksess *ts;
898 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100899 int partial;
900
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100901 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreauedcf6682008-11-30 23:15:34 +0100902 now_ms, __FUNCTION__,
903 s,
904 req,
905 req->rex, req->wex,
906 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200907 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100908 req->analysers);
909
Willy Tarreauedcf6682008-11-30 23:15:34 +0100910 /* We don't know whether we have enough data, so must proceed
911 * this way :
912 * - iterate through all rules in their declaration order
913 * - if one rule returns MISS, it means the inspect delay is
914 * not over yet, then return immediately, otherwise consider
915 * it as a non-match.
916 * - if one rule returns OK, then return OK
917 * - if one rule returns KO, then return KO
918 */
919
Willy Tarreau9b28e032012-10-12 23:49:43 +0200920 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200921 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200922 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100923 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200924 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100925
Willy Tarreaufb356202010-08-03 14:02:05 +0200926 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +0100927 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100928
929 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200930 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100931 if (ret == ACL_TEST_MISS) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200932 channel_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100933 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200934 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +0100935 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100936 return 0;
937 }
938
939 ret = acl_pass(ret);
940 if (rule->cond->pol == ACL_COND_UNLESS)
941 ret = !ret;
942 }
943
944 if (ret) {
945 /* we have a matching rule. */
946 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200947 channel_abort(req);
948 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100949 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200950
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100951 s->be->be_counters.denied_req++;
952 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200953 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200954 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200955
Willy Tarreauedcf6682008-11-30 23:15:34 +0100956 if (!(s->flags & SN_ERR_MASK))
957 s->flags |= SN_ERR_PRXCOND;
958 if (!(s->flags & SN_FINST_MASK))
959 s->flags |= SN_FINST_R;
960 return 0;
961 }
Willy Tarreau44778ad2013-10-30 19:24:00 +0100962 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100963 /* Note: only the first valid tracking parameter of each
964 * applies.
965 */
966 struct stktable_key *key;
967
Willy Tarreau44778ad2013-10-30 19:24:00 +0100968 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
969 continue;
970
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100971 t = rule->act_prm.trk_ctr.table.t;
972 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
973
974 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +0200975 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
976 if (s->fe != s->be)
Willy Tarreaube4a3ef2013-06-17 15:04:07 +0200977 s->flags |= SN_BE_TRACK_SC0 << tcp_trk_idx(rule->action);
Willy Tarreaud1f96522010-08-03 19:34:32 +0200978 }
979 }
980 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100981 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200982 break;
983 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100984 }
985 }
986
987 /* if we get there, it means we have no rule which matches, or
988 * we have an explicit accept, so we apply the default accept.
989 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200990 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100991 req->analyse_exp = TICK_ETERNITY;
992 return 1;
993}
994
Emeric Brun97679e72010-09-23 17:56:44 +0200995/* This function performs the TCP response analysis on the current response. It
996 * returns 1 if the processing can continue on next analysers, or zero if it
997 * needs more data, encounters an error, or wants to immediately abort the
998 * response. It relies on buffers flags, and updates s->rep->analysers. The
999 * function may be called for backend rules.
1000 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001001int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001002{
1003 struct tcp_rule *rule;
1004 int partial;
1005
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001006 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun97679e72010-09-23 17:56:44 +02001007 now_ms, __FUNCTION__,
1008 s,
1009 rep,
1010 rep->rex, rep->wex,
1011 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001012 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001013 rep->analysers);
1014
1015 /* We don't know whether we have enough data, so must proceed
1016 * this way :
1017 * - iterate through all rules in their declaration order
1018 * - if one rule returns MISS, it means the inspect delay is
1019 * not over yet, then return immediately, otherwise consider
1020 * it as a non-match.
1021 * - if one rule returns OK, then return OK
1022 * - if one rule returns KO, then return KO
1023 */
1024
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001025 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001026 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001027 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001028 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001029
1030 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001031 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001032
1033 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001034 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001035 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001036 /* just set the analyser timeout once at the beginning of the response */
1037 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001038 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001039 return 0;
1040 }
1041
1042 ret = acl_pass(ret);
1043 if (rule->cond->pol == ACL_COND_UNLESS)
1044 ret = !ret;
1045 }
1046
1047 if (ret) {
1048 /* we have a matching rule. */
1049 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001050 channel_abort(rep);
1051 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001052 rep->analysers = 0;
1053
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001054 s->be->be_counters.denied_resp++;
1055 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001056 if (s->listener->counters)
1057 s->listener->counters->denied_resp++;
1058
1059 if (!(s->flags & SN_ERR_MASK))
1060 s->flags |= SN_ERR_PRXCOND;
1061 if (!(s->flags & SN_FINST_MASK))
1062 s->flags |= SN_FINST_D;
1063 return 0;
1064 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001065 else if (rule->action == TCP_ACT_CLOSE) {
1066 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1067 si_shutr(rep->prod);
1068 si_shutw(rep->prod);
1069 break;
1070 }
Emeric Brun97679e72010-09-23 17:56:44 +02001071 else {
1072 /* otherwise accept */
1073 break;
1074 }
1075 }
1076 }
1077
1078 /* if we get there, it means we have no rule which matches, or
1079 * we have an explicit accept, so we apply the default accept.
1080 */
1081 rep->analysers &= ~an_bit;
1082 rep->analyse_exp = TICK_ETERNITY;
1083 return 1;
1084}
1085
1086
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001087/* This function performs the TCP layer4 analysis on the current request. It
1088 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1089 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001090 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001091 */
1092int tcp_exec_req_rules(struct session *s)
1093{
1094 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001095 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001096 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001097 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001098 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001099 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001100
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001101 if (!conn)
1102 return result;
1103
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001104 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001105 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001106
1107 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001108 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001109 ret = acl_pass(ret);
1110 if (rule->cond->pol == ACL_COND_UNLESS)
1111 ret = !ret;
1112 }
1113
1114 if (ret) {
1115 /* we have a matching rule. */
1116 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001117 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001118 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001119 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001120
1121 if (!(s->flags & SN_ERR_MASK))
1122 s->flags |= SN_ERR_PRXCOND;
1123 if (!(s->flags & SN_FINST_MASK))
1124 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001125 result = 0;
1126 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001127 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001128 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001129 /* Note: only the first valid tracking parameter of each
1130 * applies.
1131 */
1132 struct stktable_key *key;
1133
Willy Tarreau44778ad2013-10-30 19:24:00 +01001134 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
1135 continue;
1136
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001137 t = rule->act_prm.trk_ctr.table.t;
1138 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1139
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001140 if (key && (ts = stktable_get_entry(t, key)))
1141 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001142 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001143 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001144 conn->flags |= CO_FL_ACCEPT_PROXY;
1145 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001146 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001147 else {
1148 /* otherwise it's an accept */
1149 break;
1150 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001151 }
1152 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001153 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001154}
1155
Emeric Brun97679e72010-09-23 17:56:44 +02001156/* Parse a tcp-response rule. Return a negative value in case of failure */
1157static int tcp_parse_response_rule(char **args, int arg, int section_type,
1158 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau80aca902013-01-07 15:42:20 +01001159 struct tcp_rule *rule, char **err,
1160 unsigned int where)
Emeric Brun97679e72010-09-23 17:56:44 +02001161{
1162 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001163 memprintf(err, "%s %s is only allowed in 'backend' sections",
1164 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001165 return -1;
1166 }
1167
1168 if (strcmp(args[arg], "accept") == 0) {
1169 arg++;
1170 rule->action = TCP_ACT_ACCEPT;
1171 }
1172 else if (strcmp(args[arg], "reject") == 0) {
1173 arg++;
1174 rule->action = TCP_ACT_REJECT;
1175 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001176 else if (strcmp(args[arg], "close") == 0) {
1177 arg++;
1178 rule->action = TCP_ACT_CLOSE;
1179 }
Emeric Brun97679e72010-09-23 17:56:44 +02001180 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001181 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001182 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001183 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001184 return -1;
1185 }
1186
1187 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001188 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1189 memprintf(err,
1190 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1191 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001192 return -1;
1193 }
1194 }
1195 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001196 memprintf(err,
1197 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001198 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1199 return -1;
1200 }
1201 return 0;
1202}
1203
1204
1205
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001206/* Parse a tcp-request rule. Return a negative value in case of failure */
1207static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001208 struct proxy *curpx, struct proxy *defpx,
1209 struct tcp_rule *rule, char **err,
1210 unsigned int where)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001211{
1212 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001213 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1214 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001215 return -1;
1216 }
1217
1218 if (!strcmp(args[arg], "accept")) {
1219 arg++;
1220 rule->action = TCP_ACT_ACCEPT;
1221 }
1222 else if (!strcmp(args[arg], "reject")) {
1223 arg++;
1224 rule->action = TCP_ACT_REJECT;
1225 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001226 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1227 args[arg][9] == '\0' && args[arg][8] >= '0' &&
1228 args[arg][8] <= '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001229 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001230 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001231
1232 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001233
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001234 curpx->conf.args.ctx = ARGC_TRK;
1235 expr = sample_parse_expr(args, &arg, trash.str, trash.size, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001236 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001237 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001238 "'%s %s %s' : %s",
1239 args[0], args[1], args[kw], trash.str);
1240 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001241 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001242
Willy Tarreau80aca902013-01-07 15:42:20 +01001243 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001244 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001245 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001246 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001247 free(expr);
1248 return -1;
1249 }
1250
1251 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001252 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001253
1254 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001255 arg++;
1256 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001257 memprintf(err,
1258 "'%s %s %s' : missing table name",
1259 args[0], args[1], args[kw]);
1260 free(expr);
1261 return -1;
1262 }
1263 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001264 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001265 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001266 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001267 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001268 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001269 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001270 else if (strcmp(args[arg], "expect-proxy") == 0) {
1271 if (strcmp(args[arg+1], "layer4") != 0) {
1272 memprintf(err,
1273 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1274 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1275 return -1;
1276 }
1277
1278 if (!(where & SMP_VAL_FE_CON_ACC)) {
1279 memprintf(err,
1280 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1281 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1282 return -1;
1283 }
1284
1285 arg += 2;
1286 rule->action = TCP_ACT_EXPECT_PX;
1287 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001288 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001289 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001290 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1291 " in %s '%s' (got '%s')",
1292 args[0], args[1], MAX_SESS_STKCTR, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001293 return -1;
1294 }
1295
1296 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001297 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1298 memprintf(err,
1299 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1300 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001301 return -1;
1302 }
1303 }
1304 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001305 memprintf(err,
1306 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001307 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1308 return -1;
1309 }
1310 return 0;
1311}
1312
Emeric Brun97679e72010-09-23 17:56:44 +02001313/* This function should be called to parse a line starting with the "tcp-response"
1314 * keyword.
1315 */
1316static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001317 struct proxy *defpx, const char *file, int line,
1318 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001319{
1320 const char *ptr = NULL;
1321 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001322 int warn = 0;
1323 int arg;
1324 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001325 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001326 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001327 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001328
1329 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001330 memprintf(err, "missing argument for '%s' in %s '%s'",
1331 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001332 return -1;
1333 }
1334
1335 if (strcmp(args[1], "inspect-delay") == 0) {
1336 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001337 memprintf(err, "%s %s is only allowed in 'backend' sections",
1338 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001339 return -1;
1340 }
1341
1342 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001343 memprintf(err,
1344 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1345 args[0], args[1], proxy_type_str(curpx), curpx->id);
1346 if (ptr)
1347 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001348 return -1;
1349 }
1350
1351 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001352 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1353 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001354 return 1;
1355 }
1356 curpx->tcp_rep.inspect_delay = val;
1357 return 0;
1358 }
1359
Simon Hormande072bd2011-06-24 15:11:37 +09001360 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001361 LIST_INIT(&rule->list);
1362 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001363 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001364
1365 if (strcmp(args[1], "content") == 0) {
1366 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001367
1368 if (curpx->cap & PR_CAP_FE)
1369 where |= SMP_VAL_FE_RES_CNT;
1370 if (curpx->cap & PR_CAP_BE)
1371 where |= SMP_VAL_BE_RES_CNT;
1372
1373 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001374 goto error;
1375
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001376 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1377 if (acl) {
1378 if (acl->name && *acl->name)
1379 memprintf(err,
1380 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1381 acl->name, args[0], args[1], sample_ckp_names(where));
1382 else
1383 memprintf(err,
1384 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1385 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001386 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001387 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001388
Emeric Brun97679e72010-09-23 17:56:44 +02001389 warn++;
1390 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001391 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1392 if (acl->name && *acl->name)
1393 memprintf(err,
1394 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001395 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001396 else
1397 memprintf(err,
1398 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001399 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001400 warn++;
1401 }
Emeric Brun97679e72010-09-23 17:56:44 +02001402
1403 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1404 }
1405 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001406 memprintf(err,
1407 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1408 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001409 goto error;
1410 }
1411
1412 return warn;
1413 error:
1414 free(rule);
1415 return -1;
1416}
1417
1418
Willy Tarreaub6866442008-07-14 23:54:42 +02001419/* This function should be called to parse a line starting with the "tcp-request"
1420 * keyword.
1421 */
1422static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001423 struct proxy *defpx, const char *file, int line,
1424 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001425{
1426 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001427 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001428 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001429 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001430 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001431 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001432 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001433 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001434
1435 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001436 if (curpx == defpx)
1437 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1438 else
1439 memprintf(err, "missing argument for '%s' in %s '%s'",
1440 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001441 return -1;
1442 }
1443
1444 if (!strcmp(args[1], "inspect-delay")) {
1445 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001446 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1447 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001448 return -1;
1449 }
1450
Willy Tarreaub6866442008-07-14 23:54:42 +02001451 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001452 memprintf(err,
1453 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1454 args[0], args[1], proxy_type_str(curpx), curpx->id);
1455 if (ptr)
1456 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001457 return -1;
1458 }
1459
1460 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001461 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1462 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001463 return 1;
1464 }
1465 curpx->tcp_req.inspect_delay = val;
1466 return 0;
1467 }
1468
Simon Hormande072bd2011-06-24 15:11:37 +09001469 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001470 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001471 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001472 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001473
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001474 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001475 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001476
1477 if (curpx->cap & PR_CAP_FE)
1478 where |= SMP_VAL_FE_REQ_CNT;
1479 if (curpx->cap & PR_CAP_BE)
1480 where |= SMP_VAL_BE_REQ_CNT;
1481
1482 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001483 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001484
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001485 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1486 if (acl) {
1487 if (acl->name && *acl->name)
1488 memprintf(err,
1489 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1490 acl->name, args[0], args[1], sample_ckp_names(where));
1491 else
1492 memprintf(err,
1493 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1494 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001495 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001496 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001497
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001498 warn++;
1499 }
1500 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1501 if (acl->name && *acl->name)
1502 memprintf(err,
1503 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001504 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001505 else
1506 memprintf(err,
1507 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001508 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001509 warn++;
1510 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001511
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001512 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001513 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001514 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001515 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001516
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001517 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001518 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1519 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001520 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001521 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001522
Willy Tarreau80aca902013-01-07 15:42:20 +01001523 where |= SMP_VAL_FE_CON_ACC;
1524
1525 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001526 goto error;
1527
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001528 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1529 if (acl) {
1530 if (acl->name && *acl->name)
1531 memprintf(err,
1532 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1533 acl->name, args[0], args[1], sample_ckp_names(where));
1534 else
1535 memprintf(err,
1536 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1537 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001538 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001539 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001540
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001541 warn++;
1542 }
1543 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1544 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001545 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001546 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001547 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001548 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001549 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001550 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001551 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001552 warn++;
1553 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001554
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001555 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001556 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001557 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001558 if (curpx == defpx)
1559 memprintf(err,
1560 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1561 args[0], args[1]);
1562 else
1563 memprintf(err,
1564 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001565 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001566 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001567 }
1568
Willy Tarreau1a687942010-05-23 22:40:30 +02001569 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001570 error:
1571 free(rule);
1572 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001573}
1574
Willy Tarreau645513a2010-05-24 20:55:15 +02001575
1576/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001577/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001578/************************************************************************/
1579
Willy Tarreau4a129812012-04-25 17:31:42 +02001580/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001581static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001582smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001583 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001584{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001585 struct connection *cli_conn = objt_conn(l4->si[0].end);
1586
1587 if (!cli_conn)
1588 return 0;
1589
1590 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001591 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001592 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001593 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001594 break;
1595 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001596 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001597 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001598 break;
1599 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001600 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001601 }
Emeric Brunf769f512010-10-22 17:14:01 +02001602
Willy Tarreau37406352012-04-23 16:16:37 +02001603 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001604 return 1;
1605}
1606
Willy Tarreaua5e37562011-12-16 17:06:15 +01001607/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001608static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001609smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001610 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001611{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001612 struct connection *cli_conn = objt_conn(l4->si[0].end);
1613
1614 if (!cli_conn)
1615 return 0;
1616
Willy Tarreauf853c462012-04-23 18:53:56 +02001617 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001618 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001619 return 0;
1620
Willy Tarreau37406352012-04-23 16:16:37 +02001621 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001622 return 1;
1623}
1624
Willy Tarreau4a129812012-04-25 17:31:42 +02001625/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001626static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001627smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001628 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001629{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001630 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001631
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001632 if (!cli_conn)
1633 return 0;
1634
1635 conn_get_to_addr(cli_conn);
1636
1637 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001638 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001639 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001640 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001641 break;
1642 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001643 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001644 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001645 break;
1646 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001647 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001648 }
Emeric Brunf769f512010-10-22 17:14:01 +02001649
Willy Tarreau37406352012-04-23 16:16:37 +02001650 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001651 return 1;
1652}
1653
Willy Tarreaua5e37562011-12-16 17:06:15 +01001654/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001655static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001656smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001657 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001658{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001659 struct connection *cli_conn = objt_conn(l4->si[0].end);
1660
1661 if (!cli_conn)
1662 return 0;
1663
1664 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001665
Willy Tarreauf853c462012-04-23 18:53:56 +02001666 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001667 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001668 return 0;
1669
Willy Tarreau37406352012-04-23 16:16:37 +02001670 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001671 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001672}
1673
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001674#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001675/* parse the "v4v6" bind keyword */
1676static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1677{
1678 struct listener *l;
1679
1680 list_for_each_entry(l, &conf->listeners, by_bind) {
1681 if (l->addr.ss_family == AF_INET6)
1682 l->options |= LI_O_V4V6;
1683 }
1684
1685 return 0;
1686}
1687
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001688/* parse the "v6only" bind keyword */
1689static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1690{
1691 struct listener *l;
1692
1693 list_for_each_entry(l, &conf->listeners, by_bind) {
1694 if (l->addr.ss_family == AF_INET6)
1695 l->options |= LI_O_V6ONLY;
1696 }
1697
1698 return 0;
1699}
1700#endif
1701
Pieter Baauwd551fb52013-05-08 22:49:23 +02001702#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001703/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001704static 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 +02001705{
1706 struct listener *l;
1707
Willy Tarreau4348fad2012-09-20 16:48:07 +02001708 list_for_each_entry(l, &conf->listeners, by_bind) {
1709 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1710 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001711 }
1712
Willy Tarreau44791242012-09-12 23:27:21 +02001713 return 0;
1714}
1715#endif
1716
1717#ifdef TCP_DEFER_ACCEPT
1718/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001719static 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 +02001720{
1721 struct listener *l;
1722
Willy Tarreau4348fad2012-09-20 16:48:07 +02001723 list_for_each_entry(l, &conf->listeners, by_bind) {
1724 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1725 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001726 }
1727
Willy Tarreau44791242012-09-12 23:27:21 +02001728 return 0;
1729}
1730#endif
1731
Willy Tarreau1c862c52012-10-05 16:21:00 +02001732#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001733/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001734static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1735{
1736 struct listener *l;
1737
1738 list_for_each_entry(l, &conf->listeners, by_bind) {
1739 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1740 l->options |= LI_O_TCP_FO;
1741 }
1742
1743 return 0;
1744}
1745#endif
1746
Willy Tarreau44791242012-09-12 23:27:21 +02001747#ifdef TCP_MAXSEG
1748/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001749static 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 +02001750{
1751 struct listener *l;
1752 int mss;
1753
Willy Tarreau44791242012-09-12 23:27:21 +02001754 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001755 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001756 return ERR_ALERT | ERR_FATAL;
1757 }
1758
1759 mss = atoi(args[cur_arg + 1]);
1760 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001761 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001762 return ERR_ALERT | ERR_FATAL;
1763 }
1764
Willy Tarreau4348fad2012-09-20 16:48:07 +02001765 list_for_each_entry(l, &conf->listeners, by_bind) {
1766 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1767 l->maxseg = mss;
1768 }
Willy Tarreau44791242012-09-12 23:27:21 +02001769
1770 return 0;
1771}
1772#endif
1773
1774#ifdef SO_BINDTODEVICE
1775/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001776static 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 +02001777{
1778 struct listener *l;
1779
Willy Tarreau44791242012-09-12 23:27:21 +02001780 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001781 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001782 return ERR_ALERT | ERR_FATAL;
1783 }
1784
Willy Tarreau4348fad2012-09-20 16:48:07 +02001785 list_for_each_entry(l, &conf->listeners, by_bind) {
1786 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1787 l->interface = strdup(args[cur_arg + 1]);
1788 }
Willy Tarreau44791242012-09-12 23:27:21 +02001789
1790 global.last_checks |= LSTCHK_NETADM;
1791 return 0;
1792}
1793#endif
1794
Willy Tarreaudc13c112013-06-21 23:16:39 +02001795static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001796 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001797 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001798 { 0, NULL, NULL },
1799}};
1800
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001801
Willy Tarreau61612d42012-04-19 18:42:05 +02001802/* Note: must not be declared <const> as its list will be overwritten.
1803 * Please take care of keeping this list alphabetically sorted.
1804 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001805static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001806 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02001807}};
1808
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001809
Willy Tarreau4a129812012-04-25 17:31:42 +02001810/* Note: must not be declared <const> as its list will be overwritten.
1811 * Note: fetches that may return multiple types must be declared as the lowest
1812 * common denominator, the type that can be casted into all other ones. For
1813 * instance v4/v6 must be declared v4.
1814 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001815static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001816 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1817 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1818 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1819 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1820 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001821}};
1822
Willy Tarreau44791242012-09-12 23:27:21 +02001823/************************************************************************/
1824/* All supported bind keywords must be declared here. */
1825/************************************************************************/
1826
1827/* Note: must not be declared <const> as its list will be overwritten.
1828 * Please take care of keeping this list alphabetically sorted, doing so helps
1829 * all code contributors.
1830 * Optional keywords are also declared with a NULL ->parse() function so that
1831 * the config parser can report an appropriate error when a known keyword was
1832 * not enabled.
1833 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001834static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001835#ifdef TCP_DEFER_ACCEPT
1836 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1837#endif
1838#ifdef SO_BINDTODEVICE
1839 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1840#endif
1841#ifdef TCP_MAXSEG
1842 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1843#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001844#ifdef TCP_FASTOPEN
1845 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1846#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001847#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001848 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1849#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001850#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001851 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001852 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1853#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001854 /* the versions with the NULL parse function*/
1855 { "defer-accept", NULL, 0 },
1856 { "interface", NULL, 1 },
1857 { "mss", NULL, 1 },
1858 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001859 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001860 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001861 { NULL, NULL, 0 },
1862}};
1863
Willy Tarreaue6b98942007-10-29 01:09:36 +01001864__attribute__((constructor))
1865static void __tcp_protocol_init(void)
1866{
1867 protocol_register(&proto_tcpv4);
1868 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001869 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001870 cfg_register_keywords(&cfg_kws);
1871 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02001872 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001873}
1874
1875
1876/*
1877 * Local variables:
1878 * c-indent-level: 8
1879 * c-basic-offset: 8
1880 * End:
1881 */