blob: c1b0d7bdd6ec8ea4cb00bd0b1fb519a6cb1569ae [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 Tarreau1ec74bf2013-10-24 21:45:00 +0200260 * Note that a pending send_proxy message accounts for data.
261 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200262 * It can return one of :
263 * - SN_ERR_NONE if everything's OK
264 * - SN_ERR_SRVTO if there are no more servers
265 * - SN_ERR_SRVCL if the connection was refused by the server
266 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
267 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
268 * - SN_ERR_INTERNAL for any other purely internal errors
269 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100270 *
271 * The connection's fd is inserted only when SN_ERR_NONE is returned, otherwise
272 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200273 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100274
Willy Tarreauf0837b22012-11-24 10:24:27 +0100275int tcp_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau9650f372009-08-16 14:02:45 +0200276{
277 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100278 struct server *srv;
279 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100280 struct conn_src *src;
Willy Tarreauac825402011-03-04 22:04:29 +0100281
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100282 switch (obj_type(conn->target)) {
283 case OBJ_TYPE_PROXY:
284 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100285 srv = NULL;
286 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100287 case OBJ_TYPE_SERVER:
288 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100289 be = srv->proxy;
290 break;
291 default:
292 return SN_ERR_INTERNAL;
293 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200294
Willy Tarreau986a9d22012-08-30 21:11:38 +0200295 if ((fd = conn->t.sock.fd = socket(conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200296 qfprintf(stderr, "Cannot get a server socket.\n");
297
298 if (errno == ENFILE)
299 send_log(be, LOG_EMERG,
300 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
301 be->id, maxfd);
302 else if (errno == EMFILE)
303 send_log(be, LOG_EMERG,
304 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
305 be->id, maxfd);
306 else if (errno == ENOBUFS || errno == ENOMEM)
307 send_log(be, LOG_EMERG,
308 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
309 be->id, maxfd);
310 /* this is a resource error */
311 return SN_ERR_RESOURCE;
312 }
313
314 if (fd >= global.maxsock) {
315 /* do not log anything there, it's a normal condition when this option
316 * is used to serialize connections to a server !
317 */
318 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
319 close(fd);
320 return SN_ERR_PRXCOND; /* it is a configuration limit */
321 }
322
323 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900324 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200325 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
326 close(fd);
327 return SN_ERR_INTERNAL;
328 }
329
330 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900331 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200332
Willy Tarreau9650f372009-08-16 14:02:45 +0200333 /* allow specific binding :
334 * - server-specific at first
335 * - proxy-specific next
336 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100337 if (srv && srv->conn_src.opts & CO_SRC_BIND)
338 src = &srv->conn_src;
339 else if (be->conn_src.opts & CO_SRC_BIND)
340 src = &be->conn_src;
341 else
342 src = NULL;
343
344 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200345 int ret, flags = 0;
346
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200347 if (is_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100348 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100349 case CO_SRC_TPROXY_ADDR:
350 case CO_SRC_TPROXY_CLI:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200351 flags = 3;
352 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100353 case CO_SRC_TPROXY_CIP:
354 case CO_SRC_TPROXY_DYN:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200355 flags = 1;
356 break;
357 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200358 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200359
Willy Tarreau9650f372009-08-16 14:02:45 +0200360#ifdef SO_BINDTODEVICE
361 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100362 if (src->iface_name)
363 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200364#endif
365
Willy Tarreaua4380b42012-12-08 22:49:11 +0100366 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200367 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100368 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200369
370 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100371 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200372
373 do {
374 /* note: in case of retry, we may have to release a previously
375 * allocated port, hence this loop's construct.
376 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200377 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
378 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200379
380 if (!attempts)
381 break;
382 attempts--;
383
Willy Tarreaua4380b42012-12-08 22:49:11 +0100384 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200385 if (!fdinfo[fd].local_port)
Willy Tarreau9650f372009-08-16 14:02:45 +0200386 break;
387
Willy Tarreaua4380b42012-12-08 22:49:11 +0100388 fdinfo[fd].port_range = src->sport_range;
389 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200390
Willy Tarreaua4380b42012-12-08 22:49:11 +0100391 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200392 } while (ret != 0); /* binding NOK */
393 }
394 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100395 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200396 }
397
Willy Tarreaua4380b42012-12-08 22:49:11 +0100398 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200399 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
400 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200401 close(fd);
402
Willy Tarreau9650f372009-08-16 14:02:45 +0200403 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100404 Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200405 be->id);
406 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100407 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200408 be->id);
409 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100410 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200411 be->id);
412 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100413 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200414 be->id);
415 }
416 return SN_ERR_RESOURCE;
417 }
418 }
419
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200420 /* if a send_proxy is there, there are data */
421 data |= conn->send_proxy_ofs;
422
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400423#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200424 /* disabling tcp quick ack now allows the first request to leave the
425 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100426 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200427 */
Willy Tarreauf0837b22012-11-24 10:24:27 +0100428 if (delack == 2 || ((delack || data) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900429 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200430#endif
431
Willy Tarreaue803de22010-01-21 17:43:04 +0100432 if (global.tune.server_sndbuf)
433 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
434
435 if (global.tune.server_rcvbuf)
436 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
437
Willy Tarreau986a9d22012-08-30 21:11:38 +0200438 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200439 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
440
Willy Tarreaub1719512012-12-08 23:03:28 +0100441 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200442 char *msg;
Willy Tarreaub1719512012-12-08 23:03:28 +0100443 if (errno == EAGAIN || errno == EADDRNOTAVAIL)
Willy Tarreau9650f372009-08-16 14:02:45 +0200444 msg = "no free ports";
445 else
446 msg = "local address already in use";
447
Willy Tarreaub1719512012-12-08 23:03:28 +0100448 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200449 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
450 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200451 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100452 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9650f372009-08-16 14:02:45 +0200453 return SN_ERR_RESOURCE;
454 } else if (errno == ETIMEDOUT) {
455 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200456 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
457 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200458 close(fd);
459 return SN_ERR_SRVTO;
460 } else {
461 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
462 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200463 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
464 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200465 close(fd);
466 return SN_ERR_SRVCL;
467 }
468 }
469
Willy Tarreau986a9d22012-08-30 21:11:38 +0200470 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100471 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200472
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200473 /* Prepare to send a few handshakes related to the on-wire protocol. */
474 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200475 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200476
Willy Tarreauf79c8172013-10-21 16:30:56 +0200477 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100478 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200479 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200480
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200481 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200482 conn_force_close(conn);
Willy Tarreau15678ef2012-08-31 13:54:11 +0200483 return SN_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200484 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200485
Willy Tarreau14f8e862012-08-30 22:23:13 +0200486 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200487 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200488
Willy Tarreau9650f372009-08-16 14:02:45 +0200489 return SN_ERR_NONE; /* connection is OK */
490}
491
492
Willy Tarreau59b94792012-05-11 16:16:40 +0200493/*
494 * Retrieves the source address for the socket <fd>, with <dir> indicating
495 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
496 * success, -1 in case of error. The socket's source address is stored in
497 * <sa> for <salen> bytes.
498 */
499int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
500{
501 if (dir)
502 return getsockname(fd, sa, &salen);
503 else
504 return getpeername(fd, sa, &salen);
505}
506
507
508/*
509 * Retrieves the original destination address for the socket <fd>, with <dir>
510 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
511 * listener, if the original destination address was translated, the original
512 * address is retrieved. It returns 0 in case of success, -1 in case of error.
513 * The socket's source address is stored in <sa> for <salen> bytes.
514 */
515int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
516{
517 if (dir)
518 return getpeername(fd, sa, &salen);
519#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
520 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
521 return 0;
522#endif
523 else
524 return getsockname(fd, sa, &salen);
525}
526
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200527/* Tries to drain any pending incoming data from the socket to reach the
528 * receive shutdown. Returns non-zero if the shutdown was found, otherwise
529 * zero. This is useful to decide whether we can close a connection cleanly
530 * are we must kill it hard.
531 */
532int tcp_drain(int fd)
533{
534 int turns = 2;
535 int len;
536
537 while (turns) {
538#ifdef MSG_TRUNC_CLEARS_INPUT
539 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
540 if (len == -1 && errno == EFAULT)
541#endif
542 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
543
544 if (len == 0) /* cool, shutdown received */
545 return 1;
546
547 if (len < 0) {
548 if (errno == EAGAIN) /* connection not closed yet */
549 return 0;
550 if (errno == EINTR) /* oops, try again */
551 continue;
552 /* other errors indicate a dead connection, fine. */
553 return 1;
554 }
555 /* OK we read some data, let's try again once */
556 turns--;
557 }
558 /* some data are still present, give up */
559 return 0;
560}
561
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200562/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100563 * and we have nothing to send. It updates the FD polling status. It returns 0
564 * if it fails in a fatal way or needs to poll to go further, otherwise it
565 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
566 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
567 * errno. The error checking is done in two passes in order to limit the number
568 * of syscalls in the normal case :
569 * - if POLL_ERR was reported by the poller, we check for a pending error on
570 * the socket before proceeding. If found, it's assigned to errno so that
571 * upper layers can see it.
572 * - otherwise connect() is used to check the connection state again, since
573 * the getsockopt return cannot reliably be used to know if the connection
574 * is still pending or ready. This one may often return an error as well,
575 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200576 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200577int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200578{
Willy Tarreau239d7182012-07-23 18:53:03 +0200579 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100580 socklen_t lskerr;
581 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200582
Willy Tarreau80184712012-07-06 14:54:49 +0200583 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200584 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200585
Willy Tarreauf79c8172013-10-21 16:30:56 +0200586 if (!(conn->flags & CO_FL_CTRL_READY))
587 return 0;
588
Willy Tarreau80184712012-07-06 14:54:49 +0200589 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200590 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200591
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100592 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
593 * without FD_POLL_IN also indicates a hangup without input data meaning
594 * there was no connection.
595 */
596 if (fdtab[fd].ev & FD_POLL_ERR ||
597 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
598 skerr = 0;
599 lskerr = sizeof(skerr);
600 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
601 errno = skerr;
602 if (errno == EAGAIN)
603 errno = 0;
604 if (errno)
605 goto out_error;
606 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200607
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100608 /* Use connect() to check the state of the socket. This has the
609 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200610 * - error
611 * - connecting (EALREADY, EINPROGRESS)
612 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200613 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200614 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200615 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100616 __conn_sock_stop_recv(conn);
617 __conn_sock_poll_send(conn);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200618 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200619 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200620
Willy Tarreau2c6be842012-07-06 17:12:34 +0200621 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200622 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200623
Willy Tarreau2c6be842012-07-06 17:12:34 +0200624 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200625 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200626
Willy Tarreau076be252012-07-06 16:02:29 +0200627 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200628 * forward the event to the transport layer which will notify the
629 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200630 */
Willy Tarreau80184712012-07-06 14:54:49 +0200631 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200632 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200633
634 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200635 /* Write error on the file descriptor. Report it to the connection
636 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200637 */
638
Willy Tarreau26f4a042013-12-04 23:44:10 +0100639 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100640 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200641 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200642}
643
Willy Tarreau59b94792012-05-11 16:16:40 +0200644
Willy Tarreaue6b98942007-10-29 01:09:36 +0100645/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100646 * an error message in <errmsg> if the message is at most <errlen> bytes long
647 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
648 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100649 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
650 * was alright and that no message was returned. ERR_RETRYABLE means that an
651 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700652 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100653 * the meaning of the error, but just indicate that a message is present which
654 * should be displayed with the respective level. Last, ERR_ABORT indicates
655 * that it's pointless to try to start other listeners. No error message is
656 * returned if errlen is NULL.
657 */
658int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
659{
660 __label__ tcp_return, tcp_close_return;
661 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100662 int ext, ready;
663 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100664 const char *msg = NULL;
665
666 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100667 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100668 *errmsg = 0;
669
670 if (listener->state != LI_ASSIGNED)
671 return ERR_NONE; /* already bound */
672
673 err = ERR_NONE;
674
Willy Tarreau40aa0702013-03-10 23:51:38 +0100675 /* if the listener already has an fd assigned, then we were offered the
676 * fd by an external process (most likely the parent), and we don't want
677 * to create a new socket. However we still want to set a few flags on
678 * the socket.
679 */
680 fd = listener->fd;
681 ext = (fd >= 0);
682
683 if (!ext && (fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100684 err |= ERR_RETRYABLE | ERR_ALERT;
685 msg = "cannot create listening socket";
686 goto tcp_return;
687 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100688
Willy Tarreaue6b98942007-10-29 01:09:36 +0100689 if (fd >= global.maxsock) {
690 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
691 msg = "not enough free sockets (raise '-n' parameter)";
692 goto tcp_close_return;
693 }
694
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200695 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100696 err |= ERR_FATAL | ERR_ALERT;
697 msg = "cannot make socket non-blocking";
698 goto tcp_close_return;
699 }
700
Willy Tarreau40aa0702013-03-10 23:51:38 +0100701 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100702 /* not fatal but should be reported */
703 msg = "cannot do so_reuseaddr";
704 err |= ERR_ALERT;
705 }
706
707 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900708 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100709
Willy Tarreaue6b98942007-10-29 01:09:36 +0100710#ifdef SO_REUSEPORT
711 /* OpenBSD supports this. As it's present in old libc versions of Linux,
712 * it might return an error that we will silently ignore.
713 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100714 if (!ext)
715 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100716#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200717
Willy Tarreau40aa0702013-03-10 23:51:38 +0100718 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200719 switch (listener->addr.ss_family) {
720 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200721 if (1
722#if defined(IP_TRANSPARENT)
723 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
724#endif
725#if defined(IP_FREEBIND)
726 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
727#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200728#if defined(IP_BINDANY)
729 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
730#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200731#if defined(SO_BINDANY)
732 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
733#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200734 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200735 msg = "cannot make listening socket transparent";
736 err |= ERR_ALERT;
737 }
738 break;
739 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200740 if (1
741#if defined(IPV6_TRANSPARENT)
742 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
743#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200744#if defined(IPV6_BINDANY)
745 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
746#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200747#if defined(SO_BINDANY)
748 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
749#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200750 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200751 msg = "cannot make listening socket transparent";
752 err |= ERR_ALERT;
753 }
754 break;
755 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100756 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200757
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100758#ifdef SO_BINDTODEVICE
759 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100760 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100761 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100762 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100763 msg = "cannot bind listener to device";
764 err |= ERR_WARN;
765 }
766 }
767#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400768#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100769 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400770 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200771 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
772 msg = "cannot set MSS";
773 err |= ERR_WARN;
774 }
775 }
776#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200777#if defined(TCP_DEFER_ACCEPT)
778 if (listener->options & LI_O_DEF_ACCEPT) {
779 /* defer accept by up to one second */
780 int accept_delay = 1;
781 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
782 msg = "cannot enable DEFER_ACCEPT";
783 err |= ERR_WARN;
784 }
785 }
786#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200787#if defined(TCP_FASTOPEN)
788 if (listener->options & LI_O_TCP_FO) {
789 /* TFO needs a queue length, let's use the configured backlog */
790 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
791 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
792 msg = "cannot enable TCP_FASTOPEN";
793 err |= ERR_WARN;
794 }
795 }
796#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100797#if defined(IPV6_V6ONLY)
798 if (listener->options & LI_O_V6ONLY)
799 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100800 else if (listener->options & LI_O_V4V6)
801 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100802#endif
803
Willy Tarreau40aa0702013-03-10 23:51:38 +0100804 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100805 err |= ERR_RETRYABLE | ERR_ALERT;
806 msg = "cannot bind socket";
807 goto tcp_close_return;
808 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100809
Willy Tarreau40aa0702013-03-10 23:51:38 +0100810 ready = 0;
811 ready_len = sizeof(ready);
812 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
813 ready = 0;
814
815 if (!(ext && ready) && /* only listen if not already done by external process */
816 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100817 err |= ERR_RETRYABLE | ERR_ALERT;
818 msg = "cannot listen to socket";
819 goto tcp_close_return;
820 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100821
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400822#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200823 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900824 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200825#endif
826
Willy Tarreaue6b98942007-10-29 01:09:36 +0100827 /* the socket is ready */
828 listener->fd = fd;
829 listener->state = LI_LISTEN;
830
Willy Tarreaueabf3132008-08-29 23:36:51 +0200831 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200832 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200833 fd_insert(fd);
834
Willy Tarreaue6b98942007-10-29 01:09:36 +0100835 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100836 if (msg && errlen) {
837 char pn[INET6_ADDRSTRLEN];
838
Willy Tarreau631f01c2011-09-05 00:36:48 +0200839 addr_to_str(&listener->addr, pn, sizeof(pn));
840 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100841 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100842 return err;
843
844 tcp_close_return:
845 close(fd);
846 goto tcp_return;
847}
848
849/* This function creates all TCP sockets bound to the protocol entry <proto>.
850 * It is intended to be used as the protocol's bind_all() function.
851 * The sockets will be registered but not added to any fd_set, in order not to
852 * loose them across the fork(). A call to enable_all_listeners() is needed
853 * to complete initialization. The return value is composed from ERR_*.
854 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200855static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100856{
857 struct listener *listener;
858 int err = ERR_NONE;
859
860 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200861 err |= tcp_bind_listener(listener, errmsg, errlen);
862 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100863 break;
864 }
865
866 return err;
867}
868
869/* Add listener to the list of tcpv4 listeners. The listener's state
870 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
871 * listeners is updated. This is the function to use to add a new listener.
872 */
873void tcpv4_add_listener(struct listener *listener)
874{
875 if (listener->state != LI_INIT)
876 return;
877 listener->state = LI_ASSIGNED;
878 listener->proto = &proto_tcpv4;
879 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
880 proto_tcpv4.nb_listeners++;
881}
882
883/* Add listener to the list of tcpv4 listeners. The listener's state
884 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
885 * listeners is updated. This is the function to use to add a new listener.
886 */
887void tcpv6_add_listener(struct listener *listener)
888{
889 if (listener->state != LI_INIT)
890 return;
891 listener->state = LI_ASSIGNED;
892 listener->proto = &proto_tcpv6;
893 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
894 proto_tcpv6.nb_listeners++;
895}
896
Willy Tarreauedcf6682008-11-30 23:15:34 +0100897/* This function performs the TCP request analysis on the current request. It
898 * returns 1 if the processing can continue on next analysers, or zero if it
899 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200900 * request. It relies on buffers flags, and updates s->req->analysers. The
901 * function may be called for frontend rules and backend rules. It only relies
902 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100903 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200904int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100905{
906 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200907 struct stksess *ts;
908 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100909 int partial;
910
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100911 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 +0100912 now_ms, __FUNCTION__,
913 s,
914 req,
915 req->rex, req->wex,
916 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200917 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100918 req->analysers);
919
Willy Tarreauedcf6682008-11-30 23:15:34 +0100920 /* We don't know whether we have enough data, so must proceed
921 * this way :
922 * - iterate through all rules in their declaration order
923 * - if one rule returns MISS, it means the inspect delay is
924 * not over yet, then return immediately, otherwise consider
925 * it as a non-match.
926 * - if one rule returns OK, then return OK
927 * - if one rule returns KO, then return KO
928 */
929
Willy Tarreau9b28e032012-10-12 23:49:43 +0200930 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200931 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200932 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100933 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200934 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100935
Willy Tarreaufb356202010-08-03 14:02:05 +0200936 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +0100937 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100938
939 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200940 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100941 if (ret == ACL_TEST_MISS) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200942 channel_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100943 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200944 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +0100945 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100946 return 0;
947 }
948
949 ret = acl_pass(ret);
950 if (rule->cond->pol == ACL_COND_UNLESS)
951 ret = !ret;
952 }
953
954 if (ret) {
955 /* we have a matching rule. */
956 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200957 channel_abort(req);
958 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100959 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200960
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100961 s->be->be_counters.denied_req++;
962 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200963 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200964 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200965
Willy Tarreauedcf6682008-11-30 23:15:34 +0100966 if (!(s->flags & SN_ERR_MASK))
967 s->flags |= SN_ERR_PRXCOND;
968 if (!(s->flags & SN_FINST_MASK))
969 s->flags |= SN_FINST_R;
970 return 0;
971 }
Willy Tarreau44778ad2013-10-30 19:24:00 +0100972 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100973 /* Note: only the first valid tracking parameter of each
974 * applies.
975 */
976 struct stktable_key *key;
977
Willy Tarreau44778ad2013-10-30 19:24:00 +0100978 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
979 continue;
980
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100981 t = rule->act_prm.trk_ctr.table.t;
982 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
983
984 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +0200985 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
986 if (s->fe != s->be)
Willy Tarreaube4a3ef2013-06-17 15:04:07 +0200987 s->flags |= SN_BE_TRACK_SC0 << tcp_trk_idx(rule->action);
Willy Tarreaud1f96522010-08-03 19:34:32 +0200988 }
989 }
990 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100991 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200992 break;
993 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100994 }
995 }
996
997 /* if we get there, it means we have no rule which matches, or
998 * we have an explicit accept, so we apply the default accept.
999 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001000 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001001 req->analyse_exp = TICK_ETERNITY;
1002 return 1;
1003}
1004
Emeric Brun97679e72010-09-23 17:56:44 +02001005/* This function performs the TCP response analysis on the current response. It
1006 * returns 1 if the processing can continue on next analysers, or zero if it
1007 * needs more data, encounters an error, or wants to immediately abort the
1008 * response. It relies on buffers flags, and updates s->rep->analysers. The
1009 * function may be called for backend rules.
1010 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001011int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001012{
1013 struct tcp_rule *rule;
1014 int partial;
1015
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001016 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 +02001017 now_ms, __FUNCTION__,
1018 s,
1019 rep,
1020 rep->rex, rep->wex,
1021 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001022 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001023 rep->analysers);
1024
1025 /* We don't know whether we have enough data, so must proceed
1026 * this way :
1027 * - iterate through all rules in their declaration order
1028 * - if one rule returns MISS, it means the inspect delay is
1029 * not over yet, then return immediately, otherwise consider
1030 * it as a non-match.
1031 * - if one rule returns OK, then return OK
1032 * - if one rule returns KO, then return KO
1033 */
1034
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001035 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001036 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001037 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001038 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001039
1040 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001041 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001042
1043 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001044 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001045 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001046 /* just set the analyser timeout once at the beginning of the response */
1047 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001048 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001049 return 0;
1050 }
1051
1052 ret = acl_pass(ret);
1053 if (rule->cond->pol == ACL_COND_UNLESS)
1054 ret = !ret;
1055 }
1056
1057 if (ret) {
1058 /* we have a matching rule. */
1059 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001060 channel_abort(rep);
1061 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001062 rep->analysers = 0;
1063
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001064 s->be->be_counters.denied_resp++;
1065 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001066 if (s->listener->counters)
1067 s->listener->counters->denied_resp++;
1068
1069 if (!(s->flags & SN_ERR_MASK))
1070 s->flags |= SN_ERR_PRXCOND;
1071 if (!(s->flags & SN_FINST_MASK))
1072 s->flags |= SN_FINST_D;
1073 return 0;
1074 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001075 else if (rule->action == TCP_ACT_CLOSE) {
1076 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1077 si_shutr(rep->prod);
1078 si_shutw(rep->prod);
1079 break;
1080 }
Emeric Brun97679e72010-09-23 17:56:44 +02001081 else {
1082 /* otherwise accept */
1083 break;
1084 }
1085 }
1086 }
1087
1088 /* if we get there, it means we have no rule which matches, or
1089 * we have an explicit accept, so we apply the default accept.
1090 */
1091 rep->analysers &= ~an_bit;
1092 rep->analyse_exp = TICK_ETERNITY;
1093 return 1;
1094}
1095
1096
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001097/* This function performs the TCP layer4 analysis on the current request. It
1098 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1099 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001100 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001101 */
1102int tcp_exec_req_rules(struct session *s)
1103{
1104 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001105 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001106 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001107 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001108 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001109 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001110
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001111 if (!conn)
1112 return result;
1113
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001114 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001115 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001116
1117 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001118 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001119 ret = acl_pass(ret);
1120 if (rule->cond->pol == ACL_COND_UNLESS)
1121 ret = !ret;
1122 }
1123
1124 if (ret) {
1125 /* we have a matching rule. */
1126 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001127 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001128 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001129 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001130
1131 if (!(s->flags & SN_ERR_MASK))
1132 s->flags |= SN_ERR_PRXCOND;
1133 if (!(s->flags & SN_FINST_MASK))
1134 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001135 result = 0;
1136 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001137 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001138 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001139 /* Note: only the first valid tracking parameter of each
1140 * applies.
1141 */
1142 struct stktable_key *key;
1143
Willy Tarreau44778ad2013-10-30 19:24:00 +01001144 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
1145 continue;
1146
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001147 t = rule->act_prm.trk_ctr.table.t;
1148 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1149
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001150 if (key && (ts = stktable_get_entry(t, key)))
1151 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001152 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001153 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001154 conn->flags |= CO_FL_ACCEPT_PROXY;
1155 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001156 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001157 else {
1158 /* otherwise it's an accept */
1159 break;
1160 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001161 }
1162 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001163 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001164}
1165
Emeric Brun97679e72010-09-23 17:56:44 +02001166/* Parse a tcp-response rule. Return a negative value in case of failure */
1167static int tcp_parse_response_rule(char **args, int arg, int section_type,
1168 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau80aca902013-01-07 15:42:20 +01001169 struct tcp_rule *rule, char **err,
1170 unsigned int where)
Emeric Brun97679e72010-09-23 17:56:44 +02001171{
1172 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001173 memprintf(err, "%s %s is only allowed in 'backend' sections",
1174 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001175 return -1;
1176 }
1177
1178 if (strcmp(args[arg], "accept") == 0) {
1179 arg++;
1180 rule->action = TCP_ACT_ACCEPT;
1181 }
1182 else if (strcmp(args[arg], "reject") == 0) {
1183 arg++;
1184 rule->action = TCP_ACT_REJECT;
1185 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001186 else if (strcmp(args[arg], "close") == 0) {
1187 arg++;
1188 rule->action = TCP_ACT_CLOSE;
1189 }
Emeric Brun97679e72010-09-23 17:56:44 +02001190 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001191 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001192 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001193 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001194 return -1;
1195 }
1196
1197 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001198 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1199 memprintf(err,
1200 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1201 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001202 return -1;
1203 }
1204 }
1205 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001206 memprintf(err,
1207 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001208 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1209 return -1;
1210 }
1211 return 0;
1212}
1213
1214
1215
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001216/* Parse a tcp-request rule. Return a negative value in case of failure */
1217static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001218 struct proxy *curpx, struct proxy *defpx,
1219 struct tcp_rule *rule, char **err,
1220 unsigned int where)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001221{
1222 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001223 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1224 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001225 return -1;
1226 }
1227
1228 if (!strcmp(args[arg], "accept")) {
1229 arg++;
1230 rule->action = TCP_ACT_ACCEPT;
1231 }
1232 else if (!strcmp(args[arg], "reject")) {
1233 arg++;
1234 rule->action = TCP_ACT_REJECT;
1235 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001236 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1237 args[arg][9] == '\0' && args[arg][8] >= '0' &&
1238 args[arg][8] <= '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001239 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001240 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001241
1242 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001243
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001244 curpx->conf.args.ctx = ARGC_TRK;
Willy Tarreau975c1782013-12-12 23:16:54 +01001245 expr = sample_parse_expr(args, &arg, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001246 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001247 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001248 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001249 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001250 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001251 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001252
Willy Tarreau80aca902013-01-07 15:42:20 +01001253 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001254 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001255 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001256 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001257 free(expr);
1258 return -1;
1259 }
1260
1261 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001262 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001263
1264 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001265 arg++;
1266 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001267 memprintf(err,
1268 "'%s %s %s' : missing table name",
1269 args[0], args[1], args[kw]);
1270 free(expr);
1271 return -1;
1272 }
1273 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001274 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001275 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001276 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001277 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001278 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001279 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001280 else if (strcmp(args[arg], "expect-proxy") == 0) {
1281 if (strcmp(args[arg+1], "layer4") != 0) {
1282 memprintf(err,
1283 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1284 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1285 return -1;
1286 }
1287
1288 if (!(where & SMP_VAL_FE_CON_ACC)) {
1289 memprintf(err,
1290 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1291 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1292 return -1;
1293 }
1294
1295 arg += 2;
1296 rule->action = TCP_ACT_EXPECT_PX;
1297 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001298 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001299 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001300 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1301 " in %s '%s' (got '%s')",
1302 args[0], args[1], MAX_SESS_STKCTR, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001303 return -1;
1304 }
1305
1306 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001307 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1308 memprintf(err,
1309 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1310 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001311 return -1;
1312 }
1313 }
1314 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001315 memprintf(err,
1316 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001317 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1318 return -1;
1319 }
1320 return 0;
1321}
1322
Emeric Brun97679e72010-09-23 17:56:44 +02001323/* This function should be called to parse a line starting with the "tcp-response"
1324 * keyword.
1325 */
1326static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001327 struct proxy *defpx, const char *file, int line,
1328 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001329{
1330 const char *ptr = NULL;
1331 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001332 int warn = 0;
1333 int arg;
1334 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001335 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001336 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001337 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001338
1339 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001340 memprintf(err, "missing argument for '%s' in %s '%s'",
1341 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001342 return -1;
1343 }
1344
1345 if (strcmp(args[1], "inspect-delay") == 0) {
1346 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001347 memprintf(err, "%s %s is only allowed in 'backend' sections",
1348 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001349 return -1;
1350 }
1351
1352 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001353 memprintf(err,
1354 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1355 args[0], args[1], proxy_type_str(curpx), curpx->id);
1356 if (ptr)
1357 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001358 return -1;
1359 }
1360
1361 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001362 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1363 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001364 return 1;
1365 }
1366 curpx->tcp_rep.inspect_delay = val;
1367 return 0;
1368 }
1369
Simon Hormande072bd2011-06-24 15:11:37 +09001370 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001371 LIST_INIT(&rule->list);
1372 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001373 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001374
1375 if (strcmp(args[1], "content") == 0) {
1376 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001377
1378 if (curpx->cap & PR_CAP_FE)
1379 where |= SMP_VAL_FE_RES_CNT;
1380 if (curpx->cap & PR_CAP_BE)
1381 where |= SMP_VAL_BE_RES_CNT;
1382
1383 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001384 goto error;
1385
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001386 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1387 if (acl) {
1388 if (acl->name && *acl->name)
1389 memprintf(err,
1390 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1391 acl->name, args[0], args[1], sample_ckp_names(where));
1392 else
1393 memprintf(err,
1394 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1395 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001396 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001397 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001398
Emeric Brun97679e72010-09-23 17:56:44 +02001399 warn++;
1400 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001401 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1402 if (acl->name && *acl->name)
1403 memprintf(err,
1404 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001405 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001406 else
1407 memprintf(err,
1408 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001409 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001410 warn++;
1411 }
Emeric Brun97679e72010-09-23 17:56:44 +02001412
1413 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1414 }
1415 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001416 memprintf(err,
1417 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1418 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001419 goto error;
1420 }
1421
1422 return warn;
1423 error:
1424 free(rule);
1425 return -1;
1426}
1427
1428
Willy Tarreaub6866442008-07-14 23:54:42 +02001429/* This function should be called to parse a line starting with the "tcp-request"
1430 * keyword.
1431 */
1432static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001433 struct proxy *defpx, const char *file, int line,
1434 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001435{
1436 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001437 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001438 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001439 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001440 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001441 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001442 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001443 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001444
1445 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001446 if (curpx == defpx)
1447 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1448 else
1449 memprintf(err, "missing argument for '%s' in %s '%s'",
1450 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001451 return -1;
1452 }
1453
1454 if (!strcmp(args[1], "inspect-delay")) {
1455 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001456 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1457 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001458 return -1;
1459 }
1460
Willy Tarreaub6866442008-07-14 23:54:42 +02001461 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001462 memprintf(err,
1463 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1464 args[0], args[1], proxy_type_str(curpx), curpx->id);
1465 if (ptr)
1466 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001467 return -1;
1468 }
1469
1470 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001471 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1472 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001473 return 1;
1474 }
1475 curpx->tcp_req.inspect_delay = val;
1476 return 0;
1477 }
1478
Simon Hormande072bd2011-06-24 15:11:37 +09001479 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001480 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001481 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001482 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001483
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001484 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001485 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001486
1487 if (curpx->cap & PR_CAP_FE)
1488 where |= SMP_VAL_FE_REQ_CNT;
1489 if (curpx->cap & PR_CAP_BE)
1490 where |= SMP_VAL_BE_REQ_CNT;
1491
1492 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001493 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001494
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001495 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1496 if (acl) {
1497 if (acl->name && *acl->name)
1498 memprintf(err,
1499 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1500 acl->name, args[0], args[1], sample_ckp_names(where));
1501 else
1502 memprintf(err,
1503 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1504 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001505 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001506 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001507
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001508 warn++;
1509 }
1510 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1511 if (acl->name && *acl->name)
1512 memprintf(err,
1513 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001514 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001515 else
1516 memprintf(err,
1517 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001518 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001519 warn++;
1520 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001521
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001522 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001523 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001524 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001525 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001526
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001527 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001528 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1529 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001530 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001531 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001532
Willy Tarreau80aca902013-01-07 15:42:20 +01001533 where |= SMP_VAL_FE_CON_ACC;
1534
1535 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001536 goto error;
1537
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001538 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1539 if (acl) {
1540 if (acl->name && *acl->name)
1541 memprintf(err,
1542 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1543 acl->name, args[0], args[1], sample_ckp_names(where));
1544 else
1545 memprintf(err,
1546 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1547 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001548 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001549 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001550
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001551 warn++;
1552 }
1553 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1554 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001555 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001556 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001557 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001558 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001559 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001560 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001561 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001562 warn++;
1563 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001564
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001565 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001566 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001567 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001568 if (curpx == defpx)
1569 memprintf(err,
1570 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1571 args[0], args[1]);
1572 else
1573 memprintf(err,
1574 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001575 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001576 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001577 }
1578
Willy Tarreau1a687942010-05-23 22:40:30 +02001579 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001580 error:
1581 free(rule);
1582 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001583}
1584
Willy Tarreau645513a2010-05-24 20:55:15 +02001585
1586/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001587/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001588/************************************************************************/
1589
Willy Tarreau4a129812012-04-25 17:31:42 +02001590/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001591static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001592smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001593 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001594{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001595 struct connection *cli_conn = objt_conn(l4->si[0].end);
1596
1597 if (!cli_conn)
1598 return 0;
1599
1600 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001601 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001602 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001603 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001604 break;
1605 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001606 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001607 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001608 break;
1609 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001610 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001611 }
Emeric Brunf769f512010-10-22 17:14:01 +02001612
Willy Tarreau37406352012-04-23 16:16:37 +02001613 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001614 return 1;
1615}
1616
Willy Tarreaua5e37562011-12-16 17:06:15 +01001617/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001618static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001619smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001620 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001621{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001622 struct connection *cli_conn = objt_conn(l4->si[0].end);
1623
1624 if (!cli_conn)
1625 return 0;
1626
Willy Tarreauf853c462012-04-23 18:53:56 +02001627 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001628 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001629 return 0;
1630
Willy Tarreau37406352012-04-23 16:16:37 +02001631 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001632 return 1;
1633}
1634
Willy Tarreau4a129812012-04-25 17:31:42 +02001635/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001636static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001637smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001638 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001639{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001640 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001641
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001642 if (!cli_conn)
1643 return 0;
1644
1645 conn_get_to_addr(cli_conn);
1646
1647 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001648 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001649 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001650 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001651 break;
1652 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001653 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001654 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001655 break;
1656 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001657 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001658 }
Emeric Brunf769f512010-10-22 17:14:01 +02001659
Willy Tarreau37406352012-04-23 16:16:37 +02001660 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001661 return 1;
1662}
1663
Willy Tarreaua5e37562011-12-16 17:06:15 +01001664/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001665static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001666smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001667 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001668{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001669 struct connection *cli_conn = objt_conn(l4->si[0].end);
1670
1671 if (!cli_conn)
1672 return 0;
1673
1674 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001675
Willy Tarreauf853c462012-04-23 18:53:56 +02001676 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001677 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001678 return 0;
1679
Willy Tarreau37406352012-04-23 16:16:37 +02001680 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001681 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001682}
1683
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001684#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001685/* parse the "v4v6" bind keyword */
1686static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1687{
1688 struct listener *l;
1689
1690 list_for_each_entry(l, &conf->listeners, by_bind) {
1691 if (l->addr.ss_family == AF_INET6)
1692 l->options |= LI_O_V4V6;
1693 }
1694
1695 return 0;
1696}
1697
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001698/* parse the "v6only" bind keyword */
1699static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1700{
1701 struct listener *l;
1702
1703 list_for_each_entry(l, &conf->listeners, by_bind) {
1704 if (l->addr.ss_family == AF_INET6)
1705 l->options |= LI_O_V6ONLY;
1706 }
1707
1708 return 0;
1709}
1710#endif
1711
Pieter Baauwd551fb52013-05-08 22:49:23 +02001712#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001713/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001714static 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 +02001715{
1716 struct listener *l;
1717
Willy Tarreau4348fad2012-09-20 16:48:07 +02001718 list_for_each_entry(l, &conf->listeners, by_bind) {
1719 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1720 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001721 }
1722
Willy Tarreau44791242012-09-12 23:27:21 +02001723 return 0;
1724}
1725#endif
1726
1727#ifdef TCP_DEFER_ACCEPT
1728/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001729static 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 +02001730{
1731 struct listener *l;
1732
Willy Tarreau4348fad2012-09-20 16:48:07 +02001733 list_for_each_entry(l, &conf->listeners, by_bind) {
1734 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1735 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001736 }
1737
Willy Tarreau44791242012-09-12 23:27:21 +02001738 return 0;
1739}
1740#endif
1741
Willy Tarreau1c862c52012-10-05 16:21:00 +02001742#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001743/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001744static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1745{
1746 struct listener *l;
1747
1748 list_for_each_entry(l, &conf->listeners, by_bind) {
1749 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1750 l->options |= LI_O_TCP_FO;
1751 }
1752
1753 return 0;
1754}
1755#endif
1756
Willy Tarreau44791242012-09-12 23:27:21 +02001757#ifdef TCP_MAXSEG
1758/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001759static 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 +02001760{
1761 struct listener *l;
1762 int mss;
1763
Willy Tarreau44791242012-09-12 23:27:21 +02001764 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001765 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001766 return ERR_ALERT | ERR_FATAL;
1767 }
1768
1769 mss = atoi(args[cur_arg + 1]);
1770 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001771 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001772 return ERR_ALERT | ERR_FATAL;
1773 }
1774
Willy Tarreau4348fad2012-09-20 16:48:07 +02001775 list_for_each_entry(l, &conf->listeners, by_bind) {
1776 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1777 l->maxseg = mss;
1778 }
Willy Tarreau44791242012-09-12 23:27:21 +02001779
1780 return 0;
1781}
1782#endif
1783
1784#ifdef SO_BINDTODEVICE
1785/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001786static 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 +02001787{
1788 struct listener *l;
1789
Willy Tarreau44791242012-09-12 23:27:21 +02001790 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001791 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001792 return ERR_ALERT | ERR_FATAL;
1793 }
1794
Willy Tarreau4348fad2012-09-20 16:48:07 +02001795 list_for_each_entry(l, &conf->listeners, by_bind) {
1796 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1797 l->interface = strdup(args[cur_arg + 1]);
1798 }
Willy Tarreau44791242012-09-12 23:27:21 +02001799
1800 global.last_checks |= LSTCHK_NETADM;
1801 return 0;
1802}
1803#endif
1804
Willy Tarreaudc13c112013-06-21 23:16:39 +02001805static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001806 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001807 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001808 { 0, NULL, NULL },
1809}};
1810
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001811
Willy Tarreau61612d42012-04-19 18:42:05 +02001812/* Note: must not be declared <const> as its list will be overwritten.
1813 * Please take care of keeping this list alphabetically sorted.
1814 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001815static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001816 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02001817}};
1818
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001819
Willy Tarreau4a129812012-04-25 17:31:42 +02001820/* Note: must not be declared <const> as its list will be overwritten.
1821 * Note: fetches that may return multiple types must be declared as the lowest
1822 * common denominator, the type that can be casted into all other ones. For
1823 * instance v4/v6 must be declared v4.
1824 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001825static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001826 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1827 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1828 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1829 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1830 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001831}};
1832
Willy Tarreau44791242012-09-12 23:27:21 +02001833/************************************************************************/
1834/* All supported bind keywords must be declared here. */
1835/************************************************************************/
1836
1837/* Note: must not be declared <const> as its list will be overwritten.
1838 * Please take care of keeping this list alphabetically sorted, doing so helps
1839 * all code contributors.
1840 * Optional keywords are also declared with a NULL ->parse() function so that
1841 * the config parser can report an appropriate error when a known keyword was
1842 * not enabled.
1843 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001844static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001845#ifdef TCP_DEFER_ACCEPT
1846 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1847#endif
1848#ifdef SO_BINDTODEVICE
1849 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1850#endif
1851#ifdef TCP_MAXSEG
1852 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1853#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001854#ifdef TCP_FASTOPEN
1855 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1856#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001857#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001858 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1859#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001860#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001861 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001862 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1863#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001864 /* the versions with the NULL parse function*/
1865 { "defer-accept", NULL, 0 },
1866 { "interface", NULL, 1 },
1867 { "mss", NULL, 1 },
1868 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001869 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001870 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001871 { NULL, NULL, 0 },
1872}};
1873
Willy Tarreaue6b98942007-10-29 01:09:36 +01001874__attribute__((constructor))
1875static void __tcp_protocol_init(void)
1876{
1877 protocol_register(&proto_tcpv4);
1878 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001879 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001880 cfg_register_keywords(&cfg_kws);
1881 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02001882 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001883}
1884
1885
1886/*
1887 * Local variables:
1888 * c-indent-level: 8
1889 * c-basic-offset: 8
1890 * End:
1891 */