blob: 2aa93bb98cddc58212a9a95dda7cbd7fb5b33250 [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 Tarreau18bf01e2014-06-13 16:18:52 +020038#include <types/capture.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020039#include <types/server.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010040
41#include <proto/acl.h>
Willy Tarreau9fcb9842012-04-20 14:45:49 +020042#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020043#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020044#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020045#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020046#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020047#include <proto/log.h>
48#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020049#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010050#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020051#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020052#include <proto/sample.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020053#include <proto/session.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020054#include <proto/stick_table.h>
Willy Tarreaucc1e04b2013-09-11 23:20:29 +020055#include <proto/stream_interface.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020056#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010057
Willy Tarreaue8c66af2008-01-13 18:40:14 +010058#ifdef CONFIG_HAP_CTTPROXY
59#include <import/ip_tproxy.h>
60#endif
61
Emeric Bruncf20bf12010-10-22 16:06:11 +020062static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
63static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010064
65/* Note: must not be declared <const> as its list will be overwritten */
66static struct protocol proto_tcpv4 = {
67 .name = "tcpv4",
68 .sock_domain = AF_INET,
69 .sock_type = SOCK_STREAM,
70 .sock_prot = IPPROTO_TCP,
71 .sock_family = AF_INET,
72 .sock_addrlen = sizeof(struct sockaddr_in),
73 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020074 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020075 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020076 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010077 .bind_all = tcp_bind_listeners,
78 .unbind_all = unbind_all_listeners,
79 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020080 .get_src = tcp_get_src,
81 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +020082 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +020083 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010084 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
85 .nb_listeners = 0,
86};
87
88/* Note: must not be declared <const> as its list will be overwritten */
89static struct protocol proto_tcpv6 = {
90 .name = "tcpv6",
91 .sock_domain = AF_INET6,
92 .sock_type = SOCK_STREAM,
93 .sock_prot = IPPROTO_TCP,
94 .sock_family = AF_INET6,
95 .sock_addrlen = sizeof(struct sockaddr_in6),
96 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020097 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020098 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020099 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100100 .bind_all = tcp_bind_listeners,
101 .unbind_all = unbind_all_listeners,
102 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200103 .get_src = tcp_get_src,
104 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200105 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +0200106 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100107 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
108 .nb_listeners = 0,
109};
110
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100111
David du Colombier6f5ccb12011-03-10 22:26:24 +0100112/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100113 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
114 * - 0 : ignore remote address (may even be a NULL pointer)
115 * - 1 : use provided address
116 * - 2 : use provided port
117 * - 3 : use both
118 *
119 * The function supports multiple foreign binding methods :
120 * - linux_tproxy: we directly bind to the foreign address
121 * - cttproxy: we bind to a local address then nat.
122 * The second one can be used as a fallback for the first one.
123 * This function returns 0 when everything's OK, 1 if it could not bind, to the
124 * local address, 2 if it could not bind to the foreign address.
125 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100126int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100127{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100128 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100129 int foreign_ok = 0;
130 int ret;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100131 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200132 static int ip6_transp_working = 1;
Pieter Baauwd551fb52013-05-08 22:49:23 +0200133
David du Colombier65c17962012-07-13 14:34:59 +0200134 switch (local->ss_family) {
135 case AF_INET:
136 if (flags && ip_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200137 /* This deserves some explanation. Some platforms will support
138 * multiple combinations of certain methods, so we try the
139 * supported ones until one succeeds.
140 */
141 if (0
142#if defined(IP_TRANSPARENT)
143 || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0)
144#endif
145#if defined(IP_FREEBIND)
146 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
147#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200148#if defined(IP_BINDANY)
149 || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0)
150#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200151#if defined(SO_BINDANY)
152 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
153#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200154 )
David du Colombier65c17962012-07-13 14:34:59 +0200155 foreign_ok = 1;
156 else
157 ip_transp_working = 0;
158 }
159 break;
160 case AF_INET6:
161 if (flags && ip6_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200162 if (0
163#if defined(IPV6_TRANSPARENT)
164 || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
165#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100166#if defined(IP_FREEBIND)
167 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
168#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200169#if defined(IPV6_BINDANY)
170 || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0)
171#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200172#if defined(SO_BINDANY)
173 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
174#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200175 )
David du Colombier65c17962012-07-13 14:34:59 +0200176 foreign_ok = 1;
177 else
178 ip6_transp_working = 0;
179 }
180 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100181 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200182
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100183 if (flags) {
184 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200185 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100186 switch (remote->ss_family) {
187 case AF_INET:
188 if (flags & 1)
189 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
190 if (flags & 2)
191 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
192 break;
193 case AF_INET6:
194 if (flags & 1)
195 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
196 if (flags & 2)
197 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
198 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100199 default:
200 /* we don't want to try to bind to an unknown address family */
201 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100202 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100203 }
204
Simon Hormande072bd2011-06-24 15:11:37 +0900205 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100206 if (foreign_ok) {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200207 if (is_inet_addr(&bind_addr)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200208 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
209 if (ret < 0)
210 return 2;
211 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100212 }
213 else {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200214 if (is_inet_addr(local)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200215 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
216 if (ret < 0)
217 return 1;
218 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100219 }
220
221 if (!flags)
222 return 0;
223
224#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100225 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100226 struct in_tproxy itp1, itp2;
227 memset(&itp1, 0, sizeof(itp1));
228
229 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100230 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
231 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100232
233 /* set connect flag on socket */
234 itp2.op = TPROXY_FLAGS;
235 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
236
237 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
238 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
239 foreign_ok = 1;
240 }
241 }
242#endif
243 if (!foreign_ok)
244 /* we could not bind to a foreign address */
245 return 2;
246
247 return 0;
248}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100249
Willy Tarreau9650f372009-08-16 14:02:45 +0200250
251/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200252 * This function initiates a TCP connection establishment to the target assigned
253 * to connection <conn> using (si->{target,addr.to}). A source address may be
254 * pointed to by conn->addr.from in case of transparent proxying. Normal source
255 * bind addresses are still determined locally (due to the possible need of a
256 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100257 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreauf0837b22012-11-24 10:24:27 +0100258 * supported. The <data> parameter is a boolean indicating whether there are data
259 * waiting for being sent or not, in order to adjust data write polling and on
260 * some platforms, the ability to avoid an empty initial ACK. The <delack> argument
261 * allows the caller to force using a delayed ACK when establishing the connection :
262 * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect
263 * - 1 = delayed ACK if backend has tcp-smart-connect, regardless of data
264 * - 2 = delayed ACK regardless of backend options
Willy Tarreaub1d67742010-03-29 19:36:59 +0200265 *
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200266 * Note that a pending send_proxy message accounts for data.
267 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200268 * It can return one of :
269 * - SN_ERR_NONE if everything's OK
270 * - SN_ERR_SRVTO if there are no more servers
271 * - SN_ERR_SRVCL if the connection was refused by the server
272 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
273 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
274 * - SN_ERR_INTERNAL for any other purely internal errors
275 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100276 *
277 * The connection's fd is inserted only when SN_ERR_NONE is returned, otherwise
278 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200279 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100280
Willy Tarreauf0837b22012-11-24 10:24:27 +0100281int tcp_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau9650f372009-08-16 14:02:45 +0200282{
283 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100284 struct server *srv;
285 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100286 struct conn_src *src;
Willy Tarreauac825402011-03-04 22:04:29 +0100287
Willy Tarreau9ce70132014-01-24 16:08:19 +0100288 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
289
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100290 switch (obj_type(conn->target)) {
291 case OBJ_TYPE_PROXY:
292 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100293 srv = NULL;
294 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100295 case OBJ_TYPE_SERVER:
296 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100297 be = srv->proxy;
298 break;
299 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100300 conn->flags |= CO_FL_ERROR;
Willy Tarreauac825402011-03-04 22:04:29 +0100301 return SN_ERR_INTERNAL;
302 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200303
Willy Tarreau986a9d22012-08-30 21:11:38 +0200304 if ((fd = conn->t.sock.fd = socket(conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200305 qfprintf(stderr, "Cannot get a server socket.\n");
306
Willy Tarreau9ce70132014-01-24 16:08:19 +0100307 if (errno == ENFILE) {
308 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200309 send_log(be, LOG_EMERG,
310 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
311 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100312 }
313 else if (errno == EMFILE) {
314 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200315 send_log(be, LOG_EMERG,
316 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
317 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100318 }
319 else if (errno == ENOBUFS || errno == ENOMEM) {
320 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200321 send_log(be, LOG_EMERG,
322 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
323 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100324 }
325 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
326 conn->err_code = CO_ER_NOPROTO;
327 }
328 else
329 conn->err_code = CO_ER_SOCK_ERR;
330
Willy Tarreau9650f372009-08-16 14:02:45 +0200331 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100332 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200333 return SN_ERR_RESOURCE;
334 }
335
336 if (fd >= global.maxsock) {
337 /* do not log anything there, it's a normal condition when this option
338 * is used to serialize connections to a server !
339 */
340 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
341 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100342 conn->err_code = CO_ER_CONF_FDLIM;
343 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200344 return SN_ERR_PRXCOND; /* it is a configuration limit */
345 }
346
347 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900348 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200349 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
350 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100351 conn->err_code = CO_ER_SOCK_ERR;
352 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200353 return SN_ERR_INTERNAL;
354 }
355
356 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900357 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200358
Willy Tarreau9650f372009-08-16 14:02:45 +0200359 /* allow specific binding :
360 * - server-specific at first
361 * - proxy-specific next
362 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100363 if (srv && srv->conn_src.opts & CO_SRC_BIND)
364 src = &srv->conn_src;
365 else if (be->conn_src.opts & CO_SRC_BIND)
366 src = &be->conn_src;
367 else
368 src = NULL;
369
370 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200371 int ret, flags = 0;
372
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200373 if (is_inet_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100374 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100375 case CO_SRC_TPROXY_ADDR:
376 case CO_SRC_TPROXY_CLI:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200377 flags = 3;
378 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100379 case CO_SRC_TPROXY_CIP:
380 case CO_SRC_TPROXY_DYN:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200381 flags = 1;
382 break;
383 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200384 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200385
Willy Tarreau9650f372009-08-16 14:02:45 +0200386#ifdef SO_BINDTODEVICE
387 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100388 if (src->iface_name)
389 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200390#endif
391
Willy Tarreaua4380b42012-12-08 22:49:11 +0100392 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200393 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100394 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200395
396 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100397 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200398
399 do {
400 /* note: in case of retry, we may have to release a previously
401 * allocated port, hence this loop's construct.
402 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200403 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
404 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200405
406 if (!attempts)
407 break;
408 attempts--;
409
Willy Tarreaua4380b42012-12-08 22:49:11 +0100410 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100411 if (!fdinfo[fd].local_port) {
412 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200413 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100414 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200415
Willy Tarreaua4380b42012-12-08 22:49:11 +0100416 fdinfo[fd].port_range = src->sport_range;
417 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200418
Willy Tarreaua4380b42012-12-08 22:49:11 +0100419 ret = tcp_bind_socket(fd, flags, &sa, &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 } while (ret != 0); /* binding NOK */
423 }
424 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100425 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100426 if (ret != 0)
427 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200428 }
429
Willy Tarreaua4380b42012-12-08 22:49:11 +0100430 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200431 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
432 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200433 close(fd);
434
Willy Tarreau9650f372009-08-16 14:02:45 +0200435 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100436 Alert("Cannot bind to 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 source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200440 be->id);
441 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100442 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200443 be->id);
444 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100445 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200446 be->id);
447 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100448 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200449 return SN_ERR_RESOURCE;
450 }
451 }
452
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400453#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200454 /* disabling tcp quick ack now allows the first request to leave the
455 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100456 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200457 */
Willy Tarreaufb20e462014-10-24 12:02:24 +0200458 if (delack == 2 || ((delack || data || conn->send_proxy_ofs) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900459 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200460#endif
461
Willy Tarreaue803de22010-01-21 17:43:04 +0100462 if (global.tune.server_sndbuf)
463 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
464
465 if (global.tune.server_rcvbuf)
466 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
467
Willy Tarreau986a9d22012-08-30 21:11:38 +0200468 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200469 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
470
Willy Tarreaub1719512012-12-08 23:03:28 +0100471 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200472 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100473 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200474 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100475 conn->err_code = CO_ER_FREE_PORTS;
476 }
477 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200478 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100479 conn->err_code = CO_ER_ADDR_INUSE;
480 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200481
Willy Tarreaub1719512012-12-08 23:03:28 +0100482 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200483 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
484 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200485 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100486 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100487 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200488 return SN_ERR_RESOURCE;
489 } else if (errno == ETIMEDOUT) {
490 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200491 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
492 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200493 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100494 conn->err_code = CO_ER_SOCK_ERR;
495 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200496 return SN_ERR_SRVTO;
497 } else {
498 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
499 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200500 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
501 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200502 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100503 conn->err_code = CO_ER_SOCK_ERR;
504 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200505 return SN_ERR_SRVCL;
506 }
507 }
508
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100509 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200510
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200511 /* Prepare to send a few handshakes related to the on-wire protocol. */
512 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200513 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200514
Willy Tarreauf79c8172013-10-21 16:30:56 +0200515 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100516 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200517 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200518
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200519 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200520 conn_force_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100521 conn->flags |= CO_FL_ERROR;
Willy Tarreau15678ef2012-08-31 13:54:11 +0200522 return SN_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200523 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200524
Willy Tarreau14f8e862012-08-30 22:23:13 +0200525 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200526 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200527
Willy Tarreau9650f372009-08-16 14:02:45 +0200528 return SN_ERR_NONE; /* connection is OK */
529}
530
531
Willy Tarreau59b94792012-05-11 16:16:40 +0200532/*
533 * Retrieves the source address for the socket <fd>, with <dir> indicating
534 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
535 * success, -1 in case of error. The socket's source address is stored in
536 * <sa> for <salen> bytes.
537 */
538int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
539{
540 if (dir)
541 return getsockname(fd, sa, &salen);
542 else
543 return getpeername(fd, sa, &salen);
544}
545
546
547/*
548 * Retrieves the original destination address for the socket <fd>, with <dir>
549 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
550 * listener, if the original destination address was translated, the original
551 * address is retrieved. It returns 0 in case of success, -1 in case of error.
552 * The socket's source address is stored in <sa> for <salen> bytes.
553 */
554int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
555{
556 if (dir)
557 return getpeername(fd, sa, &salen);
558#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
559 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
560 return 0;
561#endif
562 else
563 return getsockname(fd, sa, &salen);
564}
565
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200566/* Tries to drain any pending incoming data from the socket to reach the
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100567 * receive shutdown. Returns positive if the shutdown was found, negative
568 * if EAGAIN was hit, otherwise zero. This is useful to decide whether we
569 * can close a connection cleanly are we must kill it hard.
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200570 */
571int tcp_drain(int fd)
572{
573 int turns = 2;
574 int len;
575
576 while (turns) {
577#ifdef MSG_TRUNC_CLEARS_INPUT
578 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
579 if (len == -1 && errno == EFAULT)
580#endif
581 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
582
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100583 if (len == 0) {
584 /* cool, shutdown received */
585 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200586 return 1;
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100587 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200588
589 if (len < 0) {
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100590 if (errno == EAGAIN) {
591 /* connection not closed yet */
592 fd_cant_recv(fd);
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100593 return -1;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100594 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200595 if (errno == EINTR) /* oops, try again */
596 continue;
597 /* other errors indicate a dead connection, fine. */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100598 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200599 return 1;
600 }
601 /* OK we read some data, let's try again once */
602 turns--;
603 }
604 /* some data are still present, give up */
605 return 0;
606}
607
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200608/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100609 * and we have nothing to send. It updates the FD polling status. It returns 0
610 * if it fails in a fatal way or needs to poll to go further, otherwise it
611 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
612 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
613 * errno. The error checking is done in two passes in order to limit the number
614 * of syscalls in the normal case :
615 * - if POLL_ERR was reported by the poller, we check for a pending error on
616 * the socket before proceeding. If found, it's assigned to errno so that
617 * upper layers can see it.
618 * - otherwise connect() is used to check the connection state again, since
619 * the getsockopt return cannot reliably be used to know if the connection
620 * is still pending or ready. This one may often return an error as well,
621 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200622 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200623int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200624{
Willy Tarreau239d7182012-07-23 18:53:03 +0200625 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100626 socklen_t lskerr;
627 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200628
Willy Tarreau80184712012-07-06 14:54:49 +0200629 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200630 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200631
Willy Tarreau3c728722014-01-23 13:50:42 +0100632 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200633 return 0;
634
Willy Tarreau80184712012-07-06 14:54:49 +0200635 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200636 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200637
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100638 if (!fd_send_ready(fd))
639 return 0;
640
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100641 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
642 * without FD_POLL_IN also indicates a hangup without input data meaning
643 * there was no connection.
644 */
645 if (fdtab[fd].ev & FD_POLL_ERR ||
646 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
647 skerr = 0;
648 lskerr = sizeof(skerr);
649 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
650 errno = skerr;
651 if (errno == EAGAIN)
652 errno = 0;
653 if (errno)
654 goto out_error;
655 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200656
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100657 /* Use connect() to check the state of the socket. This has the
658 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200659 * - error
660 * - connecting (EALREADY, EINPROGRESS)
661 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200662 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200663 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200664 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100665 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100666 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200667 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200668 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200669
Willy Tarreau2c6be842012-07-06 17:12:34 +0200670 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200671 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200672
Willy Tarreau2c6be842012-07-06 17:12:34 +0200673 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200674 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200675
Willy Tarreau076be252012-07-06 16:02:29 +0200676 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200677 * forward the event to the transport layer which will notify the
678 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200679 */
Willy Tarreau80184712012-07-06 14:54:49 +0200680 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200681 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200682
683 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200684 /* Write error on the file descriptor. Report it to the connection
685 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200686 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100687 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100688 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100689 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200690 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200691}
692
Willy Tarreau59b94792012-05-11 16:16:40 +0200693
Willy Tarreaue6b98942007-10-29 01:09:36 +0100694/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100695 * an error message in <errmsg> if the message is at most <errlen> bytes long
696 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
697 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100698 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
699 * was alright and that no message was returned. ERR_RETRYABLE means that an
700 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700701 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100702 * the meaning of the error, but just indicate that a message is present which
703 * should be displayed with the respective level. Last, ERR_ABORT indicates
704 * that it's pointless to try to start other listeners. No error message is
705 * returned if errlen is NULL.
706 */
707int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
708{
709 __label__ tcp_return, tcp_close_return;
710 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100711 int ext, ready;
712 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100713 const char *msg = NULL;
714
715 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100716 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100717 *errmsg = 0;
718
719 if (listener->state != LI_ASSIGNED)
720 return ERR_NONE; /* already bound */
721
722 err = ERR_NONE;
723
Willy Tarreau40aa0702013-03-10 23:51:38 +0100724 /* if the listener already has an fd assigned, then we were offered the
725 * fd by an external process (most likely the parent), and we don't want
726 * to create a new socket. However we still want to set a few flags on
727 * the socket.
728 */
729 fd = listener->fd;
730 ext = (fd >= 0);
731
732 if (!ext && (fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100733 err |= ERR_RETRYABLE | ERR_ALERT;
734 msg = "cannot create listening socket";
735 goto tcp_return;
736 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100737
Willy Tarreaue6b98942007-10-29 01:09:36 +0100738 if (fd >= global.maxsock) {
739 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
740 msg = "not enough free sockets (raise '-n' parameter)";
741 goto tcp_close_return;
742 }
743
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200744 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100745 err |= ERR_FATAL | ERR_ALERT;
746 msg = "cannot make socket non-blocking";
747 goto tcp_close_return;
748 }
749
Willy Tarreau40aa0702013-03-10 23:51:38 +0100750 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100751 /* not fatal but should be reported */
752 msg = "cannot do so_reuseaddr";
753 err |= ERR_ALERT;
754 }
755
756 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900757 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100758
Willy Tarreaue6b98942007-10-29 01:09:36 +0100759#ifdef SO_REUSEPORT
760 /* OpenBSD supports this. As it's present in old libc versions of Linux,
761 * it might return an error that we will silently ignore.
762 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100763 if (!ext)
764 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100765#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200766
Willy Tarreau40aa0702013-03-10 23:51:38 +0100767 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200768 switch (listener->addr.ss_family) {
769 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200770 if (1
771#if defined(IP_TRANSPARENT)
772 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
773#endif
774#if defined(IP_FREEBIND)
775 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
776#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200777#if defined(IP_BINDANY)
778 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
779#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200780#if defined(SO_BINDANY)
781 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
782#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200783 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200784 msg = "cannot make listening socket transparent";
785 err |= ERR_ALERT;
786 }
787 break;
788 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200789 if (1
790#if defined(IPV6_TRANSPARENT)
791 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
792#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100793#if defined(IP_FREEBIND)
794 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
795#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200796#if defined(IPV6_BINDANY)
797 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
798#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200799#if defined(SO_BINDANY)
800 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
801#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200802 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200803 msg = "cannot make listening socket transparent";
804 err |= ERR_ALERT;
805 }
806 break;
807 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100808 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200809
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100810#ifdef SO_BINDTODEVICE
811 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100812 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100813 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100814 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100815 msg = "cannot bind listener to device";
816 err |= ERR_WARN;
817 }
818 }
819#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400820#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100821 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400822 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200823 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
824 msg = "cannot set MSS";
825 err |= ERR_WARN;
826 }
827 }
828#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200829#if defined(TCP_DEFER_ACCEPT)
830 if (listener->options & LI_O_DEF_ACCEPT) {
831 /* defer accept by up to one second */
832 int accept_delay = 1;
833 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
834 msg = "cannot enable DEFER_ACCEPT";
835 err |= ERR_WARN;
836 }
837 }
838#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200839#if defined(TCP_FASTOPEN)
840 if (listener->options & LI_O_TCP_FO) {
841 /* TFO needs a queue length, let's use the configured backlog */
842 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
843 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
844 msg = "cannot enable TCP_FASTOPEN";
845 err |= ERR_WARN;
846 }
847 }
848#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100849#if defined(IPV6_V6ONLY)
850 if (listener->options & LI_O_V6ONLY)
851 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100852 else if (listener->options & LI_O_V4V6)
853 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100854#endif
855
Willy Tarreau40aa0702013-03-10 23:51:38 +0100856 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100857 err |= ERR_RETRYABLE | ERR_ALERT;
858 msg = "cannot bind socket";
859 goto tcp_close_return;
860 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100861
Willy Tarreau40aa0702013-03-10 23:51:38 +0100862 ready = 0;
863 ready_len = sizeof(ready);
864 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
865 ready = 0;
866
867 if (!(ext && ready) && /* only listen if not already done by external process */
868 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100869 err |= ERR_RETRYABLE | ERR_ALERT;
870 msg = "cannot listen to socket";
871 goto tcp_close_return;
872 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100873
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400874#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200875 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900876 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200877#endif
878
Willy Tarreaue6b98942007-10-29 01:09:36 +0100879 /* the socket is ready */
880 listener->fd = fd;
881 listener->state = LI_LISTEN;
882
Willy Tarreaueabf3132008-08-29 23:36:51 +0200883 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200884 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200885 fd_insert(fd);
886
Willy Tarreaue6b98942007-10-29 01:09:36 +0100887 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100888 if (msg && errlen) {
889 char pn[INET6_ADDRSTRLEN];
890
Willy Tarreau631f01c2011-09-05 00:36:48 +0200891 addr_to_str(&listener->addr, pn, sizeof(pn));
892 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100893 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100894 return err;
895
896 tcp_close_return:
897 close(fd);
898 goto tcp_return;
899}
900
901/* This function creates all TCP sockets bound to the protocol entry <proto>.
902 * It is intended to be used as the protocol's bind_all() function.
903 * The sockets will be registered but not added to any fd_set, in order not to
904 * loose them across the fork(). A call to enable_all_listeners() is needed
905 * to complete initialization. The return value is composed from ERR_*.
906 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200907static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100908{
909 struct listener *listener;
910 int err = ERR_NONE;
911
912 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200913 err |= tcp_bind_listener(listener, errmsg, errlen);
914 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100915 break;
916 }
917
918 return err;
919}
920
921/* Add listener to the list of tcpv4 listeners. The listener's state
922 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
923 * listeners is updated. This is the function to use to add a new listener.
924 */
925void tcpv4_add_listener(struct listener *listener)
926{
927 if (listener->state != LI_INIT)
928 return;
929 listener->state = LI_ASSIGNED;
930 listener->proto = &proto_tcpv4;
931 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
932 proto_tcpv4.nb_listeners++;
933}
934
935/* Add listener to the list of tcpv4 listeners. The listener's state
936 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
937 * listeners is updated. This is the function to use to add a new listener.
938 */
939void tcpv6_add_listener(struct listener *listener)
940{
941 if (listener->state != LI_INIT)
942 return;
943 listener->state = LI_ASSIGNED;
944 listener->proto = &proto_tcpv6;
945 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
946 proto_tcpv6.nb_listeners++;
947}
948
Willy Tarreau092d8652014-07-07 20:22:12 +0200949/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
950 * was totally stopped, or > 0 if correctly paused.
951 */
952int tcp_pause_listener(struct listener *l)
953{
954 if (shutdown(l->fd, SHUT_WR) != 0)
955 return -1; /* Solaris dies here */
956
957 if (listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0)
958 return -1; /* OpenBSD dies here */
959
960 if (shutdown(l->fd, SHUT_RD) != 0)
961 return -1; /* should always be OK */
962 return 1;
963}
964
Willy Tarreauedcf6682008-11-30 23:15:34 +0100965/* This function performs the TCP request analysis on the current request. It
966 * returns 1 if the processing can continue on next analysers, or zero if it
967 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200968 * request. It relies on buffers flags, and updates s->req->analysers. The
969 * function may be called for frontend rules and backend rules. It only relies
970 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100971 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200972int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100973{
974 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200975 struct stksess *ts;
976 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100977 int partial;
978
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100979 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 +0100980 now_ms, __FUNCTION__,
981 s,
982 req,
983 req->rex, req->wex,
984 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200985 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100986 req->analysers);
987
Willy Tarreauedcf6682008-11-30 23:15:34 +0100988 /* We don't know whether we have enough data, so must proceed
989 * this way :
990 * - iterate through all rules in their declaration order
991 * - if one rule returns MISS, it means the inspect delay is
992 * not over yet, then return immediately, otherwise consider
993 * it as a non-match.
994 * - if one rule returns OK, then return OK
995 * - if one rule returns KO, then return KO
996 */
997
Willy Tarreau9b28e032012-10-12 23:49:43 +0200998 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200999 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001000 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001001 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001002 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001003
Willy Tarreaufb356202010-08-03 14:02:05 +02001004 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001005 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001006
1007 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001008 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001009 if (ret == ACL_TEST_MISS)
1010 goto missing_data;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001011
1012 ret = acl_pass(ret);
1013 if (rule->cond->pol == ACL_COND_UNLESS)
1014 ret = !ret;
1015 }
1016
1017 if (ret) {
1018 /* we have a matching rule. */
1019 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001020 channel_abort(req);
1021 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001022 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001023
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001024 s->be->be_counters.denied_req++;
1025 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001026 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +02001027 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001028
Willy Tarreauedcf6682008-11-30 23:15:34 +01001029 if (!(s->flags & SN_ERR_MASK))
1030 s->flags |= SN_ERR_PRXCOND;
1031 if (!(s->flags & SN_FINST_MASK))
1032 s->flags |= SN_FINST_R;
1033 return 0;
1034 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001035 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001036 /* Note: only the first valid tracking parameter of each
1037 * applies.
1038 */
1039 struct stktable_key *key;
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001040 struct sample smp;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001041
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001042 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001043 continue;
1044
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001045 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001046 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial, rule->act_prm.trk_ctr.expr, &smp);
1047
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001048 if ((smp.flags & SMP_F_MAY_CHANGE) && !(partial & SMP_OPT_FINAL))
1049 goto missing_data; /* key might appear later */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001050
1051 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001052 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001053 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001054 if (s->fe != s->be)
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001055 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001056 }
1057 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001058 else if (rule->action == TCP_ACT_CAPTURE) {
1059 struct sample *key;
1060 struct cap_hdr *h = rule->act_prm.cap.hdr;
1061 char **cap = s->txn.req.cap;
1062 int len;
1063
1064 key = sample_fetch_string(s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial, rule->act_prm.cap.expr);
1065 if (!key)
1066 continue;
1067
1068 if (key->flags & SMP_F_MAY_CHANGE)
1069 goto missing_data;
1070
1071 if (cap[h->index] == NULL)
1072 cap[h->index] = pool_alloc2(h->pool);
1073
1074 if (cap[h->index] == NULL) /* no more capture memory */
1075 continue;
1076
1077 len = key->data.str.len;
1078 if (len > h->len)
1079 len = h->len;
1080
1081 memcpy(cap[h->index], key->data.str.str, len);
1082 cap[h->index][len] = 0;
1083 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02001084 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +01001085 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001086 break;
1087 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001088 }
1089 }
1090
1091 /* if we get there, it means we have no rule which matches, or
1092 * we have an explicit accept, so we apply the default accept.
1093 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001094 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001095 req->analyse_exp = TICK_ETERNITY;
1096 return 1;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001097
1098 missing_data:
1099 channel_dont_connect(req);
1100 /* just set the request timeout once at the beginning of the request */
1101 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
1102 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
1103 return 0;
1104
Willy Tarreauedcf6682008-11-30 23:15:34 +01001105}
1106
Emeric Brun97679e72010-09-23 17:56:44 +02001107/* This function performs the TCP response analysis on the current response. It
1108 * returns 1 if the processing can continue on next analysers, or zero if it
1109 * needs more data, encounters an error, or wants to immediately abort the
1110 * response. It relies on buffers flags, and updates s->rep->analysers. The
1111 * function may be called for backend rules.
1112 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001113int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001114{
1115 struct tcp_rule *rule;
1116 int partial;
1117
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001118 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 +02001119 now_ms, __FUNCTION__,
1120 s,
1121 rep,
1122 rep->rex, rep->wex,
1123 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001124 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001125 rep->analysers);
1126
1127 /* We don't know whether we have enough data, so must proceed
1128 * this way :
1129 * - iterate through all rules in their declaration order
1130 * - if one rule returns MISS, it means the inspect delay is
1131 * not over yet, then return immediately, otherwise consider
1132 * it as a non-match.
1133 * - if one rule returns OK, then return OK
1134 * - if one rule returns KO, then return KO
1135 */
1136
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001137 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001138 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001139 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001140 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001141
1142 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001143 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001144
1145 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001146 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001147 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001148 /* just set the analyser timeout once at the beginning of the response */
1149 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001150 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001151 return 0;
1152 }
1153
1154 ret = acl_pass(ret);
1155 if (rule->cond->pol == ACL_COND_UNLESS)
1156 ret = !ret;
1157 }
1158
1159 if (ret) {
1160 /* we have a matching rule. */
1161 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001162 channel_abort(rep);
1163 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001164 rep->analysers = 0;
1165
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001166 s->be->be_counters.denied_resp++;
1167 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001168 if (s->listener->counters)
1169 s->listener->counters->denied_resp++;
1170
1171 if (!(s->flags & SN_ERR_MASK))
1172 s->flags |= SN_ERR_PRXCOND;
1173 if (!(s->flags & SN_FINST_MASK))
1174 s->flags |= SN_FINST_D;
1175 return 0;
1176 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001177 else if (rule->action == TCP_ACT_CLOSE) {
1178 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1179 si_shutr(rep->prod);
1180 si_shutw(rep->prod);
1181 break;
1182 }
Emeric Brun97679e72010-09-23 17:56:44 +02001183 else {
1184 /* otherwise accept */
1185 break;
1186 }
1187 }
1188 }
1189
1190 /* if we get there, it means we have no rule which matches, or
1191 * we have an explicit accept, so we apply the default accept.
1192 */
1193 rep->analysers &= ~an_bit;
1194 rep->analyse_exp = TICK_ETERNITY;
1195 return 1;
1196}
1197
1198
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001199/* This function performs the TCP layer4 analysis on the current request. It
1200 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1201 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001202 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001203 */
1204int tcp_exec_req_rules(struct session *s)
1205{
1206 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001207 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001208 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001209 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001210 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001211 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001212
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001213 if (!conn)
1214 return result;
1215
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001216 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001217 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001218
1219 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001220 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001221 ret = acl_pass(ret);
1222 if (rule->cond->pol == ACL_COND_UNLESS)
1223 ret = !ret;
1224 }
1225
1226 if (ret) {
1227 /* we have a matching rule. */
1228 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001229 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001230 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001231 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001232
1233 if (!(s->flags & SN_ERR_MASK))
1234 s->flags |= SN_ERR_PRXCOND;
1235 if (!(s->flags & SN_FINST_MASK))
1236 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001237 result = 0;
1238 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001239 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001240 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001241 /* Note: only the first valid tracking parameter of each
1242 * applies.
1243 */
1244 struct stktable_key *key;
1245
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001246 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001247 continue;
1248
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001249 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreaub5975de2014-06-25 16:20:53 +02001250 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr, NULL);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001251
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001252 if (key && (ts = stktable_get_entry(t, key)))
1253 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001254 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001255 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001256 conn->flags |= CO_FL_ACCEPT_PROXY;
1257 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001258 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001259 else {
1260 /* otherwise it's an accept */
1261 break;
1262 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001263 }
1264 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001265 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001266}
1267
Emeric Brun97679e72010-09-23 17:56:44 +02001268/* Parse a tcp-response rule. Return a negative value in case of failure */
1269static int tcp_parse_response_rule(char **args, int arg, int section_type,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001270 struct proxy *curpx, struct proxy *defpx,
1271 struct tcp_rule *rule, char **err,
1272 unsigned int where,
1273 const char *file, int line)
Emeric Brun97679e72010-09-23 17:56:44 +02001274{
1275 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001276 memprintf(err, "%s %s is only allowed in 'backend' sections",
1277 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001278 return -1;
1279 }
1280
1281 if (strcmp(args[arg], "accept") == 0) {
1282 arg++;
1283 rule->action = TCP_ACT_ACCEPT;
1284 }
1285 else if (strcmp(args[arg], "reject") == 0) {
1286 arg++;
1287 rule->action = TCP_ACT_REJECT;
1288 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001289 else if (strcmp(args[arg], "close") == 0) {
1290 arg++;
1291 rule->action = TCP_ACT_CLOSE;
1292 }
Emeric Brun97679e72010-09-23 17:56:44 +02001293 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001294 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001295 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001296 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001297 return -1;
1298 }
1299
1300 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001301 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001302 memprintf(err,
1303 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1304 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001305 return -1;
1306 }
1307 }
1308 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001309 memprintf(err,
1310 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001311 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1312 return -1;
1313 }
1314 return 0;
1315}
1316
1317
1318
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001319/* Parse a tcp-request rule. Return a negative value in case of failure */
1320static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001321 struct proxy *curpx, struct proxy *defpx,
1322 struct tcp_rule *rule, char **err,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001323 unsigned int where, const char *file, int line)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001324{
1325 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001326 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1327 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001328 return -1;
1329 }
1330
1331 if (!strcmp(args[arg], "accept")) {
1332 arg++;
1333 rule->action = TCP_ACT_ACCEPT;
1334 }
1335 else if (!strcmp(args[arg], "reject")) {
1336 arg++;
1337 rule->action = TCP_ACT_REJECT;
1338 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001339 else if (strcmp(args[arg], "capture") == 0) {
1340 struct sample_expr *expr;
1341 struct cap_hdr *hdr;
1342 int kw = arg;
1343 int len = 0;
1344
1345 if (!(curpx->cap & PR_CAP_FE)) {
1346 memprintf(err,
1347 "'%s %s %s' : proxy '%s' has no frontend capability",
1348 args[0], args[1], args[kw], curpx->id);
1349 return -1;
1350 }
1351
1352 if (!(where & SMP_VAL_FE_REQ_CNT)) {
1353 memprintf(err,
1354 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1355 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1356 return -1;
1357 }
1358
1359 arg++;
1360
1361 curpx->conf.args.ctx = ARGC_CAP;
1362 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
1363 if (!expr) {
1364 memprintf(err,
1365 "'%s %s %s' : %s",
1366 args[0], args[1], args[kw], *err);
1367 return -1;
1368 }
1369
1370 if (!(expr->fetch->val & where)) {
1371 memprintf(err,
1372 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
1373 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
1374 free(expr);
1375 return -1;
1376 }
1377
1378 if (strcmp(args[arg], "len") == 0) {
1379 arg++;
1380 if (!args[arg]) {
1381 memprintf(err,
1382 "'%s %s %s' : missing length value",
1383 args[0], args[1], args[kw]);
1384 free(expr);
1385 return -1;
1386 }
1387 /* we copy the table name for now, it will be resolved later */
1388 len = atoi(args[arg]);
1389 if (len <= 0) {
1390 memprintf(err,
1391 "'%s %s %s' : length must be > 0",
1392 args[0], args[1], args[kw]);
1393 free(expr);
1394 return -1;
1395 }
1396 arg++;
1397 }
1398
1399 if (!len) {
1400 memprintf(err,
1401 "'%s %s %s' : a positive 'len' argument is mandatory",
1402 args[0], args[1], args[kw]);
1403 free(expr);
1404 return -1;
1405 }
1406
1407 hdr = calloc(sizeof(struct cap_hdr), 1);
1408 hdr->next = curpx->req_cap;
1409 hdr->name = NULL; /* not a header capture */
1410 hdr->namelen = 0;
1411 hdr->len = len;
1412 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
1413 hdr->index = curpx->nb_req_cap++;
1414
1415 curpx->req_cap = hdr;
1416 curpx->to_log |= LW_REQHDR;
1417
1418 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
1419 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1420
1421 rule->act_prm.cap.expr = expr;
1422 rule->act_prm.cap.hdr = hdr;
1423 rule->action = TCP_ACT_CAPTURE;
1424 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001425 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1426 args[arg][9] == '\0' && args[arg][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02001427 args[arg][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001428 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001429 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001430
1431 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001432
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001433 curpx->conf.args.ctx = ARGC_TRK;
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01001434 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001435 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001436 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001437 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001438 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001439 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001440 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001441
Willy Tarreau80aca902013-01-07 15:42:20 +01001442 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001443 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001444 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001445 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001446 free(expr);
1447 return -1;
1448 }
1449
1450 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001451 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001452
1453 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001454 arg++;
1455 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001456 memprintf(err,
1457 "'%s %s %s' : missing table name",
1458 args[0], args[1], args[kw]);
1459 free(expr);
1460 return -1;
1461 }
1462 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001463 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001464 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001465 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001466 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001467 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001468 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001469 else if (strcmp(args[arg], "expect-proxy") == 0) {
1470 if (strcmp(args[arg+1], "layer4") != 0) {
1471 memprintf(err,
1472 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1473 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1474 return -1;
1475 }
1476
1477 if (!(where & SMP_VAL_FE_CON_ACC)) {
1478 memprintf(err,
1479 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1480 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1481 return -1;
1482 }
1483
1484 arg += 2;
1485 rule->action = TCP_ACT_EXPECT_PX;
1486 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001487 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001488 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001489 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1490 " in %s '%s' (got '%s')",
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02001491 args[0], args[1], MAX_SESS_STKCTR-1, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001492 return -1;
1493 }
1494
1495 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001496 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001497 memprintf(err,
1498 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1499 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001500 return -1;
1501 }
1502 }
1503 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001504 memprintf(err,
1505 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001506 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1507 return -1;
1508 }
1509 return 0;
1510}
1511
Emeric Brun97679e72010-09-23 17:56:44 +02001512/* This function should be called to parse a line starting with the "tcp-response"
1513 * keyword.
1514 */
1515static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001516 struct proxy *defpx, const char *file, int line,
1517 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001518{
1519 const char *ptr = NULL;
1520 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001521 int warn = 0;
1522 int arg;
1523 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001524 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001525 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001526 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001527
1528 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001529 memprintf(err, "missing argument for '%s' in %s '%s'",
1530 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001531 return -1;
1532 }
1533
1534 if (strcmp(args[1], "inspect-delay") == 0) {
1535 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001536 memprintf(err, "%s %s is only allowed in 'backend' sections",
1537 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001538 return -1;
1539 }
1540
1541 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001542 memprintf(err,
1543 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1544 args[0], args[1], proxy_type_str(curpx), curpx->id);
1545 if (ptr)
1546 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001547 return -1;
1548 }
1549
1550 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001551 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1552 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001553 return 1;
1554 }
1555 curpx->tcp_rep.inspect_delay = val;
1556 return 0;
1557 }
1558
Simon Hormande072bd2011-06-24 15:11:37 +09001559 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001560 LIST_INIT(&rule->list);
1561 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001562 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001563
1564 if (strcmp(args[1], "content") == 0) {
1565 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001566
1567 if (curpx->cap & PR_CAP_FE)
1568 where |= SMP_VAL_FE_RES_CNT;
1569 if (curpx->cap & PR_CAP_BE)
1570 where |= SMP_VAL_BE_RES_CNT;
1571
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001572 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001573 goto error;
1574
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001575 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1576 if (acl) {
1577 if (acl->name && *acl->name)
1578 memprintf(err,
1579 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1580 acl->name, args[0], args[1], sample_ckp_names(where));
1581 else
1582 memprintf(err,
1583 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1584 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001585 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001586 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001587
Emeric Brun97679e72010-09-23 17:56:44 +02001588 warn++;
1589 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001590 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1591 if (acl->name && *acl->name)
1592 memprintf(err,
1593 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001594 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001595 else
1596 memprintf(err,
1597 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001598 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001599 warn++;
1600 }
Emeric Brun97679e72010-09-23 17:56:44 +02001601
1602 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1603 }
1604 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001605 memprintf(err,
1606 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1607 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001608 goto error;
1609 }
1610
1611 return warn;
1612 error:
1613 free(rule);
1614 return -1;
1615}
1616
1617
Willy Tarreaub6866442008-07-14 23:54:42 +02001618/* This function should be called to parse a line starting with the "tcp-request"
1619 * keyword.
1620 */
1621static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001622 struct proxy *defpx, const char *file, int line,
1623 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001624{
1625 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001626 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001627 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001628 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001629 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001630 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001631 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001632 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001633
1634 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001635 if (curpx == defpx)
1636 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1637 else
1638 memprintf(err, "missing argument for '%s' in %s '%s'",
1639 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001640 return -1;
1641 }
1642
1643 if (!strcmp(args[1], "inspect-delay")) {
1644 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001645 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1646 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001647 return -1;
1648 }
1649
Willy Tarreaub6866442008-07-14 23:54:42 +02001650 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001651 memprintf(err,
1652 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1653 args[0], args[1], proxy_type_str(curpx), curpx->id);
1654 if (ptr)
1655 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001656 return -1;
1657 }
1658
1659 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001660 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1661 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001662 return 1;
1663 }
1664 curpx->tcp_req.inspect_delay = val;
1665 return 0;
1666 }
1667
Simon Hormande072bd2011-06-24 15:11:37 +09001668 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001669 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001670 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001671 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001672
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001673 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001674 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001675
1676 if (curpx->cap & PR_CAP_FE)
1677 where |= SMP_VAL_FE_REQ_CNT;
1678 if (curpx->cap & PR_CAP_BE)
1679 where |= SMP_VAL_BE_REQ_CNT;
1680
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001681 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001682 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001683
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001684 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1685 if (acl) {
1686 if (acl->name && *acl->name)
1687 memprintf(err,
1688 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1689 acl->name, args[0], args[1], sample_ckp_names(where));
1690 else
1691 memprintf(err,
1692 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1693 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001694 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001695 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001696
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001697 warn++;
1698 }
1699 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1700 if (acl->name && *acl->name)
1701 memprintf(err,
1702 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001703 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001704 else
1705 memprintf(err,
1706 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001707 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001708 warn++;
1709 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001710
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001711 /* the following function directly emits the warning */
1712 warnif_misplaced_tcp_cont(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001713 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001714 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001715 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001716 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001717
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001718 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001719 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1720 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001721 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001722 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001723
Willy Tarreau80aca902013-01-07 15:42:20 +01001724 where |= SMP_VAL_FE_CON_ACC;
1725
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001726 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001727 goto error;
1728
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001729 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1730 if (acl) {
1731 if (acl->name && *acl->name)
1732 memprintf(err,
1733 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1734 acl->name, args[0], args[1], sample_ckp_names(where));
1735 else
1736 memprintf(err,
1737 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1738 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001739 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001740 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001741
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001742 warn++;
1743 }
1744 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1745 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001746 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001747 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001748 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001749 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001750 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001751 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001752 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001753 warn++;
1754 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001755
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001756 /* the following function directly emits the warning */
1757 warnif_misplaced_tcp_conn(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001758 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001759 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001760 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001761 if (curpx == defpx)
1762 memprintf(err,
1763 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1764 args[0], args[1]);
1765 else
1766 memprintf(err,
1767 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001768 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001769 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001770 }
1771
Willy Tarreau1a687942010-05-23 22:40:30 +02001772 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001773 error:
1774 free(rule);
1775 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001776}
1777
Willy Tarreau645513a2010-05-24 20:55:15 +02001778
1779/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001780/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001781/************************************************************************/
1782
Willy Tarreau4a129812012-04-25 17:31:42 +02001783/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001784static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001785smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001786 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001787{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001788 struct connection *cli_conn = objt_conn(l4->si[0].end);
1789
1790 if (!cli_conn)
1791 return 0;
1792
1793 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001794 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001795 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001796 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001797 break;
1798 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001799 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001800 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001801 break;
1802 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001803 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001804 }
Emeric Brunf769f512010-10-22 17:14:01 +02001805
Willy Tarreau37406352012-04-23 16:16:37 +02001806 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001807 return 1;
1808}
1809
Willy Tarreaua5e37562011-12-16 17:06:15 +01001810/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001811static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001812smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001813 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001814{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001815 struct connection *cli_conn = objt_conn(l4->si[0].end);
1816
1817 if (!cli_conn)
1818 return 0;
1819
Willy Tarreauf853c462012-04-23 18:53:56 +02001820 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001821 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001822 return 0;
1823
Willy Tarreau37406352012-04-23 16:16:37 +02001824 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001825 return 1;
1826}
1827
Willy Tarreau4a129812012-04-25 17:31:42 +02001828/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001829static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001830smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001831 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001832{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001833 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001834
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001835 if (!cli_conn)
1836 return 0;
1837
1838 conn_get_to_addr(cli_conn);
1839
1840 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001841 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001842 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001843 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001844 break;
1845 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001846 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001847 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001848 break;
1849 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001850 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001851 }
Emeric Brunf769f512010-10-22 17:14:01 +02001852
Willy Tarreau37406352012-04-23 16:16:37 +02001853 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001854 return 1;
1855}
1856
Willy Tarreaua5e37562011-12-16 17:06:15 +01001857/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001858static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001859smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001860 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001861{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001862 struct connection *cli_conn = objt_conn(l4->si[0].end);
1863
1864 if (!cli_conn)
1865 return 0;
1866
1867 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001868
Willy Tarreauf853c462012-04-23 18:53:56 +02001869 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001870 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001871 return 0;
1872
Willy Tarreau37406352012-04-23 16:16:37 +02001873 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001874 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001875}
1876
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001877#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001878/* parse the "v4v6" bind keyword */
1879static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1880{
1881 struct listener *l;
1882
1883 list_for_each_entry(l, &conf->listeners, by_bind) {
1884 if (l->addr.ss_family == AF_INET6)
1885 l->options |= LI_O_V4V6;
1886 }
1887
1888 return 0;
1889}
1890
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001891/* parse the "v6only" bind keyword */
1892static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1893{
1894 struct listener *l;
1895
1896 list_for_each_entry(l, &conf->listeners, by_bind) {
1897 if (l->addr.ss_family == AF_INET6)
1898 l->options |= LI_O_V6ONLY;
1899 }
1900
1901 return 0;
1902}
1903#endif
1904
Pieter Baauwd551fb52013-05-08 22:49:23 +02001905#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001906/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001907static 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 +02001908{
1909 struct listener *l;
1910
Willy Tarreau4348fad2012-09-20 16:48:07 +02001911 list_for_each_entry(l, &conf->listeners, by_bind) {
1912 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1913 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001914 }
1915
Willy Tarreau44791242012-09-12 23:27:21 +02001916 return 0;
1917}
1918#endif
1919
1920#ifdef TCP_DEFER_ACCEPT
1921/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001922static 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 +02001923{
1924 struct listener *l;
1925
Willy Tarreau4348fad2012-09-20 16:48:07 +02001926 list_for_each_entry(l, &conf->listeners, by_bind) {
1927 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1928 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001929 }
1930
Willy Tarreau44791242012-09-12 23:27:21 +02001931 return 0;
1932}
1933#endif
1934
Willy Tarreau1c862c52012-10-05 16:21:00 +02001935#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001936/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001937static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1938{
1939 struct listener *l;
1940
1941 list_for_each_entry(l, &conf->listeners, by_bind) {
1942 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1943 l->options |= LI_O_TCP_FO;
1944 }
1945
1946 return 0;
1947}
1948#endif
1949
Willy Tarreau44791242012-09-12 23:27:21 +02001950#ifdef TCP_MAXSEG
1951/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001952static 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 +02001953{
1954 struct listener *l;
1955 int mss;
1956
Willy Tarreau44791242012-09-12 23:27:21 +02001957 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001958 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001959 return ERR_ALERT | ERR_FATAL;
1960 }
1961
1962 mss = atoi(args[cur_arg + 1]);
1963 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001964 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001965 return ERR_ALERT | ERR_FATAL;
1966 }
1967
Willy Tarreau4348fad2012-09-20 16:48:07 +02001968 list_for_each_entry(l, &conf->listeners, by_bind) {
1969 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1970 l->maxseg = mss;
1971 }
Willy Tarreau44791242012-09-12 23:27:21 +02001972
1973 return 0;
1974}
1975#endif
1976
1977#ifdef SO_BINDTODEVICE
1978/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001979static 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 +02001980{
1981 struct listener *l;
1982
Willy Tarreau44791242012-09-12 23:27:21 +02001983 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001984 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001985 return ERR_ALERT | ERR_FATAL;
1986 }
1987
Willy Tarreau4348fad2012-09-20 16:48:07 +02001988 list_for_each_entry(l, &conf->listeners, by_bind) {
1989 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1990 l->interface = strdup(args[cur_arg + 1]);
1991 }
Willy Tarreau44791242012-09-12 23:27:21 +02001992
1993 global.last_checks |= LSTCHK_NETADM;
1994 return 0;
1995}
1996#endif
1997
Willy Tarreaudc13c112013-06-21 23:16:39 +02001998static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001999 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02002000 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02002001 { 0, NULL, NULL },
2002}};
2003
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002004
Willy Tarreau61612d42012-04-19 18:42:05 +02002005/* Note: must not be declared <const> as its list will be overwritten.
2006 * Please take care of keeping this list alphabetically sorted.
2007 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002008static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002009 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02002010}};
2011
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002012
Willy Tarreau4a129812012-04-25 17:31:42 +02002013/* Note: must not be declared <const> as its list will be overwritten.
2014 * Note: fetches that may return multiple types must be declared as the lowest
2015 * common denominator, the type that can be casted into all other ones. For
2016 * instance v4/v6 must be declared v4.
2017 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002018static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002019 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
2020 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
2021 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
2022 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
2023 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02002024}};
2025
Willy Tarreau44791242012-09-12 23:27:21 +02002026/************************************************************************/
2027/* All supported bind keywords must be declared here. */
2028/************************************************************************/
2029
2030/* Note: must not be declared <const> as its list will be overwritten.
2031 * Please take care of keeping this list alphabetically sorted, doing so helps
2032 * all code contributors.
2033 * Optional keywords are also declared with a NULL ->parse() function so that
2034 * the config parser can report an appropriate error when a known keyword was
2035 * not enabled.
2036 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02002037static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02002038#ifdef TCP_DEFER_ACCEPT
2039 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
2040#endif
2041#ifdef SO_BINDTODEVICE
2042 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
2043#endif
2044#ifdef TCP_MAXSEG
2045 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
2046#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02002047#ifdef TCP_FASTOPEN
2048 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
2049#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02002050#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02002051 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
2052#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002053#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01002054 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002055 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
2056#endif
Willy Tarreau44791242012-09-12 23:27:21 +02002057 /* the versions with the NULL parse function*/
2058 { "defer-accept", NULL, 0 },
2059 { "interface", NULL, 1 },
2060 { "mss", NULL, 1 },
2061 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01002062 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002063 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02002064 { NULL, NULL, 0 },
2065}};
2066
Willy Tarreaue6b98942007-10-29 01:09:36 +01002067__attribute__((constructor))
2068static void __tcp_protocol_init(void)
2069{
2070 protocol_register(&proto_tcpv4);
2071 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02002072 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02002073 cfg_register_keywords(&cfg_kws);
2074 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02002075 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01002076}
2077
2078
2079/*
2080 * Local variables:
2081 * c-indent-level: 8
2082 * c-basic-offset: 8
2083 * End:
2084 */