blob: cb10661409d9a27e56841bcda9cfe7b5000882c4 [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 Tarreauf79c8172013-10-21 16:30:56 +0200629 if (!(conn->flags & CO_FL_CTRL_READY))
630 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 Tarreauf12a20e2013-12-04 16:11:04 +0100635 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
636 * without FD_POLL_IN also indicates a hangup without input data meaning
637 * there was no connection.
638 */
639 if (fdtab[fd].ev & FD_POLL_ERR ||
640 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
641 skerr = 0;
642 lskerr = sizeof(skerr);
643 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
644 errno = skerr;
645 if (errno == EAGAIN)
646 errno = 0;
647 if (errno)
648 goto out_error;
649 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200650
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100651 /* Use connect() to check the state of the socket. This has the
652 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200653 * - error
654 * - connecting (EALREADY, EINPROGRESS)
655 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200656 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200657 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200658 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100659 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100660 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200661 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200662 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200663
Willy Tarreau2c6be842012-07-06 17:12:34 +0200664 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200665 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200666
Willy Tarreau2c6be842012-07-06 17:12:34 +0200667 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200668 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200669
Willy Tarreau076be252012-07-06 16:02:29 +0200670 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200671 * forward the event to the transport layer which will notify the
672 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200673 */
Willy Tarreau80184712012-07-06 14:54:49 +0200674 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200675 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200676
677 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200678 /* Write error on the file descriptor. Report it to the connection
679 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200680 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100681 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100682 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100683 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200684 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200685}
686
Willy Tarreau59b94792012-05-11 16:16:40 +0200687
Willy Tarreaue6b98942007-10-29 01:09:36 +0100688/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100689 * an error message in <errmsg> if the message is at most <errlen> bytes long
690 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
691 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100692 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
693 * was alright and that no message was returned. ERR_RETRYABLE means that an
694 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700695 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100696 * the meaning of the error, but just indicate that a message is present which
697 * should be displayed with the respective level. Last, ERR_ABORT indicates
698 * that it's pointless to try to start other listeners. No error message is
699 * returned if errlen is NULL.
700 */
701int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
702{
703 __label__ tcp_return, tcp_close_return;
704 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100705 int ext, ready;
706 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100707 const char *msg = NULL;
708
709 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100710 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100711 *errmsg = 0;
712
713 if (listener->state != LI_ASSIGNED)
714 return ERR_NONE; /* already bound */
715
716 err = ERR_NONE;
717
Willy Tarreau40aa0702013-03-10 23:51:38 +0100718 /* if the listener already has an fd assigned, then we were offered the
719 * fd by an external process (most likely the parent), and we don't want
720 * to create a new socket. However we still want to set a few flags on
721 * the socket.
722 */
723 fd = listener->fd;
724 ext = (fd >= 0);
725
726 if (!ext && (fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100727 err |= ERR_RETRYABLE | ERR_ALERT;
728 msg = "cannot create listening socket";
729 goto tcp_return;
730 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100731
Willy Tarreaue6b98942007-10-29 01:09:36 +0100732 if (fd >= global.maxsock) {
733 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
734 msg = "not enough free sockets (raise '-n' parameter)";
735 goto tcp_close_return;
736 }
737
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200738 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100739 err |= ERR_FATAL | ERR_ALERT;
740 msg = "cannot make socket non-blocking";
741 goto tcp_close_return;
742 }
743
Willy Tarreau40aa0702013-03-10 23:51:38 +0100744 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100745 /* not fatal but should be reported */
746 msg = "cannot do so_reuseaddr";
747 err |= ERR_ALERT;
748 }
749
750 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900751 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100752
Willy Tarreaue6b98942007-10-29 01:09:36 +0100753#ifdef SO_REUSEPORT
754 /* OpenBSD supports this. As it's present in old libc versions of Linux,
755 * it might return an error that we will silently ignore.
756 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100757 if (!ext)
758 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100759#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200760
Willy Tarreau40aa0702013-03-10 23:51:38 +0100761 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200762 switch (listener->addr.ss_family) {
763 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200764 if (1
765#if defined(IP_TRANSPARENT)
766 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
767#endif
768#if defined(IP_FREEBIND)
769 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
770#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200771#if defined(IP_BINDANY)
772 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
773#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200774#if defined(SO_BINDANY)
775 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
776#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200777 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200778 msg = "cannot make listening socket transparent";
779 err |= ERR_ALERT;
780 }
781 break;
782 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200783 if (1
784#if defined(IPV6_TRANSPARENT)
785 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
786#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200787#if defined(IPV6_BINDANY)
788 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
789#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200790#if defined(SO_BINDANY)
791 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
792#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200793 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200794 msg = "cannot make listening socket transparent";
795 err |= ERR_ALERT;
796 }
797 break;
798 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100799 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200800
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100801#ifdef SO_BINDTODEVICE
802 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100803 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100804 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100805 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100806 msg = "cannot bind listener to device";
807 err |= ERR_WARN;
808 }
809 }
810#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400811#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100812 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400813 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200814 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
815 msg = "cannot set MSS";
816 err |= ERR_WARN;
817 }
818 }
819#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200820#if defined(TCP_DEFER_ACCEPT)
821 if (listener->options & LI_O_DEF_ACCEPT) {
822 /* defer accept by up to one second */
823 int accept_delay = 1;
824 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
825 msg = "cannot enable DEFER_ACCEPT";
826 err |= ERR_WARN;
827 }
828 }
829#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200830#if defined(TCP_FASTOPEN)
831 if (listener->options & LI_O_TCP_FO) {
832 /* TFO needs a queue length, let's use the configured backlog */
833 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
834 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
835 msg = "cannot enable TCP_FASTOPEN";
836 err |= ERR_WARN;
837 }
838 }
839#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100840#if defined(IPV6_V6ONLY)
841 if (listener->options & LI_O_V6ONLY)
842 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100843 else if (listener->options & LI_O_V4V6)
844 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100845#endif
846
Willy Tarreau40aa0702013-03-10 23:51:38 +0100847 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100848 err |= ERR_RETRYABLE | ERR_ALERT;
849 msg = "cannot bind socket";
850 goto tcp_close_return;
851 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100852
Willy Tarreau40aa0702013-03-10 23:51:38 +0100853 ready = 0;
854 ready_len = sizeof(ready);
855 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
856 ready = 0;
857
858 if (!(ext && ready) && /* only listen if not already done by external process */
859 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100860 err |= ERR_RETRYABLE | ERR_ALERT;
861 msg = "cannot listen to socket";
862 goto tcp_close_return;
863 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100864
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400865#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200866 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900867 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200868#endif
869
Willy Tarreaue6b98942007-10-29 01:09:36 +0100870 /* the socket is ready */
871 listener->fd = fd;
872 listener->state = LI_LISTEN;
873
Willy Tarreaueabf3132008-08-29 23:36:51 +0200874 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200875 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200876 fd_insert(fd);
877
Willy Tarreaue6b98942007-10-29 01:09:36 +0100878 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100879 if (msg && errlen) {
880 char pn[INET6_ADDRSTRLEN];
881
Willy Tarreau631f01c2011-09-05 00:36:48 +0200882 addr_to_str(&listener->addr, pn, sizeof(pn));
883 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100884 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100885 return err;
886
887 tcp_close_return:
888 close(fd);
889 goto tcp_return;
890}
891
892/* This function creates all TCP sockets bound to the protocol entry <proto>.
893 * It is intended to be used as the protocol's bind_all() function.
894 * The sockets will be registered but not added to any fd_set, in order not to
895 * loose them across the fork(). A call to enable_all_listeners() is needed
896 * to complete initialization. The return value is composed from ERR_*.
897 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200898static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100899{
900 struct listener *listener;
901 int err = ERR_NONE;
902
903 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200904 err |= tcp_bind_listener(listener, errmsg, errlen);
905 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100906 break;
907 }
908
909 return err;
910}
911
912/* Add listener to the list of tcpv4 listeners. The listener's state
913 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
914 * listeners is updated. This is the function to use to add a new listener.
915 */
916void tcpv4_add_listener(struct listener *listener)
917{
918 if (listener->state != LI_INIT)
919 return;
920 listener->state = LI_ASSIGNED;
921 listener->proto = &proto_tcpv4;
922 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
923 proto_tcpv4.nb_listeners++;
924}
925
926/* Add listener to the list of tcpv4 listeners. The listener's state
927 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
928 * listeners is updated. This is the function to use to add a new listener.
929 */
930void tcpv6_add_listener(struct listener *listener)
931{
932 if (listener->state != LI_INIT)
933 return;
934 listener->state = LI_ASSIGNED;
935 listener->proto = &proto_tcpv6;
936 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
937 proto_tcpv6.nb_listeners++;
938}
939
Willy Tarreauedcf6682008-11-30 23:15:34 +0100940/* This function performs the TCP request analysis on the current request. It
941 * returns 1 if the processing can continue on next analysers, or zero if it
942 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200943 * request. It relies on buffers flags, and updates s->req->analysers. The
944 * function may be called for frontend rules and backend rules. It only relies
945 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100946 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200947int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100948{
949 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200950 struct stksess *ts;
951 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100952 int partial;
953
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100954 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 +0100955 now_ms, __FUNCTION__,
956 s,
957 req,
958 req->rex, req->wex,
959 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200960 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100961 req->analysers);
962
Willy Tarreauedcf6682008-11-30 23:15:34 +0100963 /* We don't know whether we have enough data, so must proceed
964 * this way :
965 * - iterate through all rules in their declaration order
966 * - if one rule returns MISS, it means the inspect delay is
967 * not over yet, then return immediately, otherwise consider
968 * it as a non-match.
969 * - if one rule returns OK, then return OK
970 * - if one rule returns KO, then return KO
971 */
972
Willy Tarreau9b28e032012-10-12 23:49:43 +0200973 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200974 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200975 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100976 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200977 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100978
Willy Tarreaufb356202010-08-03 14:02:05 +0200979 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +0100980 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100981
982 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200983 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +0100984 if (ret == ACL_TEST_MISS) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200985 channel_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100986 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200987 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +0100988 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100989 return 0;
990 }
991
992 ret = acl_pass(ret);
993 if (rule->cond->pol == ACL_COND_UNLESS)
994 ret = !ret;
995 }
996
997 if (ret) {
998 /* we have a matching rule. */
999 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001000 channel_abort(req);
1001 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001002 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001003
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001004 s->be->be_counters.denied_req++;
1005 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001006 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +02001007 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001008
Willy Tarreauedcf6682008-11-30 23:15:34 +01001009 if (!(s->flags & SN_ERR_MASK))
1010 s->flags |= SN_ERR_PRXCOND;
1011 if (!(s->flags & SN_FINST_MASK))
1012 s->flags |= SN_FINST_R;
1013 return 0;
1014 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001015 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001016 /* Note: only the first valid tracking parameter of each
1017 * applies.
1018 */
1019 struct stktable_key *key;
1020
Willy Tarreau44778ad2013-10-30 19:24:00 +01001021 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
1022 continue;
1023
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001024 t = rule->act_prm.trk_ctr.table.t;
1025 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1026
1027 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001028 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
1029 if (s->fe != s->be)
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001030 s->flags |= SN_BE_TRACK_SC0 << tcp_trk_idx(rule->action);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001031 }
1032 }
1033 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +01001034 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001035 break;
1036 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001037 }
1038 }
1039
1040 /* if we get there, it means we have no rule which matches, or
1041 * we have an explicit accept, so we apply the default accept.
1042 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001043 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001044 req->analyse_exp = TICK_ETERNITY;
1045 return 1;
1046}
1047
Emeric Brun97679e72010-09-23 17:56:44 +02001048/* This function performs the TCP response analysis on the current response. It
1049 * returns 1 if the processing can continue on next analysers, or zero if it
1050 * needs more data, encounters an error, or wants to immediately abort the
1051 * response. It relies on buffers flags, and updates s->rep->analysers. The
1052 * function may be called for backend rules.
1053 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001054int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001055{
1056 struct tcp_rule *rule;
1057 int partial;
1058
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001059 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 +02001060 now_ms, __FUNCTION__,
1061 s,
1062 rep,
1063 rep->rex, rep->wex,
1064 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001065 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001066 rep->analysers);
1067
1068 /* We don't know whether we have enough data, so must proceed
1069 * this way :
1070 * - iterate through all rules in their declaration order
1071 * - if one rule returns MISS, it means the inspect delay is
1072 * not over yet, then return immediately, otherwise consider
1073 * it as a non-match.
1074 * - if one rule returns OK, then return OK
1075 * - if one rule returns KO, then return KO
1076 */
1077
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001078 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001079 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001080 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001081 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001082
1083 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001084 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001085
1086 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001087 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001088 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001089 /* just set the analyser timeout once at the beginning of the response */
1090 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001091 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001092 return 0;
1093 }
1094
1095 ret = acl_pass(ret);
1096 if (rule->cond->pol == ACL_COND_UNLESS)
1097 ret = !ret;
1098 }
1099
1100 if (ret) {
1101 /* we have a matching rule. */
1102 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001103 channel_abort(rep);
1104 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001105 rep->analysers = 0;
1106
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001107 s->be->be_counters.denied_resp++;
1108 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001109 if (s->listener->counters)
1110 s->listener->counters->denied_resp++;
1111
1112 if (!(s->flags & SN_ERR_MASK))
1113 s->flags |= SN_ERR_PRXCOND;
1114 if (!(s->flags & SN_FINST_MASK))
1115 s->flags |= SN_FINST_D;
1116 return 0;
1117 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001118 else if (rule->action == TCP_ACT_CLOSE) {
1119 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1120 si_shutr(rep->prod);
1121 si_shutw(rep->prod);
1122 break;
1123 }
Emeric Brun97679e72010-09-23 17:56:44 +02001124 else {
1125 /* otherwise accept */
1126 break;
1127 }
1128 }
1129 }
1130
1131 /* if we get there, it means we have no rule which matches, or
1132 * we have an explicit accept, so we apply the default accept.
1133 */
1134 rep->analysers &= ~an_bit;
1135 rep->analyse_exp = TICK_ETERNITY;
1136 return 1;
1137}
1138
1139
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001140/* This function performs the TCP layer4 analysis on the current request. It
1141 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1142 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001143 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001144 */
1145int tcp_exec_req_rules(struct session *s)
1146{
1147 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001148 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001149 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001150 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001151 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001152 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001153
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001154 if (!conn)
1155 return result;
1156
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001157 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001158 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001159
1160 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001161 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001162 ret = acl_pass(ret);
1163 if (rule->cond->pol == ACL_COND_UNLESS)
1164 ret = !ret;
1165 }
1166
1167 if (ret) {
1168 /* we have a matching rule. */
1169 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001170 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001171 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001172 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001173
1174 if (!(s->flags & SN_ERR_MASK))
1175 s->flags |= SN_ERR_PRXCOND;
1176 if (!(s->flags & SN_FINST_MASK))
1177 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001178 result = 0;
1179 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001180 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001181 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001182 /* Note: only the first valid tracking parameter of each
1183 * applies.
1184 */
1185 struct stktable_key *key;
1186
Willy Tarreau44778ad2013-10-30 19:24:00 +01001187 if (s->stkctr[tcp_trk_idx(rule->action)].entry)
1188 continue;
1189
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001190 t = rule->act_prm.trk_ctr.table.t;
1191 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr);
1192
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001193 if (key && (ts = stktable_get_entry(t, key)))
1194 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001195 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001196 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001197 conn->flags |= CO_FL_ACCEPT_PROXY;
1198 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001199 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001200 else {
1201 /* otherwise it's an accept */
1202 break;
1203 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001204 }
1205 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001206 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001207}
1208
Emeric Brun97679e72010-09-23 17:56:44 +02001209/* Parse a tcp-response rule. Return a negative value in case of failure */
1210static int tcp_parse_response_rule(char **args, int arg, int section_type,
1211 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau80aca902013-01-07 15:42:20 +01001212 struct tcp_rule *rule, char **err,
1213 unsigned int where)
Emeric Brun97679e72010-09-23 17:56:44 +02001214{
1215 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001216 memprintf(err, "%s %s is only allowed in 'backend' sections",
1217 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001218 return -1;
1219 }
1220
1221 if (strcmp(args[arg], "accept") == 0) {
1222 arg++;
1223 rule->action = TCP_ACT_ACCEPT;
1224 }
1225 else if (strcmp(args[arg], "reject") == 0) {
1226 arg++;
1227 rule->action = TCP_ACT_REJECT;
1228 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001229 else if (strcmp(args[arg], "close") == 0) {
1230 arg++;
1231 rule->action = TCP_ACT_CLOSE;
1232 }
Emeric Brun97679e72010-09-23 17:56:44 +02001233 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001234 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001235 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001236 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001237 return -1;
1238 }
1239
1240 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001241 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1242 memprintf(err,
1243 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1244 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001245 return -1;
1246 }
1247 }
1248 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001249 memprintf(err,
1250 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001251 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1252 return -1;
1253 }
1254 return 0;
1255}
1256
1257
1258
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001259/* Parse a tcp-request rule. Return a negative value in case of failure */
1260static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001261 struct proxy *curpx, struct proxy *defpx,
1262 struct tcp_rule *rule, char **err,
1263 unsigned int where)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001264{
1265 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001266 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1267 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001268 return -1;
1269 }
1270
1271 if (!strcmp(args[arg], "accept")) {
1272 arg++;
1273 rule->action = TCP_ACT_ACCEPT;
1274 }
1275 else if (!strcmp(args[arg], "reject")) {
1276 arg++;
1277 rule->action = TCP_ACT_REJECT;
1278 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001279 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1280 args[arg][9] == '\0' && args[arg][8] >= '0' &&
1281 args[arg][8] <= '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001282 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001283 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001284
1285 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001286
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001287 curpx->conf.args.ctx = ARGC_TRK;
Willy Tarreau975c1782013-12-12 23:16:54 +01001288 expr = sample_parse_expr(args, &arg, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001289 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001290 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001291 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001292 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001293 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001294 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001295
Willy Tarreau80aca902013-01-07 15:42:20 +01001296 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001297 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001298 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001299 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001300 free(expr);
1301 return -1;
1302 }
1303
1304 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001305 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001306
1307 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001308 arg++;
1309 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001310 memprintf(err,
1311 "'%s %s %s' : missing table name",
1312 args[0], args[1], args[kw]);
1313 free(expr);
1314 return -1;
1315 }
1316 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001317 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001318 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001319 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001320 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001321 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001322 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001323 else if (strcmp(args[arg], "expect-proxy") == 0) {
1324 if (strcmp(args[arg+1], "layer4") != 0) {
1325 memprintf(err,
1326 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1327 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1328 return -1;
1329 }
1330
1331 if (!(where & SMP_VAL_FE_CON_ACC)) {
1332 memprintf(err,
1333 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1334 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1335 return -1;
1336 }
1337
1338 arg += 2;
1339 rule->action = TCP_ACT_EXPECT_PX;
1340 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001341 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001342 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001343 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1344 " in %s '%s' (got '%s')",
1345 args[0], args[1], MAX_SESS_STKCTR, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001346 return -1;
1347 }
1348
1349 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001350 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1351 memprintf(err,
1352 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1353 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001354 return -1;
1355 }
1356 }
1357 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001358 memprintf(err,
1359 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001360 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1361 return -1;
1362 }
1363 return 0;
1364}
1365
Emeric Brun97679e72010-09-23 17:56:44 +02001366/* This function should be called to parse a line starting with the "tcp-response"
1367 * keyword.
1368 */
1369static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001370 struct proxy *defpx, const char *file, int line,
1371 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001372{
1373 const char *ptr = NULL;
1374 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001375 int warn = 0;
1376 int arg;
1377 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001378 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001379 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001380 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001381
1382 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001383 memprintf(err, "missing argument for '%s' in %s '%s'",
1384 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001385 return -1;
1386 }
1387
1388 if (strcmp(args[1], "inspect-delay") == 0) {
1389 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001390 memprintf(err, "%s %s is only allowed in 'backend' sections",
1391 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001392 return -1;
1393 }
1394
1395 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001396 memprintf(err,
1397 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1398 args[0], args[1], proxy_type_str(curpx), curpx->id);
1399 if (ptr)
1400 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001401 return -1;
1402 }
1403
1404 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001405 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1406 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001407 return 1;
1408 }
1409 curpx->tcp_rep.inspect_delay = val;
1410 return 0;
1411 }
1412
Simon Hormande072bd2011-06-24 15:11:37 +09001413 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001414 LIST_INIT(&rule->list);
1415 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001416 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001417
1418 if (strcmp(args[1], "content") == 0) {
1419 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001420
1421 if (curpx->cap & PR_CAP_FE)
1422 where |= SMP_VAL_FE_RES_CNT;
1423 if (curpx->cap & PR_CAP_BE)
1424 where |= SMP_VAL_BE_RES_CNT;
1425
1426 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001427 goto error;
1428
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001429 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1430 if (acl) {
1431 if (acl->name && *acl->name)
1432 memprintf(err,
1433 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1434 acl->name, args[0], args[1], sample_ckp_names(where));
1435 else
1436 memprintf(err,
1437 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1438 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001439 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001440 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001441
Emeric Brun97679e72010-09-23 17:56:44 +02001442 warn++;
1443 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001444 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1445 if (acl->name && *acl->name)
1446 memprintf(err,
1447 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001448 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001449 else
1450 memprintf(err,
1451 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001452 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001453 warn++;
1454 }
Emeric Brun97679e72010-09-23 17:56:44 +02001455
1456 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1457 }
1458 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001459 memprintf(err,
1460 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1461 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001462 goto error;
1463 }
1464
1465 return warn;
1466 error:
1467 free(rule);
1468 return -1;
1469}
1470
1471
Willy Tarreaub6866442008-07-14 23:54:42 +02001472/* This function should be called to parse a line starting with the "tcp-request"
1473 * keyword.
1474 */
1475static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001476 struct proxy *defpx, const char *file, int line,
1477 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001478{
1479 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001480 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001481 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001482 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001483 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001484 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001485 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001486 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001487
1488 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001489 if (curpx == defpx)
1490 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1491 else
1492 memprintf(err, "missing argument for '%s' in %s '%s'",
1493 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001494 return -1;
1495 }
1496
1497 if (!strcmp(args[1], "inspect-delay")) {
1498 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001499 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1500 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001501 return -1;
1502 }
1503
Willy Tarreaub6866442008-07-14 23:54:42 +02001504 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001505 memprintf(err,
1506 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1507 args[0], args[1], proxy_type_str(curpx), curpx->id);
1508 if (ptr)
1509 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001510 return -1;
1511 }
1512
1513 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001514 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1515 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001516 return 1;
1517 }
1518 curpx->tcp_req.inspect_delay = val;
1519 return 0;
1520 }
1521
Simon Hormande072bd2011-06-24 15:11:37 +09001522 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001523 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001524 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001525 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001526
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001527 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001528 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001529
1530 if (curpx->cap & PR_CAP_FE)
1531 where |= SMP_VAL_FE_REQ_CNT;
1532 if (curpx->cap & PR_CAP_BE)
1533 where |= SMP_VAL_BE_REQ_CNT;
1534
1535 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001536 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001537
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001538 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1539 if (acl) {
1540 if (acl->name && *acl->name)
1541 memprintf(err,
1542 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1543 acl->name, args[0], args[1], sample_ckp_names(where));
1544 else
1545 memprintf(err,
1546 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1547 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001548 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001549 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001550
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001551 warn++;
1552 }
1553 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1554 if (acl->name && *acl->name)
1555 memprintf(err,
1556 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001557 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001558 else
1559 memprintf(err,
1560 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001561 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001562 warn++;
1563 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001564
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001565 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001566 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001567 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001568 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001569
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001570 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001571 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1572 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001573 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001574 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001575
Willy Tarreau80aca902013-01-07 15:42:20 +01001576 where |= SMP_VAL_FE_CON_ACC;
1577
1578 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001579 goto error;
1580
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001581 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1582 if (acl) {
1583 if (acl->name && *acl->name)
1584 memprintf(err,
1585 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1586 acl->name, args[0], args[1], sample_ckp_names(where));
1587 else
1588 memprintf(err,
1589 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1590 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001591 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001592 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001593
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001594 warn++;
1595 }
1596 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1597 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001598 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001599 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001600 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001601 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001602 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001603 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001604 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001605 warn++;
1606 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001607
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001608 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001609 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001610 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001611 if (curpx == defpx)
1612 memprintf(err,
1613 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1614 args[0], args[1]);
1615 else
1616 memprintf(err,
1617 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001618 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001619 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001620 }
1621
Willy Tarreau1a687942010-05-23 22:40:30 +02001622 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001623 error:
1624 free(rule);
1625 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001626}
1627
Willy Tarreau645513a2010-05-24 20:55:15 +02001628
1629/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001630/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001631/************************************************************************/
1632
Willy Tarreau4a129812012-04-25 17:31:42 +02001633/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001634static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001635smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001636 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001637{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001638 struct connection *cli_conn = objt_conn(l4->si[0].end);
1639
1640 if (!cli_conn)
1641 return 0;
1642
1643 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001644 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001645 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001646 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001647 break;
1648 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001649 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001650 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001651 break;
1652 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001653 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001654 }
Emeric Brunf769f512010-10-22 17:14:01 +02001655
Willy Tarreau37406352012-04-23 16:16:37 +02001656 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001657 return 1;
1658}
1659
Willy Tarreaua5e37562011-12-16 17:06:15 +01001660/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001661static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001662smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001663 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001664{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001665 struct connection *cli_conn = objt_conn(l4->si[0].end);
1666
1667 if (!cli_conn)
1668 return 0;
1669
Willy Tarreauf853c462012-04-23 18:53:56 +02001670 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001671 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001672 return 0;
1673
Willy Tarreau37406352012-04-23 16:16:37 +02001674 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001675 return 1;
1676}
1677
Willy Tarreau4a129812012-04-25 17:31:42 +02001678/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001679static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001680smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001681 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001682{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001683 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001684
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001685 if (!cli_conn)
1686 return 0;
1687
1688 conn_get_to_addr(cli_conn);
1689
1690 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001691 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001692 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001693 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001694 break;
1695 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001696 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001697 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001698 break;
1699 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001700 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001701 }
Emeric Brunf769f512010-10-22 17:14:01 +02001702
Willy Tarreau37406352012-04-23 16:16:37 +02001703 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001704 return 1;
1705}
1706
Willy Tarreaua5e37562011-12-16 17:06:15 +01001707/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001708static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001709smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001710 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001711{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001712 struct connection *cli_conn = objt_conn(l4->si[0].end);
1713
1714 if (!cli_conn)
1715 return 0;
1716
1717 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001718
Willy Tarreauf853c462012-04-23 18:53:56 +02001719 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001720 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001721 return 0;
1722
Willy Tarreau37406352012-04-23 16:16:37 +02001723 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001724 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001725}
1726
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001727#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001728/* parse the "v4v6" bind keyword */
1729static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1730{
1731 struct listener *l;
1732
1733 list_for_each_entry(l, &conf->listeners, by_bind) {
1734 if (l->addr.ss_family == AF_INET6)
1735 l->options |= LI_O_V4V6;
1736 }
1737
1738 return 0;
1739}
1740
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001741/* parse the "v6only" bind keyword */
1742static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1743{
1744 struct listener *l;
1745
1746 list_for_each_entry(l, &conf->listeners, by_bind) {
1747 if (l->addr.ss_family == AF_INET6)
1748 l->options |= LI_O_V6ONLY;
1749 }
1750
1751 return 0;
1752}
1753#endif
1754
Pieter Baauwd551fb52013-05-08 22:49:23 +02001755#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001756/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001757static 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 +02001758{
1759 struct listener *l;
1760
Willy Tarreau4348fad2012-09-20 16:48:07 +02001761 list_for_each_entry(l, &conf->listeners, by_bind) {
1762 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1763 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001764 }
1765
Willy Tarreau44791242012-09-12 23:27:21 +02001766 return 0;
1767}
1768#endif
1769
1770#ifdef TCP_DEFER_ACCEPT
1771/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001772static 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 +02001773{
1774 struct listener *l;
1775
Willy Tarreau4348fad2012-09-20 16:48:07 +02001776 list_for_each_entry(l, &conf->listeners, by_bind) {
1777 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1778 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001779 }
1780
Willy Tarreau44791242012-09-12 23:27:21 +02001781 return 0;
1782}
1783#endif
1784
Willy Tarreau1c862c52012-10-05 16:21:00 +02001785#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001786/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001787static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1788{
1789 struct listener *l;
1790
1791 list_for_each_entry(l, &conf->listeners, by_bind) {
1792 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1793 l->options |= LI_O_TCP_FO;
1794 }
1795
1796 return 0;
1797}
1798#endif
1799
Willy Tarreau44791242012-09-12 23:27:21 +02001800#ifdef TCP_MAXSEG
1801/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001802static 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 +02001803{
1804 struct listener *l;
1805 int mss;
1806
Willy Tarreau44791242012-09-12 23:27:21 +02001807 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001808 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001809 return ERR_ALERT | ERR_FATAL;
1810 }
1811
1812 mss = atoi(args[cur_arg + 1]);
1813 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001814 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001815 return ERR_ALERT | ERR_FATAL;
1816 }
1817
Willy Tarreau4348fad2012-09-20 16:48:07 +02001818 list_for_each_entry(l, &conf->listeners, by_bind) {
1819 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1820 l->maxseg = mss;
1821 }
Willy Tarreau44791242012-09-12 23:27:21 +02001822
1823 return 0;
1824}
1825#endif
1826
1827#ifdef SO_BINDTODEVICE
1828/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001829static 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 +02001830{
1831 struct listener *l;
1832
Willy Tarreau44791242012-09-12 23:27:21 +02001833 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001834 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001835 return ERR_ALERT | ERR_FATAL;
1836 }
1837
Willy Tarreau4348fad2012-09-20 16:48:07 +02001838 list_for_each_entry(l, &conf->listeners, by_bind) {
1839 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1840 l->interface = strdup(args[cur_arg + 1]);
1841 }
Willy Tarreau44791242012-09-12 23:27:21 +02001842
1843 global.last_checks |= LSTCHK_NETADM;
1844 return 0;
1845}
1846#endif
1847
Willy Tarreaudc13c112013-06-21 23:16:39 +02001848static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001849 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001850 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001851 { 0, NULL, NULL },
1852}};
1853
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001854
Willy Tarreau61612d42012-04-19 18:42:05 +02001855/* Note: must not be declared <const> as its list will be overwritten.
1856 * Please take care of keeping this list alphabetically sorted.
1857 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001858static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001859 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02001860}};
1861
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001862
Willy Tarreau4a129812012-04-25 17:31:42 +02001863/* Note: must not be declared <const> as its list will be overwritten.
1864 * Note: fetches that may return multiple types must be declared as the lowest
1865 * common denominator, the type that can be casted into all other ones. For
1866 * instance v4/v6 must be declared v4.
1867 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001868static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001869 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1870 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1871 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
1872 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
1873 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02001874}};
1875
Willy Tarreau44791242012-09-12 23:27:21 +02001876/************************************************************************/
1877/* All supported bind keywords must be declared here. */
1878/************************************************************************/
1879
1880/* Note: must not be declared <const> as its list will be overwritten.
1881 * Please take care of keeping this list alphabetically sorted, doing so helps
1882 * all code contributors.
1883 * Optional keywords are also declared with a NULL ->parse() function so that
1884 * the config parser can report an appropriate error when a known keyword was
1885 * not enabled.
1886 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001887static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001888#ifdef TCP_DEFER_ACCEPT
1889 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1890#endif
1891#ifdef SO_BINDTODEVICE
1892 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1893#endif
1894#ifdef TCP_MAXSEG
1895 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1896#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001897#ifdef TCP_FASTOPEN
1898 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1899#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02001900#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001901 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1902#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001903#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001904 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001905 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
1906#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001907 /* the versions with the NULL parse function*/
1908 { "defer-accept", NULL, 0 },
1909 { "interface", NULL, 1 },
1910 { "mss", NULL, 1 },
1911 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01001912 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001913 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02001914 { NULL, NULL, 0 },
1915}};
1916
Willy Tarreaue6b98942007-10-29 01:09:36 +01001917__attribute__((constructor))
1918static void __tcp_protocol_init(void)
1919{
1920 protocol_register(&proto_tcpv4);
1921 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001922 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001923 cfg_register_keywords(&cfg_kws);
1924 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02001925 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001926}
1927
1928
1929/*
1930 * Local variables:
1931 * c-indent-level: 8
1932 * c-basic-offset: 8
1933 * End:
1934 */