blob: 99741dc2dc18c99163a280c7a7b292202fb58b27 [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 Tarreau9650f372009-08-16 14:02:45 +020044#include <proto/log.h>
45#include <proto/port_range.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010046#include <proto/protocols.h>
47#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020048#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020049#include <proto/sample.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020050#include <proto/session.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020051#include <proto/stick_table.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020052#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010053
Willy Tarreaue8c66af2008-01-13 18:40:14 +010054#ifdef CONFIG_HAP_CTTPROXY
55#include <import/ip_tproxy.h>
56#endif
57
Emeric Bruncf20bf12010-10-22 16:06:11 +020058static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
59static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010060
61/* Note: must not be declared <const> as its list will be overwritten */
62static struct protocol proto_tcpv4 = {
63 .name = "tcpv4",
64 .sock_domain = AF_INET,
65 .sock_type = SOCK_STREAM,
66 .sock_prot = IPPROTO_TCP,
67 .sock_family = AF_INET,
68 .sock_addrlen = sizeof(struct sockaddr_in),
69 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020070 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020071 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020072 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010073 .bind_all = tcp_bind_listeners,
74 .unbind_all = unbind_all_listeners,
75 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020076 .get_src = tcp_get_src,
77 .get_dst = tcp_get_dst,
Willy Tarreaue6b98942007-10-29 01:09:36 +010078 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
79 .nb_listeners = 0,
80};
81
82/* Note: must not be declared <const> as its list will be overwritten */
83static struct protocol proto_tcpv6 = {
84 .name = "tcpv6",
85 .sock_domain = AF_INET6,
86 .sock_type = SOCK_STREAM,
87 .sock_prot = IPPROTO_TCP,
88 .sock_family = AF_INET6,
89 .sock_addrlen = sizeof(struct sockaddr_in6),
90 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020091 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020092 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020093 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010094 .bind_all = tcp_bind_listeners,
95 .unbind_all = unbind_all_listeners,
96 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020097 .get_src = tcp_get_src,
98 .get_dst = tcp_get_dst,
Willy Tarreaue6b98942007-10-29 01:09:36 +010099 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
100 .nb_listeners = 0,
101};
102
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100103
David du Colombier6f5ccb12011-03-10 22:26:24 +0100104/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100105 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
106 * - 0 : ignore remote address (may even be a NULL pointer)
107 * - 1 : use provided address
108 * - 2 : use provided port
109 * - 3 : use both
110 *
111 * The function supports multiple foreign binding methods :
112 * - linux_tproxy: we directly bind to the foreign address
113 * - cttproxy: we bind to a local address then nat.
114 * The second one can be used as a fallback for the first one.
115 * This function returns 0 when everything's OK, 1 if it could not bind, to the
116 * local address, 2 if it could not bind to the foreign address.
117 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100118int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100119{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100120 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100121 int foreign_ok = 0;
122 int ret;
123
124#ifdef CONFIG_HAP_LINUX_TPROXY
125 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200126 static int ip6_transp_working = 1;
127 switch (local->ss_family) {
128 case AF_INET:
129 if (flags && ip_transp_working) {
130 if (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0
131 || setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
132 foreign_ok = 1;
133 else
134 ip_transp_working = 0;
135 }
136 break;
137 case AF_INET6:
138 if (flags && ip6_transp_working) {
139 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
140 foreign_ok = 1;
141 else
142 ip6_transp_working = 0;
143 }
144 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100145 }
146#endif
147 if (flags) {
148 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200149 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100150 switch (remote->ss_family) {
151 case AF_INET:
152 if (flags & 1)
153 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
154 if (flags & 2)
155 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
156 break;
157 case AF_INET6:
158 if (flags & 1)
159 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
160 if (flags & 2)
161 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
162 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100163 default:
164 /* we don't want to try to bind to an unknown address family */
165 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100166 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100167 }
168
Simon Hormande072bd2011-06-24 15:11:37 +0900169 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100170 if (foreign_ok) {
Willy Tarreau1b4b7ce2011-04-05 16:56:50 +0200171 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100172 if (ret < 0)
173 return 2;
174 }
175 else {
Willy Tarreau1b4b7ce2011-04-05 16:56:50 +0200176 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100177 if (ret < 0)
178 return 1;
179 }
180
181 if (!flags)
182 return 0;
183
184#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100185 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100186 struct in_tproxy itp1, itp2;
187 memset(&itp1, 0, sizeof(itp1));
188
189 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100190 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
191 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100192
193 /* set connect flag on socket */
194 itp2.op = TPROXY_FLAGS;
195 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
196
197 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
198 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
199 foreign_ok = 1;
200 }
201 }
202#endif
203 if (!foreign_ok)
204 /* we could not bind to a foreign address */
205 return 2;
206
207 return 0;
208}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100209
Willy Tarreau9650f372009-08-16 14:02:45 +0200210
211/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200212 * This function initiates a TCP connection establishment to the target assigned
213 * to connection <conn> using (si->{target,addr.to}). A source address may be
214 * pointed to by conn->addr.from in case of transparent proxying. Normal source
215 * bind addresses are still determined locally (due to the possible need of a
216 * source port). conn->target may point either to a valid server or to a backend,
217 * depending on conn->target.type. Only TARG_TYPE_PROXY and TARG_TYPE_SERVER are
218 * supported. The <data> parameter is a boolean indicating whether there are data
219 * waiting for being sent or not, in order to adjust data write polling and on
220 * some platforms, the ability to avoid an empty initial ACK.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200221 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200222 * It can return one of :
223 * - SN_ERR_NONE if everything's OK
224 * - SN_ERR_SRVTO if there are no more servers
225 * - SN_ERR_SRVCL if the connection was refused by the server
226 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
227 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
228 * - SN_ERR_INTERNAL for any other purely internal errors
229 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
230 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100231
Willy Tarreau14f8e862012-08-30 22:23:13 +0200232int tcp_connect_server(struct connection *conn, int data)
Willy Tarreau9650f372009-08-16 14:02:45 +0200233{
234 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100235 struct server *srv;
236 struct proxy *be;
237
Willy Tarreau986a9d22012-08-30 21:11:38 +0200238 switch (conn->target.type) {
Willy Tarreauac825402011-03-04 22:04:29 +0100239 case TARG_TYPE_PROXY:
Willy Tarreau986a9d22012-08-30 21:11:38 +0200240 be = conn->target.ptr.p;
Willy Tarreauac825402011-03-04 22:04:29 +0100241 srv = NULL;
242 break;
243 case TARG_TYPE_SERVER:
Willy Tarreau986a9d22012-08-30 21:11:38 +0200244 srv = conn->target.ptr.s;
Willy Tarreauac825402011-03-04 22:04:29 +0100245 be = srv->proxy;
246 break;
247 default:
248 return SN_ERR_INTERNAL;
249 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200250
Willy Tarreau986a9d22012-08-30 21:11:38 +0200251 if ((fd = conn->t.sock.fd = socket(conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200252 qfprintf(stderr, "Cannot get a server socket.\n");
253
254 if (errno == ENFILE)
255 send_log(be, LOG_EMERG,
256 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
257 be->id, maxfd);
258 else if (errno == EMFILE)
259 send_log(be, LOG_EMERG,
260 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
261 be->id, maxfd);
262 else if (errno == ENOBUFS || errno == ENOMEM)
263 send_log(be, LOG_EMERG,
264 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
265 be->id, maxfd);
266 /* this is a resource error */
267 return SN_ERR_RESOURCE;
268 }
269
270 if (fd >= global.maxsock) {
271 /* do not log anything there, it's a normal condition when this option
272 * is used to serialize connections to a server !
273 */
274 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
275 close(fd);
276 return SN_ERR_PRXCOND; /* it is a configuration limit */
277 }
278
279 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900280 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200281 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
282 close(fd);
283 return SN_ERR_INTERNAL;
284 }
285
286 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900287 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200288
Willy Tarreau9650f372009-08-16 14:02:45 +0200289 /* allow specific binding :
290 * - server-specific at first
291 * - proxy-specific next
292 */
293 if (srv != NULL && srv->state & SRV_BIND_SRC) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200294 int ret, flags = 0;
295
Willy Tarreau9650f372009-08-16 14:02:45 +0200296 switch (srv->state & SRV_TPROXY_MASK) {
297 case SRV_TPROXY_ADDR:
Willy Tarreau9650f372009-08-16 14:02:45 +0200298 case SRV_TPROXY_CLI:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200299 flags = 3;
300 break;
Willy Tarreau9650f372009-08-16 14:02:45 +0200301 case SRV_TPROXY_CIP:
Willy Tarreau090466c2009-09-07 11:51:47 +0200302 case SRV_TPROXY_DYN:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200303 flags = 1;
Willy Tarreau9650f372009-08-16 14:02:45 +0200304 break;
305 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200306
Willy Tarreau9650f372009-08-16 14:02:45 +0200307#ifdef SO_BINDTODEVICE
308 /* Note: this might fail if not CAP_NET_RAW */
309 if (srv->iface_name)
310 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, srv->iface_name, srv->iface_len + 1);
311#endif
312
313 if (srv->sport_range) {
314 int attempts = 10; /* should be more than enough to find a spare port */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100315 struct sockaddr_storage src;
Willy Tarreau9650f372009-08-16 14:02:45 +0200316
317 ret = 1;
318 src = srv->source_addr;
319
320 do {
321 /* note: in case of retry, we may have to release a previously
322 * allocated port, hence this loop's construct.
323 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200324 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
325 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200326
327 if (!attempts)
328 break;
329 attempts--;
330
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200331 fdinfo[fd].local_port = port_range_alloc_port(srv->sport_range);
332 if (!fdinfo[fd].local_port)
Willy Tarreau9650f372009-08-16 14:02:45 +0200333 break;
334
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200335 fdinfo[fd].port_range = srv->sport_range;
Willy Tarreau86ad42c2011-08-27 12:29:07 +0200336 set_host_port(&src, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200337
Willy Tarreau986a9d22012-08-30 21:11:38 +0200338 ret = tcp_bind_socket(fd, flags, &src, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200339 } while (ret != 0); /* binding NOK */
340 }
341 else {
Willy Tarreau986a9d22012-08-30 21:11:38 +0200342 ret = tcp_bind_socket(fd, flags, &srv->source_addr, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200343 }
344
345 if (ret) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200346 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
347 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200348 close(fd);
349
350 if (ret == 1) {
351 Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n",
352 be->id, srv->id);
353 send_log(be, LOG_EMERG,
354 "Cannot bind to source address before connect() for server %s/%s.\n",
355 be->id, srv->id);
356 } else {
357 Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n",
358 be->id, srv->id);
359 send_log(be, LOG_EMERG,
360 "Cannot bind to tproxy source address before connect() for server %s/%s.\n",
361 be->id, srv->id);
362 }
363 return SN_ERR_RESOURCE;
364 }
365 }
366 else if (be->options & PR_O_BIND_SRC) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200367 int ret, flags = 0;
368
Willy Tarreau9650f372009-08-16 14:02:45 +0200369 switch (be->options & PR_O_TPXY_MASK) {
370 case PR_O_TPXY_ADDR:
Willy Tarreau9650f372009-08-16 14:02:45 +0200371 case PR_O_TPXY_CLI:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200372 flags = 3;
373 break;
Willy Tarreau9650f372009-08-16 14:02:45 +0200374 case PR_O_TPXY_CIP:
Willy Tarreau090466c2009-09-07 11:51:47 +0200375 case PR_O_TPXY_DYN:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200376 flags = 1;
Willy Tarreau9650f372009-08-16 14:02:45 +0200377 break;
378 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200379
Willy Tarreau9650f372009-08-16 14:02:45 +0200380#ifdef SO_BINDTODEVICE
381 /* Note: this might fail if not CAP_NET_RAW */
382 if (be->iface_name)
383 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, be->iface_name, be->iface_len + 1);
384#endif
Willy Tarreau986a9d22012-08-30 21:11:38 +0200385 ret = tcp_bind_socket(fd, flags, &be->source_addr, &conn->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200386 if (ret) {
387 close(fd);
388 if (ret == 1) {
389 Alert("Cannot bind to source address before connect() for proxy %s. Aborting.\n",
390 be->id);
391 send_log(be, LOG_EMERG,
392 "Cannot bind to source address before connect() for proxy %s.\n",
393 be->id);
394 } else {
395 Alert("Cannot bind to tproxy source address before connect() for proxy %s. Aborting.\n",
396 be->id);
397 send_log(be, LOG_EMERG,
398 "Cannot bind to tproxy source address before connect() for proxy %s.\n",
399 be->id);
400 }
401 return SN_ERR_RESOURCE;
402 }
403 }
404
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400405#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200406 /* disabling tcp quick ack now allows the first request to leave the
407 * machine with the first ACK. We only do this if there are pending
408 * data in the buffer.
409 */
Willy Tarreau14f8e862012-08-30 22:23:13 +0200410 if ((be->options2 & PR_O2_SMARTCON) && data)
Simon Hormande072bd2011-06-24 15:11:37 +0900411 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200412#endif
413
Willy Tarreaue803de22010-01-21 17:43:04 +0100414 if (global.tune.server_sndbuf)
415 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
416
417 if (global.tune.server_rcvbuf)
418 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
419
Willy Tarreau986a9d22012-08-30 21:11:38 +0200420 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200421 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
422
423 if (errno == EAGAIN || errno == EADDRINUSE) {
424 char *msg;
425 if (errno == EAGAIN) /* no free ports left, try again later */
426 msg = "no free ports";
427 else
428 msg = "local address already in use";
429
430 qfprintf(stderr,"Cannot connect: %s.\n",msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200431 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
432 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200433 close(fd);
434 send_log(be, LOG_EMERG,
435 "Connect() failed for server %s/%s: %s.\n",
436 be->id, srv->id, msg);
437 return SN_ERR_RESOURCE;
438 } else if (errno == ETIMEDOUT) {
439 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200440 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
441 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200442 close(fd);
443 return SN_ERR_SRVTO;
444 } else {
445 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
446 //qfprintf(stderr,"Connect(): %d", errno);
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 return SN_ERR_SRVCL;
451 }
452 }
453
Willy Tarreau986a9d22012-08-30 21:11:38 +0200454 fdtab[fd].owner = conn;
Willy Tarreau9650f372009-08-16 14:02:45 +0200455 fdtab[fd].flags = FD_FL_TCP | FD_FL_TCP_NODELAY;
Willy Tarreau986a9d22012-08-30 21:11:38 +0200456 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200457
Willy Tarreaud2274c62012-07-06 14:29:45 +0200458 fdtab[fd].iocb = conn_fd_handler;
Willy Tarreau9650f372009-08-16 14:02:45 +0200459 fd_insert(fd);
Willy Tarreau986a9d22012-08-30 21:11:38 +0200460 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200461
462 if (conn_data_init(conn) < 0)
463 return SN_ERR_RESOURCE;
464
Willy Tarreau14f8e862012-08-30 22:23:13 +0200465 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200466 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200467
Willy Tarreau9650f372009-08-16 14:02:45 +0200468 return SN_ERR_NONE; /* connection is OK */
469}
470
471
Willy Tarreau59b94792012-05-11 16:16:40 +0200472/*
473 * Retrieves the source address for the socket <fd>, with <dir> indicating
474 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
475 * success, -1 in case of error. The socket's source address is stored in
476 * <sa> for <salen> bytes.
477 */
478int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
479{
480 if (dir)
481 return getsockname(fd, sa, &salen);
482 else
483 return getpeername(fd, sa, &salen);
484}
485
486
487/*
488 * Retrieves the original destination address for the socket <fd>, with <dir>
489 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
490 * listener, if the original destination address was translated, the original
491 * address is retrieved. It returns 0 in case of success, -1 in case of error.
492 * The socket's source address is stored in <sa> for <salen> bytes.
493 */
494int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
495{
496 if (dir)
497 return getpeername(fd, sa, &salen);
498#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
499 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
500 return 0;
501#endif
502 else
503 return getsockname(fd, sa, &salen);
504}
505
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200506/* This is the callback which is set when a connection establishment is pending
507 * and we have nothing to send, or if we have an init function we want to call
Willy Tarreauafad0e02012-08-09 14:45:22 +0200508 * once the connection is established. It updates the FD polling status. It
509 * returns 0 if it fails in a fatal way or needs to poll to go further, otherwise
510 * it returns non-zero and removes itself from the connection's flags (the bit is
511 * provided in <flag> by the caller).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200512 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200513int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200514{
Willy Tarreau239d7182012-07-23 18:53:03 +0200515 int fd = conn->t.sock.fd;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200516
Willy Tarreau80184712012-07-06 14:54:49 +0200517 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200518 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200519
Willy Tarreau80184712012-07-06 14:54:49 +0200520 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200521 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200522
Willy Tarreau2da156f2012-07-23 15:07:23 +0200523 /* stop here if we reached the end of data */
524 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
525 goto out_error;
526
Willy Tarreau2c6be842012-07-06 17:12:34 +0200527 /* We have no data to send to check the connection, and
528 * getsockopt() will not inform us whether the connection
529 * is still pending. So we'll reuse connect() to check the
530 * state of the socket. This has the advantage of giving us
531 * the following info :
532 * - error
533 * - connecting (EALREADY, EINPROGRESS)
534 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200535 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200536 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200537 if (errno == EALREADY || errno == EINPROGRESS) {
538 conn_sock_stop_recv(conn);
539 conn_sock_poll_send(conn);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200540 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200541 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200542
Willy Tarreau2c6be842012-07-06 17:12:34 +0200543 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200544 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200545
Willy Tarreau2c6be842012-07-06 17:12:34 +0200546 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200547 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200548
Willy Tarreau076be252012-07-06 16:02:29 +0200549 /* The FD is ready now, we'll mark the connection as complete and
550 * forward the event to the data layer which will update the stream
551 * interface flags.
Willy Tarreaua190d592012-05-20 18:35:19 +0200552 */
Willy Tarreau80184712012-07-06 14:54:49 +0200553 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200554 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200555
556 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200557 /* Write error on the file descriptor. Report it to the connection
558 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200559 */
560
Willy Tarreau80184712012-07-06 14:54:49 +0200561 conn->flags |= CO_FL_ERROR;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200562 conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200563 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200564}
565
Willy Tarreau59b94792012-05-11 16:16:40 +0200566
Willy Tarreaue6b98942007-10-29 01:09:36 +0100567/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
568 * an error message in <err> if the message is at most <errlen> bytes long
569 * (including '\0'). The return value is composed from ERR_ABORT, ERR_WARN,
570 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
571 * was alright and that no message was returned. ERR_RETRYABLE means that an
572 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700573 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100574 * the meaning of the error, but just indicate that a message is present which
575 * should be displayed with the respective level. Last, ERR_ABORT indicates
576 * that it's pointless to try to start other listeners. No error message is
577 * returned if errlen is NULL.
578 */
579int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
580{
581 __label__ tcp_return, tcp_close_return;
582 int fd, err;
583 const char *msg = NULL;
584
585 /* ensure we never return garbage */
586 if (errmsg && errlen)
587 *errmsg = 0;
588
589 if (listener->state != LI_ASSIGNED)
590 return ERR_NONE; /* already bound */
591
592 err = ERR_NONE;
593
594 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
595 err |= ERR_RETRYABLE | ERR_ALERT;
596 msg = "cannot create listening socket";
597 goto tcp_return;
598 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100599
Willy Tarreaue6b98942007-10-29 01:09:36 +0100600 if (fd >= global.maxsock) {
601 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
602 msg = "not enough free sockets (raise '-n' parameter)";
603 goto tcp_close_return;
604 }
605
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200606 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100607 err |= ERR_FATAL | ERR_ALERT;
608 msg = "cannot make socket non-blocking";
609 goto tcp_close_return;
610 }
611
Simon Hormande072bd2011-06-24 15:11:37 +0900612 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100613 /* not fatal but should be reported */
614 msg = "cannot do so_reuseaddr";
615 err |= ERR_ALERT;
616 }
617
618 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900619 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100620
Willy Tarreaue6b98942007-10-29 01:09:36 +0100621#ifdef SO_REUSEPORT
622 /* OpenBSD supports this. As it's present in old libc versions of Linux,
623 * it might return an error that we will silently ignore.
624 */
Simon Hormande072bd2011-06-24 15:11:37 +0900625 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100626#endif
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100627#ifdef CONFIG_HAP_LINUX_TPROXY
David du Colombier65c17962012-07-13 14:34:59 +0200628 if (listener->options & LI_O_FOREIGN) {
629 switch (listener->addr.ss_family) {
630 case AF_INET:
631 if ((setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
632 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)) {
633 msg = "cannot make listening socket transparent";
634 err |= ERR_ALERT;
635 }
636 break;
637 case AF_INET6:
638 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1) {
639 msg = "cannot make listening socket transparent";
640 err |= ERR_ALERT;
641 }
642 break;
643 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100644 }
645#endif
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100646#ifdef SO_BINDTODEVICE
647 /* Note: this might fail if not CAP_NET_RAW */
648 if (listener->interface) {
649 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100650 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100651 msg = "cannot bind listener to device";
652 err |= ERR_WARN;
653 }
654 }
655#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400656#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100657 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400658 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200659 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
660 msg = "cannot set MSS";
661 err |= ERR_WARN;
662 }
663 }
664#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200665#if defined(TCP_DEFER_ACCEPT)
666 if (listener->options & LI_O_DEF_ACCEPT) {
667 /* defer accept by up to one second */
668 int accept_delay = 1;
669 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
670 msg = "cannot enable DEFER_ACCEPT";
671 err |= ERR_WARN;
672 }
673 }
674#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +0100675 if (bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
676 err |= ERR_RETRYABLE | ERR_ALERT;
677 msg = "cannot bind socket";
678 goto tcp_close_return;
679 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100680
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100681 if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100682 err |= ERR_RETRYABLE | ERR_ALERT;
683 msg = "cannot listen to socket";
684 goto tcp_close_return;
685 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100686
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400687#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200688 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900689 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200690#endif
691
Willy Tarreaue6b98942007-10-29 01:09:36 +0100692 /* the socket is ready */
693 listener->fd = fd;
694 listener->state = LI_LISTEN;
695
Willy Tarreaueabf3132008-08-29 23:36:51 +0200696 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreaueb472682010-05-28 18:46:57 +0200697 fdtab[fd].flags = FD_FL_TCP | ((listener->options & LI_O_NOLINGER) ? FD_FL_TCP_NOLING : 0);
Willy Tarreauaece46a2012-07-06 12:25:58 +0200698 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200699 fd_insert(fd);
700
Willy Tarreaue6b98942007-10-29 01:09:36 +0100701 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100702 if (msg && errlen) {
703 char pn[INET6_ADDRSTRLEN];
704
Willy Tarreau631f01c2011-09-05 00:36:48 +0200705 addr_to_str(&listener->addr, pn, sizeof(pn));
706 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100707 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100708 return err;
709
710 tcp_close_return:
711 close(fd);
712 goto tcp_return;
713}
714
715/* This function creates all TCP sockets bound to the protocol entry <proto>.
716 * It is intended to be used as the protocol's bind_all() function.
717 * The sockets will be registered but not added to any fd_set, in order not to
718 * loose them across the fork(). A call to enable_all_listeners() is needed
719 * to complete initialization. The return value is composed from ERR_*.
720 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200721static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100722{
723 struct listener *listener;
724 int err = ERR_NONE;
725
726 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200727 err |= tcp_bind_listener(listener, errmsg, errlen);
728 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100729 break;
730 }
731
732 return err;
733}
734
735/* Add listener to the list of tcpv4 listeners. The listener's state
736 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
737 * listeners is updated. This is the function to use to add a new listener.
738 */
739void tcpv4_add_listener(struct listener *listener)
740{
741 if (listener->state != LI_INIT)
742 return;
743 listener->state = LI_ASSIGNED;
744 listener->proto = &proto_tcpv4;
745 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
746 proto_tcpv4.nb_listeners++;
747}
748
749/* Add listener to the list of tcpv4 listeners. The listener's state
750 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
751 * listeners is updated. This is the function to use to add a new listener.
752 */
753void tcpv6_add_listener(struct listener *listener)
754{
755 if (listener->state != LI_INIT)
756 return;
757 listener->state = LI_ASSIGNED;
758 listener->proto = &proto_tcpv6;
759 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
760 proto_tcpv6.nb_listeners++;
761}
762
Willy Tarreauedcf6682008-11-30 23:15:34 +0100763/* This function performs the TCP request analysis on the current request. It
764 * returns 1 if the processing can continue on next analysers, or zero if it
765 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200766 * request. It relies on buffers flags, and updates s->req->analysers. The
767 * function may be called for frontend rules and backend rules. It only relies
768 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100769 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200770int tcp_inspect_request(struct session *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100771{
772 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200773 struct stksess *ts;
774 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100775 int partial;
776
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100777 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 +0100778 now_ms, __FUNCTION__,
779 s,
780 req,
781 req->rex, req->wex,
782 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100783 req->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100784 req->analysers);
785
Willy Tarreauedcf6682008-11-30 23:15:34 +0100786 /* We don't know whether we have enough data, so must proceed
787 * this way :
788 * - iterate through all rules in their declaration order
789 * - if one rule returns MISS, it means the inspect delay is
790 * not over yet, then return immediately, otherwise consider
791 * it as a non-match.
792 * - if one rule returns OK, then return OK
793 * - if one rule returns KO, then return KO
794 */
795
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200796 if ((req->flags & CF_SHUTR) || buffer_full(&req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200797 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200798 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100799 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200800 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100801
Willy Tarreaufb356202010-08-03 14:02:05 +0200802 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100803 int ret = ACL_PAT_PASS;
804
805 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200806 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100807 if (ret == ACL_PAT_MISS) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200808 channel_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100809 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200810 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
811 req->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100812 return 0;
813 }
814
815 ret = acl_pass(ret);
816 if (rule->cond->pol == ACL_COND_UNLESS)
817 ret = !ret;
818 }
819
820 if (ret) {
821 /* we have a matching rule. */
822 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200823 channel_abort(req);
824 channel_abort(s->rep);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100825 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200826
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100827 s->be->be_counters.denied_req++;
828 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200829 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200830 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200831
Willy Tarreauedcf6682008-11-30 23:15:34 +0100832 if (!(s->flags & SN_ERR_MASK))
833 s->flags |= SN_ERR_PRXCOND;
834 if (!(s->flags & SN_FINST_MASK))
835 s->flags |= SN_FINST_R;
836 return 0;
837 }
Willy Tarreau56123282010-08-06 19:06:56 +0200838 else if (rule->action == TCP_ACT_TRK_SC1) {
839 if (!s->stkctr1_entry) {
840 /* only the first valid track-sc1 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200841 * Also, note that right now we can only track SRC so we
842 * don't check how to get the key, but later we may need
843 * to consider rule->act_prm->trk_ctr.type.
844 */
845 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau64ee4912012-08-30 22:59:48 +0200846 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn.addr.from));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200847 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200848 session_track_stkctr1(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200849 if (s->fe != s->be)
850 s->flags |= SN_BE_TRACK_SC1;
851 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200852 }
853 }
Willy Tarreau56123282010-08-06 19:06:56 +0200854 else if (rule->action == TCP_ACT_TRK_SC2) {
855 if (!s->stkctr2_entry) {
856 /* only the first valid track-sc2 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200857 * Also, note that right now we can only track SRC so we
858 * don't check how to get the key, but later we may need
859 * to consider rule->act_prm->trk_ctr.type.
860 */
861 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau64ee4912012-08-30 22:59:48 +0200862 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn.addr.from));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200863 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200864 session_track_stkctr2(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200865 if (s->fe != s->be)
866 s->flags |= SN_BE_TRACK_SC2;
867 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200868 }
869 }
870 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100871 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200872 break;
873 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100874 }
875 }
876
877 /* if we get there, it means we have no rule which matches, or
878 * we have an explicit accept, so we apply the default accept.
879 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200880 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100881 req->analyse_exp = TICK_ETERNITY;
882 return 1;
883}
884
Emeric Brun97679e72010-09-23 17:56:44 +0200885/* This function performs the TCP response analysis on the current response. It
886 * returns 1 if the processing can continue on next analysers, or zero if it
887 * needs more data, encounters an error, or wants to immediately abort the
888 * response. It relies on buffers flags, and updates s->rep->analysers. The
889 * function may be called for backend rules.
890 */
Willy Tarreau7421efb2012-07-02 15:11:27 +0200891int tcp_inspect_response(struct session *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +0200892{
893 struct tcp_rule *rule;
894 int partial;
895
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100896 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 +0200897 now_ms, __FUNCTION__,
898 s,
899 rep,
900 rep->rex, rep->wex,
901 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100902 rep->i,
Emeric Brun97679e72010-09-23 17:56:44 +0200903 rep->analysers);
904
905 /* We don't know whether we have enough data, so must proceed
906 * this way :
907 * - iterate through all rules in their declaration order
908 * - if one rule returns MISS, it means the inspect delay is
909 * not over yet, then return immediately, otherwise consider
910 * it as a non-match.
911 * - if one rule returns OK, then return OK
912 * - if one rule returns KO, then return KO
913 */
914
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200915 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200916 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +0200917 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200918 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +0200919
920 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
921 int ret = ACL_PAT_PASS;
922
923 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200924 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Emeric Brun97679e72010-09-23 17:56:44 +0200925 if (ret == ACL_PAT_MISS) {
926 /* just set the analyser timeout once at the beginning of the response */
927 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
928 rep->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_rep.inspect_delay);
929 return 0;
930 }
931
932 ret = acl_pass(ret);
933 if (rule->cond->pol == ACL_COND_UNLESS)
934 ret = !ret;
935 }
936
937 if (ret) {
938 /* we have a matching rule. */
939 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200940 channel_abort(rep);
941 channel_abort(s->req);
Emeric Brun97679e72010-09-23 17:56:44 +0200942 rep->analysers = 0;
943
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100944 s->be->be_counters.denied_resp++;
945 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +0200946 if (s->listener->counters)
947 s->listener->counters->denied_resp++;
948
949 if (!(s->flags & SN_ERR_MASK))
950 s->flags |= SN_ERR_PRXCOND;
951 if (!(s->flags & SN_FINST_MASK))
952 s->flags |= SN_FINST_D;
953 return 0;
954 }
955 else {
956 /* otherwise accept */
957 break;
958 }
959 }
960 }
961
962 /* if we get there, it means we have no rule which matches, or
963 * we have an explicit accept, so we apply the default accept.
964 */
965 rep->analysers &= ~an_bit;
966 rep->analyse_exp = TICK_ETERNITY;
967 return 1;
968}
969
970
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200971/* This function performs the TCP layer4 analysis on the current request. It
972 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
973 * matches or if no more rule matches. It can only use rules which don't need
974 * any data.
975 */
976int tcp_exec_req_rules(struct session *s)
977{
978 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200979 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200980 struct stktable *t = NULL;
981 int result = 1;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200982 int ret;
983
984 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
985 ret = ACL_PAT_PASS;
986
987 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200988 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200989 ret = acl_pass(ret);
990 if (rule->cond->pol == ACL_COND_UNLESS)
991 ret = !ret;
992 }
993
994 if (ret) {
995 /* we have a matching rule. */
996 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100997 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200998 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +0200999 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001000
1001 if (!(s->flags & SN_ERR_MASK))
1002 s->flags |= SN_ERR_PRXCOND;
1003 if (!(s->flags & SN_FINST_MASK))
1004 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001005 result = 0;
1006 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001007 }
Willy Tarreau56123282010-08-06 19:06:56 +02001008 else if (rule->action == TCP_ACT_TRK_SC1) {
1009 if (!s->stkctr1_entry) {
1010 /* only the first valid track-sc1 directive applies.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001011 * Also, note that right now we can only track SRC so we
1012 * don't check how to get the key, but later we may need
1013 * to consider rule->act_prm->trk_ctr.type.
1014 */
1015 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau64ee4912012-08-30 22:59:48 +02001016 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn.addr.from));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001017 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001018 session_track_stkctr1(s, t, ts);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001019 }
1020 }
Willy Tarreau56123282010-08-06 19:06:56 +02001021 else if (rule->action == TCP_ACT_TRK_SC2) {
1022 if (!s->stkctr2_entry) {
1023 /* only the first valid track-sc2 directive applies.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001024 * Also, note that right now we can only track SRC so we
1025 * don't check how to get the key, but later we may need
1026 * to consider rule->act_prm->trk_ctr.type.
1027 */
1028 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau64ee4912012-08-30 22:59:48 +02001029 ts = stktable_get_entry(t, addr_to_stktable_key(&s->si[0].conn.addr.from));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001030 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001031 session_track_stkctr2(s, t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001032 }
1033 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001034 else {
1035 /* otherwise it's an accept */
1036 break;
1037 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001038 }
1039 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001040 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001041}
1042
Emeric Brun97679e72010-09-23 17:56:44 +02001043/* Parse a tcp-response rule. Return a negative value in case of failure */
1044static int tcp_parse_response_rule(char **args, int arg, int section_type,
1045 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001046 struct tcp_rule *rule, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001047{
1048 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001049 memprintf(err, "%s %s is only allowed in 'backend' sections",
1050 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001051 return -1;
1052 }
1053
1054 if (strcmp(args[arg], "accept") == 0) {
1055 arg++;
1056 rule->action = TCP_ACT_ACCEPT;
1057 }
1058 else if (strcmp(args[arg], "reject") == 0) {
1059 arg++;
1060 rule->action = TCP_ACT_REJECT;
1061 }
1062 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001063 memprintf(err,
1064 "'%s %s' expects 'accept' or 'reject' in %s '%s' (got '%s')",
1065 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001066 return -1;
1067 }
1068
1069 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001070 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1071 memprintf(err,
1072 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1073 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001074 return -1;
1075 }
1076 }
1077 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001078 memprintf(err,
1079 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001080 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1081 return -1;
1082 }
1083 return 0;
1084}
1085
1086
1087
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001088/* Parse a tcp-request rule. Return a negative value in case of failure */
1089static int tcp_parse_request_rule(char **args, int arg, int section_type,
1090 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001091 struct tcp_rule *rule, char **err)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001092{
1093 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001094 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1095 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001096 return -1;
1097 }
1098
1099 if (!strcmp(args[arg], "accept")) {
1100 arg++;
1101 rule->action = TCP_ACT_ACCEPT;
1102 }
1103 else if (!strcmp(args[arg], "reject")) {
1104 arg++;
1105 rule->action = TCP_ACT_REJECT;
1106 }
Willy Tarreau56123282010-08-06 19:06:56 +02001107 else if (strcmp(args[arg], "track-sc1") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001108 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001109 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001110
1111 arg++;
1112 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001113 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001114
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001115 if (ret < 0) { /* nb: warnings are not handled yet */
1116 memprintf(err,
1117 "'%s %s %s' : %s in %s '%s'",
1118 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1119 return ret;
1120 }
Willy Tarreau56123282010-08-06 19:06:56 +02001121 rule->action = TCP_ACT_TRK_SC1;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001122 }
Willy Tarreau56123282010-08-06 19:06:56 +02001123 else if (strcmp(args[arg], "track-sc2") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001124 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001125 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001126
1127 arg++;
1128 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001129 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001130
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001131 if (ret < 0) { /* nb: warnings are not handled yet */
1132 memprintf(err,
1133 "'%s %s %s' : %s in %s '%s'",
1134 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1135 return ret;
1136 }
Willy Tarreau56123282010-08-06 19:06:56 +02001137 rule->action = TCP_ACT_TRK_SC2;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001138 }
1139 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001140 memprintf(err,
1141 "'%s %s' expects 'accept', 'reject', 'track-sc1' "
1142 "or 'track-sc2' in %s '%s' (got '%s')",
1143 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001144 return -1;
1145 }
1146
1147 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001148 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1149 memprintf(err,
1150 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1151 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001152 return -1;
1153 }
1154 }
1155 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001156 memprintf(err,
1157 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001158 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1159 return -1;
1160 }
1161 return 0;
1162}
1163
Emeric Brun97679e72010-09-23 17:56:44 +02001164/* This function should be called to parse a line starting with the "tcp-response"
1165 * keyword.
1166 */
1167static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001168 struct proxy *defpx, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001169{
1170 const char *ptr = NULL;
1171 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001172 int warn = 0;
1173 int arg;
1174 struct tcp_rule *rule;
1175
1176 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001177 memprintf(err, "missing argument for '%s' in %s '%s'",
1178 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001179 return -1;
1180 }
1181
1182 if (strcmp(args[1], "inspect-delay") == 0) {
1183 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001184 memprintf(err, "%s %s is only allowed in 'backend' sections",
1185 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001186 return -1;
1187 }
1188
1189 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001190 memprintf(err,
1191 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1192 args[0], args[1], proxy_type_str(curpx), curpx->id);
1193 if (ptr)
1194 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001195 return -1;
1196 }
1197
1198 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001199 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1200 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001201 return 1;
1202 }
1203 curpx->tcp_rep.inspect_delay = val;
1204 return 0;
1205 }
1206
Simon Hormande072bd2011-06-24 15:11:37 +09001207 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001208 LIST_INIT(&rule->list);
1209 arg = 1;
1210
1211 if (strcmp(args[1], "content") == 0) {
1212 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001213 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001214 goto error;
1215
1216 if (rule->cond && (rule->cond->requires & ACL_USE_L6REQ_VOLATILE)) {
1217 struct acl *acl;
1218 const char *name;
1219
1220 acl = cond_find_require(rule->cond, ACL_USE_L6REQ_VOLATILE);
1221 name = acl ? acl->name : "(unknown)";
1222
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001223 memprintf(err,
1224 "acl '%s' involves some request-only criteria which will be ignored in '%s %s'",
1225 name, args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001226 warn++;
1227 }
1228
1229 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1230 }
1231 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001232 memprintf(err,
1233 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1234 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001235 goto error;
1236 }
1237
1238 return warn;
1239 error:
1240 free(rule);
1241 return -1;
1242}
1243
1244
Willy Tarreaub6866442008-07-14 23:54:42 +02001245/* This function should be called to parse a line starting with the "tcp-request"
1246 * keyword.
1247 */
1248static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001249 struct proxy *defpx, char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001250{
1251 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001252 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001253 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001254 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001255 struct tcp_rule *rule;
Willy Tarreaub6866442008-07-14 23:54:42 +02001256
1257 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001258 if (curpx == defpx)
1259 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1260 else
1261 memprintf(err, "missing argument for '%s' in %s '%s'",
1262 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001263 return -1;
1264 }
1265
1266 if (!strcmp(args[1], "inspect-delay")) {
1267 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001268 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1269 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001270 return -1;
1271 }
1272
Willy Tarreaub6866442008-07-14 23:54:42 +02001273 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001274 memprintf(err,
1275 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1276 args[0], args[1], proxy_type_str(curpx), curpx->id);
1277 if (ptr)
1278 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001279 return -1;
1280 }
1281
1282 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001283 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1284 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001285 return 1;
1286 }
1287 curpx->tcp_req.inspect_delay = val;
1288 return 0;
1289 }
1290
Simon Hormande072bd2011-06-24 15:11:37 +09001291 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001292 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001293 arg = 1;
1294
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001295 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001296 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001297 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001298 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001299
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001300 if (rule->cond && (rule->cond->requires & ACL_USE_RTR_ANY)) {
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001301 struct acl *acl;
1302 const char *name;
1303
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001304 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001305 name = acl ? acl->name : "(unknown)";
1306
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001307 memprintf(err,
1308 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1309 name, args[0], args[1]);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001310 warn++;
1311 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001312 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001313 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001314 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001315 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001316
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001317 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001318 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1319 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001320 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001321 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001322
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001323 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001324 goto error;
1325
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001326 if (rule->cond && (rule->cond->requires & (ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY))) {
1327 struct acl *acl;
1328 const char *name;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001329
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001330 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY);
1331 name = acl ? acl->name : "(unknown)";
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001332
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001333 if (acl->requires & (ACL_USE_L6_ANY|ACL_USE_L7_ANY)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001334 memprintf(err,
1335 "'%s %s' may not reference acl '%s' which makes use of "
1336 "payload in %s '%s'. Please use '%s content' for this.",
1337 args[0], args[1], name, proxy_type_str(curpx), curpx->id, args[0]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001338 goto error;
1339 }
1340 if (acl->requires & ACL_USE_RTR_ANY)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001341 memprintf(err,
1342 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1343 name, args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001344 warn++;
1345 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001346 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001347 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001348 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001349 if (curpx == defpx)
1350 memprintf(err,
1351 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1352 args[0], args[1]);
1353 else
1354 memprintf(err,
1355 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
1356 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001357 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001358 }
1359
Willy Tarreau1a687942010-05-23 22:40:30 +02001360 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001361 error:
1362 free(rule);
1363 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001364}
1365
Willy Tarreau645513a2010-05-24 20:55:15 +02001366
1367/************************************************************************/
Willy Tarreau32389b72012-04-23 23:13:20 +02001368/* All supported sample fetch functios must be declared here */
1369/************************************************************************/
1370
1371/* Fetch the request RDP cookie identified in the args, or any cookie if no arg
Willy Tarreau12785782012-04-27 21:37:17 +02001372 * is passed. It is usable both for ACL and for samples. Note: this decoder
Willy Tarreau32389b72012-04-23 23:13:20 +02001373 * only works with non-wrapping data. Accepts either 0 or 1 argument. Argument
1374 * is a string (cookie name), other types will lead to undefined behaviour.
1375 */
1376int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001377smp_fetch_rdp_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau32389b72012-04-23 23:13:20 +02001378 const struct arg *args, struct sample *smp)
1379{
1380 int bleft;
1381 const unsigned char *data;
1382
1383 if (!l4 || !l4->req)
1384 return 0;
1385
1386 smp->flags = 0;
1387 smp->type = SMP_T_CSTR;
1388
Willy Tarreau572bf902012-07-02 17:01:20 +02001389 bleft = l4->req->buf.i;
Willy Tarreau32389b72012-04-23 23:13:20 +02001390 if (bleft <= 11)
1391 goto too_short;
1392
Willy Tarreau572bf902012-07-02 17:01:20 +02001393 data = (const unsigned char *)l4->req->buf.p + 11;
Willy Tarreau32389b72012-04-23 23:13:20 +02001394 bleft -= 11;
1395
1396 if (bleft <= 7)
1397 goto too_short;
1398
1399 if (strncasecmp((const char *)data, "Cookie:", 7) != 0)
1400 goto not_cookie;
1401
1402 data += 7;
1403 bleft -= 7;
1404
1405 while (bleft > 0 && *data == ' ') {
1406 data++;
1407 bleft--;
1408 }
1409
1410 if (args) {
1411
1412 if (bleft <= args->data.str.len)
1413 goto too_short;
1414
1415 if ((data[args->data.str.len] != '=') ||
1416 strncasecmp(args->data.str.str, (const char *)data, args->data.str.len) != 0)
1417 goto not_cookie;
1418
1419 data += args->data.str.len + 1;
1420 bleft -= args->data.str.len + 1;
1421 } else {
1422 while (bleft > 0 && *data != '=') {
1423 if (*data == '\r' || *data == '\n')
1424 goto not_cookie;
1425 data++;
1426 bleft--;
1427 }
1428
1429 if (bleft < 1)
1430 goto too_short;
1431
1432 if (*data != '=')
1433 goto not_cookie;
1434
1435 data++;
1436 bleft--;
1437 }
1438
1439 /* data points to cookie value */
1440 smp->data.str.str = (char *)data;
1441 smp->data.str.len = 0;
1442
1443 while (bleft > 0 && *data != '\r') {
1444 data++;
1445 bleft--;
1446 }
1447
1448 if (bleft < 2)
1449 goto too_short;
1450
1451 if (data[0] != '\r' || data[1] != '\n')
1452 goto not_cookie;
1453
1454 smp->data.str.len = (char *)data - smp->data.str.str;
1455 smp->flags = SMP_F_VOLATILE;
1456 return 1;
1457
1458 too_short:
1459 smp->flags = SMP_F_MAY_CHANGE;
1460 not_cookie:
1461 return 0;
1462}
1463
Willy Tarreau32389b72012-04-23 23:13:20 +02001464/************************************************************************/
Willy Tarreau645513a2010-05-24 20:55:15 +02001465/* All supported ACL keywords must be declared here. */
1466/************************************************************************/
1467
Willy Tarreau32389b72012-04-23 23:13:20 +02001468/* returns either 1 or 0 depending on whether an RDP cookie is found or not */
1469static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001470acl_fetch_rdp_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001471 const struct arg *args, struct sample *smp)
Willy Tarreau32389b72012-04-23 23:13:20 +02001472{
1473 int ret;
1474
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001475 ret = smp_fetch_rdp_cookie(px, l4, l7, opt, args, smp);
Willy Tarreau32389b72012-04-23 23:13:20 +02001476
1477 if (smp->flags & SMP_F_MAY_CHANGE)
1478 return 0;
1479
1480 smp->flags = SMP_F_VOLATILE;
1481 smp->type = SMP_T_UINT;
1482 smp->data.uint = ret;
1483 return 1;
1484}
1485
1486
Willy Tarreau4a129812012-04-25 17:31:42 +02001487/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001488static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001489smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001490 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001491{
Willy Tarreau986a9d22012-08-30 21:11:38 +02001492 switch (l4->si[0].conn.addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001493 case AF_INET:
Willy Tarreau986a9d22012-08-30 21:11:38 +02001494 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].conn.addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001495 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001496 break;
1497 case AF_INET6:
Willy Tarreau986a9d22012-08-30 21:11:38 +02001498 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].conn.addr.from))->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001499 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001500 break;
1501 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001502 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001503 }
Emeric Brunf769f512010-10-22 17:14:01 +02001504
Willy Tarreau37406352012-04-23 16:16:37 +02001505 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001506 return 1;
1507}
1508
Willy Tarreaua5e37562011-12-16 17:06:15 +01001509/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001510static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001511smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001512 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001513{
Willy Tarreauf853c462012-04-23 18:53:56 +02001514 smp->type = SMP_T_UINT;
Willy Tarreau986a9d22012-08-30 21:11:38 +02001515 if (!(smp->data.uint = get_host_port(&l4->si[0].conn.addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001516 return 0;
1517
Willy Tarreau37406352012-04-23 16:16:37 +02001518 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001519 return 1;
1520}
1521
Willy Tarreau4a129812012-04-25 17:31:42 +02001522/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001523static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001524smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001525 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001526{
Willy Tarreau986a9d22012-08-30 21:11:38 +02001527 conn_get_to_addr(&l4->si[0].conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001528
Willy Tarreau986a9d22012-08-30 21:11:38 +02001529 switch (l4->si[0].conn.addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001530 case AF_INET:
Willy Tarreau986a9d22012-08-30 21:11:38 +02001531 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].conn.addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001532 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001533 break;
1534 case AF_INET6:
Willy Tarreau986a9d22012-08-30 21:11:38 +02001535 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].conn.addr.to))->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001536 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001537 break;
1538 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001539 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001540 }
Emeric Brunf769f512010-10-22 17:14:01 +02001541
Willy Tarreau37406352012-04-23 16:16:37 +02001542 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001543 return 1;
1544}
1545
Willy Tarreaua5e37562011-12-16 17:06:15 +01001546/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001547static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001548smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001549 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001550{
Willy Tarreau986a9d22012-08-30 21:11:38 +02001551 conn_get_to_addr(&l4->si[0].conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02001552
Willy Tarreauf853c462012-04-23 18:53:56 +02001553 smp->type = SMP_T_UINT;
Willy Tarreau986a9d22012-08-30 21:11:38 +02001554 if (!(smp->data.uint = get_host_port(&l4->si[0].conn.addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001555 return 0;
1556
Willy Tarreau37406352012-04-23 16:16:37 +02001557 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001558 return 1;
1559}
1560
1561static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001562smp_fetch_payload_lv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1563 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001564{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001565 unsigned int len_offset = arg_p[0].data.uint;
1566 unsigned int len_size = arg_p[1].data.uint;
1567 unsigned int buf_offset;
1568 unsigned int buf_size = 0;
Willy Tarreau7421efb2012-07-02 15:11:27 +02001569 struct channel *b;
Emericf2d7cae2010-11-05 18:13:50 +01001570 int i;
1571
1572 /* Format is (len offset, len size, buf offset) or (len offset, len size) */
1573 /* by default buf offset == len offset + len size */
1574 /* buf offset could be absolute or relative to len offset + len size if prefixed by + or - */
1575
1576 if (!l4)
1577 return 0;
1578
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001579 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001580
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001581 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001582 return 0;
1583
Willy Tarreau572bf902012-07-02 17:01:20 +02001584 if (len_offset + len_size > b->buf.i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001585 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001586
1587 for (i = 0; i < len_size; i++) {
Willy Tarreau572bf902012-07-02 17:01:20 +02001588 buf_size = (buf_size << 8) + ((unsigned char *)b->buf.p)[i + len_offset];
Emericf2d7cae2010-11-05 18:13:50 +01001589 }
1590
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001591 /* buf offset may be implicit, absolute or relative */
1592 buf_offset = len_offset + len_size;
1593 if (arg_p[2].type == ARGT_UINT)
1594 buf_offset = arg_p[2].data.uint;
1595 else if (arg_p[2].type == ARGT_SINT)
1596 buf_offset += arg_p[2].data.sint;
1597
Willy Tarreau572bf902012-07-02 17:01:20 +02001598 if (!buf_size || buf_size > b->buf.size || buf_offset + buf_size > b->buf.size) {
Willy Tarreau82ea8002012-04-25 19:19:43 +02001599 /* will never match */
1600 smp->flags = 0;
1601 return 0;
1602 }
1603
Willy Tarreau572bf902012-07-02 17:01:20 +02001604 if (buf_offset + buf_size > b->buf.i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001605 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001606
1607 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001608 smp->type = SMP_T_CBIN;
Willy Tarreau572bf902012-07-02 17:01:20 +02001609 chunk_initlen(&smp->data.str, b->buf.p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001610 smp->flags = SMP_F_VOLATILE;
Emericf2d7cae2010-11-05 18:13:50 +01001611 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001612
1613 too_short:
1614 smp->flags = SMP_F_MAY_CHANGE;
1615 return 0;
Emericf2d7cae2010-11-05 18:13:50 +01001616}
1617
1618static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001619smp_fetch_payload(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1620 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001621{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001622 unsigned int buf_offset = arg_p[0].data.uint;
1623 unsigned int buf_size = arg_p[1].data.uint;
Willy Tarreau7421efb2012-07-02 15:11:27 +02001624 struct channel *b;
Emericf2d7cae2010-11-05 18:13:50 +01001625
1626 if (!l4)
1627 return 0;
1628
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001629 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001630
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001631 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001632 return 0;
Willy Tarreau82ea8002012-04-25 19:19:43 +02001633
Willy Tarreau572bf902012-07-02 17:01:20 +02001634 if (!buf_size || buf_size > b->buf.size || buf_offset + buf_size > b->buf.size) {
Willy Tarreau82ea8002012-04-25 19:19:43 +02001635 /* will never match */
1636 smp->flags = 0;
1637 return 0;
1638 }
Emericf2d7cae2010-11-05 18:13:50 +01001639
Willy Tarreau572bf902012-07-02 17:01:20 +02001640 if (buf_offset + buf_size > b->buf.i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001641 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001642
1643 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001644 smp->type = SMP_T_CBIN;
Willy Tarreau572bf902012-07-02 17:01:20 +02001645 chunk_initlen(&smp->data.str, b->buf.p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001646 smp->flags = SMP_F_VOLATILE;
Simon Hormanab814e02011-06-24 14:50:20 +09001647 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001648
1649 too_short:
1650 smp->flags = SMP_F_MAY_CHANGE;
1651 return 0;
Simon Hormanab814e02011-06-24 14:50:20 +09001652}
1653
Willy Tarreau21d68a62012-04-20 15:52:36 +02001654/* This function is used to validate the arguments passed to a "payload" fetch
1655 * keyword. This keyword expects two positive integers, with the second one
1656 * being strictly positive. It is assumed that the types are already the correct
1657 * ones. Returns 0 on error, non-zero if OK. If <err_msg> is not NULL, it will be
1658 * filled with a pointer to an error message in case of error, that the caller
1659 * is responsible for freeing. The initial location must either be freeable or
1660 * NULL.
1661 */
1662static int val_payload(struct arg *arg, char **err_msg)
1663{
1664 if (!arg[1].data.uint) {
1665 if (err_msg)
1666 memprintf(err_msg, "payload length must be > 0");
1667 return 0;
1668 }
1669 return 1;
1670}
1671
1672/* This function is used to validate the arguments passed to a "payload_lv" fetch
1673 * keyword. This keyword allows two positive integers and an optional signed one,
1674 * with the second one being strictly positive and the third one being greater than
1675 * the opposite of the two others if negative. It is assumed that the types are
1676 * already the correct ones. Returns 0 on error, non-zero if OK. If <err_msg> is
1677 * not NULL, it will be filled with a pointer to an error message in case of
1678 * error, that the caller is responsible for freeing. The initial location must
1679 * either be freeable or NULL.
1680 */
1681static int val_payload_lv(struct arg *arg, char **err_msg)
1682{
1683 if (!arg[1].data.uint) {
1684 if (err_msg)
1685 memprintf(err_msg, "payload length must be > 0");
1686 return 0;
1687 }
1688
1689 if (arg[2].type == ARGT_SINT &&
1690 (int)(arg[0].data.uint + arg[1].data.uint + arg[2].data.sint) < 0) {
1691 if (err_msg)
1692 memprintf(err_msg, "payload offset too negative");
1693 return 0;
1694 }
1695 return 1;
1696}
1697
Willy Tarreaub6866442008-07-14 23:54:42 +02001698static struct cfg_kw_list cfg_kws = {{ },{
1699 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001700 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001701 { 0, NULL, NULL },
1702}};
1703
Willy Tarreau61612d42012-04-19 18:42:05 +02001704/* Note: must not be declared <const> as its list will be overwritten.
1705 * Please take care of keeping this list alphabetically sorted.
1706 */
Willy Tarreaub6866442008-07-14 23:54:42 +02001707static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001708 { "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 +02001709 { "dst_port", acl_parse_int, smp_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreau0d5fe142012-04-26 12:24:45 +02001710 { "payload", acl_parse_str, smp_fetch_payload, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(2,UINT,UINT), val_payload },
1711 { "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 +02001712 { "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 +02001713 { "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 +02001714 { "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 +02001715 { "src_port", acl_parse_int, smp_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreaub6866442008-07-14 23:54:42 +02001716 { NULL, NULL, NULL, NULL },
1717}};
1718
Willy Tarreau4a129812012-04-25 17:31:42 +02001719/* Note: must not be declared <const> as its list will be overwritten.
1720 * Note: fetches that may return multiple types must be declared as the lowest
1721 * common denominator, the type that can be casted into all other ones. For
1722 * instance v4/v6 must be declared v4.
1723 */
Willy Tarreau12785782012-04-27 21:37:17 +02001724static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001725 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau4a129812012-04-25 17:31:42 +02001726 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001727 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001728 { "payload", smp_fetch_payload, ARG2(2,UINT,UINT), val_payload, SMP_T_CBIN, SMP_CAP_REQ|SMP_CAP_RES },
1729 { "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 +02001730 { "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 +02001731 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001732 { NULL, NULL, 0, 0, 0 },
Willy Tarreau645513a2010-05-24 20:55:15 +02001733}};
1734
Willy Tarreaue6b98942007-10-29 01:09:36 +01001735__attribute__((constructor))
1736static void __tcp_protocol_init(void)
1737{
1738 protocol_register(&proto_tcpv4);
1739 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001740 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001741 cfg_register_keywords(&cfg_kws);
1742 acl_register_keywords(&acl_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001743}
1744
1745
1746/*
1747 * Local variables:
1748 * c-indent-level: 8
1749 * c-basic-offset: 8
1750 * End:
1751 */