blob: 66d8b9db27932e772d3a82cefb4369ce7eff8d8f [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>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010036#include <common/namespace.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010037
Willy Tarreaue6b98942007-10-29 01:09:36 +010038#include <types/global.h>
Willy Tarreau18bf01e2014-06-13 16:18:52 +020039#include <types/capture.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020040#include <types/server.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010041
42#include <proto/acl.h>
Willy Tarreau9fcb9842012-04-20 14:45:49 +020043#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020044#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020045#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020046#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020047#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020048#include <proto/log.h>
49#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020050#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010051#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020052#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020053#include <proto/sample.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020054#include <proto/session.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020055#include <proto/stick_table.h>
Willy Tarreaucc1e04b2013-09-11 23:20:29 +020056#include <proto/stream_interface.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020057#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010058
Willy Tarreaue8c66af2008-01-13 18:40:14 +010059#ifdef CONFIG_HAP_CTTPROXY
60#include <import/ip_tproxy.h>
61#endif
62
Emeric Bruncf20bf12010-10-22 16:06:11 +020063static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
64static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010065
66/* Note: must not be declared <const> as its list will be overwritten */
67static struct protocol proto_tcpv4 = {
68 .name = "tcpv4",
69 .sock_domain = AF_INET,
70 .sock_type = SOCK_STREAM,
71 .sock_prot = IPPROTO_TCP,
72 .sock_family = AF_INET,
73 .sock_addrlen = sizeof(struct sockaddr_in),
74 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020075 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020076 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020077 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010078 .bind_all = tcp_bind_listeners,
79 .unbind_all = unbind_all_listeners,
80 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020081 .get_src = tcp_get_src,
82 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +020083 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +020084 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010085 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
86 .nb_listeners = 0,
87};
88
89/* Note: must not be declared <const> as its list will be overwritten */
90static struct protocol proto_tcpv6 = {
91 .name = "tcpv6",
92 .sock_domain = AF_INET6,
93 .sock_type = SOCK_STREAM,
94 .sock_prot = IPPROTO_TCP,
95 .sock_family = AF_INET6,
96 .sock_addrlen = sizeof(struct sockaddr_in6),
97 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020098 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020099 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +0200100 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100101 .bind_all = tcp_bind_listeners,
102 .unbind_all = unbind_all_listeners,
103 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200104 .get_src = tcp_get_src,
105 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200106 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +0200107 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100108 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
109 .nb_listeners = 0,
110};
111
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100112
David du Colombier6f5ccb12011-03-10 22:26:24 +0100113/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100114 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
115 * - 0 : ignore remote address (may even be a NULL pointer)
116 * - 1 : use provided address
117 * - 2 : use provided port
118 * - 3 : use both
119 *
120 * The function supports multiple foreign binding methods :
121 * - linux_tproxy: we directly bind to the foreign address
122 * - cttproxy: we bind to a local address then nat.
123 * The second one can be used as a fallback for the first one.
124 * This function returns 0 when everything's OK, 1 if it could not bind, to the
125 * local address, 2 if it could not bind to the foreign address.
126 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100127int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100128{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100129 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100130 int foreign_ok = 0;
131 int ret;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100132 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200133 static int ip6_transp_working = 1;
Pieter Baauwd551fb52013-05-08 22:49:23 +0200134
David du Colombier65c17962012-07-13 14:34:59 +0200135 switch (local->ss_family) {
136 case AF_INET:
137 if (flags && ip_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200138 /* This deserves some explanation. Some platforms will support
139 * multiple combinations of certain methods, so we try the
140 * supported ones until one succeeds.
141 */
142 if (0
143#if defined(IP_TRANSPARENT)
144 || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0)
145#endif
146#if defined(IP_FREEBIND)
147 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
148#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200149#if defined(IP_BINDANY)
150 || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0)
151#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200152#if defined(SO_BINDANY)
153 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
154#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200155 )
David du Colombier65c17962012-07-13 14:34:59 +0200156 foreign_ok = 1;
157 else
158 ip_transp_working = 0;
159 }
160 break;
161 case AF_INET6:
162 if (flags && ip6_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200163 if (0
164#if defined(IPV6_TRANSPARENT)
165 || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
166#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100167#if defined(IP_FREEBIND)
168 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
169#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200170#if defined(IPV6_BINDANY)
171 || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0)
172#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200173#if defined(SO_BINDANY)
174 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
175#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200176 )
David du Colombier65c17962012-07-13 14:34:59 +0200177 foreign_ok = 1;
178 else
179 ip6_transp_working = 0;
180 }
181 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100182 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200183
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100184 if (flags) {
185 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200186 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100187 switch (remote->ss_family) {
188 case AF_INET:
189 if (flags & 1)
190 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
191 if (flags & 2)
192 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
193 break;
194 case AF_INET6:
195 if (flags & 1)
196 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
197 if (flags & 2)
198 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
199 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100200 default:
201 /* we don't want to try to bind to an unknown address family */
202 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100203 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100204 }
205
Simon Hormande072bd2011-06-24 15:11:37 +0900206 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100207 if (foreign_ok) {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200208 if (is_inet_addr(&bind_addr)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200209 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
210 if (ret < 0)
211 return 2;
212 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100213 }
214 else {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200215 if (is_inet_addr(local)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200216 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
217 if (ret < 0)
218 return 1;
219 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100220 }
221
222 if (!flags)
223 return 0;
224
225#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100226 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100227 struct in_tproxy itp1, itp2;
228 memset(&itp1, 0, sizeof(itp1));
229
230 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100231 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
232 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100233
234 /* set connect flag on socket */
235 itp2.op = TPROXY_FLAGS;
236 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
237
238 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
239 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
240 foreign_ok = 1;
241 }
242 }
243#endif
244 if (!foreign_ok)
245 /* we could not bind to a foreign address */
246 return 2;
247
248 return 0;
249}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100250
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100251static int create_server_socket(struct connection *conn)
252{
Willy Tarreau529c1392014-12-24 13:47:55 +0100253 const struct netns_entry *ns = NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100254
Willy Tarreau529c1392014-12-24 13:47:55 +0100255#ifdef CONFIG_HAP_NS
256 if (objt_server(conn->target)) {
257 if (__objt_server(conn->target)->flags & SRV_F_USE_NS_FROM_PP)
258 ns = conn->proxy_netns;
259 else
260 ns = __objt_server(conn->target)->netns;
261 }
262#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100263 return my_socketat(ns, conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP);
264}
Willy Tarreau9650f372009-08-16 14:02:45 +0200265
266/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200267 * This function initiates a TCP connection establishment to the target assigned
268 * to connection <conn> using (si->{target,addr.to}). A source address may be
269 * pointed to by conn->addr.from in case of transparent proxying. Normal source
270 * bind addresses are still determined locally (due to the possible need of a
271 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100272 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreauf0837b22012-11-24 10:24:27 +0100273 * supported. The <data> parameter is a boolean indicating whether there are data
274 * waiting for being sent or not, in order to adjust data write polling and on
275 * some platforms, the ability to avoid an empty initial ACK. The <delack> argument
276 * allows the caller to force using a delayed ACK when establishing the connection :
277 * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect
278 * - 1 = delayed ACK if backend has tcp-smart-connect, regardless of data
279 * - 2 = delayed ACK regardless of backend options
Willy Tarreaub1d67742010-03-29 19:36:59 +0200280 *
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200281 * Note that a pending send_proxy message accounts for data.
282 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200283 * It can return one of :
284 * - SN_ERR_NONE if everything's OK
285 * - SN_ERR_SRVTO if there are no more servers
286 * - SN_ERR_SRVCL if the connection was refused by the server
287 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
288 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
289 * - SN_ERR_INTERNAL for any other purely internal errors
290 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100291 *
292 * The connection's fd is inserted only when SN_ERR_NONE is returned, otherwise
293 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200294 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100295
Willy Tarreauf0837b22012-11-24 10:24:27 +0100296int tcp_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau9650f372009-08-16 14:02:45 +0200297{
298 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100299 struct server *srv;
300 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100301 struct conn_src *src;
Willy Tarreauac825402011-03-04 22:04:29 +0100302
Willy Tarreau9ce70132014-01-24 16:08:19 +0100303 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
304
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100305 switch (obj_type(conn->target)) {
306 case OBJ_TYPE_PROXY:
307 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100308 srv = NULL;
309 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100310 case OBJ_TYPE_SERVER:
311 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100312 be = srv->proxy;
313 break;
314 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100315 conn->flags |= CO_FL_ERROR;
Willy Tarreauac825402011-03-04 22:04:29 +0100316 return SN_ERR_INTERNAL;
317 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200318
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100319 fd = conn->t.sock.fd = create_server_socket(conn);
320
321 if (fd == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200322 qfprintf(stderr, "Cannot get a server socket.\n");
323
Willy Tarreau9ce70132014-01-24 16:08:19 +0100324 if (errno == ENFILE) {
325 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200326 send_log(be, LOG_EMERG,
327 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
328 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100329 }
330 else if (errno == EMFILE) {
331 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200332 send_log(be, LOG_EMERG,
333 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
334 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100335 }
336 else if (errno == ENOBUFS || errno == ENOMEM) {
337 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200338 send_log(be, LOG_EMERG,
339 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
340 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100341 }
342 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
343 conn->err_code = CO_ER_NOPROTO;
344 }
345 else
346 conn->err_code = CO_ER_SOCK_ERR;
347
Willy Tarreau9650f372009-08-16 14:02:45 +0200348 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100349 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200350 return SN_ERR_RESOURCE;
351 }
352
353 if (fd >= global.maxsock) {
354 /* do not log anything there, it's a normal condition when this option
355 * is used to serialize connections to a server !
356 */
357 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
358 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100359 conn->err_code = CO_ER_CONF_FDLIM;
360 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200361 return SN_ERR_PRXCOND; /* it is a configuration limit */
362 }
363
364 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900365 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200366 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
367 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100368 conn->err_code = CO_ER_SOCK_ERR;
369 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200370 return SN_ERR_INTERNAL;
371 }
372
373 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900374 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200375
Willy Tarreau9650f372009-08-16 14:02:45 +0200376 /* allow specific binding :
377 * - server-specific at first
378 * - proxy-specific next
379 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100380 if (srv && srv->conn_src.opts & CO_SRC_BIND)
381 src = &srv->conn_src;
382 else if (be->conn_src.opts & CO_SRC_BIND)
383 src = &be->conn_src;
384 else
385 src = NULL;
386
387 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200388 int ret, flags = 0;
389
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200390 if (is_inet_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100391 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100392 case CO_SRC_TPROXY_ADDR:
393 case CO_SRC_TPROXY_CLI:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200394 flags = 3;
395 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100396 case CO_SRC_TPROXY_CIP:
397 case CO_SRC_TPROXY_DYN:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200398 flags = 1;
399 break;
400 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200401 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200402
Willy Tarreau9650f372009-08-16 14:02:45 +0200403#ifdef SO_BINDTODEVICE
404 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100405 if (src->iface_name)
406 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200407#endif
408
Willy Tarreaua4380b42012-12-08 22:49:11 +0100409 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200410 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100411 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200412
413 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100414 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200415
416 do {
417 /* note: in case of retry, we may have to release a previously
418 * allocated port, hence this loop's construct.
419 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200420 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
421 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200422
423 if (!attempts)
424 break;
425 attempts--;
426
Willy Tarreaua4380b42012-12-08 22:49:11 +0100427 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100428 if (!fdinfo[fd].local_port) {
429 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200430 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100431 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200432
Willy Tarreaua4380b42012-12-08 22:49:11 +0100433 fdinfo[fd].port_range = src->sport_range;
434 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200435
Willy Tarreaua4380b42012-12-08 22:49:11 +0100436 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100437 if (ret != 0)
438 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200439 } while (ret != 0); /* binding NOK */
440 }
441 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100442 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100443 if (ret != 0)
444 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200445 }
446
Willy Tarreaua4380b42012-12-08 22:49:11 +0100447 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200448 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
449 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200450 close(fd);
451
Willy Tarreau9650f372009-08-16 14:02:45 +0200452 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100453 Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200454 be->id);
455 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100456 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200457 be->id);
458 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100459 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200460 be->id);
461 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100462 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200463 be->id);
464 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100465 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200466 return SN_ERR_RESOURCE;
467 }
468 }
469
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400470#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200471 /* disabling tcp quick ack now allows the first request to leave the
472 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100473 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200474 */
Willy Tarreaufb20e462014-10-24 12:02:24 +0200475 if (delack == 2 || ((delack || data || conn->send_proxy_ofs) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900476 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200477#endif
478
Willy Tarreaue803de22010-01-21 17:43:04 +0100479 if (global.tune.server_sndbuf)
480 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
481
482 if (global.tune.server_rcvbuf)
483 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
484
Willy Tarreau986a9d22012-08-30 21:11:38 +0200485 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200486 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
487
Willy Tarreaub1719512012-12-08 23:03:28 +0100488 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200489 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100490 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200491 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100492 conn->err_code = CO_ER_FREE_PORTS;
493 }
494 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200495 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100496 conn->err_code = CO_ER_ADDR_INUSE;
497 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200498
Willy Tarreaub1719512012-12-08 23:03:28 +0100499 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
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 Tarreaub1719512012-12-08 23:03:28 +0100503 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100504 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200505 return SN_ERR_RESOURCE;
506 } else if (errno == ETIMEDOUT) {
507 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200508 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
509 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200510 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100511 conn->err_code = CO_ER_SOCK_ERR;
512 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200513 return SN_ERR_SRVTO;
514 } else {
515 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
516 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200517 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
518 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200519 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100520 conn->err_code = CO_ER_SOCK_ERR;
521 conn->flags |= CO_FL_ERROR;
Willy Tarreau9650f372009-08-16 14:02:45 +0200522 return SN_ERR_SRVCL;
523 }
524 }
525
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100526 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200527
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200528 /* Prepare to send a few handshakes related to the on-wire protocol. */
529 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200530 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200531
Willy Tarreauf79c8172013-10-21 16:30:56 +0200532 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100533 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200534 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200535
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200536 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200537 conn_force_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100538 conn->flags |= CO_FL_ERROR;
Willy Tarreau15678ef2012-08-31 13:54:11 +0200539 return SN_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200540 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200541
Willy Tarreau14f8e862012-08-30 22:23:13 +0200542 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200543 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200544
Willy Tarreau9650f372009-08-16 14:02:45 +0200545 return SN_ERR_NONE; /* connection is OK */
546}
547
548
Willy Tarreau59b94792012-05-11 16:16:40 +0200549/*
550 * Retrieves the source address for the socket <fd>, with <dir> indicating
551 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
552 * success, -1 in case of error. The socket's source address is stored in
553 * <sa> for <salen> bytes.
554 */
555int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
556{
557 if (dir)
558 return getsockname(fd, sa, &salen);
559 else
560 return getpeername(fd, sa, &salen);
561}
562
563
564/*
565 * Retrieves the original destination address for the socket <fd>, with <dir>
566 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
567 * listener, if the original destination address was translated, the original
568 * address is retrieved. It returns 0 in case of success, -1 in case of error.
569 * The socket's source address is stored in <sa> for <salen> bytes.
570 */
571int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
572{
573 if (dir)
574 return getpeername(fd, sa, &salen);
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100575 else {
576 int ret = getsockname(fd, sa, &salen);
577
578 if (ret < 0)
579 return ret;
580
Willy Tarreau59b94792012-05-11 16:16:40 +0200581#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100582 /* For TPROXY and Netfilter's NAT, we can retrieve the original
583 * IPv4 address before DNAT/REDIRECT. We must not do that with
584 * other families because v6-mapped IPv4 addresses are still
585 * reported as v4.
586 */
587 if (((struct sockaddr_storage *)sa)->ss_family == AF_INET
588 && getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
589 return 0;
Willy Tarreau59b94792012-05-11 16:16:40 +0200590#endif
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100591 return ret;
592 }
Willy Tarreau59b94792012-05-11 16:16:40 +0200593}
594
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200595/* Tries to drain any pending incoming data from the socket to reach the
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100596 * receive shutdown. Returns positive if the shutdown was found, negative
597 * if EAGAIN was hit, otherwise zero. This is useful to decide whether we
598 * can close a connection cleanly are we must kill it hard.
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200599 */
600int tcp_drain(int fd)
601{
602 int turns = 2;
603 int len;
604
605 while (turns) {
606#ifdef MSG_TRUNC_CLEARS_INPUT
607 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
608 if (len == -1 && errno == EFAULT)
609#endif
610 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
611
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100612 if (len == 0) {
613 /* cool, shutdown received */
614 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200615 return 1;
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100616 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200617
618 if (len < 0) {
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100619 if (errno == EAGAIN) {
620 /* connection not closed yet */
621 fd_cant_recv(fd);
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100622 return -1;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100623 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200624 if (errno == EINTR) /* oops, try again */
625 continue;
626 /* other errors indicate a dead connection, fine. */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100627 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200628 return 1;
629 }
630 /* OK we read some data, let's try again once */
631 turns--;
632 }
633 /* some data are still present, give up */
634 return 0;
635}
636
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200637/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100638 * and we have nothing to send. It updates the FD polling status. It returns 0
639 * if it fails in a fatal way or needs to poll to go further, otherwise it
640 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
641 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
642 * errno. The error checking is done in two passes in order to limit the number
643 * of syscalls in the normal case :
644 * - if POLL_ERR was reported by the poller, we check for a pending error on
645 * the socket before proceeding. If found, it's assigned to errno so that
646 * upper layers can see it.
647 * - otherwise connect() is used to check the connection state again, since
648 * the getsockopt return cannot reliably be used to know if the connection
649 * is still pending or ready. This one may often return an error as well,
650 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200651 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200652int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200653{
Willy Tarreau239d7182012-07-23 18:53:03 +0200654 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100655 socklen_t lskerr;
656 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200657
Willy Tarreau80184712012-07-06 14:54:49 +0200658 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200659 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200660
Willy Tarreau3c728722014-01-23 13:50:42 +0100661 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200662 return 0;
663
Willy Tarreau80184712012-07-06 14:54:49 +0200664 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200665 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200666
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100667 if (!fd_send_ready(fd))
668 return 0;
669
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100670 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
671 * without FD_POLL_IN also indicates a hangup without input data meaning
672 * there was no connection.
673 */
674 if (fdtab[fd].ev & FD_POLL_ERR ||
675 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
676 skerr = 0;
677 lskerr = sizeof(skerr);
678 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
679 errno = skerr;
680 if (errno == EAGAIN)
681 errno = 0;
682 if (errno)
683 goto out_error;
684 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200685
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100686 /* Use connect() to check the state of the socket. This has the
687 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200688 * - error
689 * - connecting (EALREADY, EINPROGRESS)
690 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200691 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200692 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200693 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100694 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100695 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200696 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200697 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200698
Willy Tarreau2c6be842012-07-06 17:12:34 +0200699 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200700 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200701
Willy Tarreau2c6be842012-07-06 17:12:34 +0200702 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200703 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200704
Willy Tarreau076be252012-07-06 16:02:29 +0200705 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200706 * forward the event to the transport layer which will notify the
707 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200708 */
Willy Tarreau80184712012-07-06 14:54:49 +0200709 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200710 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200711
712 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200713 /* Write error on the file descriptor. Report it to the connection
714 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200715 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100716 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100717 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100718 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200719 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200720}
721
Willy Tarreau59b94792012-05-11 16:16:40 +0200722
Willy Tarreaue6b98942007-10-29 01:09:36 +0100723/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100724 * an error message in <errmsg> if the message is at most <errlen> bytes long
725 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
726 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100727 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
728 * was alright and that no message was returned. ERR_RETRYABLE means that an
729 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700730 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100731 * the meaning of the error, but just indicate that a message is present which
732 * should be displayed with the respective level. Last, ERR_ABORT indicates
733 * that it's pointless to try to start other listeners. No error message is
734 * returned if errlen is NULL.
735 */
736int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
737{
738 __label__ tcp_return, tcp_close_return;
739 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100740 int ext, ready;
741 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100742 const char *msg = NULL;
743
744 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100745 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100746 *errmsg = 0;
747
748 if (listener->state != LI_ASSIGNED)
749 return ERR_NONE; /* already bound */
750
751 err = ERR_NONE;
752
Willy Tarreau40aa0702013-03-10 23:51:38 +0100753 /* if the listener already has an fd assigned, then we were offered the
754 * fd by an external process (most likely the parent), and we don't want
755 * to create a new socket. However we still want to set a few flags on
756 * the socket.
757 */
758 fd = listener->fd;
759 ext = (fd >= 0);
760
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100761 if (!ext) {
762 fd = my_socketat(listener->netns, listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP);
763
764 if (fd == -1) {
765 err |= ERR_RETRYABLE | ERR_ALERT;
766 msg = "cannot create listening socket";
767 goto tcp_return;
768 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100769 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100770
Willy Tarreaue6b98942007-10-29 01:09:36 +0100771 if (fd >= global.maxsock) {
772 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
773 msg = "not enough free sockets (raise '-n' parameter)";
774 goto tcp_close_return;
775 }
776
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200777 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100778 err |= ERR_FATAL | ERR_ALERT;
779 msg = "cannot make socket non-blocking";
780 goto tcp_close_return;
781 }
782
Willy Tarreau40aa0702013-03-10 23:51:38 +0100783 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100784 /* not fatal but should be reported */
785 msg = "cannot do so_reuseaddr";
786 err |= ERR_ALERT;
787 }
788
789 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900790 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100791
Willy Tarreaue6b98942007-10-29 01:09:36 +0100792#ifdef SO_REUSEPORT
793 /* OpenBSD supports this. As it's present in old libc versions of Linux,
794 * it might return an error that we will silently ignore.
795 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100796 if (!ext)
797 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100798#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200799
Willy Tarreau40aa0702013-03-10 23:51:38 +0100800 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200801 switch (listener->addr.ss_family) {
802 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200803 if (1
804#if defined(IP_TRANSPARENT)
805 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
806#endif
807#if defined(IP_FREEBIND)
808 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
809#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200810#if defined(IP_BINDANY)
811 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
812#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200813#if defined(SO_BINDANY)
814 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
815#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200816 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200817 msg = "cannot make listening socket transparent";
818 err |= ERR_ALERT;
819 }
820 break;
821 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200822 if (1
823#if defined(IPV6_TRANSPARENT)
824 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
825#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100826#if defined(IP_FREEBIND)
827 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
828#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200829#if defined(IPV6_BINDANY)
830 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
831#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200832#if defined(SO_BINDANY)
833 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
834#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200835 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200836 msg = "cannot make listening socket transparent";
837 err |= ERR_ALERT;
838 }
839 break;
840 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100841 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200842
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100843#ifdef SO_BINDTODEVICE
844 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100845 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100846 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100847 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100848 msg = "cannot bind listener to device";
849 err |= ERR_WARN;
850 }
851 }
852#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400853#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100854 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400855 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200856 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
857 msg = "cannot set MSS";
858 err |= ERR_WARN;
859 }
860 }
861#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200862#if defined(TCP_DEFER_ACCEPT)
863 if (listener->options & LI_O_DEF_ACCEPT) {
864 /* defer accept by up to one second */
865 int accept_delay = 1;
866 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
867 msg = "cannot enable DEFER_ACCEPT";
868 err |= ERR_WARN;
869 }
870 }
871#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200872#if defined(TCP_FASTOPEN)
873 if (listener->options & LI_O_TCP_FO) {
874 /* TFO needs a queue length, let's use the configured backlog */
875 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
876 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
877 msg = "cannot enable TCP_FASTOPEN";
878 err |= ERR_WARN;
879 }
880 }
881#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100882#if defined(IPV6_V6ONLY)
883 if (listener->options & LI_O_V6ONLY)
884 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100885 else if (listener->options & LI_O_V4V6)
886 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100887#endif
888
Willy Tarreau40aa0702013-03-10 23:51:38 +0100889 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100890 err |= ERR_RETRYABLE | ERR_ALERT;
891 msg = "cannot bind socket";
892 goto tcp_close_return;
893 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100894
Willy Tarreau40aa0702013-03-10 23:51:38 +0100895 ready = 0;
896 ready_len = sizeof(ready);
897 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
898 ready = 0;
899
900 if (!(ext && ready) && /* only listen if not already done by external process */
901 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100902 err |= ERR_RETRYABLE | ERR_ALERT;
903 msg = "cannot listen to socket";
904 goto tcp_close_return;
905 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100906
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400907#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200908 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900909 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200910#endif
911
Willy Tarreaue6b98942007-10-29 01:09:36 +0100912 /* the socket is ready */
913 listener->fd = fd;
914 listener->state = LI_LISTEN;
915
Willy Tarreaueabf3132008-08-29 23:36:51 +0200916 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200917 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200918 fd_insert(fd);
919
Willy Tarreaue6b98942007-10-29 01:09:36 +0100920 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100921 if (msg && errlen) {
922 char pn[INET6_ADDRSTRLEN];
923
Willy Tarreau631f01c2011-09-05 00:36:48 +0200924 addr_to_str(&listener->addr, pn, sizeof(pn));
925 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100926 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100927 return err;
928
929 tcp_close_return:
930 close(fd);
931 goto tcp_return;
932}
933
934/* This function creates all TCP sockets bound to the protocol entry <proto>.
935 * It is intended to be used as the protocol's bind_all() function.
936 * The sockets will be registered but not added to any fd_set, in order not to
937 * loose them across the fork(). A call to enable_all_listeners() is needed
938 * to complete initialization. The return value is composed from ERR_*.
939 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200940static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100941{
942 struct listener *listener;
943 int err = ERR_NONE;
944
945 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200946 err |= tcp_bind_listener(listener, errmsg, errlen);
947 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100948 break;
949 }
950
951 return err;
952}
953
954/* Add listener to the list of tcpv4 listeners. The listener's state
955 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
956 * listeners is updated. This is the function to use to add a new listener.
957 */
958void tcpv4_add_listener(struct listener *listener)
959{
960 if (listener->state != LI_INIT)
961 return;
962 listener->state = LI_ASSIGNED;
963 listener->proto = &proto_tcpv4;
964 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
965 proto_tcpv4.nb_listeners++;
966}
967
968/* Add listener to the list of tcpv4 listeners. The listener's state
969 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
970 * listeners is updated. This is the function to use to add a new listener.
971 */
972void tcpv6_add_listener(struct listener *listener)
973{
974 if (listener->state != LI_INIT)
975 return;
976 listener->state = LI_ASSIGNED;
977 listener->proto = &proto_tcpv6;
978 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
979 proto_tcpv6.nb_listeners++;
980}
981
Willy Tarreau092d8652014-07-07 20:22:12 +0200982/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
983 * was totally stopped, or > 0 if correctly paused.
984 */
985int tcp_pause_listener(struct listener *l)
986{
987 if (shutdown(l->fd, SHUT_WR) != 0)
988 return -1; /* Solaris dies here */
989
990 if (listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0)
991 return -1; /* OpenBSD dies here */
992
993 if (shutdown(l->fd, SHUT_RD) != 0)
994 return -1; /* should always be OK */
995 return 1;
996}
997
Willy Tarreauedcf6682008-11-30 23:15:34 +0100998/* This function performs the TCP request analysis on the current request. It
999 * returns 1 if the processing can continue on next analysers, or zero if it
1000 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +02001001 * request. It relies on buffers flags, and updates s->req->analysers. The
1002 * function may be called for frontend rules and backend rules. It only relies
1003 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001004 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001005int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +01001006{
1007 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +02001008 struct stksess *ts;
1009 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001010 int partial;
1011
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001012 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 +01001013 now_ms, __FUNCTION__,
1014 s,
1015 req,
1016 req->rex, req->wex,
1017 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001018 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +01001019 req->analysers);
1020
Willy Tarreauedcf6682008-11-30 23:15:34 +01001021 /* We don't know whether we have enough data, so must proceed
1022 * this way :
1023 * - iterate through all rules in their declaration order
1024 * - if one rule returns MISS, it means the inspect delay is
1025 * not over yet, then return immediately, otherwise consider
1026 * it as a non-match.
1027 * - if one rule returns OK, then return OK
1028 * - if one rule returns KO, then return KO
1029 */
1030
Willy Tarreau9b28e032012-10-12 23:49:43 +02001031 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001032 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001033 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001034 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001035 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001036
Willy Tarreaufb356202010-08-03 14:02:05 +02001037 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001038 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001039
1040 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001041 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001042 if (ret == ACL_TEST_MISS)
1043 goto missing_data;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001044
1045 ret = acl_pass(ret);
1046 if (rule->cond->pol == ACL_COND_UNLESS)
1047 ret = !ret;
1048 }
1049
1050 if (ret) {
1051 /* we have a matching rule. */
1052 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001053 channel_abort(req);
1054 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001055 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001056
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001057 s->be->be_counters.denied_req++;
1058 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001059 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +02001060 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001061
Willy Tarreauedcf6682008-11-30 23:15:34 +01001062 if (!(s->flags & SN_ERR_MASK))
1063 s->flags |= SN_ERR_PRXCOND;
1064 if (!(s->flags & SN_FINST_MASK))
1065 s->flags |= SN_FINST_R;
1066 return 0;
1067 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001068 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001069 /* Note: only the first valid tracking parameter of each
1070 * applies.
1071 */
1072 struct stktable_key *key;
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001073 struct sample smp;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001074
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001075 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001076 continue;
1077
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001078 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001079 key = stktable_fetch_key(t, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial, rule->act_prm.trk_ctr.expr, &smp);
1080
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001081 if ((smp.flags & SMP_F_MAY_CHANGE) && !(partial & SMP_OPT_FINAL))
1082 goto missing_data; /* key might appear later */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001083
1084 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001085 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001086 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001087 if (s->fe != s->be)
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001088 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001089 }
1090 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001091 else if (rule->action == TCP_ACT_CAPTURE) {
1092 struct sample *key;
1093 struct cap_hdr *h = rule->act_prm.cap.hdr;
1094 char **cap = s->txn.req.cap;
1095 int len;
1096
1097 key = sample_fetch_string(s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial, rule->act_prm.cap.expr);
1098 if (!key)
1099 continue;
1100
1101 if (key->flags & SMP_F_MAY_CHANGE)
1102 goto missing_data;
1103
1104 if (cap[h->index] == NULL)
1105 cap[h->index] = pool_alloc2(h->pool);
1106
1107 if (cap[h->index] == NULL) /* no more capture memory */
1108 continue;
1109
1110 len = key->data.str.len;
1111 if (len > h->len)
1112 len = h->len;
1113
1114 memcpy(cap[h->index], key->data.str.str, len);
1115 cap[h->index][len] = 0;
1116 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02001117 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +01001118 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001119 break;
1120 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001121 }
1122 }
1123
1124 /* if we get there, it means we have no rule which matches, or
1125 * we have an explicit accept, so we apply the default accept.
1126 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001127 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001128 req->analyse_exp = TICK_ETERNITY;
1129 return 1;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001130
1131 missing_data:
1132 channel_dont_connect(req);
1133 /* just set the request timeout once at the beginning of the request */
1134 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
1135 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
1136 return 0;
1137
Willy Tarreauedcf6682008-11-30 23:15:34 +01001138}
1139
Emeric Brun97679e72010-09-23 17:56:44 +02001140/* This function performs the TCP response analysis on the current response. It
1141 * returns 1 if the processing can continue on next analysers, or zero if it
1142 * needs more data, encounters an error, or wants to immediately abort the
1143 * response. It relies on buffers flags, and updates s->rep->analysers. The
1144 * function may be called for backend rules.
1145 */
Willy Tarreau7421efb2012-07-02 15:11:27 +02001146int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001147{
1148 struct tcp_rule *rule;
1149 int partial;
1150
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001151 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 +02001152 now_ms, __FUNCTION__,
1153 s,
1154 rep,
1155 rep->rex, rep->wex,
1156 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001157 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001158 rep->analysers);
1159
1160 /* We don't know whether we have enough data, so must proceed
1161 * this way :
1162 * - iterate through all rules in their declaration order
1163 * - if one rule returns MISS, it means the inspect delay is
1164 * not over yet, then return immediately, otherwise consider
1165 * it as a non-match.
1166 * - if one rule returns OK, then return OK
1167 * - if one rule returns KO, then return KO
1168 */
1169
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001170 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001171 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001172 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001173 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001174
1175 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001176 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001177
1178 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001179 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001180 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001181 /* just set the analyser timeout once at the beginning of the response */
1182 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001183 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001184 return 0;
1185 }
1186
1187 ret = acl_pass(ret);
1188 if (rule->cond->pol == ACL_COND_UNLESS)
1189 ret = !ret;
1190 }
1191
1192 if (ret) {
1193 /* we have a matching rule. */
1194 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001195 channel_abort(rep);
1196 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001197 rep->analysers = 0;
1198
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001199 s->be->be_counters.denied_resp++;
1200 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001201 if (s->listener->counters)
1202 s->listener->counters->denied_resp++;
1203
1204 if (!(s->flags & SN_ERR_MASK))
1205 s->flags |= SN_ERR_PRXCOND;
1206 if (!(s->flags & SN_FINST_MASK))
1207 s->flags |= SN_FINST_D;
1208 return 0;
1209 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001210 else if (rule->action == TCP_ACT_CLOSE) {
1211 rep->prod->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1212 si_shutr(rep->prod);
1213 si_shutw(rep->prod);
1214 break;
1215 }
Emeric Brun97679e72010-09-23 17:56:44 +02001216 else {
1217 /* otherwise accept */
1218 break;
1219 }
1220 }
1221 }
1222
1223 /* if we get there, it means we have no rule which matches, or
1224 * we have an explicit accept, so we apply the default accept.
1225 */
1226 rep->analysers &= ~an_bit;
1227 rep->analyse_exp = TICK_ETERNITY;
1228 return 1;
1229}
1230
1231
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001232/* This function performs the TCP layer4 analysis on the current request. It
1233 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1234 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001235 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001236 */
1237int tcp_exec_req_rules(struct session *s)
1238{
1239 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001240 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001241 struct stktable *t = NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001242 struct connection *conn = objt_conn(s->si[0].end);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001243 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001244 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001245
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001246 if (!conn)
1247 return result;
1248
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001249 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001250 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001251
1252 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001253 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001254 ret = acl_pass(ret);
1255 if (rule->cond->pol == ACL_COND_UNLESS)
1256 ret = !ret;
1257 }
1258
1259 if (ret) {
1260 /* we have a matching rule. */
1261 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001262 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001263 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001264 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001265
1266 if (!(s->flags & SN_ERR_MASK))
1267 s->flags |= SN_ERR_PRXCOND;
1268 if (!(s->flags & SN_FINST_MASK))
1269 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001270 result = 0;
1271 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001272 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001273 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001274 /* Note: only the first valid tracking parameter of each
1275 * applies.
1276 */
1277 struct stktable_key *key;
1278
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001279 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001280 continue;
1281
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001282 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreaub5975de2014-06-25 16:20:53 +02001283 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 +01001284
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001285 if (key && (ts = stktable_get_entry(t, key)))
1286 session_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001287 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001288 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001289 conn->flags |= CO_FL_ACCEPT_PROXY;
1290 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001291 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001292 else {
1293 /* otherwise it's an accept */
1294 break;
1295 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001296 }
1297 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001298 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001299}
1300
Emeric Brun97679e72010-09-23 17:56:44 +02001301/* Parse a tcp-response rule. Return a negative value in case of failure */
1302static int tcp_parse_response_rule(char **args, int arg, int section_type,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001303 struct proxy *curpx, struct proxy *defpx,
1304 struct tcp_rule *rule, char **err,
1305 unsigned int where,
1306 const char *file, int line)
Emeric Brun97679e72010-09-23 17:56:44 +02001307{
1308 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001309 memprintf(err, "%s %s is only allowed in 'backend' sections",
1310 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001311 return -1;
1312 }
1313
1314 if (strcmp(args[arg], "accept") == 0) {
1315 arg++;
1316 rule->action = TCP_ACT_ACCEPT;
1317 }
1318 else if (strcmp(args[arg], "reject") == 0) {
1319 arg++;
1320 rule->action = TCP_ACT_REJECT;
1321 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001322 else if (strcmp(args[arg], "close") == 0) {
1323 arg++;
1324 rule->action = TCP_ACT_CLOSE;
1325 }
Emeric Brun97679e72010-09-23 17:56:44 +02001326 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001327 memprintf(err,
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001328 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001329 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001330 return -1;
1331 }
1332
1333 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001334 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001335 memprintf(err,
1336 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1337 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001338 return -1;
1339 }
1340 }
1341 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001342 memprintf(err,
1343 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001344 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1345 return -1;
1346 }
1347 return 0;
1348}
1349
1350
1351
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001352/* Parse a tcp-request rule. Return a negative value in case of failure */
1353static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001354 struct proxy *curpx, struct proxy *defpx,
1355 struct tcp_rule *rule, char **err,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001356 unsigned int where, const char *file, int line)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001357{
1358 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001359 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1360 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001361 return -1;
1362 }
1363
1364 if (!strcmp(args[arg], "accept")) {
1365 arg++;
1366 rule->action = TCP_ACT_ACCEPT;
1367 }
1368 else if (!strcmp(args[arg], "reject")) {
1369 arg++;
1370 rule->action = TCP_ACT_REJECT;
1371 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001372 else if (strcmp(args[arg], "capture") == 0) {
1373 struct sample_expr *expr;
1374 struct cap_hdr *hdr;
1375 int kw = arg;
1376 int len = 0;
1377
1378 if (!(curpx->cap & PR_CAP_FE)) {
1379 memprintf(err,
1380 "'%s %s %s' : proxy '%s' has no frontend capability",
1381 args[0], args[1], args[kw], curpx->id);
1382 return -1;
1383 }
1384
1385 if (!(where & SMP_VAL_FE_REQ_CNT)) {
1386 memprintf(err,
1387 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1388 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1389 return -1;
1390 }
1391
1392 arg++;
1393
1394 curpx->conf.args.ctx = ARGC_CAP;
1395 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
1396 if (!expr) {
1397 memprintf(err,
1398 "'%s %s %s' : %s",
1399 args[0], args[1], args[kw], *err);
1400 return -1;
1401 }
1402
1403 if (!(expr->fetch->val & where)) {
1404 memprintf(err,
1405 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
1406 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
1407 free(expr);
1408 return -1;
1409 }
1410
1411 if (strcmp(args[arg], "len") == 0) {
1412 arg++;
1413 if (!args[arg]) {
1414 memprintf(err,
1415 "'%s %s %s' : missing length value",
1416 args[0], args[1], args[kw]);
1417 free(expr);
1418 return -1;
1419 }
1420 /* we copy the table name for now, it will be resolved later */
1421 len = atoi(args[arg]);
1422 if (len <= 0) {
1423 memprintf(err,
1424 "'%s %s %s' : length must be > 0",
1425 args[0], args[1], args[kw]);
1426 free(expr);
1427 return -1;
1428 }
1429 arg++;
1430 }
1431
1432 if (!len) {
1433 memprintf(err,
1434 "'%s %s %s' : a positive 'len' argument is mandatory",
1435 args[0], args[1], args[kw]);
1436 free(expr);
1437 return -1;
1438 }
1439
1440 hdr = calloc(sizeof(struct cap_hdr), 1);
1441 hdr->next = curpx->req_cap;
1442 hdr->name = NULL; /* not a header capture */
1443 hdr->namelen = 0;
1444 hdr->len = len;
1445 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
1446 hdr->index = curpx->nb_req_cap++;
1447
1448 curpx->req_cap = hdr;
1449 curpx->to_log |= LW_REQHDR;
1450
1451 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
1452 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1453
1454 rule->act_prm.cap.expr = expr;
1455 rule->act_prm.cap.hdr = hdr;
1456 rule->action = TCP_ACT_CAPTURE;
1457 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001458 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1459 args[arg][9] == '\0' && args[arg][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02001460 args[arg][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001461 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001462 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001463
1464 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001465
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001466 curpx->conf.args.ctx = ARGC_TRK;
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01001467 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001468 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001469 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001470 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001471 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001472 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001473 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001474
Willy Tarreau80aca902013-01-07 15:42:20 +01001475 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001476 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001477 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001478 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001479 free(expr);
1480 return -1;
1481 }
1482
1483 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001484 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001485
1486 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001487 arg++;
1488 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001489 memprintf(err,
1490 "'%s %s %s' : missing table name",
1491 args[0], args[1], args[kw]);
1492 free(expr);
1493 return -1;
1494 }
1495 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001496 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001497 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001498 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001499 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001500 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001501 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001502 else if (strcmp(args[arg], "expect-proxy") == 0) {
1503 if (strcmp(args[arg+1], "layer4") != 0) {
1504 memprintf(err,
1505 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1506 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1507 return -1;
1508 }
1509
1510 if (!(where & SMP_VAL_FE_CON_ACC)) {
1511 memprintf(err,
1512 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1513 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1514 return -1;
1515 }
1516
1517 arg += 2;
1518 rule->action = TCP_ACT_EXPECT_PX;
1519 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001520 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001521 memprintf(err,
Willy Tarreaub4c84932013-07-23 19:15:30 +02001522 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1523 " in %s '%s' (got '%s')",
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02001524 args[0], args[1], MAX_SESS_STKCTR-1, proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001525 return -1;
1526 }
1527
1528 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001529 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001530 memprintf(err,
1531 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1532 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001533 return -1;
1534 }
1535 }
1536 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001537 memprintf(err,
1538 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001539 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1540 return -1;
1541 }
1542 return 0;
1543}
1544
Emeric Brun97679e72010-09-23 17:56:44 +02001545/* This function should be called to parse a line starting with the "tcp-response"
1546 * keyword.
1547 */
1548static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001549 struct proxy *defpx, const char *file, int line,
1550 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001551{
1552 const char *ptr = NULL;
1553 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001554 int warn = 0;
1555 int arg;
1556 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001557 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001558 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001559 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001560
1561 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001562 memprintf(err, "missing argument for '%s' in %s '%s'",
1563 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001564 return -1;
1565 }
1566
1567 if (strcmp(args[1], "inspect-delay") == 0) {
1568 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001569 memprintf(err, "%s %s is only allowed in 'backend' sections",
1570 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001571 return -1;
1572 }
1573
1574 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001575 memprintf(err,
1576 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1577 args[0], args[1], proxy_type_str(curpx), curpx->id);
1578 if (ptr)
1579 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001580 return -1;
1581 }
1582
1583 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001584 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1585 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001586 return 1;
1587 }
1588 curpx->tcp_rep.inspect_delay = val;
1589 return 0;
1590 }
1591
Simon Hormande072bd2011-06-24 15:11:37 +09001592 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001593 LIST_INIT(&rule->list);
1594 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001595 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001596
1597 if (strcmp(args[1], "content") == 0) {
1598 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001599
1600 if (curpx->cap & PR_CAP_FE)
1601 where |= SMP_VAL_FE_RES_CNT;
1602 if (curpx->cap & PR_CAP_BE)
1603 where |= SMP_VAL_BE_RES_CNT;
1604
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001605 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001606 goto error;
1607
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001608 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1609 if (acl) {
1610 if (acl->name && *acl->name)
1611 memprintf(err,
1612 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1613 acl->name, args[0], args[1], sample_ckp_names(where));
1614 else
1615 memprintf(err,
1616 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1617 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001618 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001619 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001620
Emeric Brun97679e72010-09-23 17:56:44 +02001621 warn++;
1622 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001623 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1624 if (acl->name && *acl->name)
1625 memprintf(err,
1626 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001627 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001628 else
1629 memprintf(err,
1630 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001631 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001632 warn++;
1633 }
Emeric Brun97679e72010-09-23 17:56:44 +02001634
1635 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1636 }
1637 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001638 memprintf(err,
1639 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1640 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001641 goto error;
1642 }
1643
1644 return warn;
1645 error:
1646 free(rule);
1647 return -1;
1648}
1649
1650
Willy Tarreaub6866442008-07-14 23:54:42 +02001651/* This function should be called to parse a line starting with the "tcp-request"
1652 * keyword.
1653 */
1654static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001655 struct proxy *defpx, const char *file, int line,
1656 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001657{
1658 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001659 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001660 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001661 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001662 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001663 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001664 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001665 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001666
1667 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001668 if (curpx == defpx)
1669 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1670 else
1671 memprintf(err, "missing argument for '%s' in %s '%s'",
1672 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001673 return -1;
1674 }
1675
1676 if (!strcmp(args[1], "inspect-delay")) {
1677 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001678 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1679 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001680 return -1;
1681 }
1682
Willy Tarreaub6866442008-07-14 23:54:42 +02001683 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001684 memprintf(err,
1685 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1686 args[0], args[1], proxy_type_str(curpx), curpx->id);
1687 if (ptr)
1688 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001689 return -1;
1690 }
1691
1692 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001693 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1694 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001695 return 1;
1696 }
1697 curpx->tcp_req.inspect_delay = val;
1698 return 0;
1699 }
1700
Simon Hormande072bd2011-06-24 15:11:37 +09001701 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001702 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001703 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001704 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001705
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001706 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001707 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001708
1709 if (curpx->cap & PR_CAP_FE)
1710 where |= SMP_VAL_FE_REQ_CNT;
1711 if (curpx->cap & PR_CAP_BE)
1712 where |= SMP_VAL_BE_REQ_CNT;
1713
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001714 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001715 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001716
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001717 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1718 if (acl) {
1719 if (acl->name && *acl->name)
1720 memprintf(err,
1721 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1722 acl->name, args[0], args[1], sample_ckp_names(where));
1723 else
1724 memprintf(err,
1725 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1726 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001727 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001728 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001729
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001730 warn++;
1731 }
1732 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1733 if (acl->name && *acl->name)
1734 memprintf(err,
1735 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001736 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001737 else
1738 memprintf(err,
1739 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001740 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001741 warn++;
1742 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001743
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001744 /* the following function directly emits the warning */
1745 warnif_misplaced_tcp_cont(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001746 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001747 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001748 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001749 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001750
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001751 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001752 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1753 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001754 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001755 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001756
Willy Tarreau80aca902013-01-07 15:42:20 +01001757 where |= SMP_VAL_FE_CON_ACC;
1758
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001759 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001760 goto error;
1761
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001762 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1763 if (acl) {
1764 if (acl->name && *acl->name)
1765 memprintf(err,
1766 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1767 acl->name, args[0], args[1], sample_ckp_names(where));
1768 else
1769 memprintf(err,
1770 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1771 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001772 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001773 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001774
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001775 warn++;
1776 }
1777 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1778 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001779 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001780 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001781 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001782 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001783 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001784 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001785 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001786 warn++;
1787 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001788
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001789 /* the following function directly emits the warning */
1790 warnif_misplaced_tcp_conn(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001791 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001792 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001793 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001794 if (curpx == defpx)
1795 memprintf(err,
1796 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1797 args[0], args[1]);
1798 else
1799 memprintf(err,
1800 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001801 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001802 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001803 }
1804
Willy Tarreau1a687942010-05-23 22:40:30 +02001805 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001806 error:
1807 free(rule);
1808 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001809}
1810
Willy Tarreau645513a2010-05-24 20:55:15 +02001811
1812/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001813/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001814/************************************************************************/
1815
Willy Tarreau4a129812012-04-25 17:31:42 +02001816/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001817static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001818smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001819 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001820{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001821 struct connection *cli_conn = objt_conn(l4->si[0].end);
1822
1823 if (!cli_conn)
1824 return 0;
1825
1826 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001827 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001828 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001829 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001830 break;
1831 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001832 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001833 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001834 break;
1835 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001836 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001837 }
Emeric Brunf769f512010-10-22 17:14:01 +02001838
Willy Tarreau37406352012-04-23 16:16:37 +02001839 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001840 return 1;
1841}
1842
Willy Tarreaua5e37562011-12-16 17:06:15 +01001843/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001844static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001845smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001846 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001847{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001848 struct connection *cli_conn = objt_conn(l4->si[0].end);
1849
1850 if (!cli_conn)
1851 return 0;
1852
Willy Tarreauf853c462012-04-23 18:53:56 +02001853 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001854 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001855 return 0;
1856
Willy Tarreau37406352012-04-23 16:16:37 +02001857 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001858 return 1;
1859}
1860
Willy Tarreau4a129812012-04-25 17:31:42 +02001861/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001862static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001863smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001864 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001865{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001866 struct connection *cli_conn = objt_conn(l4->si[0].end);
Willy Tarreau645513a2010-05-24 20:55:15 +02001867
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001868 if (!cli_conn)
1869 return 0;
1870
1871 conn_get_to_addr(cli_conn);
1872
1873 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001874 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001875 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001876 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001877 break;
1878 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001879 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001880 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001881 break;
1882 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001883 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001884 }
Emeric Brunf769f512010-10-22 17:14:01 +02001885
Willy Tarreau37406352012-04-23 16:16:37 +02001886 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001887 return 1;
1888}
1889
Willy Tarreaua5e37562011-12-16 17:06:15 +01001890/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001891static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001892smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001893 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +02001894{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001895 struct connection *cli_conn = objt_conn(l4->si[0].end);
1896
1897 if (!cli_conn)
1898 return 0;
1899
1900 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001901
Willy Tarreauf853c462012-04-23 18:53:56 +02001902 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001903 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001904 return 0;
1905
Willy Tarreau37406352012-04-23 16:16:37 +02001906 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001907 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01001908}
1909
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001910#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01001911/* parse the "v4v6" bind keyword */
1912static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1913{
1914 struct listener *l;
1915
1916 list_for_each_entry(l, &conf->listeners, by_bind) {
1917 if (l->addr.ss_family == AF_INET6)
1918 l->options |= LI_O_V4V6;
1919 }
1920
1921 return 0;
1922}
1923
Willy Tarreau9b6700f2012-11-24 11:55:28 +01001924/* parse the "v6only" bind keyword */
1925static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1926{
1927 struct listener *l;
1928
1929 list_for_each_entry(l, &conf->listeners, by_bind) {
1930 if (l->addr.ss_family == AF_INET6)
1931 l->options |= LI_O_V6ONLY;
1932 }
1933
1934 return 0;
1935}
1936#endif
1937
Pieter Baauwd551fb52013-05-08 22:49:23 +02001938#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02001939/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001940static 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 +02001941{
1942 struct listener *l;
1943
Willy Tarreau4348fad2012-09-20 16:48:07 +02001944 list_for_each_entry(l, &conf->listeners, by_bind) {
1945 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1946 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001947 }
1948
Willy Tarreau44791242012-09-12 23:27:21 +02001949 return 0;
1950}
1951#endif
1952
1953#ifdef TCP_DEFER_ACCEPT
1954/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001955static 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 +02001956{
1957 struct listener *l;
1958
Willy Tarreau4348fad2012-09-20 16:48:07 +02001959 list_for_each_entry(l, &conf->listeners, by_bind) {
1960 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1961 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001962 }
1963
Willy Tarreau44791242012-09-12 23:27:21 +02001964 return 0;
1965}
1966#endif
1967
Willy Tarreau1c862c52012-10-05 16:21:00 +02001968#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01001969/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02001970static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1971{
1972 struct listener *l;
1973
1974 list_for_each_entry(l, &conf->listeners, by_bind) {
1975 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1976 l->options |= LI_O_TCP_FO;
1977 }
1978
1979 return 0;
1980}
1981#endif
1982
Willy Tarreau44791242012-09-12 23:27:21 +02001983#ifdef TCP_MAXSEG
1984/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001985static 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 +02001986{
1987 struct listener *l;
1988 int mss;
1989
Willy Tarreau44791242012-09-12 23:27:21 +02001990 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001991 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001992 return ERR_ALERT | ERR_FATAL;
1993 }
1994
1995 mss = atoi(args[cur_arg + 1]);
1996 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001997 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001998 return ERR_ALERT | ERR_FATAL;
1999 }
2000
Willy Tarreau4348fad2012-09-20 16:48:07 +02002001 list_for_each_entry(l, &conf->listeners, by_bind) {
2002 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2003 l->maxseg = mss;
2004 }
Willy Tarreau44791242012-09-12 23:27:21 +02002005
2006 return 0;
2007}
2008#endif
2009
2010#ifdef SO_BINDTODEVICE
2011/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002012static 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 +02002013{
2014 struct listener *l;
2015
Willy Tarreau44791242012-09-12 23:27:21 +02002016 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002017 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002018 return ERR_ALERT | ERR_FATAL;
2019 }
2020
Willy Tarreau4348fad2012-09-20 16:48:07 +02002021 list_for_each_entry(l, &conf->listeners, by_bind) {
2022 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2023 l->interface = strdup(args[cur_arg + 1]);
2024 }
Willy Tarreau44791242012-09-12 23:27:21 +02002025
2026 global.last_checks |= LSTCHK_NETADM;
2027 return 0;
2028}
2029#endif
2030
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002031#ifdef CONFIG_HAP_NS
2032/* parse the "namespace" bind keyword */
2033static int bind_parse_namespace(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2034{
2035 struct listener *l;
2036 char *namespace = NULL;
2037
2038 if (!*args[cur_arg + 1]) {
2039 memprintf(err, "'%s' : missing namespace id", args[cur_arg]);
2040 return ERR_ALERT | ERR_FATAL;
2041 }
2042 namespace = args[cur_arg + 1];
2043
2044 list_for_each_entry(l, &conf->listeners, by_bind) {
2045 l->netns = netns_store_lookup(namespace, strlen(namespace));
2046
2047 if (l->netns == NULL)
2048 l->netns = netns_store_insert(namespace);
2049
2050 if (l->netns == NULL) {
2051 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
2052 return ERR_ALERT | ERR_FATAL;
2053 }
2054 }
2055 return 0;
2056}
2057#endif
2058
Willy Tarreaudc13c112013-06-21 23:16:39 +02002059static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002060 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02002061 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02002062 { 0, NULL, NULL },
2063}};
2064
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002065
Willy Tarreau61612d42012-04-19 18:42:05 +02002066/* Note: must not be declared <const> as its list will be overwritten.
2067 * Please take care of keeping this list alphabetically sorted.
2068 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002069static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002070 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02002071}};
2072
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002073
Willy Tarreau4a129812012-04-25 17:31:42 +02002074/* Note: must not be declared <const> as its list will be overwritten.
2075 * Note: fetches that may return multiple types must be declared as the lowest
2076 * common denominator, the type that can be casted into all other ones. For
2077 * instance v4/v6 must be declared v4.
2078 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002079static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002080 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
2081 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
2082 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
2083 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
2084 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02002085}};
2086
Willy Tarreau44791242012-09-12 23:27:21 +02002087/************************************************************************/
2088/* All supported bind keywords must be declared here. */
2089/************************************************************************/
2090
2091/* Note: must not be declared <const> as its list will be overwritten.
2092 * Please take care of keeping this list alphabetically sorted, doing so helps
2093 * all code contributors.
2094 * Optional keywords are also declared with a NULL ->parse() function so that
2095 * the config parser can report an appropriate error when a known keyword was
2096 * not enabled.
2097 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02002098static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02002099#ifdef TCP_DEFER_ACCEPT
2100 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
2101#endif
2102#ifdef SO_BINDTODEVICE
2103 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
2104#endif
2105#ifdef TCP_MAXSEG
2106 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
2107#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02002108#ifdef TCP_FASTOPEN
2109 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
2110#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02002111#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02002112 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
2113#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002114#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01002115 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002116 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
2117#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002118#ifdef CONFIG_HAP_NS
2119 { "namespace", bind_parse_namespace, 1 },
2120#endif
Willy Tarreau44791242012-09-12 23:27:21 +02002121 /* the versions with the NULL parse function*/
2122 { "defer-accept", NULL, 0 },
2123 { "interface", NULL, 1 },
2124 { "mss", NULL, 1 },
2125 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01002126 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002127 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02002128 { NULL, NULL, 0 },
2129}};
2130
Willy Tarreaue6b98942007-10-29 01:09:36 +01002131__attribute__((constructor))
2132static void __tcp_protocol_init(void)
2133{
2134 protocol_register(&proto_tcpv4);
2135 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02002136 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02002137 cfg_register_keywords(&cfg_kws);
2138 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02002139 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01002140}
2141
2142
2143/*
2144 * Local variables:
2145 * c-indent-level: 8
2146 * c-basic-offset: 8
2147 * End:
2148 */