blob: cd056786edab619ea86149560946bf7d226e9178 [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 Tarreau9ce70132014-01-24 16:08:19 +0100282 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
283
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100284 switch (obj_type(conn->target)) {
285 case OBJ_TYPE_PROXY:
286 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100287 srv = NULL;
288 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100289 case OBJ_TYPE_SERVER:
290 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100291 be = srv->proxy;
292 break;
293 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100294 conn->flags |= CO_FL_ERROR;
Willy Tarreauac825402011-03-04 22:04:29 +0100295 return SN_ERR_INTERNAL;
296 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200297
Willy Tarreau986a9d22012-08-30 21:11:38 +0200298 if ((fd = conn->t.sock.fd = socket(conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200299 qfprintf(stderr, "Cannot get a server socket.\n");
300
Willy Tarreau9ce70132014-01-24 16:08:19 +0100301 if (errno == ENFILE) {
302 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200303 send_log(be, LOG_EMERG,
304 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
305 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100306 }
307 else if (errno == EMFILE) {
308 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200309 send_log(be, LOG_EMERG,
310 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
311 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100312 }
313 else if (errno == ENOBUFS || errno == ENOMEM) {
314 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200315 send_log(be, LOG_EMERG,
316 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
317 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100318 }
319 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
320 conn->err_code = CO_ER_NOPROTO;
321 }
322 else
323 conn->err_code = CO_ER_SOCK_ERR;
324
Willy Tarreau9650f372009-08-16 14:02:45 +0200325 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100326 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200327 return SN_ERR_RESOURCE;
328 }
329
330 if (fd >= global.maxsock) {
331 /* do not log anything there, it's a normal condition when this option
332 * is used to serialize connections to a server !
333 */
334 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
335 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100336 conn->err_code = CO_ER_CONF_FDLIM;
337 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200338 return SN_ERR_PRXCOND; /* it is a configuration limit */
339 }
340
341 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900342 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200343 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
344 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100345 conn->err_code = CO_ER_SOCK_ERR;
346 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200347 return SN_ERR_INTERNAL;
348 }
349
350 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900351 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200352
Willy Tarreau9650f372009-08-16 14:02:45 +0200353 /* allow specific binding :
354 * - server-specific at first
355 * - proxy-specific next
356 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100357 if (srv && srv->conn_src.opts & CO_SRC_BIND)
358 src = &srv->conn_src;
359 else if (be->conn_src.opts & CO_SRC_BIND)
360 src = &be->conn_src;
361 else
362 src = NULL;
363
364 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200365 int ret, flags = 0;
366
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200367 if (is_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100368 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100369 case CO_SRC_TPROXY_ADDR:
370 case CO_SRC_TPROXY_CLI:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200371 flags = 3;
372 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100373 case CO_SRC_TPROXY_CIP:
374 case CO_SRC_TPROXY_DYN:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200375 flags = 1;
376 break;
377 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200378 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200379
Willy Tarreau9650f372009-08-16 14:02:45 +0200380#ifdef SO_BINDTODEVICE
381 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100382 if (src->iface_name)
383 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200384#endif
385
Willy Tarreaua4380b42012-12-08 22:49:11 +0100386 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200387 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100388 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200389
390 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100391 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200392
393 do {
394 /* note: in case of retry, we may have to release a previously
395 * allocated port, hence this loop's construct.
396 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200397 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
398 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200399
400 if (!attempts)
401 break;
402 attempts--;
403
Willy Tarreaua4380b42012-12-08 22:49:11 +0100404 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100405 if (!fdinfo[fd].local_port) {
406 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200407 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100408 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200409
Willy Tarreaua4380b42012-12-08 22:49:11 +0100410 fdinfo[fd].port_range = src->sport_range;
411 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200412
Willy Tarreaua4380b42012-12-08 22:49:11 +0100413 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100414 if (ret != 0)
415 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200416 } while (ret != 0); /* binding NOK */
417 }
418 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100419 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100420 if (ret != 0)
421 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200422 }
423
Willy Tarreaua4380b42012-12-08 22:49:11 +0100424 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200425 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
426 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200427 close(fd);
428
Willy Tarreau9650f372009-08-16 14:02:45 +0200429 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100430 Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200431 be->id);
432 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100433 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200434 be->id);
435 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100436 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200437 be->id);
438 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100439 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200440 be->id);
441 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100442 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200443 return SN_ERR_RESOURCE;
444 }
445 }
446
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200447 /* if a send_proxy is there, there are data */
448 data |= conn->send_proxy_ofs;
449
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400450#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200451 /* disabling tcp quick ack now allows the first request to leave the
452 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100453 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200454 */
Willy Tarreauf0837b22012-11-24 10:24:27 +0100455 if (delack == 2 || ((delack || data) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900456 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200457#endif
458
Willy Tarreaue803de22010-01-21 17:43:04 +0100459 if (global.tune.server_sndbuf)
460 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
461
462 if (global.tune.server_rcvbuf)
463 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
464
Willy Tarreau986a9d22012-08-30 21:11:38 +0200465 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200466 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
467
Willy Tarreaub1719512012-12-08 23:03:28 +0100468 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200469 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100470 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200471 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100472 conn->err_code = CO_ER_FREE_PORTS;
473 }
474 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200475 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100476 conn->err_code = CO_ER_ADDR_INUSE;
477 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200478
Willy Tarreaub1719512012-12-08 23:03:28 +0100479 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200480 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
481 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200482 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100483 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100484 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200485 return SN_ERR_RESOURCE;
486 } else if (errno == ETIMEDOUT) {
487 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200488 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
489 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200490 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100491 conn->err_code = CO_ER_SOCK_ERR;
492 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200493 return SN_ERR_SRVTO;
494 } else {
495 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
496 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200497 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
498 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200499 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100500 conn->err_code = CO_ER_SOCK_ERR;
501 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200502 return SN_ERR_SRVCL;
503 }
504 }
505
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100506 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200507
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200508 /* Prepare to send a few handshakes related to the on-wire protocol. */
509 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200510 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200511
Willy Tarreauf79c8172013-10-21 16:30:56 +0200512 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100513 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200514 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200515
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200516 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200517 conn_force_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100518 conn->flags |= CO_FL_ERROR;
Willy Tarreau15678ef2012-08-31 13:54:11 +0200519 return SN_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200520 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200521
Willy Tarreau14f8e862012-08-30 22:23:13 +0200522 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200523 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200524
Willy Tarreau9650f372009-08-16 14:02:45 +0200525 return SN_ERR_NONE; /* connection is OK */
526}
527
528
Willy Tarreau59b94792012-05-11 16:16:40 +0200529/*
530 * Retrieves the source address for the socket <fd>, with <dir> indicating
531 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
532 * success, -1 in case of error. The socket's source address is stored in
533 * <sa> for <salen> bytes.
534 */
535int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
536{
537 if (dir)
538 return getsockname(fd, sa, &salen);
539 else
540 return getpeername(fd, sa, &salen);
541}
542
543
544/*
545 * Retrieves the original destination address for the socket <fd>, with <dir>
546 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
547 * listener, if the original destination address was translated, the original
548 * address is retrieved. It returns 0 in case of success, -1 in case of error.
549 * The socket's source address is stored in <sa> for <salen> bytes.
550 */
551int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
552{
553 if (dir)
554 return getpeername(fd, sa, &salen);
555#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
556 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
557 return 0;
558#endif
559 else
560 return getsockname(fd, sa, &salen);
561}
562
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200563/* Tries to drain any pending incoming data from the socket to reach the
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100564 * receive shutdown. Returns positive if the shutdown was found, negative
565 * if EAGAIN was hit, otherwise zero. This is useful to decide whether we
566 * can close a connection cleanly are we must kill it hard.
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200567 */
568int tcp_drain(int fd)
569{
570 int turns = 2;
571 int len;
572
573 while (turns) {
574#ifdef MSG_TRUNC_CLEARS_INPUT
575 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
576 if (len == -1 && errno == EFAULT)
577#endif
578 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
579
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100580 if (len == 0) {
581 /* cool, shutdown received */
582 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200583 return 1;
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100584 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200585
586 if (len < 0) {
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100587 if (errno == EAGAIN) {
588 /* connection not closed yet */
589 fd_cant_recv(fd);
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100590 return -1;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100591 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200592 if (errno == EINTR) /* oops, try again */
593 continue;
594 /* other errors indicate a dead connection, fine. */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100595 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200596 return 1;
597 }
598 /* OK we read some data, let's try again once */
599 turns--;
600 }
601 /* some data are still present, give up */
602 return 0;
603}
604
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200605/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100606 * and we have nothing to send. It updates the FD polling status. It returns 0
607 * if it fails in a fatal way or needs to poll to go further, otherwise it
608 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
609 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
610 * errno. The error checking is done in two passes in order to limit the number
611 * of syscalls in the normal case :
612 * - if POLL_ERR was reported by the poller, we check for a pending error on
613 * the socket before proceeding. If found, it's assigned to errno so that
614 * upper layers can see it.
615 * - otherwise connect() is used to check the connection state again, since
616 * the getsockopt return cannot reliably be used to know if the connection
617 * is still pending or ready. This one may often return an error as well,
618 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200619 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200620int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200621{
Willy Tarreau239d7182012-07-23 18:53:03 +0200622 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100623 socklen_t lskerr;
624 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200625
Willy Tarreau80184712012-07-06 14:54:49 +0200626 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200627 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200628
Willy Tarreau3c728722014-01-23 13:50:42 +0100629 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200630 return 0;
631
Willy Tarreau80184712012-07-06 14:54:49 +0200632 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200633 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200634
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100635 if (!fd_send_ready(fd))
636 return 0;
637
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100638 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
639 * without FD_POLL_IN also indicates a hangup without input data meaning
640 * there was no connection.
641 */
642 if (fdtab[fd].ev & FD_POLL_ERR ||
643 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
644 skerr = 0;
645 lskerr = sizeof(skerr);
646 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
647 errno = skerr;
648 if (errno == EAGAIN)
649 errno = 0;
650 if (errno)
651 goto out_error;
652 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200653
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100654 /* Use connect() to check the state of the socket. This has the
655 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200656 * - error
657 * - connecting (EALREADY, EINPROGRESS)
658 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200659 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200660 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200661 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100662 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100663 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200664 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200665 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200666
Willy Tarreau2c6be842012-07-06 17:12:34 +0200667 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200668 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200669
Willy Tarreau2c6be842012-07-06 17:12:34 +0200670 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200671 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200672
Willy Tarreau076be252012-07-06 16:02:29 +0200673 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200674 * forward the event to the transport layer which will notify the
675 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200676 */
Willy Tarreau80184712012-07-06 14:54:49 +0200677 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200678 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200679
680 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200681 /* Write error on the file descriptor. Report it to the connection
682 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200683 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100684 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100685 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100686 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200687 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200688}
689
Willy Tarreau59b94792012-05-11 16:16:40 +0200690
Willy Tarreaue6b98942007-10-29 01:09:36 +0100691/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100692 * an error message in <errmsg> if the message is at most <errlen> bytes long
693 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
694 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100695 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
696 * was alright and that no message was returned. ERR_RETRYABLE means that an
697 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700698 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100699 * the meaning of the error, but just indicate that a message is present which
700 * should be displayed with the respective level. Last, ERR_ABORT indicates
701 * that it's pointless to try to start other listeners. No error message is
702 * returned if errlen is NULL.
703 */
704int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
705{
706 __label__ tcp_return, tcp_close_return;
707 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100708 int ext, ready;
709 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100710 const char *msg = NULL;
711
712 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100713 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100714 *errmsg = 0;
715
716 if (listener->state != LI_ASSIGNED)
717 return ERR_NONE; /* already bound */
718
719 err = ERR_NONE;
720
Willy Tarreau40aa0702013-03-10 23:51:38 +0100721 /* if the listener already has an fd assigned, then we were offered the
722 * fd by an external process (most likely the parent), and we don't want
723 * to create a new socket. However we still want to set a few flags on
724 * the socket.
725 */
726 fd = listener->fd;
727 ext = (fd >= 0);
728
729 if (!ext && (fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100730 err |= ERR_RETRYABLE | ERR_ALERT;
731 msg = "cannot create listening socket";
732 goto tcp_return;
733 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100734
Willy Tarreaue6b98942007-10-29 01:09:36 +0100735 if (fd >= global.maxsock) {
736 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
737 msg = "not enough free sockets (raise '-n' parameter)";
738 goto tcp_close_return;
739 }
740
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200741 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100742 err |= ERR_FATAL | ERR_ALERT;
743 msg = "cannot make socket non-blocking";
744 goto tcp_close_return;
745 }
746
Willy Tarreau40aa0702013-03-10 23:51:38 +0100747 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100748 /* not fatal but should be reported */
749 msg = "cannot do so_reuseaddr";
750 err |= ERR_ALERT;
751 }
752
753 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900754 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100755
Willy Tarreaue6b98942007-10-29 01:09:36 +0100756#ifdef SO_REUSEPORT
757 /* OpenBSD supports this. As it's present in old libc versions of Linux,
758 * it might return an error that we will silently ignore.
759 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100760 if (!ext)
761 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100762#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200763
Willy Tarreau40aa0702013-03-10 23:51:38 +0100764 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200765 switch (listener->addr.ss_family) {
766 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200767 if (1
768#if defined(IP_TRANSPARENT)
769 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
770#endif
771#if defined(IP_FREEBIND)
772 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
773#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200774#if defined(IP_BINDANY)
775 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
776#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200777#if defined(SO_BINDANY)
778 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
779#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200780 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200781 msg = "cannot make listening socket transparent";
782 err |= ERR_ALERT;
783 }
784 break;
785 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200786 if (1
787#if defined(IPV6_TRANSPARENT)
788 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
789#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200790#if defined(IPV6_BINDANY)
791 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
792#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200793#if defined(SO_BINDANY)
794 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
795#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200796 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200797 msg = "cannot make listening socket transparent";
798 err |= ERR_ALERT;
799 }
800 break;
801 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100802 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200803
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100804#ifdef SO_BINDTODEVICE
805 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100806 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100807 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100808 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100809 msg = "cannot bind listener to device";
810 err |= ERR_WARN;
811 }
812 }
813#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400814#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100815 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400816 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200817 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
818 msg = "cannot set MSS";
819 err |= ERR_WARN;
820 }
821 }
822#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200823#if defined(TCP_DEFER_ACCEPT)
824 if (listener->options & LI_O_DEF_ACCEPT) {
825 /* defer accept by up to one second */
826 int accept_delay = 1;
827 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
828 msg = "cannot enable DEFER_ACCEPT";
829 err |= ERR_WARN;
830 }
831 }
832#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200833#if defined(TCP_FASTOPEN)
834 if (listener->options & LI_O_TCP_FO) {
835 /* TFO needs a queue length, let's use the configured backlog */
836 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
837 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
838 msg = "cannot enable TCP_FASTOPEN";
839 err |= ERR_WARN;
840 }
841 }
842#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100843#if defined(IPV6_V6ONLY)
844 if (listener->options & LI_O_V6ONLY)
845 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100846 else if (listener->options & LI_O_V4V6)
847 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100848#endif
849
Willy Tarreau40aa0702013-03-10 23:51:38 +0100850 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100851 err |= ERR_RETRYABLE | ERR_ALERT;
852 msg = "cannot bind socket";
853 goto tcp_close_return;
854 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100855
Willy Tarreau40aa0702013-03-10 23:51:38 +0100856 ready = 0;
857 ready_len = sizeof(ready);
858 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
859 ready = 0;
860
861 if (!(ext && ready) && /* only listen if not already done by external process */
862 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100863 err |= ERR_RETRYABLE | ERR_ALERT;
864 msg = "cannot listen to socket";
865 goto tcp_close_return;
866 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100867
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400868#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200869 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900870 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200871#endif
872
Willy Tarreaue6b98942007-10-29 01:09:36 +0100873 /* the socket is ready */
874 listener->fd = fd;
875 listener->state = LI_LISTEN;
876
Willy Tarreaueabf3132008-08-29 23:36:51 +0200877 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200878 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200879 fd_insert(fd);
880
Willy Tarreaue6b98942007-10-29 01:09:36 +0100881 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100882 if (msg && errlen) {
883 char pn[INET6_ADDRSTRLEN];
884
Willy Tarreau631f01c2011-09-05 00:36:48 +0200885 addr_to_str(&listener->addr, pn, sizeof(pn));
886 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100887 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100888 return err;
889
890 tcp_close_return:
891 close(fd);
892 goto tcp_return;
893}
894
895/* This function creates all TCP sockets bound to the protocol entry <proto>.
896 * It is intended to be used as the protocol's bind_all() function.
897 * The sockets will be registered but not added to any fd_set, in order not to
898 * loose them across the fork(). A call to enable_all_listeners() is needed
899 * to complete initialization. The return value is composed from ERR_*.
900 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200901static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100902{
903 struct listener *listener;
904 int err = ERR_NONE;
905
906 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200907 err |= tcp_bind_listener(listener, errmsg, errlen);
908 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100909 break;
910 }
911
912 return err;
913}
914
915/* Add listener to the list of tcpv4 listeners. The listener's state
916 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
917 * listeners is updated. This is the function to use to add a new listener.
918 */
919void tcpv4_add_listener(struct listener *listener)
920{
921 if (listener->state != LI_INIT)
922 return;
923 listener->state = LI_ASSIGNED;
924 listener->proto = &proto_tcpv4;
925 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
926 proto_tcpv4.nb_listeners++;
927}
928
929/* Add listener to the list of tcpv4 listeners. The listener's state
930 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
931 * listeners is updated. This is the function to use to add a new listener.
932 */
933void tcpv6_add_listener(struct listener *listener)
934{
935 if (listener->state != LI_INIT)
936 return;
937 listener->state = LI_ASSIGNED;
938 listener->proto = &proto_tcpv6;
939 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
940 proto_tcpv6.nb_listeners++;
941}
942
Willy Tarreauedcf6682008-11-30 23:15:34 +0100943/* This function performs the TCP request analysis on the current request. It
944 * returns 1 if the processing can continue on next analysers, or zero if it
945 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200946 * request. It relies on buffers flags, and updates s->req->analysers. The
947 * function may be called for frontend rules and backend rules. It only relies
948 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100949 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200950int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100951{
952 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200953 struct stksess *ts;
954 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100955 int partial;
956
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100957 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 +0100958 now_ms, __FUNCTION__,
959 s,
960 req,
961 req->rex, req->wex,
962 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200963 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100964 req->analysers);
965
Willy Tarreauedcf6682008-11-30 23:15:34 +0100966 /* We don't know whether we have enough data, so must proceed
967 * this way :
968 * - iterate through all rules in their declaration order
969 * - if one rule returns MISS, it means the inspect delay is
970 * not over yet, then return immediately, otherwise consider
971 * it as a non-match.
972 * - if one rule returns OK, then return OK
973 * - if one rule returns KO, then return KO
974 */
975
Willy Tarreau9b28e032012-10-12 23:49:43 +0200976 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200977 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200978 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100979 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200980 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100981
Willy Tarreaufb356202010-08-03 14:02:05 +0200982 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +0100983 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100984
985 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200986 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100987 if (ret == ACL_TEST_MISS) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200988 channel_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100989 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200990 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +0100991 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100992 return 0;
993 }
994
995 ret = acl_pass(ret);
996 if (rule->cond->pol == ACL_COND_UNLESS)
997 ret = !ret;
998 }
999
1000 if (ret) {
1001 /* we have a matching rule. */
1002 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001003 channel_abort(req);
1004 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001005 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001006
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001007 s->be->be_counters.denied_req++;
1008 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001009 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +02001010 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001011
Willy Tarreauedcf6682008-11-30 23:15:34 +01001012 if (!(s->flags & SN_ERR_MASK))
1013 s->flags |= SN_ERR_PRXCOND;
1014 if (!(s->flags & SN_FINST_MASK))
1015 s->flags |= SN_FINST_R;
1016 return 0;
1017 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001018 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001019 /* Note: only the first valid tracking parameter of each
1020 * applies.
1021 */
1022 struct stktable_key *key;
1023
Willy Tarreau44778ad2013-10-30 19:24:00 +01001024 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
1025 continue;
1026
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001027 t = rule->act_prm.trk_ctr.table.t;
1028 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1029
1030 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001031 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
1032 if (s->fe != s->be)
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001033 s->flags |= SN_BE_TRACK_SC0 << tcp_trk_idx(rule->action);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001034 }
1035 }
1036 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +01001037 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001038 break;
1039 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001040 }
1041 }
1042
1043 /* if we get there, it means we have no rule which matches, or
1044 * we have an explicit accept, so we apply the default accept.
1045 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001046 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001047 req->analyse_exp = TICK_ETERNITY;
1048 return 1;
1049}
1050
Emeric Brun97679e72010-09-23 17:56:44 +02001051/* This function performs the TCP response analysis on the current response. It
1052 * returns 1 if the processing can continue on next analysers, or zero if it
1053 * needs more data, encounters an error, or wants to immediately abort the
1054 * response. It relies on buffers flags, and updates s->rep->analysers. The
1055 * function may be called for backend rules.
1056 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001057int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001058{
1059 struct tcp_rule *rule;
1060 int partial;
1061
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001062 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 +02001063 now_ms, __FUNCTION__,
1064 s,
1065 rep,
1066 rep->rex, rep->wex,
1067 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001068 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001069 rep->analysers);
1070
1071 /* We don't know whether we have enough data, so must proceed
1072 * this way :
1073 * - iterate through all rules in their declaration order
1074 * - if one rule returns MISS, it means the inspect delay is
1075 * not over yet, then return immediately, otherwise consider
1076 * it as a non-match.
1077 * - if one rule returns OK, then return OK
1078 * - if one rule returns KO, then return KO
1079 */
1080
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001081 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001082 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001083 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001084 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001085
1086 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001087 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001088
1089 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001090 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001091 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001092 /* just set the analyser timeout once at the beginning of the response */
1093 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001094 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001095 return 0;
1096 }
1097
1098 ret = acl_pass(ret);
1099 if (rule->cond->pol == ACL_COND_UNLESS)
1100 ret = !ret;
1101 }
1102
1103 if (ret) {
1104 /* we have a matching rule. */
1105 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001106 channel_abort(rep);
1107 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001108 rep->analysers = 0;
1109
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001110 s->be->be_counters.denied_resp++;
1111 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001112 if (s->listener->counters)
1113 s->listener->counters->denied_resp++;
1114
1115 if (!(s->flags & SN_ERR_MASK))
1116 s->flags |= SN_ERR_PRXCOND;
1117 if (!(s->flags & SN_FINST_MASK))
1118 s->flags |= SN_FINST_D;
1119 return 0;
1120 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001121 else if (rule->action == TCP_ACT_CLOSE) {
1122 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1123 si_shutr(rep->prod);
1124 si_shutw(rep->prod);
1125 break;
1126 }
Emeric Brun97679e72010-09-23 17:56:44 +02001127 else {
1128 /* otherwise accept */
1129 break;
1130 }
1131 }
1132 }
1133
1134 /* if we get there, it means we have no rule which matches, or
1135 * we have an explicit accept, so we apply the default accept.
1136 */
1137 rep->analysers &= ~an_bit;
1138 rep->analyse_exp = TICK_ETERNITY;
1139 return 1;
1140}
1141
1142
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001143/* This function performs the TCP layer4 analysis on the current request. It
1144 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1145 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001146 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001147 */
1148int tcp_exec_req_rules(struct session *s)
1149{
1150 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001151 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001152 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001153 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001154 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001155 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001156
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001157 if (!conn)
1158 return result;
1159
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001160 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001161 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001162
1163 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001164 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001165 ret = acl_pass(ret);
1166 if (rule->cond->pol == ACL_COND_UNLESS)
1167 ret = !ret;
1168 }
1169
1170 if (ret) {
1171 /* we have a matching rule. */
1172 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001173 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001174 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001175 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001176
1177 if (!(s->flags & SN_ERR_MASK))
1178 s->flags |= SN_ERR_PRXCOND;
1179 if (!(s->flags & SN_FINST_MASK))
1180 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001181 result = 0;
1182 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001183 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001184 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001185 /* Note: only the first valid tracking parameter of each
1186 * applies.
1187 */
1188 struct stktable_key *key;
1189
Willy Tarreau44778ad2013-10-30 19:24:00 +01001190 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
1191 continue;
1192
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001193 t = rule->act_prm.trk_ctr.table.t;
1194 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1195
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001196 if (key && (ts = stktable_get_entry(t, key)))
1197 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001198 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001199 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001200 conn->flags |= CO_FL_ACCEPT_PROXY;
1201 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001202 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001203 else {
1204 /* otherwise it's an accept */
1205 break;
1206 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001207 }
1208 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001209 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001210}
1211
Emeric Brun97679e72010-09-23 17:56:44 +02001212/* Parse a tcp-response rule. Return a negative value in case of failure */
1213static int tcp_parse_response_rule(char **args, int arg, int section_type,
1214 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau80aca902013-01-07 15:42:20 +01001215 struct tcp_rule *rule, char **err,
1216 unsigned int where)
Emeric Brun97679e72010-09-23 17:56:44 +02001217{
1218 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001219 memprintf(err, "%s %s is only allowed in 'backend' sections",
1220 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001221 return -1;
1222 }
1223
1224 if (strcmp(args[arg], "accept") == 0) {
1225 arg++;
1226 rule->action = TCP_ACT_ACCEPT;
1227 }
1228 else if (strcmp(args[arg], "reject") == 0) {
1229 arg++;
1230 rule->action = TCP_ACT_REJECT;
1231 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001232 else if (strcmp(args[arg], "close") == 0) {
1233 arg++;
1234 rule->action = TCP_ACT_CLOSE;
1235 }
Emeric Brun97679e72010-09-23 17:56:44 +02001236 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001237 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001238 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001239 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001240 return -1;
1241 }
1242
1243 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001244 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1245 memprintf(err,
1246 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1247 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001248 return -1;
1249 }
1250 }
1251 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001252 memprintf(err,
1253 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001254 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1255 return -1;
1256 }
1257 return 0;
1258}
1259
1260
1261
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001262/* Parse a tcp-request rule. Return a negative value in case of failure */
1263static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001264 struct proxy *curpx, struct proxy *defpx,
1265 struct tcp_rule *rule, char **err,
1266 unsigned int where)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001267{
1268 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001269 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1270 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001271 return -1;
1272 }
1273
1274 if (!strcmp(args[arg], "accept")) {
1275 arg++;
1276 rule->action = TCP_ACT_ACCEPT;
1277 }
1278 else if (!strcmp(args[arg], "reject")) {
1279 arg++;
1280 rule->action = TCP_ACT_REJECT;
1281 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001282 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1283 args[arg][9] == '\0' && args[arg][8] >= '0' &&
1284 args[arg][8] <= '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001285 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001286 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001287
1288 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001289
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001290 curpx->conf.args.ctx = ARGC_TRK;
Willy Tarreau975c1782013-12-12 23:16:54 +01001291 expr = sample_parse_expr(args, &arg, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001292 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001293 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001294 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001295 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001296 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001297 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001298
Willy Tarreau80aca902013-01-07 15:42:20 +01001299 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001300 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001301 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001302 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001303 free(expr);
1304 return -1;
1305 }
1306
1307 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001308 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001309
1310 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001311 arg++;
1312 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001313 memprintf(err,
1314 "'%s %s %s' : missing table name",
1315 args[0], args[1], args[kw]);
1316 free(expr);
1317 return -1;
1318 }
1319 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001320 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001321 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001322 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001323 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001324 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001325 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001326 else if (strcmp(args[arg], "expect-proxy") == 0) {
1327 if (strcmp(args[arg+1], "layer4") != 0) {
1328 memprintf(err,
1329 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1330 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1331 return -1;
1332 }
1333
1334 if (!(where & SMP_VAL_FE_CON_ACC)) {
1335 memprintf(err,
1336 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1337 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1338 return -1;
1339 }
1340
1341 arg += 2;
1342 rule->action = TCP_ACT_EXPECT_PX;
1343 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001344 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001345 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001346 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1347 " in %s '%s' (got '%s')",
1348 args[0], args[1], MAX_SESS_STKCTR, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001349 return -1;
1350 }
1351
1352 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001353 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1354 memprintf(err,
1355 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1356 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001357 return -1;
1358 }
1359 }
1360 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001361 memprintf(err,
1362 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001363 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1364 return -1;
1365 }
1366 return 0;
1367}
1368
Emeric Brun97679e72010-09-23 17:56:44 +02001369/* This function should be called to parse a line starting with the "tcp-response"
1370 * keyword.
1371 */
1372static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001373 struct proxy *defpx, const char *file, int line,
1374 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001375{
1376 const char *ptr = NULL;
1377 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001378 int warn = 0;
1379 int arg;
1380 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001381 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001382 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001383 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001384
1385 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001386 memprintf(err, "missing argument for '%s' in %s '%s'",
1387 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001388 return -1;
1389 }
1390
1391 if (strcmp(args[1], "inspect-delay") == 0) {
1392 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001393 memprintf(err, "%s %s is only allowed in 'backend' sections",
1394 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001395 return -1;
1396 }
1397
1398 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001399 memprintf(err,
1400 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1401 args[0], args[1], proxy_type_str(curpx), curpx->id);
1402 if (ptr)
1403 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001404 return -1;
1405 }
1406
1407 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001408 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1409 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001410 return 1;
1411 }
1412 curpx->tcp_rep.inspect_delay = val;
1413 return 0;
1414 }
1415
Simon Hormande072bd2011-06-24 15:11:37 +09001416 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001417 LIST_INIT(&rule->list);
1418 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001419 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001420
1421 if (strcmp(args[1], "content") == 0) {
1422 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001423
1424 if (curpx->cap & PR_CAP_FE)
1425 where |= SMP_VAL_FE_RES_CNT;
1426 if (curpx->cap & PR_CAP_BE)
1427 where |= SMP_VAL_BE_RES_CNT;
1428
1429 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001430 goto error;
1431
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001432 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1433 if (acl) {
1434 if (acl->name && *acl->name)
1435 memprintf(err,
1436 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1437 acl->name, args[0], args[1], sample_ckp_names(where));
1438 else
1439 memprintf(err,
1440 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1441 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001442 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001443 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001444
Emeric Brun97679e72010-09-23 17:56:44 +02001445 warn++;
1446 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001447 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1448 if (acl->name && *acl->name)
1449 memprintf(err,
1450 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001451 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001452 else
1453 memprintf(err,
1454 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001455 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001456 warn++;
1457 }
Emeric Brun97679e72010-09-23 17:56:44 +02001458
1459 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1460 }
1461 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001462 memprintf(err,
1463 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1464 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001465 goto error;
1466 }
1467
1468 return warn;
1469 error:
1470 free(rule);
1471 return -1;
1472}
1473
1474
Willy Tarreaub6866442008-07-14 23:54:42 +02001475/* This function should be called to parse a line starting with the "tcp-request"
1476 * keyword.
1477 */
1478static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001479 struct proxy *defpx, const char *file, int line,
1480 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001481{
1482 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001483 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001484 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001485 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001486 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001487 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001488 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001489 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001490
1491 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001492 if (curpx == defpx)
1493 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1494 else
1495 memprintf(err, "missing argument for '%s' in %s '%s'",
1496 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001497 return -1;
1498 }
1499
1500 if (!strcmp(args[1], "inspect-delay")) {
1501 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001502 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1503 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001504 return -1;
1505 }
1506
Willy Tarreaub6866442008-07-14 23:54:42 +02001507 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001508 memprintf(err,
1509 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1510 args[0], args[1], proxy_type_str(curpx), curpx->id);
1511 if (ptr)
1512 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001513 return -1;
1514 }
1515
1516 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001517 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1518 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001519 return 1;
1520 }
1521 curpx->tcp_req.inspect_delay = val;
1522 return 0;
1523 }
1524
Simon Hormande072bd2011-06-24 15:11:37 +09001525 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001526 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001527 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001528 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001529
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001530 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001531 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001532
1533 if (curpx->cap & PR_CAP_FE)
1534 where |= SMP_VAL_FE_REQ_CNT;
1535 if (curpx->cap & PR_CAP_BE)
1536 where |= SMP_VAL_BE_REQ_CNT;
1537
1538 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001539 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001540
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001541 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1542 if (acl) {
1543 if (acl->name && *acl->name)
1544 memprintf(err,
1545 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1546 acl->name, args[0], args[1], sample_ckp_names(where));
1547 else
1548 memprintf(err,
1549 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1550 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001551 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001552 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001553
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001554 warn++;
1555 }
1556 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1557 if (acl->name && *acl->name)
1558 memprintf(err,
1559 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001560 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001561 else
1562 memprintf(err,
1563 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001564 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001565 warn++;
1566 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001567
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001568 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001569 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001570 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001571 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001572
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001573 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001574 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1575 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001576 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001577 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001578
Willy Tarreau80aca902013-01-07 15:42:20 +01001579 where |= SMP_VAL_FE_CON_ACC;
1580
1581 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001582 goto error;
1583
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001584 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1585 if (acl) {
1586 if (acl->name && *acl->name)
1587 memprintf(err,
1588 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1589 acl->name, args[0], args[1], sample_ckp_names(where));
1590 else
1591 memprintf(err,
1592 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1593 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001594 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001595 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001596
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001597 warn++;
1598 }
1599 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1600 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001601 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001602 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001603 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001604 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001605 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001606 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001607 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001608 warn++;
1609 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001610
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001611 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001612 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001613 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001614 if (curpx == defpx)
1615 memprintf(err,
1616 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1617 args[0], args[1]);
1618 else
1619 memprintf(err,
1620 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001621 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001622 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001623 }
1624
Willy Tarreau1a687942010-05-23 22:40:30 +02001625 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001626 error:
1627 free(rule);
1628 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001629}
1630
Willy Tarreau645513a2010-05-24 20:55:15 +02001631
1632/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001633/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001634/************************************************************************/
1635
Willy Tarreau4a129812012-04-25 17:31:42 +02001636/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001637static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001638smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001639 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001640{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001641 struct connection *cli_conn = objt_conn(l4->si[0].end);
1642
1643 if (!cli_conn)
1644 return 0;
1645
1646 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001647 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001648 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001649 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001650 break;
1651 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001652 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001653 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001654 break;
1655 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001656 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001657 }
Emeric Brunf769f512010-10-22 17:14:01 +02001658
Willy Tarreau37406352012-04-23 16:16:37 +02001659 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001660 return 1;
1661}
1662
Willy Tarreaua5e37562011-12-16 17:06:15 +01001663/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001664static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001665smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001666 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001667{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001668 struct connection *cli_conn = objt_conn(l4->si[0].end);
1669
1670 if (!cli_conn)
1671 return 0;
1672
Willy Tarreauf853c462012-04-23 18:53:56 +02001673 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001674 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001675 return 0;
1676
Willy Tarreau37406352012-04-23 16:16:37 +02001677 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001678 return 1;
1679}
1680
Willy Tarreau4a129812012-04-25 17:31:42 +02001681/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001682static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001683smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001684 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001685{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001686 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001687
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001688 if (!cli_conn)
1689 return 0;
1690
1691 conn_get_to_addr(cli_conn);
1692
1693 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001694 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001695 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001696 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001697 break;
1698 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001699 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001700 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001701 break;
1702 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001703 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001704 }
Emeric Brunf769f512010-10-22 17:14:01 +02001705
Willy Tarreau37406352012-04-23 16:16:37 +02001706 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001707 return 1;
1708}
1709
Willy Tarreaua5e37562011-12-16 17:06:15 +01001710/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001711static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001712smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001713 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001714{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001715 struct connection *cli_conn = objt_conn(l4->si[0].end);
1716
1717 if (!cli_conn)
1718 return 0;
1719
1720 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001721
Willy Tarreauf853c462012-04-23 18:53:56 +02001722 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001723 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001724 return 0;
1725
Willy Tarreau37406352012-04-23 16:16:37 +02001726 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001727 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001728}
1729
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001730#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001731/* parse the "v4v6" bind keyword */
1732static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1733{
1734 struct listener *l;
1735
1736 list_for_each_entry(l, &conf->listeners, by_bind) {
1737 if (l->addr.ss_family == AF_INET6)
1738 l->options |= LI_O_V4V6;
1739 }
1740
1741 return 0;
1742}
1743
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001744/* parse the "v6only" bind keyword */
1745static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1746{
1747 struct listener *l;
1748
1749 list_for_each_entry(l, &conf->listeners, by_bind) {
1750 if (l->addr.ss_family == AF_INET6)
1751 l->options |= LI_O_V6ONLY;
1752 }
1753
1754 return 0;
1755}
1756#endif
1757
Pieter Baauwd551fb52013-05-08 22:49:23 +02001758#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001759/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001760static 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 +02001761{
1762 struct listener *l;
1763
Willy Tarreau4348fad2012-09-20 16:48:07 +02001764 list_for_each_entry(l, &conf->listeners, by_bind) {
1765 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1766 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001767 }
1768
Willy Tarreau44791242012-09-12 23:27:21 +02001769 return 0;
1770}
1771#endif
1772
1773#ifdef TCP_DEFER_ACCEPT
1774/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001775static 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 +02001776{
1777 struct listener *l;
1778
Willy Tarreau4348fad2012-09-20 16:48:07 +02001779 list_for_each_entry(l, &conf->listeners, by_bind) {
1780 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1781 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001782 }
1783
Willy Tarreau44791242012-09-12 23:27:21 +02001784 return 0;
1785}
1786#endif
1787
Willy Tarreau1c862c52012-10-05 16:21:00 +02001788#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001789/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001790static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1791{
1792 struct listener *l;
1793
1794 list_for_each_entry(l, &conf->listeners, by_bind) {
1795 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1796 l->options |= LI_O_TCP_FO;
1797 }
1798
1799 return 0;
1800}
1801#endif
1802
Willy Tarreau44791242012-09-12 23:27:21 +02001803#ifdef TCP_MAXSEG
1804/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001805static 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 +02001806{
1807 struct listener *l;
1808 int mss;
1809
Willy Tarreau44791242012-09-12 23:27:21 +02001810 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001811 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001812 return ERR_ALERT | ERR_FATAL;
1813 }
1814
1815 mss = atoi(args[cur_arg + 1]);
1816 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001817 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001818 return ERR_ALERT | ERR_FATAL;
1819 }
1820
Willy Tarreau4348fad2012-09-20 16:48:07 +02001821 list_for_each_entry(l, &conf->listeners, by_bind) {
1822 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1823 l->maxseg = mss;
1824 }
Willy Tarreau44791242012-09-12 23:27:21 +02001825
1826 return 0;
1827}
1828#endif
1829
1830#ifdef SO_BINDTODEVICE
1831/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001832static int bind_parse_interface(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02001833{
1834 struct listener *l;
1835
Willy Tarreau44791242012-09-12 23:27:21 +02001836 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001837 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001838 return ERR_ALERT | ERR_FATAL;
1839 }
1840
Willy Tarreau4348fad2012-09-20 16:48:07 +02001841 list_for_each_entry(l, &conf->listeners, by_bind) {
1842 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1843 l->interface = strdup(args[cur_arg + 1]);
1844 }
Willy Tarreau44791242012-09-12 23:27:21 +02001845
1846 global.last_checks |= LSTCHK_NETADM;
1847 return 0;
1848}
1849#endif
1850
Willy Tarreaudc13c112013-06-21 23:16:39 +02001851static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001852 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001853 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001854 { 0, NULL, NULL },
1855}};
1856
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001857
Willy Tarreau61612d42012-04-19 18:42:05 +02001858/* Note: must not be declared <const> as its list will be overwritten.
1859 * Please take care of keeping this list alphabetically sorted.
1860 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001861static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001862 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02001863}};
1864
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001865
Willy Tarreau4a129812012-04-25 17:31:42 +02001866/* Note: must not be declared <const> as its list will be overwritten.
1867 * Note: fetches that may return multiple types must be declared as the lowest
1868 * common denominator, the type that can be casted into all other ones. For
1869 * instance v4/v6 must be declared v4.
1870 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001871static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001872 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1873 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1874 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1875 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1876 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001877}};
1878
Willy Tarreau44791242012-09-12 23:27:21 +02001879/************************************************************************/
1880/* All supported bind keywords must be declared here. */
1881/************************************************************************/
1882
1883/* Note: must not be declared <const> as its list will be overwritten.
1884 * Please take care of keeping this list alphabetically sorted, doing so helps
1885 * all code contributors.
1886 * Optional keywords are also declared with a NULL ->parse() function so that
1887 * the config parser can report an appropriate error when a known keyword was
1888 * not enabled.
1889 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001890static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001891#ifdef TCP_DEFER_ACCEPT
1892 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1893#endif
1894#ifdef SO_BINDTODEVICE
1895 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1896#endif
1897#ifdef TCP_MAXSEG
1898 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1899#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001900#ifdef TCP_FASTOPEN
1901 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1902#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001903#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001904 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1905#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001906#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001907 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001908 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1909#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001910 /* the versions with the NULL parse function*/
1911 { "defer-accept", NULL, 0 },
1912 { "interface", NULL, 1 },
1913 { "mss", NULL, 1 },
1914 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001915 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001916 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001917 { NULL, NULL, 0 },
1918}};
1919
Willy Tarreaue6b98942007-10-29 01:09:36 +01001920__attribute__((constructor))
1921static void __tcp_protocol_init(void)
1922{
1923 protocol_register(&proto_tcpv4);
1924 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001925 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001926 cfg_register_keywords(&cfg_kws);
1927 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02001928 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001929}
1930
1931
1932/*
1933 * Local variables:
1934 * c-indent-level: 8
1935 * c-basic-offset: 8
1936 * End:
1937 */