blob: 2b8d148d15fd37a957924976318c360a716ce0df [file] [log] [blame]
Willy Tarreaue6b98942007-10-29 01:09:36 +01001/*
2 * AF_INET/AF_INET6 SOCK_STREAM protocol layer (tcp)
3 *
Willy Tarreau1a687942010-05-23 22:40:30 +02004 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Willy Tarreaue6b98942007-10-29 01:09:36 +01005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <time.h>
20
21#include <sys/param.h>
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25#include <sys/un.h>
26
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040027#include <netinet/tcp.h>
28
Willy Tarreaub6866442008-07-14 23:54:42 +020029#include <common/cfgparse.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010030#include <common/compat.h>
31#include <common/config.h>
32#include <common/debug.h>
33#include <common/errors.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010034#include <common/mini-clist.h>
35#include <common/standard.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010036
Willy Tarreaue6b98942007-10-29 01:09:36 +010037#include <types/global.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020038#include <types/server.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010039
40#include <proto/acl.h>
Willy Tarreau9fcb9842012-04-20 14:45:49 +020041#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020042#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020043#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020044#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020045#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020046#include <proto/log.h>
47#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020048#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010049#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020050#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020051#include <proto/sample.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020052#include <proto/session.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020053#include <proto/stick_table.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020054#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010055
Willy Tarreaue8c66af2008-01-13 18:40:14 +010056#ifdef CONFIG_HAP_CTTPROXY
57#include <import/ip_tproxy.h>
58#endif
59
Emeric Bruncf20bf12010-10-22 16:06:11 +020060static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
61static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010062
63/* Note: must not be declared <const> as its list will be overwritten */
64static struct protocol proto_tcpv4 = {
65 .name = "tcpv4",
66 .sock_domain = AF_INET,
67 .sock_type = SOCK_STREAM,
68 .sock_prot = IPPROTO_TCP,
69 .sock_family = AF_INET,
70 .sock_addrlen = sizeof(struct sockaddr_in),
71 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020072 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020073 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020074 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010075 .bind_all = tcp_bind_listeners,
76 .unbind_all = unbind_all_listeners,
77 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020078 .get_src = tcp_get_src,
79 .get_dst = tcp_get_dst,
Willy Tarreaue6b98942007-10-29 01:09:36 +010080 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
81 .nb_listeners = 0,
82};
83
84/* Note: must not be declared <const> as its list will be overwritten */
85static struct protocol proto_tcpv6 = {
86 .name = "tcpv6",
87 .sock_domain = AF_INET6,
88 .sock_type = SOCK_STREAM,
89 .sock_prot = IPPROTO_TCP,
90 .sock_family = AF_INET6,
91 .sock_addrlen = sizeof(struct sockaddr_in6),
92 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020093 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020094 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020095 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010096 .bind_all = tcp_bind_listeners,
97 .unbind_all = unbind_all_listeners,
98 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020099 .get_src = tcp_get_src,
100 .get_dst = tcp_get_dst,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100101 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
102 .nb_listeners = 0,
103};
104
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100105
David du Colombier6f5ccb12011-03-10 22:26:24 +0100106/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100107 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
108 * - 0 : ignore remote address (may even be a NULL pointer)
109 * - 1 : use provided address
110 * - 2 : use provided port
111 * - 3 : use both
112 *
113 * The function supports multiple foreign binding methods :
114 * - linux_tproxy: we directly bind to the foreign address
115 * - cttproxy: we bind to a local address then nat.
116 * The second one can be used as a fallback for the first one.
117 * This function returns 0 when everything's OK, 1 if it could not bind, to the
118 * local address, 2 if it could not bind to the foreign address.
119 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100120int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100121{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100122 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100123 int foreign_ok = 0;
124 int ret;
125
126#ifdef CONFIG_HAP_LINUX_TPROXY
127 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200128 static int ip6_transp_working = 1;
129 switch (local->ss_family) {
130 case AF_INET:
131 if (flags && ip_transp_working) {
132 if (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0
133 || setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
134 foreign_ok = 1;
135 else
136 ip_transp_working = 0;
137 }
138 break;
139 case AF_INET6:
140 if (flags && ip6_transp_working) {
141 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
142 foreign_ok = 1;
143 else
144 ip6_transp_working = 0;
145 }
146 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100147 }
148#endif
149 if (flags) {
150 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200151 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100152 switch (remote->ss_family) {
153 case AF_INET:
154 if (flags & 1)
155 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
156 if (flags & 2)
157 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
158 break;
159 case AF_INET6:
160 if (flags & 1)
161 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
162 if (flags & 2)
163 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
164 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100165 default:
166 /* we don't want to try to bind to an unknown address family */
167 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100168 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100169 }
170
Simon Hormande072bd2011-06-24 15:11:37 +0900171 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100172 if (foreign_ok) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200173 if (is_addr(&bind_addr)) {
174 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
175 if (ret < 0)
176 return 2;
177 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100178 }
179 else {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200180 if (is_addr(local)) {
181 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
182 if (ret < 0)
183 return 1;
184 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100185 }
186
187 if (!flags)
188 return 0;
189
190#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100191 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100192 struct in_tproxy itp1, itp2;
193 memset(&itp1, 0, sizeof(itp1));
194
195 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100196 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
197 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100198
199 /* set connect flag on socket */
200 itp2.op = TPROXY_FLAGS;
201 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
202
203 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
204 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
205 foreign_ok = 1;
206 }
207 }
208#endif
209 if (!foreign_ok)
210 /* we could not bind to a foreign address */
211 return 2;
212
213 return 0;
214}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100215
Willy Tarreau9650f372009-08-16 14:02:45 +0200216
217/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200218 * This function initiates a TCP connection establishment to the target assigned
219 * to connection <conn> using (si->{target,addr.to}). A source address may be
220 * pointed to by conn->addr.from in case of transparent proxying. Normal source
221 * bind addresses are still determined locally (due to the possible need of a
222 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100223 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreau24db47e2012-11-23 14:16:39 +0100224 * supported. The <data> parameter indicates when non-zero that data will
225 * immediately follow the connection and will tune the ACK behaviour after
226 * the connect :
227 * - 0 = always send it
228 * - 1 = send it unless the backends has the tcp-smart-connect option
229 * - 2 = never send it
Willy Tarreaub1d67742010-03-29 19:36:59 +0200230 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200231 * It can return one of :
232 * - SN_ERR_NONE if everything's OK
233 * - SN_ERR_SRVTO if there are no more servers
234 * - SN_ERR_SRVCL if the connection was refused by the server
235 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
236 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
237 * - SN_ERR_INTERNAL for any other purely internal errors
238 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100239 *
240 * The connection's fd is inserted only when SN_ERR_NONE is returned, otherwise
241 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200242 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100243
Willy Tarreau14f8e862012-08-30 22:23:13 +0200244int tcp_connect_server(struct connection *conn, int data)
Willy Tarreau9650f372009-08-16 14:02:45 +0200245{
246 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100247 struct server *srv;
248 struct proxy *be;
249
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100250 switch (obj_type(conn->target)) {
251 case OBJ_TYPE_PROXY:
252 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100253 srv = NULL;
254 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100255 case OBJ_TYPE_SERVER:
256 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100257 be = srv->proxy;
258 break;
259 default:
260 return SN_ERR_INTERNAL;
261 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200262
Willy Tarreau986a9d22012-08-30 21:11:38 +0200263 if ((fd = conn->t.sock.fd = socket(conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200264 qfprintf(stderr, "Cannot get a server socket.\n");
265
266 if (errno == ENFILE)
267 send_log(be, LOG_EMERG,
268 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
269 be->id, maxfd);
270 else if (errno == EMFILE)
271 send_log(be, LOG_EMERG,
272 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
273 be->id, maxfd);
274 else if (errno == ENOBUFS || errno == ENOMEM)
275 send_log(be, LOG_EMERG,
276 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
277 be->id, maxfd);
278 /* this is a resource error */
279 return SN_ERR_RESOURCE;
280 }
281
282 if (fd >= global.maxsock) {
283 /* do not log anything there, it's a normal condition when this option
284 * is used to serialize connections to a server !
285 */
286 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
287 close(fd);
288 return SN_ERR_PRXCOND; /* it is a configuration limit */
289 }
290
291 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900292 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200293 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
294 close(fd);
295 return SN_ERR_INTERNAL;
296 }
297
298 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900299 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200300
Willy Tarreau9650f372009-08-16 14:02:45 +0200301 /* allow specific binding :
302 * - server-specific at first
303 * - proxy-specific next
304 */
305 if (srv != NULL && srv->state & SRV_BIND_SRC) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200306 int ret, flags = 0;
307
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200308 if (is_addr(&conn->addr.from)) {
309 switch (srv->state & SRV_TPROXY_MASK) {
310 case SRV_TPROXY_ADDR:
311 case SRV_TPROXY_CLI:
312 flags = 3;
313 break;
314 case SRV_TPROXY_CIP:
315 case SRV_TPROXY_DYN:
316 flags = 1;
317 break;
318 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200319 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200320
Willy Tarreau9650f372009-08-16 14:02:45 +0200321#ifdef SO_BINDTODEVICE
322 /* Note: this might fail if not CAP_NET_RAW */
323 if (srv->iface_name)
324 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, srv->iface_name, srv->iface_len + 1);
325#endif
326
327 if (srv->sport_range) {
328 int attempts = 10; /* should be more than enough to find a spare port */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100329 struct sockaddr_storage src;
Willy Tarreau9650f372009-08-16 14:02:45 +0200330
331 ret = 1;
332 src = srv->source_addr;
333
334 do {
335 /* note: in case of retry, we may have to release a previously
336 * allocated port, hence this loop's construct.
337 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200338 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
339 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200340
341 if (!attempts)
342 break;
343 attempts--;
344
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200345 fdinfo[fd].local_port = port_range_alloc_port(srv->sport_range);
346 if (!fdinfo[fd].local_port)
Willy Tarreau9650f372009-08-16 14:02:45 +0200347 break;
348
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200349 fdinfo[fd].port_range = srv->sport_range;
Willy Tarreau86ad42c2011-08-27 12:29:07 +0200350 set_host_port(&src, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200351
Willy Tarreau986a9d22012-08-30 21:11:38 +0200352 ret = tcp_bind_socket(fd, flags, &src, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200353 } while (ret != 0); /* binding NOK */
354 }
355 else {
Willy Tarreau986a9d22012-08-30 21:11:38 +0200356 ret = tcp_bind_socket(fd, flags, &srv->source_addr, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200357 }
358
359 if (ret) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200360 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
361 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200362 close(fd);
363
364 if (ret == 1) {
365 Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n",
366 be->id, srv->id);
367 send_log(be, LOG_EMERG,
368 "Cannot bind to source address before connect() for server %s/%s.\n",
369 be->id, srv->id);
370 } else {
371 Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n",
372 be->id, srv->id);
373 send_log(be, LOG_EMERG,
374 "Cannot bind to tproxy source address before connect() for server %s/%s.\n",
375 be->id, srv->id);
376 }
377 return SN_ERR_RESOURCE;
378 }
379 }
380 else if (be->options & PR_O_BIND_SRC) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200381 int ret, flags = 0;
382
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200383 if (is_addr(&conn->addr.from)) {
384 switch (be->options & PR_O_TPXY_MASK) {
385 case PR_O_TPXY_ADDR:
386 case PR_O_TPXY_CLI:
387 flags = 3;
388 break;
389 case PR_O_TPXY_CIP:
390 case PR_O_TPXY_DYN:
391 flags = 1;
392 break;
393 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200394 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200395
Willy Tarreau9650f372009-08-16 14:02:45 +0200396#ifdef SO_BINDTODEVICE
397 /* Note: this might fail if not CAP_NET_RAW */
398 if (be->iface_name)
399 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, be->iface_name, be->iface_len + 1);
400#endif
Willy Tarreau986a9d22012-08-30 21:11:38 +0200401 ret = tcp_bind_socket(fd, flags, &be->source_addr, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200402 if (ret) {
403 close(fd);
404 if (ret == 1) {
405 Alert("Cannot bind to source address before connect() for proxy %s. Aborting.\n",
406 be->id);
407 send_log(be, LOG_EMERG,
408 "Cannot bind to source address before connect() for proxy %s.\n",
409 be->id);
410 } else {
411 Alert("Cannot bind to tproxy source address before connect() for proxy %s. Aborting.\n",
412 be->id);
413 send_log(be, LOG_EMERG,
414 "Cannot bind to tproxy source address before connect() for proxy %s.\n",
415 be->id);
416 }
417 return SN_ERR_RESOURCE;
418 }
419 }
420
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400421#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200422 /* disabling tcp quick ack now allows the first request to leave the
423 * machine with the first ACK. We only do this if there are pending
Willy Tarreau24db47e2012-11-23 14:16:39 +0100424 * data in the buffer or if we plan to close after SYN/ACK (TCP checks).
Willy Tarreau9650f372009-08-16 14:02:45 +0200425 */
Willy Tarreau24db47e2012-11-23 14:16:39 +0100426 if (data == 2 || (data && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900427 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200428#endif
429
Willy Tarreaue803de22010-01-21 17:43:04 +0100430 if (global.tune.server_sndbuf)
431 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
432
433 if (global.tune.server_rcvbuf)
434 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
435
Willy Tarreau986a9d22012-08-30 21:11:38 +0200436 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200437 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
438
439 if (errno == EAGAIN || errno == EADDRINUSE) {
440 char *msg;
441 if (errno == EAGAIN) /* no free ports left, try again later */
442 msg = "no free ports";
443 else
444 msg = "local address already in use";
445
446 qfprintf(stderr,"Cannot connect: %s.\n",msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200447 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
448 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200449 close(fd);
450 send_log(be, LOG_EMERG,
451 "Connect() failed for server %s/%s: %s.\n",
452 be->id, srv->id, msg);
453 return SN_ERR_RESOURCE;
454 } else if (errno == ETIMEDOUT) {
455 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200456 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
457 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200458 close(fd);
459 return SN_ERR_SRVTO;
460 } else {
461 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
462 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200463 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
464 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200465 close(fd);
466 return SN_ERR_SRVCL;
467 }
468 }
469
Willy Tarreau986a9d22012-08-30 21:11:38 +0200470 fdtab[fd].owner = conn;
Willy Tarreau986a9d22012-08-30 21:11:38 +0200471 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200472
Willy Tarreaud2274c62012-07-06 14:29:45 +0200473 fdtab[fd].iocb = conn_fd_handler;
Willy Tarreau9650f372009-08-16 14:02:45 +0200474 fd_insert(fd);
Willy Tarreau986a9d22012-08-30 21:11:38 +0200475 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200476
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200477 if (conn_xprt_init(conn) < 0) {
Willy Tarreau184636e2012-09-06 14:04:41 +0200478 fd_delete(fd);
Willy Tarreau15678ef2012-08-31 13:54:11 +0200479 return SN_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200480 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200481
Willy Tarreau14f8e862012-08-30 22:23:13 +0200482 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200483 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200484
Willy Tarreau9650f372009-08-16 14:02:45 +0200485 return SN_ERR_NONE; /* connection is OK */
486}
487
488
Willy Tarreau59b94792012-05-11 16:16:40 +0200489/*
490 * Retrieves the source address for the socket <fd>, with <dir> indicating
491 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
492 * success, -1 in case of error. The socket's source address is stored in
493 * <sa> for <salen> bytes.
494 */
495int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
496{
497 if (dir)
498 return getsockname(fd, sa, &salen);
499 else
500 return getpeername(fd, sa, &salen);
501}
502
503
504/*
505 * Retrieves the original destination address for the socket <fd>, with <dir>
506 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
507 * listener, if the original destination address was translated, the original
508 * address is retrieved. It returns 0 in case of success, -1 in case of error.
509 * The socket's source address is stored in <sa> for <salen> bytes.
510 */
511int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
512{
513 if (dir)
514 return getpeername(fd, sa, &salen);
515#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
516 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
517 return 0;
518#endif
519 else
520 return getsockname(fd, sa, &salen);
521}
522
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200523/* This is the callback which is set when a connection establishment is pending
524 * and we have nothing to send, or if we have an init function we want to call
Willy Tarreauafad0e02012-08-09 14:45:22 +0200525 * once the connection is established. It updates the FD polling status. It
526 * returns 0 if it fails in a fatal way or needs to poll to go further, otherwise
527 * it returns non-zero and removes itself from the connection's flags (the bit is
528 * provided in <flag> by the caller).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200529 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200530int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200531{
Willy Tarreau239d7182012-07-23 18:53:03 +0200532 int fd = conn->t.sock.fd;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200533
Willy Tarreau80184712012-07-06 14:54:49 +0200534 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200535 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200536
Willy Tarreau80184712012-07-06 14:54:49 +0200537 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200538 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200539
Willy Tarreau2da156f2012-07-23 15:07:23 +0200540 /* stop here if we reached the end of data */
541 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
542 goto out_error;
543
Willy Tarreau2c6be842012-07-06 17:12:34 +0200544 /* We have no data to send to check the connection, and
545 * getsockopt() will not inform us whether the connection
546 * is still pending. So we'll reuse connect() to check the
547 * state of the socket. This has the advantage of giving us
548 * the following info :
549 * - error
550 * - connecting (EALREADY, EINPROGRESS)
551 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200552 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200553 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200554 if (errno == EALREADY || errno == EINPROGRESS) {
555 conn_sock_stop_recv(conn);
556 conn_sock_poll_send(conn);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200557 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200558 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200559
Willy Tarreau2c6be842012-07-06 17:12:34 +0200560 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200561 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200562
Willy Tarreau2c6be842012-07-06 17:12:34 +0200563 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200564 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200565
Willy Tarreau076be252012-07-06 16:02:29 +0200566 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200567 * forward the event to the transport layer which will notify the
568 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200569 */
Willy Tarreau80184712012-07-06 14:54:49 +0200570 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200571 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200572
573 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200574 /* Write error on the file descriptor. Report it to the connection
575 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200576 */
577
Willy Tarreau80184712012-07-06 14:54:49 +0200578 conn->flags |= CO_FL_ERROR;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200579 conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200580 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200581}
582
Willy Tarreau59b94792012-05-11 16:16:40 +0200583
Willy Tarreaue6b98942007-10-29 01:09:36 +0100584/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
585 * an error message in <err> if the message is at most <errlen> bytes long
586 * (including '\0'). The return value is composed from ERR_ABORT, ERR_WARN,
587 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
588 * was alright and that no message was returned. ERR_RETRYABLE means that an
589 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700590 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100591 * the meaning of the error, but just indicate that a message is present which
592 * should be displayed with the respective level. Last, ERR_ABORT indicates
593 * that it's pointless to try to start other listeners. No error message is
594 * returned if errlen is NULL.
595 */
596int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
597{
598 __label__ tcp_return, tcp_close_return;
599 int fd, err;
600 const char *msg = NULL;
601
602 /* ensure we never return garbage */
603 if (errmsg && errlen)
604 *errmsg = 0;
605
606 if (listener->state != LI_ASSIGNED)
607 return ERR_NONE; /* already bound */
608
609 err = ERR_NONE;
610
611 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
612 err |= ERR_RETRYABLE | ERR_ALERT;
613 msg = "cannot create listening socket";
614 goto tcp_return;
615 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100616
Willy Tarreaue6b98942007-10-29 01:09:36 +0100617 if (fd >= global.maxsock) {
618 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
619 msg = "not enough free sockets (raise '-n' parameter)";
620 goto tcp_close_return;
621 }
622
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200623 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100624 err |= ERR_FATAL | ERR_ALERT;
625 msg = "cannot make socket non-blocking";
626 goto tcp_close_return;
627 }
628
Simon Hormande072bd2011-06-24 15:11:37 +0900629 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100630 /* not fatal but should be reported */
631 msg = "cannot do so_reuseaddr";
632 err |= ERR_ALERT;
633 }
634
635 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900636 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100637
Willy Tarreaue6b98942007-10-29 01:09:36 +0100638#ifdef SO_REUSEPORT
639 /* OpenBSD supports this. As it's present in old libc versions of Linux,
640 * it might return an error that we will silently ignore.
641 */
Simon Hormande072bd2011-06-24 15:11:37 +0900642 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100643#endif
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100644#ifdef CONFIG_HAP_LINUX_TPROXY
David du Colombier65c17962012-07-13 14:34:59 +0200645 if (listener->options & LI_O_FOREIGN) {
646 switch (listener->addr.ss_family) {
647 case AF_INET:
648 if ((setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
649 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)) {
650 msg = "cannot make listening socket transparent";
651 err |= ERR_ALERT;
652 }
653 break;
654 case AF_INET6:
655 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1) {
656 msg = "cannot make listening socket transparent";
657 err |= ERR_ALERT;
658 }
659 break;
660 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100661 }
662#endif
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100663#ifdef SO_BINDTODEVICE
664 /* Note: this might fail if not CAP_NET_RAW */
665 if (listener->interface) {
666 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100667 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100668 msg = "cannot bind listener to device";
669 err |= ERR_WARN;
670 }
671 }
672#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400673#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100674 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400675 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200676 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
677 msg = "cannot set MSS";
678 err |= ERR_WARN;
679 }
680 }
681#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200682#if defined(TCP_DEFER_ACCEPT)
683 if (listener->options & LI_O_DEF_ACCEPT) {
684 /* defer accept by up to one second */
685 int accept_delay = 1;
686 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
687 msg = "cannot enable DEFER_ACCEPT";
688 err |= ERR_WARN;
689 }
690 }
691#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200692#if defined(TCP_FASTOPEN)
693 if (listener->options & LI_O_TCP_FO) {
694 /* TFO needs a queue length, let's use the configured backlog */
695 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
696 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
697 msg = "cannot enable TCP_FASTOPEN";
698 err |= ERR_WARN;
699 }
700 }
701#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +0100702 if (bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
703 err |= ERR_RETRYABLE | ERR_ALERT;
704 msg = "cannot bind socket";
705 goto tcp_close_return;
706 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100707
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100708 if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100709 err |= ERR_RETRYABLE | ERR_ALERT;
710 msg = "cannot listen to socket";
711 goto tcp_close_return;
712 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100713
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400714#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200715 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900716 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200717#endif
718
Willy Tarreaue6b98942007-10-29 01:09:36 +0100719 /* the socket is ready */
720 listener->fd = fd;
721 listener->state = LI_LISTEN;
722
Willy Tarreaueabf3132008-08-29 23:36:51 +0200723 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200724 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200725 fd_insert(fd);
726
Willy Tarreaue6b98942007-10-29 01:09:36 +0100727 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100728 if (msg && errlen) {
729 char pn[INET6_ADDRSTRLEN];
730
Willy Tarreau631f01c2011-09-05 00:36:48 +0200731 addr_to_str(&listener->addr, pn, sizeof(pn));
732 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100733 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100734 return err;
735
736 tcp_close_return:
737 close(fd);
738 goto tcp_return;
739}
740
741/* This function creates all TCP sockets bound to the protocol entry <proto>.
742 * It is intended to be used as the protocol's bind_all() function.
743 * The sockets will be registered but not added to any fd_set, in order not to
744 * loose them across the fork(). A call to enable_all_listeners() is needed
745 * to complete initialization. The return value is composed from ERR_*.
746 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200747static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100748{
749 struct listener *listener;
750 int err = ERR_NONE;
751
752 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200753 err |= tcp_bind_listener(listener, errmsg, errlen);
754 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100755 break;
756 }
757
758 return err;
759}
760
761/* Add listener to the list of tcpv4 listeners. The listener's state
762 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
763 * listeners is updated. This is the function to use to add a new listener.
764 */
765void tcpv4_add_listener(struct listener *listener)
766{
767 if (listener->state != LI_INIT)
768 return;
769 listener->state = LI_ASSIGNED;
770 listener->proto = &proto_tcpv4;
771 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
772 proto_tcpv4.nb_listeners++;
773}
774
775/* Add listener to the list of tcpv4 listeners. The listener's state
776 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
777 * listeners is updated. This is the function to use to add a new listener.
778 */
779void tcpv6_add_listener(struct listener *listener)
780{
781 if (listener->state != LI_INIT)
782 return;
783 listener->state = LI_ASSIGNED;
784 listener->proto = &proto_tcpv6;
785 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
786 proto_tcpv6.nb_listeners++;
787}
788
Willy Tarreauedcf6682008-11-30 23:15:34 +0100789/* This function performs the TCP request analysis on the current request. It
790 * returns 1 if the processing can continue on next analysers, or zero if it
791 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200792 * request. It relies on buffers flags, and updates s->req->analysers. The
793 * function may be called for frontend rules and backend rules. It only relies
794 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100795 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200796int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100797{
798 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200799 struct stksess *ts;
800 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100801 int partial;
802
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100803 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 +0100804 now_ms, __FUNCTION__,
805 s,
806 req,
807 req->rex, req->wex,
808 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200809 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100810 req->analysers);
811
Willy Tarreauedcf6682008-11-30 23:15:34 +0100812 /* We don't know whether we have enough data, so must proceed
813 * this way :
814 * - iterate through all rules in their declaration order
815 * - if one rule returns MISS, it means the inspect delay is
816 * not over yet, then return immediately, otherwise consider
817 * it as a non-match.
818 * - if one rule returns OK, then return OK
819 * - if one rule returns KO, then return KO
820 */
821
Willy Tarreau9b28e032012-10-12 23:49:43 +0200822 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200823 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200824 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100825 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200826 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100827
Willy Tarreaufb356202010-08-03 14:02:05 +0200828 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100829 int ret = ACL_PAT_PASS;
830
831 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200832 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100833 if (ret == ACL_PAT_MISS) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200834 channel_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100835 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200836 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
837 req->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100838 return 0;
839 }
840
841 ret = acl_pass(ret);
842 if (rule->cond->pol == ACL_COND_UNLESS)
843 ret = !ret;
844 }
845
846 if (ret) {
847 /* we have a matching rule. */
848 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200849 channel_abort(req);
850 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100851 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200852
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100853 s->be->be_counters.denied_req++;
854 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200855 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200856 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200857
Willy Tarreauedcf6682008-11-30 23:15:34 +0100858 if (!(s->flags & SN_ERR_MASK))
859 s->flags |= SN_ERR_PRXCOND;
860 if (!(s->flags & SN_FINST_MASK))
861 s->flags |= SN_FINST_R;
862 return 0;
863 }
Willy Tarreau56123282010-08-06 19:06:56 +0200864 else if (rule->action == TCP_ACT_TRK_SC1) {
865 if (!s->stkctr1_entry) {
866 /* only the first valid track-sc1 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200867 * Also, note that right now we can only track SRC so we
868 * don't check how to get the key, but later we may need
869 * to consider rule->act_prm->trk_ctr.type.
870 */
871 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200872 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn->addr.from));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200873 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200874 session_track_stkctr1(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200875 if (s->fe != s->be)
876 s->flags |= SN_BE_TRACK_SC1;
877 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200878 }
879 }
Willy Tarreau56123282010-08-06 19:06:56 +0200880 else if (rule->action == TCP_ACT_TRK_SC2) {
881 if (!s->stkctr2_entry) {
882 /* only the first valid track-sc2 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200883 * Also, note that right now we can only track SRC so we
884 * don't check how to get the key, but later we may need
885 * to consider rule->act_prm->trk_ctr.type.
886 */
887 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200888 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn->addr.from));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200889 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200890 session_track_stkctr2(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200891 if (s->fe != s->be)
892 s->flags |= SN_BE_TRACK_SC2;
893 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200894 }
895 }
896 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100897 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200898 break;
899 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100900 }
901 }
902
903 /* if we get there, it means we have no rule which matches, or
904 * we have an explicit accept, so we apply the default accept.
905 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200906 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100907 req->analyse_exp = TICK_ETERNITY;
908 return 1;
909}
910
Emeric Brun97679e72010-09-23 17:56:44 +0200911/* This function performs the TCP response analysis on the current response. It
912 * returns 1 if the processing can continue on next analysers, or zero if it
913 * needs more data, encounters an error, or wants to immediately abort the
914 * response. It relies on buffers flags, and updates s->rep->analysers. The
915 * function may be called for backend rules.
916 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200917int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +0200918{
919 struct tcp_rule *rule;
920 int partial;
921
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100922 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 +0200923 now_ms, __FUNCTION__,
924 s,
925 rep,
926 rep->rex, rep->wex,
927 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +0200928 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +0200929 rep->analysers);
930
931 /* We don't know whether we have enough data, so must proceed
932 * this way :
933 * - iterate through all rules in their declaration order
934 * - if one rule returns MISS, it means the inspect delay is
935 * not over yet, then return immediately, otherwise consider
936 * it as a non-match.
937 * - if one rule returns OK, then return OK
938 * - if one rule returns KO, then return KO
939 */
940
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200941 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200942 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +0200943 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200944 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +0200945
946 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
947 int ret = ACL_PAT_PASS;
948
949 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200950 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Emeric Brun97679e72010-09-23 17:56:44 +0200951 if (ret == ACL_PAT_MISS) {
952 /* just set the analyser timeout once at the beginning of the response */
953 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
954 rep->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_rep.inspect_delay);
955 return 0;
956 }
957
958 ret = acl_pass(ret);
959 if (rule->cond->pol == ACL_COND_UNLESS)
960 ret = !ret;
961 }
962
963 if (ret) {
964 /* we have a matching rule. */
965 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200966 channel_abort(rep);
967 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +0200968 rep->analysers = 0;
969
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100970 s->be->be_counters.denied_resp++;
971 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +0200972 if (s->listener->counters)
973 s->listener->counters->denied_resp++;
974
975 if (!(s->flags & SN_ERR_MASK))
976 s->flags |= SN_ERR_PRXCOND;
977 if (!(s->flags & SN_FINST_MASK))
978 s->flags |= SN_FINST_D;
979 return 0;
980 }
981 else {
982 /* otherwise accept */
983 break;
984 }
985 }
986 }
987
988 /* if we get there, it means we have no rule which matches, or
989 * we have an explicit accept, so we apply the default accept.
990 */
991 rep->analysers &= ~an_bit;
992 rep->analyse_exp = TICK_ETERNITY;
993 return 1;
994}
995
996
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200997/* This function performs the TCP layer4 analysis on the current request. It
998 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
999 * matches or if no more rule matches. It can only use rules which don't need
1000 * any data.
1001 */
1002int tcp_exec_req_rules(struct session *s)
1003{
1004 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001005 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001006 struct stktable *t = NULL;
1007 int result = 1;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001008 int ret;
1009
1010 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
1011 ret = ACL_PAT_PASS;
1012
1013 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001014 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001015 ret = acl_pass(ret);
1016 if (rule->cond->pol == ACL_COND_UNLESS)
1017 ret = !ret;
1018 }
1019
1020 if (ret) {
1021 /* we have a matching rule. */
1022 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001023 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001024 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001025 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001026
1027 if (!(s->flags & SN_ERR_MASK))
1028 s->flags |= SN_ERR_PRXCOND;
1029 if (!(s->flags & SN_FINST_MASK))
1030 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001031 result = 0;
1032 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001033 }
Willy Tarreau56123282010-08-06 19:06:56 +02001034 else if (rule->action == TCP_ACT_TRK_SC1) {
1035 if (!s->stkctr1_entry) {
1036 /* only the first valid track-sc1 directive applies.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001037 * Also, note that right now we can only track SRC so we
1038 * don't check how to get the key, but later we may need
1039 * to consider rule->act_prm->trk_ctr.type.
1040 */
1041 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001042 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn->addr.from));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001043 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001044 session_track_stkctr1(s, t, ts);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001045 }
1046 }
Willy Tarreau56123282010-08-06 19:06:56 +02001047 else if (rule->action == TCP_ACT_TRK_SC2) {
1048 if (!s->stkctr2_entry) {
1049 /* only the first valid track-sc2 directive applies.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001050 * Also, note that right now we can only track SRC so we
1051 * don't check how to get the key, but later we may need
1052 * to consider rule->act_prm->trk_ctr.type.
1053 */
1054 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001055 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn->addr.from));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001056 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001057 session_track_stkctr2(s, t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001058 }
1059 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001060 else {
1061 /* otherwise it's an accept */
1062 break;
1063 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001064 }
1065 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001066 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001067}
1068
Emeric Brun97679e72010-09-23 17:56:44 +02001069/* Parse a tcp-response rule. Return a negative value in case of failure */
1070static int tcp_parse_response_rule(char **args, int arg, int section_type,
1071 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001072 struct tcp_rule *rule, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001073{
1074 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001075 memprintf(err, "%s %s is only allowed in 'backend' sections",
1076 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001077 return -1;
1078 }
1079
1080 if (strcmp(args[arg], "accept") == 0) {
1081 arg++;
1082 rule->action = TCP_ACT_ACCEPT;
1083 }
1084 else if (strcmp(args[arg], "reject") == 0) {
1085 arg++;
1086 rule->action = TCP_ACT_REJECT;
1087 }
1088 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001089 memprintf(err,
1090 "'%s %s' expects 'accept' or 'reject' in %s '%s' (got '%s')",
1091 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001092 return -1;
1093 }
1094
1095 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001096 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1097 memprintf(err,
1098 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1099 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001100 return -1;
1101 }
1102 }
1103 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001104 memprintf(err,
1105 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001106 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1107 return -1;
1108 }
1109 return 0;
1110}
1111
1112
1113
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001114/* Parse a tcp-request rule. Return a negative value in case of failure */
1115static int tcp_parse_request_rule(char **args, int arg, int section_type,
1116 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001117 struct tcp_rule *rule, char **err)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001118{
1119 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001120 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1121 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001122 return -1;
1123 }
1124
1125 if (!strcmp(args[arg], "accept")) {
1126 arg++;
1127 rule->action = TCP_ACT_ACCEPT;
1128 }
1129 else if (!strcmp(args[arg], "reject")) {
1130 arg++;
1131 rule->action = TCP_ACT_REJECT;
1132 }
Willy Tarreau56123282010-08-06 19:06:56 +02001133 else if (strcmp(args[arg], "track-sc1") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001134 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001135 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001136
1137 arg++;
1138 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001139 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001140
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001141 if (ret < 0) { /* nb: warnings are not handled yet */
1142 memprintf(err,
1143 "'%s %s %s' : %s in %s '%s'",
1144 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1145 return ret;
1146 }
Willy Tarreau56123282010-08-06 19:06:56 +02001147 rule->action = TCP_ACT_TRK_SC1;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001148 }
Willy Tarreau56123282010-08-06 19:06:56 +02001149 else if (strcmp(args[arg], "track-sc2") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001150 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001151 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001152
1153 arg++;
1154 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001155 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001156
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001157 if (ret < 0) { /* nb: warnings are not handled yet */
1158 memprintf(err,
1159 "'%s %s %s' : %s in %s '%s'",
1160 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1161 return ret;
1162 }
Willy Tarreau56123282010-08-06 19:06:56 +02001163 rule->action = TCP_ACT_TRK_SC2;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001164 }
1165 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001166 memprintf(err,
1167 "'%s %s' expects 'accept', 'reject', 'track-sc1' "
1168 "or 'track-sc2' in %s '%s' (got '%s')",
1169 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001170 return -1;
1171 }
1172
1173 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001174 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1175 memprintf(err,
1176 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1177 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001178 return -1;
1179 }
1180 }
1181 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001182 memprintf(err,
1183 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001184 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1185 return -1;
1186 }
1187 return 0;
1188}
1189
Emeric Brun97679e72010-09-23 17:56:44 +02001190/* This function should be called to parse a line starting with the "tcp-response"
1191 * keyword.
1192 */
1193static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001194 struct proxy *defpx, const char *file, int line,
1195 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001196{
1197 const char *ptr = NULL;
1198 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001199 int warn = 0;
1200 int arg;
1201 struct tcp_rule *rule;
1202
1203 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001204 memprintf(err, "missing argument for '%s' in %s '%s'",
1205 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001206 return -1;
1207 }
1208
1209 if (strcmp(args[1], "inspect-delay") == 0) {
1210 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001211 memprintf(err, "%s %s is only allowed in 'backend' sections",
1212 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001213 return -1;
1214 }
1215
1216 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001217 memprintf(err,
1218 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1219 args[0], args[1], proxy_type_str(curpx), curpx->id);
1220 if (ptr)
1221 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001222 return -1;
1223 }
1224
1225 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001226 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1227 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001228 return 1;
1229 }
1230 curpx->tcp_rep.inspect_delay = val;
1231 return 0;
1232 }
1233
Simon Hormande072bd2011-06-24 15:11:37 +09001234 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001235 LIST_INIT(&rule->list);
1236 arg = 1;
1237
1238 if (strcmp(args[1], "content") == 0) {
1239 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001240 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001241 goto error;
1242
1243 if (rule->cond && (rule->cond->requires & ACL_USE_L6REQ_VOLATILE)) {
1244 struct acl *acl;
1245 const char *name;
1246
1247 acl = cond_find_require(rule->cond, ACL_USE_L6REQ_VOLATILE);
1248 name = acl ? acl->name : "(unknown)";
1249
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001250 memprintf(err,
1251 "acl '%s' involves some request-only criteria which will be ignored in '%s %s'",
1252 name, args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001253 warn++;
1254 }
1255
1256 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1257 }
1258 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001259 memprintf(err,
1260 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1261 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001262 goto error;
1263 }
1264
1265 return warn;
1266 error:
1267 free(rule);
1268 return -1;
1269}
1270
1271
Willy Tarreaub6866442008-07-14 23:54:42 +02001272/* This function should be called to parse a line starting with the "tcp-request"
1273 * keyword.
1274 */
1275static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001276 struct proxy *defpx, const char *file, int line,
1277 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001278{
1279 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001280 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001281 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001282 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001283 struct tcp_rule *rule;
Willy Tarreaub6866442008-07-14 23:54:42 +02001284
1285 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001286 if (curpx == defpx)
1287 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1288 else
1289 memprintf(err, "missing argument for '%s' in %s '%s'",
1290 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001291 return -1;
1292 }
1293
1294 if (!strcmp(args[1], "inspect-delay")) {
1295 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001296 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1297 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001298 return -1;
1299 }
1300
Willy Tarreaub6866442008-07-14 23:54:42 +02001301 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001302 memprintf(err,
1303 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1304 args[0], args[1], proxy_type_str(curpx), curpx->id);
1305 if (ptr)
1306 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001307 return -1;
1308 }
1309
1310 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001311 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1312 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001313 return 1;
1314 }
1315 curpx->tcp_req.inspect_delay = val;
1316 return 0;
1317 }
1318
Simon Hormande072bd2011-06-24 15:11:37 +09001319 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001320 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001321 arg = 1;
1322
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001323 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001324 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001325 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001326 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001327
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001328 if (rule->cond && (rule->cond->requires & ACL_USE_RTR_ANY)) {
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001329 struct acl *acl;
1330 const char *name;
1331
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001332 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001333 name = acl ? acl->name : "(unknown)";
1334
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001335 memprintf(err,
1336 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1337 name, args[0], args[1]);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001338 warn++;
1339 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001340 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001341 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001342 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001343 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001344
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001345 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001346 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1347 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001348 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001349 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001350
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001351 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001352 goto error;
1353
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001354 if (rule->cond && (rule->cond->requires & (ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY))) {
1355 struct acl *acl;
1356 const char *name;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001357
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001358 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY);
1359 name = acl ? acl->name : "(unknown)";
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001360
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001361 if (acl->requires & (ACL_USE_L6_ANY|ACL_USE_L7_ANY)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001362 memprintf(err,
1363 "'%s %s' may not reference acl '%s' which makes use of "
1364 "payload in %s '%s'. Please use '%s content' for this.",
1365 args[0], args[1], name, proxy_type_str(curpx), curpx->id, args[0]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001366 goto error;
1367 }
1368 if (acl->requires & ACL_USE_RTR_ANY)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001369 memprintf(err,
1370 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1371 name, args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001372 warn++;
1373 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001374 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001375 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001376 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001377 if (curpx == defpx)
1378 memprintf(err,
1379 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1380 args[0], args[1]);
1381 else
1382 memprintf(err,
1383 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
1384 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001385 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001386 }
1387
Willy Tarreau1a687942010-05-23 22:40:30 +02001388 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001389 error:
1390 free(rule);
1391 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001392}
1393
Willy Tarreau645513a2010-05-24 20:55:15 +02001394
1395/************************************************************************/
Willy Tarreau32389b72012-04-23 23:13:20 +02001396/* All supported sample fetch functios must be declared here */
1397/************************************************************************/
1398
1399/* Fetch the request RDP cookie identified in the args, or any cookie if no arg
Willy Tarreau12785782012-04-27 21:37:17 +02001400 * is passed. It is usable both for ACL and for samples. Note: this decoder
Willy Tarreau32389b72012-04-23 23:13:20 +02001401 * only works with non-wrapping data. Accepts either 0 or 1 argument. Argument
1402 * is a string (cookie name), other types will lead to undefined behaviour.
1403 */
1404int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001405smp_fetch_rdp_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau32389b72012-04-23 23:13:20 +02001406 const struct arg *args, struct sample *smp)
1407{
1408 int bleft;
1409 const unsigned char *data;
1410
1411 if (!l4 || !l4->req)
1412 return 0;
1413
1414 smp->flags = 0;
1415 smp->type = SMP_T_CSTR;
1416
Willy Tarreau9b28e032012-10-12 23:49:43 +02001417 bleft = l4->req->buf->i;
Willy Tarreau32389b72012-04-23 23:13:20 +02001418 if (bleft <= 11)
1419 goto too_short;
1420
Willy Tarreau9b28e032012-10-12 23:49:43 +02001421 data = (const unsigned char *)l4->req->buf->p + 11;
Willy Tarreau32389b72012-04-23 23:13:20 +02001422 bleft -= 11;
1423
1424 if (bleft <= 7)
1425 goto too_short;
1426
1427 if (strncasecmp((const char *)data, "Cookie:", 7) != 0)
1428 goto not_cookie;
1429
1430 data += 7;
1431 bleft -= 7;
1432
1433 while (bleft > 0 && *data == ' ') {
1434 data++;
1435 bleft--;
1436 }
1437
1438 if (args) {
1439
1440 if (bleft <= args->data.str.len)
1441 goto too_short;
1442
1443 if ((data[args->data.str.len] != '=') ||
1444 strncasecmp(args->data.str.str, (const char *)data, args->data.str.len) != 0)
1445 goto not_cookie;
1446
1447 data += args->data.str.len + 1;
1448 bleft -= args->data.str.len + 1;
1449 } else {
1450 while (bleft > 0 && *data != '=') {
1451 if (*data == '\r' || *data == '\n')
1452 goto not_cookie;
1453 data++;
1454 bleft--;
1455 }
1456
1457 if (bleft < 1)
1458 goto too_short;
1459
1460 if (*data != '=')
1461 goto not_cookie;
1462
1463 data++;
1464 bleft--;
1465 }
1466
1467 /* data points to cookie value */
1468 smp->data.str.str = (char *)data;
1469 smp->data.str.len = 0;
1470
1471 while (bleft > 0 && *data != '\r') {
1472 data++;
1473 bleft--;
1474 }
1475
1476 if (bleft < 2)
1477 goto too_short;
1478
1479 if (data[0] != '\r' || data[1] != '\n')
1480 goto not_cookie;
1481
1482 smp->data.str.len = (char *)data - smp->data.str.str;
1483 smp->flags = SMP_F_VOLATILE;
1484 return 1;
1485
1486 too_short:
1487 smp->flags = SMP_F_MAY_CHANGE;
1488 not_cookie:
1489 return 0;
1490}
1491
Willy Tarreau32389b72012-04-23 23:13:20 +02001492/************************************************************************/
Willy Tarreau645513a2010-05-24 20:55:15 +02001493/* All supported ACL keywords must be declared here. */
1494/************************************************************************/
1495
Willy Tarreau32389b72012-04-23 23:13:20 +02001496/* returns either 1 or 0 depending on whether an RDP cookie is found or not */
1497static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001498acl_fetch_rdp_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001499 const struct arg *args, struct sample *smp)
Willy Tarreau32389b72012-04-23 23:13:20 +02001500{
1501 int ret;
1502
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001503 ret = smp_fetch_rdp_cookie(px, l4, l7, opt, args, smp);
Willy Tarreau32389b72012-04-23 23:13:20 +02001504
1505 if (smp->flags & SMP_F_MAY_CHANGE)
1506 return 0;
1507
1508 smp->flags = SMP_F_VOLATILE;
1509 smp->type = SMP_T_UINT;
1510 smp->data.uint = ret;
1511 return 1;
1512}
1513
1514
Willy Tarreau4a129812012-04-25 17:31:42 +02001515/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001516static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001517smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001518 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001519{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001520 switch (l4->si[0].conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001521 case AF_INET:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001522 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001523 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001524 break;
1525 case AF_INET6:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001526 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].conn->addr.from))->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001527 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001528 break;
1529 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001530 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001531 }
Emeric Brunf769f512010-10-22 17:14:01 +02001532
Willy Tarreau37406352012-04-23 16:16:37 +02001533 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001534 return 1;
1535}
1536
Willy Tarreaua5e37562011-12-16 17:06:15 +01001537/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001538static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001539smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001540 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001541{
Willy Tarreauf853c462012-04-23 18:53:56 +02001542 smp->type = SMP_T_UINT;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001543 if (!(smp->data.uint = get_host_port(&l4->si[0].conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001544 return 0;
1545
Willy Tarreau37406352012-04-23 16:16:37 +02001546 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001547 return 1;
1548}
1549
Willy Tarreau4a129812012-04-25 17:31:42 +02001550/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001551static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001552smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001553 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001554{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001555 conn_get_to_addr(l4->si[0].conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001556
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001557 switch (l4->si[0].conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001558 case AF_INET:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001559 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001560 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001561 break;
1562 case AF_INET6:
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001563 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].conn->addr.to))->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001564 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001565 break;
1566 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001567 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001568 }
Emeric Brunf769f512010-10-22 17:14:01 +02001569
Willy Tarreau37406352012-04-23 16:16:37 +02001570 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001571 return 1;
1572}
1573
Willy Tarreaua5e37562011-12-16 17:06:15 +01001574/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001575static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001576smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001577 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001578{
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001579 conn_get_to_addr(l4->si[0].conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001580
Willy Tarreauf853c462012-04-23 18:53:56 +02001581 smp->type = SMP_T_UINT;
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001582 if (!(smp->data.uint = get_host_port(&l4->si[0].conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001583 return 0;
1584
Willy Tarreau37406352012-04-23 16:16:37 +02001585 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001586 return 1;
1587}
1588
1589static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001590smp_fetch_payload_lv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1591 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001592{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001593 unsigned int len_offset = arg_p[0].data.uint;
1594 unsigned int len_size = arg_p[1].data.uint;
1595 unsigned int buf_offset;
1596 unsigned int buf_size = 0;
Willy Tarreau697d8502012-10-12 23:53:39 +02001597 struct channel *chn;
Emericf2d7cae2010-11-05 18:13:50 +01001598 int i;
1599
1600 /* Format is (len offset, len size, buf offset) or (len offset, len size) */
1601 /* by default buf offset == len offset + len size */
1602 /* buf offset could be absolute or relative to len offset + len size if prefixed by + or - */
1603
1604 if (!l4)
1605 return 0;
1606
Willy Tarreau697d8502012-10-12 23:53:39 +02001607 chn = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001608
Willy Tarreau697d8502012-10-12 23:53:39 +02001609 if (!chn)
Emericf2d7cae2010-11-05 18:13:50 +01001610 return 0;
1611
Willy Tarreau9b28e032012-10-12 23:49:43 +02001612 if (len_offset + len_size > chn->buf->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001613 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001614
1615 for (i = 0; i < len_size; i++) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02001616 buf_size = (buf_size << 8) + ((unsigned char *)chn->buf->p)[i + len_offset];
Emericf2d7cae2010-11-05 18:13:50 +01001617 }
1618
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001619 /* buf offset may be implicit, absolute or relative */
1620 buf_offset = len_offset + len_size;
1621 if (arg_p[2].type == ARGT_UINT)
1622 buf_offset = arg_p[2].data.uint;
1623 else if (arg_p[2].type == ARGT_SINT)
1624 buf_offset += arg_p[2].data.sint;
1625
Willy Tarreau9b28e032012-10-12 23:49:43 +02001626 if (!buf_size || buf_size > chn->buf->size || buf_offset + buf_size > chn->buf->size) {
Willy Tarreau82ea8002012-04-25 19:19:43 +02001627 /* will never match */
1628 smp->flags = 0;
1629 return 0;
1630 }
1631
Willy Tarreau9b28e032012-10-12 23:49:43 +02001632 if (buf_offset + buf_size > chn->buf->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001633 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001634
1635 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001636 smp->type = SMP_T_CBIN;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001637 chunk_initlen(&smp->data.str, chn->buf->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001638 smp->flags = SMP_F_VOLATILE;
Emericf2d7cae2010-11-05 18:13:50 +01001639 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001640
1641 too_short:
1642 smp->flags = SMP_F_MAY_CHANGE;
1643 return 0;
Emericf2d7cae2010-11-05 18:13:50 +01001644}
1645
1646static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001647smp_fetch_payload(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1648 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001649{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001650 unsigned int buf_offset = arg_p[0].data.uint;
1651 unsigned int buf_size = arg_p[1].data.uint;
Willy Tarreau697d8502012-10-12 23:53:39 +02001652 struct channel *chn;
Emericf2d7cae2010-11-05 18:13:50 +01001653
1654 if (!l4)
1655 return 0;
1656
Willy Tarreau697d8502012-10-12 23:53:39 +02001657 chn = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001658
Willy Tarreau697d8502012-10-12 23:53:39 +02001659 if (!chn)
Emericf2d7cae2010-11-05 18:13:50 +01001660 return 0;
Willy Tarreau82ea8002012-04-25 19:19:43 +02001661
Willy Tarreau9b28e032012-10-12 23:49:43 +02001662 if (!buf_size || buf_size > chn->buf->size || buf_offset + buf_size > chn->buf->size) {
Willy Tarreau82ea8002012-04-25 19:19:43 +02001663 /* will never match */
1664 smp->flags = 0;
1665 return 0;
1666 }
Emericf2d7cae2010-11-05 18:13:50 +01001667
Willy Tarreau9b28e032012-10-12 23:49:43 +02001668 if (buf_offset + buf_size > chn->buf->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001669 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001670
1671 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001672 smp->type = SMP_T_CBIN;
Willy Tarreau9b28e032012-10-12 23:49:43 +02001673 chunk_initlen(&smp->data.str, chn->buf->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001674 smp->flags = SMP_F_VOLATILE;
Simon Hormanab814e02011-06-24 14:50:20 +09001675 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001676
1677 too_short:
1678 smp->flags = SMP_F_MAY_CHANGE;
1679 return 0;
Simon Hormanab814e02011-06-24 14:50:20 +09001680}
1681
Willy Tarreau21d68a62012-04-20 15:52:36 +02001682/* This function is used to validate the arguments passed to a "payload" fetch
1683 * keyword. This keyword expects two positive integers, with the second one
1684 * being strictly positive. It is assumed that the types are already the correct
1685 * ones. Returns 0 on error, non-zero if OK. If <err_msg> is not NULL, it will be
1686 * filled with a pointer to an error message in case of error, that the caller
1687 * is responsible for freeing. The initial location must either be freeable or
1688 * NULL.
1689 */
1690static int val_payload(struct arg *arg, char **err_msg)
1691{
1692 if (!arg[1].data.uint) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001693 memprintf(err_msg, "payload length must be > 0");
Willy Tarreau21d68a62012-04-20 15:52:36 +02001694 return 0;
1695 }
1696 return 1;
1697}
1698
1699/* This function is used to validate the arguments passed to a "payload_lv" fetch
1700 * keyword. This keyword allows two positive integers and an optional signed one,
1701 * with the second one being strictly positive and the third one being greater than
1702 * the opposite of the two others if negative. It is assumed that the types are
1703 * already the correct ones. Returns 0 on error, non-zero if OK. If <err_msg> is
1704 * not NULL, it will be filled with a pointer to an error message in case of
1705 * error, that the caller is responsible for freeing. The initial location must
1706 * either be freeable or NULL.
1707 */
1708static int val_payload_lv(struct arg *arg, char **err_msg)
1709{
1710 if (!arg[1].data.uint) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001711 memprintf(err_msg, "payload length must be > 0");
Willy Tarreau21d68a62012-04-20 15:52:36 +02001712 return 0;
1713 }
1714
1715 if (arg[2].type == ARGT_SINT &&
1716 (int)(arg[0].data.uint + arg[1].data.uint + arg[2].data.sint) < 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001717 memprintf(err_msg, "payload offset too negative");
Willy Tarreau21d68a62012-04-20 15:52:36 +02001718 return 0;
1719 }
1720 return 1;
1721}
1722
Willy Tarreau44791242012-09-12 23:27:21 +02001723#ifdef CONFIG_HAP_LINUX_TPROXY
1724/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001725static 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 +02001726{
1727 struct listener *l;
1728
Willy Tarreau4348fad2012-09-20 16:48:07 +02001729 list_for_each_entry(l, &conf->listeners, by_bind) {
1730 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1731 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02001732 }
1733
Willy Tarreau44791242012-09-12 23:27:21 +02001734 return 0;
1735}
1736#endif
1737
1738#ifdef TCP_DEFER_ACCEPT
1739/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001740static 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 +02001741{
1742 struct listener *l;
1743
Willy Tarreau4348fad2012-09-20 16:48:07 +02001744 list_for_each_entry(l, &conf->listeners, by_bind) {
1745 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1746 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02001747 }
1748
Willy Tarreau44791242012-09-12 23:27:21 +02001749 return 0;
1750}
1751#endif
1752
Willy Tarreau1c862c52012-10-05 16:21:00 +02001753#ifdef TCP_FASTOPEN
1754/* parse the "defer-accept" bind keyword */
1755static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1756{
1757 struct listener *l;
1758
1759 list_for_each_entry(l, &conf->listeners, by_bind) {
1760 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1761 l->options |= LI_O_TCP_FO;
1762 }
1763
1764 return 0;
1765}
1766#endif
1767
Willy Tarreau44791242012-09-12 23:27:21 +02001768#ifdef TCP_MAXSEG
1769/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001770static 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 +02001771{
1772 struct listener *l;
1773 int mss;
1774
Willy Tarreau44791242012-09-12 23:27:21 +02001775 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001776 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001777 return ERR_ALERT | ERR_FATAL;
1778 }
1779
1780 mss = atoi(args[cur_arg + 1]);
1781 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001782 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001783 return ERR_ALERT | ERR_FATAL;
1784 }
1785
Willy Tarreau4348fad2012-09-20 16:48:07 +02001786 list_for_each_entry(l, &conf->listeners, by_bind) {
1787 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1788 l->maxseg = mss;
1789 }
Willy Tarreau44791242012-09-12 23:27:21 +02001790
1791 return 0;
1792}
1793#endif
1794
1795#ifdef SO_BINDTODEVICE
1796/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02001797static 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 +02001798{
1799 struct listener *l;
1800
Willy Tarreau44791242012-09-12 23:27:21 +02001801 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02001802 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02001803 return ERR_ALERT | ERR_FATAL;
1804 }
1805
Willy Tarreau4348fad2012-09-20 16:48:07 +02001806 list_for_each_entry(l, &conf->listeners, by_bind) {
1807 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
1808 l->interface = strdup(args[cur_arg + 1]);
1809 }
Willy Tarreau44791242012-09-12 23:27:21 +02001810
1811 global.last_checks |= LSTCHK_NETADM;
1812 return 0;
1813}
1814#endif
1815
Willy Tarreaub6866442008-07-14 23:54:42 +02001816static struct cfg_kw_list cfg_kws = {{ },{
1817 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001818 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001819 { 0, NULL, NULL },
1820}};
1821
Willy Tarreau61612d42012-04-19 18:42:05 +02001822/* Note: must not be declared <const> as its list will be overwritten.
1823 * Please take care of keeping this list alphabetically sorted.
1824 */
Willy Tarreaub6866442008-07-14 23:54:42 +02001825static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001826 { "dst", acl_parse_ip, smp_fetch_dst, acl_match_ip, ACL_USE_TCP4_PERMANENT|ACL_MAY_LOOKUP, 0 },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001827 { "dst_port", acl_parse_int, smp_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreau0d5fe142012-04-26 12:24:45 +02001828 { "payload", acl_parse_str, smp_fetch_payload, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(2,UINT,UINT), val_payload },
1829 { "payload_lv", acl_parse_str, smp_fetch_payload_lv, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG3(2,UINT,UINT,SINT), val_payload_lv },
Willy Tarreau9fb4bc72012-04-24 00:09:26 +02001830 { "req_rdp_cookie", acl_parse_str, smp_fetch_rdp_cookie, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG1(0,STR) },
Willy Tarreau32389b72012-04-23 23:13:20 +02001831 { "req_rdp_cookie_cnt", acl_parse_int, acl_fetch_rdp_cookie_cnt, acl_match_int, ACL_USE_L6REQ_VOLATILE, ARG1(0,STR) },
Willy Tarreau4a129812012-04-25 17:31:42 +02001832 { "src", acl_parse_ip, smp_fetch_src, acl_match_ip, ACL_USE_TCP4_PERMANENT|ACL_MAY_LOOKUP, 0 },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001833 { "src_port", acl_parse_int, smp_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreaub6866442008-07-14 23:54:42 +02001834 { NULL, NULL, NULL, NULL },
1835}};
1836
Willy Tarreau4a129812012-04-25 17:31:42 +02001837/* Note: must not be declared <const> as its list will be overwritten.
1838 * Note: fetches that may return multiple types must be declared as the lowest
1839 * common denominator, the type that can be casted into all other ones. For
1840 * instance v4/v6 must be declared v4.
1841 */
Willy Tarreau12785782012-04-27 21:37:17 +02001842static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001843 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau4a129812012-04-25 17:31:42 +02001844 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001845 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001846 { "payload", smp_fetch_payload, ARG2(2,UINT,UINT), val_payload, SMP_T_CBIN, SMP_CAP_REQ|SMP_CAP_RES },
1847 { "payload_lv", smp_fetch_payload_lv, ARG3(2,UINT,UINT,SINT), val_payload_lv, SMP_T_CBIN, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreaud6281ae2012-04-26 11:23:39 +02001848 { "rdp_cookie", smp_fetch_rdp_cookie, ARG1(1,STR), NULL, SMP_T_CSTR, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001849 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001850 { NULL, NULL, 0, 0, 0 },
Willy Tarreau645513a2010-05-24 20:55:15 +02001851}};
1852
Willy Tarreau44791242012-09-12 23:27:21 +02001853/************************************************************************/
1854/* All supported bind keywords must be declared here. */
1855/************************************************************************/
1856
1857/* Note: must not be declared <const> as its list will be overwritten.
1858 * Please take care of keeping this list alphabetically sorted, doing so helps
1859 * all code contributors.
1860 * Optional keywords are also declared with a NULL ->parse() function so that
1861 * the config parser can report an appropriate error when a known keyword was
1862 * not enabled.
1863 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02001864static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02001865#ifdef TCP_DEFER_ACCEPT
1866 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
1867#endif
1868#ifdef SO_BINDTODEVICE
1869 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
1870#endif
1871#ifdef TCP_MAXSEG
1872 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
1873#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02001874#ifdef TCP_FASTOPEN
1875 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
1876#endif
Willy Tarreau44791242012-09-12 23:27:21 +02001877#ifdef CONFIG_HAP_LINUX_TPROXY
1878 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
1879#endif
1880 /* the versions with the NULL parse function*/
1881 { "defer-accept", NULL, 0 },
1882 { "interface", NULL, 1 },
1883 { "mss", NULL, 1 },
1884 { "transparent", NULL, 0 },
1885 { NULL, NULL, 0 },
1886}};
1887
Willy Tarreaue6b98942007-10-29 01:09:36 +01001888__attribute__((constructor))
1889static void __tcp_protocol_init(void)
1890{
1891 protocol_register(&proto_tcpv4);
1892 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001893 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001894 cfg_register_keywords(&cfg_kws);
1895 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02001896 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001897}
1898
1899
1900/*
1901 * Local variables:
1902 * c-indent-level: 8
1903 * c-basic-offset: 8
1904 * End:
1905 */