blob: 11f63310beac2d456878d62e9b24fc8970efefc5 [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 Tarreaucc08d2c2014-01-28 23:18:23 +01001024 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001025 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);
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001032 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001033 if (s->fe != s->be)
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001034 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001035 }
1036 }
1037 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +01001038 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001039 break;
1040 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001041 }
1042 }
1043
1044 /* if we get there, it means we have no rule which matches, or
1045 * we have an explicit accept, so we apply the default accept.
1046 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001047 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001048 req->analyse_exp = TICK_ETERNITY;
1049 return 1;
1050}
1051
Emeric Brun97679e72010-09-23 17:56:44 +02001052/* This function performs the TCP response analysis on the current response. It
1053 * returns 1 if the processing can continue on next analysers, or zero if it
1054 * needs more data, encounters an error, or wants to immediately abort the
1055 * response. It relies on buffers flags, and updates s->rep->analysers. The
1056 * function may be called for backend rules.
1057 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001058int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001059{
1060 struct tcp_rule *rule;
1061 int partial;
1062
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001063 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 +02001064 now_ms, __FUNCTION__,
1065 s,
1066 rep,
1067 rep->rex, rep->wex,
1068 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001069 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001070 rep->analysers);
1071
1072 /* We don't know whether we have enough data, so must proceed
1073 * this way :
1074 * - iterate through all rules in their declaration order
1075 * - if one rule returns MISS, it means the inspect delay is
1076 * not over yet, then return immediately, otherwise consider
1077 * it as a non-match.
1078 * - if one rule returns OK, then return OK
1079 * - if one rule returns KO, then return KO
1080 */
1081
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001082 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001083 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001084 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001085 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001086
1087 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001088 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001089
1090 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001091 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001092 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001093 /* just set the analyser timeout once at the beginning of the response */
1094 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001095 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001096 return 0;
1097 }
1098
1099 ret = acl_pass(ret);
1100 if (rule->cond->pol == ACL_COND_UNLESS)
1101 ret = !ret;
1102 }
1103
1104 if (ret) {
1105 /* we have a matching rule. */
1106 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001107 channel_abort(rep);
1108 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001109 rep->analysers = 0;
1110
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001111 s->be->be_counters.denied_resp++;
1112 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001113 if (s->listener->counters)
1114 s->listener->counters->denied_resp++;
1115
1116 if (!(s->flags & SN_ERR_MASK))
1117 s->flags |= SN_ERR_PRXCOND;
1118 if (!(s->flags & SN_FINST_MASK))
1119 s->flags |= SN_FINST_D;
1120 return 0;
1121 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001122 else if (rule->action == TCP_ACT_CLOSE) {
1123 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1124 si_shutr(rep->prod);
1125 si_shutw(rep->prod);
1126 break;
1127 }
Emeric Brun97679e72010-09-23 17:56:44 +02001128 else {
1129 /* otherwise accept */
1130 break;
1131 }
1132 }
1133 }
1134
1135 /* if we get there, it means we have no rule which matches, or
1136 * we have an explicit accept, so we apply the default accept.
1137 */
1138 rep->analysers &= ~an_bit;
1139 rep->analyse_exp = TICK_ETERNITY;
1140 return 1;
1141}
1142
1143
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001144/* This function performs the TCP layer4 analysis on the current request. It
1145 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1146 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001147 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001148 */
1149int tcp_exec_req_rules(struct session *s)
1150{
1151 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001152 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001153 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001154 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001155 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001156 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001157
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001158 if (!conn)
1159 return result;
1160
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001161 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001162 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001163
1164 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001165 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001166 ret = acl_pass(ret);
1167 if (rule->cond->pol == ACL_COND_UNLESS)
1168 ret = !ret;
1169 }
1170
1171 if (ret) {
1172 /* we have a matching rule. */
1173 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001174 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001175 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001176 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001177
1178 if (!(s->flags & SN_ERR_MASK))
1179 s->flags |= SN_ERR_PRXCOND;
1180 if (!(s->flags & SN_FINST_MASK))
1181 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001182 result = 0;
1183 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001184 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001185 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001186 /* Note: only the first valid tracking parameter of each
1187 * applies.
1188 */
1189 struct stktable_key *key;
1190
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001191 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001192 continue;
1193
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001194 t = rule->act_prm.trk_ctr.table.t;
1195 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1196
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001197 if (key && (ts = stktable_get_entry(t, key)))
1198 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001199 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001200 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001201 conn->flags |= CO_FL_ACCEPT_PROXY;
1202 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001203 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001204 else {
1205 /* otherwise it's an accept */
1206 break;
1207 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001208 }
1209 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001210 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001211}
1212
Emeric Brun97679e72010-09-23 17:56:44 +02001213/* Parse a tcp-response rule. Return a negative value in case of failure */
1214static int tcp_parse_response_rule(char **args, int arg, int section_type,
1215 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau80aca902013-01-07 15:42:20 +01001216 struct tcp_rule *rule, char **err,
1217 unsigned int where)
Emeric Brun97679e72010-09-23 17:56:44 +02001218{
1219 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001220 memprintf(err, "%s %s is only allowed in 'backend' sections",
1221 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001222 return -1;
1223 }
1224
1225 if (strcmp(args[arg], "accept") == 0) {
1226 arg++;
1227 rule->action = TCP_ACT_ACCEPT;
1228 }
1229 else if (strcmp(args[arg], "reject") == 0) {
1230 arg++;
1231 rule->action = TCP_ACT_REJECT;
1232 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001233 else if (strcmp(args[arg], "close") == 0) {
1234 arg++;
1235 rule->action = TCP_ACT_CLOSE;
1236 }
Emeric Brun97679e72010-09-23 17:56:44 +02001237 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001238 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001239 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001240 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001241 return -1;
1242 }
1243
1244 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001245 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1246 memprintf(err,
1247 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1248 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001249 return -1;
1250 }
1251 }
1252 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001253 memprintf(err,
1254 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001255 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1256 return -1;
1257 }
1258 return 0;
1259}
1260
1261
1262
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001263/* Parse a tcp-request rule. Return a negative value in case of failure */
1264static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001265 struct proxy *curpx, struct proxy *defpx,
1266 struct tcp_rule *rule, char **err,
1267 unsigned int where)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001268{
1269 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001270 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1271 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001272 return -1;
1273 }
1274
1275 if (!strcmp(args[arg], "accept")) {
1276 arg++;
1277 rule->action = TCP_ACT_ACCEPT;
1278 }
1279 else if (!strcmp(args[arg], "reject")) {
1280 arg++;
1281 rule->action = TCP_ACT_REJECT;
1282 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001283 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1284 args[arg][9] == '\0' && args[arg][8] >= '0' &&
1285 args[arg][8] <= '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001286 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001287 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001288
1289 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001290
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001291 curpx->conf.args.ctx = ARGC_TRK;
Willy Tarreau975c1782013-12-12 23:16:54 +01001292 expr = sample_parse_expr(args, &arg, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001293 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001294 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001295 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001296 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001297 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001298 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001299
Willy Tarreau80aca902013-01-07 15:42:20 +01001300 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001301 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001302 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001303 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001304 free(expr);
1305 return -1;
1306 }
1307
1308 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001309 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001310
1311 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001312 arg++;
1313 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001314 memprintf(err,
1315 "'%s %s %s' : missing table name",
1316 args[0], args[1], args[kw]);
1317 free(expr);
1318 return -1;
1319 }
1320 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001321 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001322 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001323 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001324 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001325 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001326 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001327 else if (strcmp(args[arg], "expect-proxy") == 0) {
1328 if (strcmp(args[arg+1], "layer4") != 0) {
1329 memprintf(err,
1330 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1331 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1332 return -1;
1333 }
1334
1335 if (!(where & SMP_VAL_FE_CON_ACC)) {
1336 memprintf(err,
1337 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1338 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1339 return -1;
1340 }
1341
1342 arg += 2;
1343 rule->action = TCP_ACT_EXPECT_PX;
1344 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001345 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001346 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001347 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1348 " in %s '%s' (got '%s')",
1349 args[0], args[1], MAX_SESS_STKCTR, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001350 return -1;
1351 }
1352
1353 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001354 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1355 memprintf(err,
1356 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1357 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001358 return -1;
1359 }
1360 }
1361 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001362 memprintf(err,
1363 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001364 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1365 return -1;
1366 }
1367 return 0;
1368}
1369
Emeric Brun97679e72010-09-23 17:56:44 +02001370/* This function should be called to parse a line starting with the "tcp-response"
1371 * keyword.
1372 */
1373static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001374 struct proxy *defpx, const char *file, int line,
1375 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001376{
1377 const char *ptr = NULL;
1378 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001379 int warn = 0;
1380 int arg;
1381 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001382 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001383 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001384 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001385
1386 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001387 memprintf(err, "missing argument for '%s' in %s '%s'",
1388 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001389 return -1;
1390 }
1391
1392 if (strcmp(args[1], "inspect-delay") == 0) {
1393 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001394 memprintf(err, "%s %s is only allowed in 'backend' sections",
1395 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001396 return -1;
1397 }
1398
1399 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001400 memprintf(err,
1401 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1402 args[0], args[1], proxy_type_str(curpx), curpx->id);
1403 if (ptr)
1404 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001405 return -1;
1406 }
1407
1408 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001409 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1410 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001411 return 1;
1412 }
1413 curpx->tcp_rep.inspect_delay = val;
1414 return 0;
1415 }
1416
Simon Hormande072bd2011-06-24 15:11:37 +09001417 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001418 LIST_INIT(&rule->list);
1419 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001420 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001421
1422 if (strcmp(args[1], "content") == 0) {
1423 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001424
1425 if (curpx->cap & PR_CAP_FE)
1426 where |= SMP_VAL_FE_RES_CNT;
1427 if (curpx->cap & PR_CAP_BE)
1428 where |= SMP_VAL_BE_RES_CNT;
1429
1430 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001431 goto error;
1432
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001433 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1434 if (acl) {
1435 if (acl->name && *acl->name)
1436 memprintf(err,
1437 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1438 acl->name, args[0], args[1], sample_ckp_names(where));
1439 else
1440 memprintf(err,
1441 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1442 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001443 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001444 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001445
Emeric Brun97679e72010-09-23 17:56:44 +02001446 warn++;
1447 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001448 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1449 if (acl->name && *acl->name)
1450 memprintf(err,
1451 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001452 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001453 else
1454 memprintf(err,
1455 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001456 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001457 warn++;
1458 }
Emeric Brun97679e72010-09-23 17:56:44 +02001459
1460 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1461 }
1462 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001463 memprintf(err,
1464 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1465 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001466 goto error;
1467 }
1468
1469 return warn;
1470 error:
1471 free(rule);
1472 return -1;
1473}
1474
1475
Willy Tarreaub6866442008-07-14 23:54:42 +02001476/* This function should be called to parse a line starting with the "tcp-request"
1477 * keyword.
1478 */
1479static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001480 struct proxy *defpx, const char *file, int line,
1481 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001482{
1483 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001484 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001485 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001486 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001487 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001488 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001489 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001490 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001491
1492 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001493 if (curpx == defpx)
1494 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1495 else
1496 memprintf(err, "missing argument for '%s' in %s '%s'",
1497 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001498 return -1;
1499 }
1500
1501 if (!strcmp(args[1], "inspect-delay")) {
1502 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001503 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1504 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001505 return -1;
1506 }
1507
Willy Tarreaub6866442008-07-14 23:54:42 +02001508 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001509 memprintf(err,
1510 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1511 args[0], args[1], proxy_type_str(curpx), curpx->id);
1512 if (ptr)
1513 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001514 return -1;
1515 }
1516
1517 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001518 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1519 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001520 return 1;
1521 }
1522 curpx->tcp_req.inspect_delay = val;
1523 return 0;
1524 }
1525
Simon Hormande072bd2011-06-24 15:11:37 +09001526 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001527 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001528 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001529 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001530
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001531 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001532 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001533
1534 if (curpx->cap & PR_CAP_FE)
1535 where |= SMP_VAL_FE_REQ_CNT;
1536 if (curpx->cap & PR_CAP_BE)
1537 where |= SMP_VAL_BE_REQ_CNT;
1538
1539 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001540 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001541
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001542 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1543 if (acl) {
1544 if (acl->name && *acl->name)
1545 memprintf(err,
1546 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1547 acl->name, args[0], args[1], sample_ckp_names(where));
1548 else
1549 memprintf(err,
1550 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1551 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001552 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001553 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001554
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001555 warn++;
1556 }
1557 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1558 if (acl->name && *acl->name)
1559 memprintf(err,
1560 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001561 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001562 else
1563 memprintf(err,
1564 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001565 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001566 warn++;
1567 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001568
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001569 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001570 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001571 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001572 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001573
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001574 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001575 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1576 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001577 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001578 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001579
Willy Tarreau80aca902013-01-07 15:42:20 +01001580 where |= SMP_VAL_FE_CON_ACC;
1581
1582 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001583 goto error;
1584
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001585 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1586 if (acl) {
1587 if (acl->name && *acl->name)
1588 memprintf(err,
1589 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1590 acl->name, args[0], args[1], sample_ckp_names(where));
1591 else
1592 memprintf(err,
1593 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1594 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001595 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001596 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001597
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001598 warn++;
1599 }
1600 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1601 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001602 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001603 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001604 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001605 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001606 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001607 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001608 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001609 warn++;
1610 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001611
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001612 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001613 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001614 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001615 if (curpx == defpx)
1616 memprintf(err,
1617 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1618 args[0], args[1]);
1619 else
1620 memprintf(err,
1621 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001622 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001623 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001624 }
1625
Willy Tarreau1a687942010-05-23 22:40:30 +02001626 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001627 error:
1628 free(rule);
1629 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001630}
1631
Willy Tarreau645513a2010-05-24 20:55:15 +02001632
1633/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001634/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001635/************************************************************************/
1636
Willy Tarreau4a129812012-04-25 17:31:42 +02001637/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001638static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001639smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001640 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001641{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001642 struct connection *cli_conn = objt_conn(l4->si[0].end);
1643
1644 if (!cli_conn)
1645 return 0;
1646
1647 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001648 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001649 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001650 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001651 break;
1652 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001653 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001654 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001655 break;
1656 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001657 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001658 }
Emeric Brunf769f512010-10-22 17:14:01 +02001659
Willy Tarreau37406352012-04-23 16:16:37 +02001660 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001661 return 1;
1662}
1663
Willy Tarreaua5e37562011-12-16 17:06:15 +01001664/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001665static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001666smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001667 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001668{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001669 struct connection *cli_conn = objt_conn(l4->si[0].end);
1670
1671 if (!cli_conn)
1672 return 0;
1673
Willy Tarreauf853c462012-04-23 18:53:56 +02001674 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001675 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001676 return 0;
1677
Willy Tarreau37406352012-04-23 16:16:37 +02001678 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001679 return 1;
1680}
1681
Willy Tarreau4a129812012-04-25 17:31:42 +02001682/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001683static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001684smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001685 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001686{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001687 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001688
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001689 if (!cli_conn)
1690 return 0;
1691
1692 conn_get_to_addr(cli_conn);
1693
1694 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001695 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001696 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001697 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001698 break;
1699 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001700 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001701 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001702 break;
1703 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001704 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001705 }
Emeric Brunf769f512010-10-22 17:14:01 +02001706
Willy Tarreau37406352012-04-23 16:16:37 +02001707 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001708 return 1;
1709}
1710
Willy Tarreaua5e37562011-12-16 17:06:15 +01001711/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001712static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001713smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001714 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001715{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001716 struct connection *cli_conn = objt_conn(l4->si[0].end);
1717
1718 if (!cli_conn)
1719 return 0;
1720
1721 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001722
Willy Tarreauf853c462012-04-23 18:53:56 +02001723 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001724 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001725 return 0;
1726
Willy Tarreau37406352012-04-23 16:16:37 +02001727 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001728 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001729}
1730
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001731#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001732/* parse the "v4v6" bind keyword */
1733static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1734{
1735 struct listener *l;
1736
1737 list_for_each_entry(l, &conf->listeners, by_bind) {
1738 if (l->addr.ss_family == AF_INET6)
1739 l->options |= LI_O_V4V6;
1740 }
1741
1742 return 0;
1743}
1744
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001745/* parse the "v6only" bind keyword */
1746static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1747{
1748 struct listener *l;
1749
1750 list_for_each_entry(l, &conf->listeners, by_bind) {
1751 if (l->addr.ss_family == AF_INET6)
1752 l->options |= LI_O_V6ONLY;
1753 }
1754
1755 return 0;
1756}
1757#endif
1758
Pieter Baauwd551fb52013-05-08 22:49:23 +02001759#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001760/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001761static 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 +02001762{
1763 struct listener *l;
1764
Willy Tarreau4348fad2012-09-20 16:48:07 +02001765 list_for_each_entry(l, &conf->listeners, by_bind) {
1766 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1767 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001768 }
1769
Willy Tarreau44791242012-09-12 23:27:21 +02001770 return 0;
1771}
1772#endif
1773
1774#ifdef TCP_DEFER_ACCEPT
1775/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001776static 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 +02001777{
1778 struct listener *l;
1779
Willy Tarreau4348fad2012-09-20 16:48:07 +02001780 list_for_each_entry(l, &conf->listeners, by_bind) {
1781 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1782 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001783 }
1784
Willy Tarreau44791242012-09-12 23:27:21 +02001785 return 0;
1786}
1787#endif
1788
Willy Tarreau1c862c52012-10-05 16:21:00 +02001789#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001790/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001791static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1792{
1793 struct listener *l;
1794
1795 list_for_each_entry(l, &conf->listeners, by_bind) {
1796 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1797 l->options |= LI_O_TCP_FO;
1798 }
1799
1800 return 0;
1801}
1802#endif
1803
Willy Tarreau44791242012-09-12 23:27:21 +02001804#ifdef TCP_MAXSEG
1805/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001806static 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 +02001807{
1808 struct listener *l;
1809 int mss;
1810
Willy Tarreau44791242012-09-12 23:27:21 +02001811 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001812 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001813 return ERR_ALERT | ERR_FATAL;
1814 }
1815
1816 mss = atoi(args[cur_arg + 1]);
1817 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001818 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001819 return ERR_ALERT | ERR_FATAL;
1820 }
1821
Willy Tarreau4348fad2012-09-20 16:48:07 +02001822 list_for_each_entry(l, &conf->listeners, by_bind) {
1823 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1824 l->maxseg = mss;
1825 }
Willy Tarreau44791242012-09-12 23:27:21 +02001826
1827 return 0;
1828}
1829#endif
1830
1831#ifdef SO_BINDTODEVICE
1832/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001833static 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 +02001834{
1835 struct listener *l;
1836
Willy Tarreau44791242012-09-12 23:27:21 +02001837 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001838 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001839 return ERR_ALERT | ERR_FATAL;
1840 }
1841
Willy Tarreau4348fad2012-09-20 16:48:07 +02001842 list_for_each_entry(l, &conf->listeners, by_bind) {
1843 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1844 l->interface = strdup(args[cur_arg + 1]);
1845 }
Willy Tarreau44791242012-09-12 23:27:21 +02001846
1847 global.last_checks |= LSTCHK_NETADM;
1848 return 0;
1849}
1850#endif
1851
Willy Tarreaudc13c112013-06-21 23:16:39 +02001852static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001853 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001854 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001855 { 0, NULL, NULL },
1856}};
1857
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001858
Willy Tarreau61612d42012-04-19 18:42:05 +02001859/* Note: must not be declared <const> as its list will be overwritten.
1860 * Please take care of keeping this list alphabetically sorted.
1861 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001862static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001863 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02001864}};
1865
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001866
Willy Tarreau4a129812012-04-25 17:31:42 +02001867/* Note: must not be declared <const> as its list will be overwritten.
1868 * Note: fetches that may return multiple types must be declared as the lowest
1869 * common denominator, the type that can be casted into all other ones. For
1870 * instance v4/v6 must be declared v4.
1871 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001872static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001873 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1874 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1875 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1876 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1877 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001878}};
1879
Willy Tarreau44791242012-09-12 23:27:21 +02001880/************************************************************************/
1881/* All supported bind keywords must be declared here. */
1882/************************************************************************/
1883
1884/* Note: must not be declared <const> as its list will be overwritten.
1885 * Please take care of keeping this list alphabetically sorted, doing so helps
1886 * all code contributors.
1887 * Optional keywords are also declared with a NULL ->parse() function so that
1888 * the config parser can report an appropriate error when a known keyword was
1889 * not enabled.
1890 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001891static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001892#ifdef TCP_DEFER_ACCEPT
1893 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1894#endif
1895#ifdef SO_BINDTODEVICE
1896 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1897#endif
1898#ifdef TCP_MAXSEG
1899 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1900#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001901#ifdef TCP_FASTOPEN
1902 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1903#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001904#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001905 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1906#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001907#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001908 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001909 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1910#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001911 /* the versions with the NULL parse function*/
1912 { "defer-accept", NULL, 0 },
1913 { "interface", NULL, 1 },
1914 { "mss", NULL, 1 },
1915 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001916 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001917 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001918 { NULL, NULL, 0 },
1919}};
1920
Willy Tarreaue6b98942007-10-29 01:09:36 +01001921__attribute__((constructor))
1922static void __tcp_protocol_init(void)
1923{
1924 protocol_register(&proto_tcpv4);
1925 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001926 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001927 cfg_register_keywords(&cfg_kws);
1928 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02001929 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001930}
1931
1932
1933/*
1934 * Local variables:
1935 * c-indent-level: 8
1936 * c-basic-offset: 8
1937 * End:
1938 */