blob: 15822f5f4d9b4a0571c6895b8261562248c9c504 [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 Tarreaue6b98942007-10-29 01:09:36 +010042#include <proto/buffers.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020043#include <proto/connection.h>
Willy Tarreau2c6be842012-07-06 17:12:34 +020044//#include <proto/frontend.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020045#include <proto/log.h>
46#include <proto/port_range.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010047#include <proto/protocols.h>
48#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020049#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020050#include <proto/sample.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020051#include <proto/session.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020052#include <proto/sock_raw.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020053#include <proto/stick_table.h>
Willy Tarreau59b94792012-05-11 16:16:40 +020054#include <proto/stream_interface.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020055#include <proto/task.h>
Emeric Brun97679e72010-09-23 17:56:44 +020056#include <proto/buffers.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010057
Willy Tarreaue8c66af2008-01-13 18:40:14 +010058#ifdef CONFIG_HAP_CTTPROXY
59#include <import/ip_tproxy.h>
60#endif
61
Emeric Bruncf20bf12010-10-22 16:06:11 +020062static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
63static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010064
65/* Note: must not be declared <const> as its list will be overwritten */
66static struct protocol proto_tcpv4 = {
67 .name = "tcpv4",
68 .sock_domain = AF_INET,
69 .sock_type = SOCK_STREAM,
70 .sock_prot = IPPROTO_TCP,
71 .sock_family = AF_INET,
72 .sock_addrlen = sizeof(struct sockaddr_in),
73 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020074 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020075 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020076 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010077 .bind_all = tcp_bind_listeners,
78 .unbind_all = unbind_all_listeners,
79 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020080 .get_src = tcp_get_src,
81 .get_dst = tcp_get_dst,
Willy Tarreaue6b98942007-10-29 01:09:36 +010082 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
83 .nb_listeners = 0,
84};
85
86/* Note: must not be declared <const> as its list will be overwritten */
87static struct protocol proto_tcpv6 = {
88 .name = "tcpv6",
89 .sock_domain = AF_INET6,
90 .sock_type = SOCK_STREAM,
91 .sock_prot = IPPROTO_TCP,
92 .sock_family = AF_INET6,
93 .sock_addrlen = sizeof(struct sockaddr_in6),
94 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020095 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020096 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020097 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010098 .bind_all = tcp_bind_listeners,
99 .unbind_all = unbind_all_listeners,
100 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200101 .get_src = tcp_get_src,
102 .get_dst = tcp_get_dst,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100103 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
104 .nb_listeners = 0,
105};
106
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100107
David du Colombier6f5ccb12011-03-10 22:26:24 +0100108/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100109 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
110 * - 0 : ignore remote address (may even be a NULL pointer)
111 * - 1 : use provided address
112 * - 2 : use provided port
113 * - 3 : use both
114 *
115 * The function supports multiple foreign binding methods :
116 * - linux_tproxy: we directly bind to the foreign address
117 * - cttproxy: we bind to a local address then nat.
118 * The second one can be used as a fallback for the first one.
119 * This function returns 0 when everything's OK, 1 if it could not bind, to the
120 * local address, 2 if it could not bind to the foreign address.
121 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100122int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100123{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100124 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100125 int foreign_ok = 0;
126 int ret;
127
128#ifdef CONFIG_HAP_LINUX_TPROXY
129 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200130 static int ip6_transp_working = 1;
131 switch (local->ss_family) {
132 case AF_INET:
133 if (flags && ip_transp_working) {
134 if (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0
135 || setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
136 foreign_ok = 1;
137 else
138 ip_transp_working = 0;
139 }
140 break;
141 case AF_INET6:
142 if (flags && ip6_transp_working) {
143 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
144 foreign_ok = 1;
145 else
146 ip6_transp_working = 0;
147 }
148 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100149 }
150#endif
151 if (flags) {
152 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200153 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100154 switch (remote->ss_family) {
155 case AF_INET:
156 if (flags & 1)
157 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
158 if (flags & 2)
159 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
160 break;
161 case AF_INET6:
162 if (flags & 1)
163 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
164 if (flags & 2)
165 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
166 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100167 default:
168 /* we don't want to try to bind to an unknown address family */
169 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100170 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100171 }
172
Simon Hormande072bd2011-06-24 15:11:37 +0900173 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100174 if (foreign_ok) {
Willy Tarreau1b4b7ce2011-04-05 16:56:50 +0200175 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100176 if (ret < 0)
177 return 2;
178 }
179 else {
Willy Tarreau1b4b7ce2011-04-05 16:56:50 +0200180 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100181 if (ret < 0)
182 return 1;
183 }
184
185 if (!flags)
186 return 0;
187
188#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100189 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100190 struct in_tproxy itp1, itp2;
191 memset(&itp1, 0, sizeof(itp1));
192
193 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100194 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
195 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100196
197 /* set connect flag on socket */
198 itp2.op = TPROXY_FLAGS;
199 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
200
201 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
202 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
203 foreign_ok = 1;
204 }
205 }
206#endif
207 if (!foreign_ok)
208 /* we could not bind to a foreign address */
209 return 2;
210
211 return 0;
212}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100213
Willy Tarreau9650f372009-08-16 14:02:45 +0200214
215/*
Willy Tarreauac825402011-03-04 22:04:29 +0100216 * This function initiates a connection to the target assigned to this session
Willy Tarreau6471afb2011-09-23 10:54:59 +0200217 * (si->{target,addr.to}). A source address may be pointed to by si->addr.from
Willy Tarreauac825402011-03-04 22:04:29 +0100218 * in case of transparent proxying. Normal source bind addresses are still
219 * determined locally (due to the possible need of a source port).
220 * si->target may point either to a valid server or to a backend, depending
221 * on si->target.type. Only TARG_TYPE_PROXY and TARG_TYPE_SERVER are supported.
Willy Tarreaub1d67742010-03-29 19:36:59 +0200222 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200223 * It can return one of :
224 * - SN_ERR_NONE if everything's OK
225 * - SN_ERR_SRVTO if there are no more servers
226 * - SN_ERR_SRVCL if the connection was refused by the server
227 * - SN_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
228 * - SN_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
229 * - SN_ERR_INTERNAL for any other purely internal errors
230 * Additionnally, in the case of SN_ERR_RESOURCE, an emergency log will be emitted.
231 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100232
David du Colombier6f5ccb12011-03-10 22:26:24 +0100233int tcp_connect_server(struct stream_interface *si)
Willy Tarreau9650f372009-08-16 14:02:45 +0200234{
235 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100236 struct server *srv;
237 struct proxy *be;
238
239 switch (si->target.type) {
240 case TARG_TYPE_PROXY:
241 be = si->target.ptr.p;
242 srv = NULL;
243 break;
244 case TARG_TYPE_SERVER:
245 srv = si->target.ptr.s;
246 be = srv->proxy;
247 break;
248 default:
249 return SN_ERR_INTERNAL;
250 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200251
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200252 if ((fd = si->conn.t.sock.fd = socket(si->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200253 qfprintf(stderr, "Cannot get a server socket.\n");
254
255 if (errno == ENFILE)
256 send_log(be, LOG_EMERG,
257 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
258 be->id, maxfd);
259 else if (errno == EMFILE)
260 send_log(be, LOG_EMERG,
261 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
262 be->id, maxfd);
263 else if (errno == ENOBUFS || errno == ENOMEM)
264 send_log(be, LOG_EMERG,
265 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
266 be->id, maxfd);
267 /* this is a resource error */
268 return SN_ERR_RESOURCE;
269 }
270
271 if (fd >= global.maxsock) {
272 /* do not log anything there, it's a normal condition when this option
273 * is used to serialize connections to a server !
274 */
275 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
276 close(fd);
277 return SN_ERR_PRXCOND; /* it is a configuration limit */
278 }
279
280 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900281 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200282 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
283 close(fd);
284 return SN_ERR_INTERNAL;
285 }
286
287 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900288 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200289
290 if (be->options & PR_O_TCP_NOLING)
Willy Tarreauf6f82252011-11-30 18:02:24 +0100291 si->flags |= SI_FL_NOLINGER;
Willy Tarreau9650f372009-08-16 14:02:45 +0200292
293 /* allow specific binding :
294 * - server-specific at first
295 * - proxy-specific next
296 */
297 if (srv != NULL && srv->state & SRV_BIND_SRC) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200298 int ret, flags = 0;
299
Willy Tarreau9650f372009-08-16 14:02:45 +0200300 switch (srv->state & SRV_TPROXY_MASK) {
301 case SRV_TPROXY_ADDR:
Willy Tarreau9650f372009-08-16 14:02:45 +0200302 case SRV_TPROXY_CLI:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200303 flags = 3;
304 break;
Willy Tarreau9650f372009-08-16 14:02:45 +0200305 case SRV_TPROXY_CIP:
Willy Tarreau090466c2009-09-07 11:51:47 +0200306 case SRV_TPROXY_DYN:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200307 flags = 1;
Willy Tarreau9650f372009-08-16 14:02:45 +0200308 break;
309 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200310
Willy Tarreau9650f372009-08-16 14:02:45 +0200311#ifdef SO_BINDTODEVICE
312 /* Note: this might fail if not CAP_NET_RAW */
313 if (srv->iface_name)
314 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, srv->iface_name, srv->iface_len + 1);
315#endif
316
317 if (srv->sport_range) {
318 int attempts = 10; /* should be more than enough to find a spare port */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100319 struct sockaddr_storage src;
Willy Tarreau9650f372009-08-16 14:02:45 +0200320
321 ret = 1;
322 src = srv->source_addr;
323
324 do {
325 /* note: in case of retry, we may have to release a previously
326 * allocated port, hence this loop's construct.
327 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200328 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
329 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200330
331 if (!attempts)
332 break;
333 attempts--;
334
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200335 fdinfo[fd].local_port = port_range_alloc_port(srv->sport_range);
336 if (!fdinfo[fd].local_port)
Willy Tarreau9650f372009-08-16 14:02:45 +0200337 break;
338
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200339 fdinfo[fd].port_range = srv->sport_range;
Willy Tarreau86ad42c2011-08-27 12:29:07 +0200340 set_host_port(&src, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200341
Willy Tarreau6471afb2011-09-23 10:54:59 +0200342 ret = tcp_bind_socket(fd, flags, &src, &si->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200343 } while (ret != 0); /* binding NOK */
344 }
345 else {
Willy Tarreau6471afb2011-09-23 10:54:59 +0200346 ret = tcp_bind_socket(fd, flags, &srv->source_addr, &si->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200347 }
348
349 if (ret) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200350 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
351 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200352 close(fd);
353
354 if (ret == 1) {
355 Alert("Cannot bind to source address before connect() for server %s/%s. Aborting.\n",
356 be->id, srv->id);
357 send_log(be, LOG_EMERG,
358 "Cannot bind to source address before connect() for server %s/%s.\n",
359 be->id, srv->id);
360 } else {
361 Alert("Cannot bind to tproxy source address before connect() for server %s/%s. Aborting.\n",
362 be->id, srv->id);
363 send_log(be, LOG_EMERG,
364 "Cannot bind to tproxy source address before connect() for server %s/%s.\n",
365 be->id, srv->id);
366 }
367 return SN_ERR_RESOURCE;
368 }
369 }
370 else if (be->options & PR_O_BIND_SRC) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200371 int ret, flags = 0;
372
Willy Tarreau9650f372009-08-16 14:02:45 +0200373 switch (be->options & PR_O_TPXY_MASK) {
374 case PR_O_TPXY_ADDR:
Willy Tarreau9650f372009-08-16 14:02:45 +0200375 case PR_O_TPXY_CLI:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200376 flags = 3;
377 break;
Willy Tarreau9650f372009-08-16 14:02:45 +0200378 case PR_O_TPXY_CIP:
Willy Tarreau090466c2009-09-07 11:51:47 +0200379 case PR_O_TPXY_DYN:
Willy Tarreaub1d67742010-03-29 19:36:59 +0200380 flags = 1;
Willy Tarreau9650f372009-08-16 14:02:45 +0200381 break;
382 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200383
Willy Tarreau9650f372009-08-16 14:02:45 +0200384#ifdef SO_BINDTODEVICE
385 /* Note: this might fail if not CAP_NET_RAW */
386 if (be->iface_name)
387 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, be->iface_name, be->iface_len + 1);
388#endif
Willy Tarreau6471afb2011-09-23 10:54:59 +0200389 ret = tcp_bind_socket(fd, flags, &be->source_addr, &si->addr.from);
Willy Tarreau9650f372009-08-16 14:02:45 +0200390 if (ret) {
391 close(fd);
392 if (ret == 1) {
393 Alert("Cannot bind to source address before connect() for proxy %s. Aborting.\n",
394 be->id);
395 send_log(be, LOG_EMERG,
396 "Cannot bind to source address before connect() for proxy %s.\n",
397 be->id);
398 } else {
399 Alert("Cannot bind to tproxy source address before connect() for proxy %s. Aborting.\n",
400 be->id);
401 send_log(be, LOG_EMERG,
402 "Cannot bind to tproxy source address before connect() for proxy %s.\n",
403 be->id);
404 }
405 return SN_ERR_RESOURCE;
406 }
407 }
408
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400409#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200410 /* disabling tcp quick ack now allows the first request to leave the
411 * machine with the first ACK. We only do this if there are pending
412 * data in the buffer.
413 */
Willy Tarreau2e046c62012-03-01 16:08:30 +0100414 if ((be->options2 & PR_O2_SMARTCON) && si->ob->o)
Simon Hormande072bd2011-06-24 15:11:37 +0900415 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200416#endif
417
Willy Tarreaue803de22010-01-21 17:43:04 +0100418 if (global.tune.server_sndbuf)
419 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
420
421 if (global.tune.server_rcvbuf)
422 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
423
Willy Tarreau9b061e32012-04-07 18:03:52 +0200424 si->flags &= ~SI_FL_FROM_SET;
Willy Tarreau96596ae2012-06-08 22:57:36 +0200425
426 si->conn.peeraddr = (struct sockaddr *)&si->addr.to;
427 si->conn.peerlen = get_addr_len(&si->addr.to);
428
429 if ((connect(fd, si->conn.peeraddr, si->conn.peerlen) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200430 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
431
432 if (errno == EAGAIN || errno == EADDRINUSE) {
433 char *msg;
434 if (errno == EAGAIN) /* no free ports left, try again later */
435 msg = "no free ports";
436 else
437 msg = "local address already in use";
438
439 qfprintf(stderr,"Cannot connect: %s.\n",msg);
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 send_log(be, LOG_EMERG,
444 "Connect() failed for server %s/%s: %s.\n",
445 be->id, srv->id, msg);
446 return SN_ERR_RESOURCE;
447 } else if (errno == ETIMEDOUT) {
448 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200449 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
450 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200451 close(fd);
452 return SN_ERR_SRVTO;
453 } else {
454 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
455 //qfprintf(stderr,"Connect(): %d", errno);
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_SRVCL;
460 }
461 }
462
William Lallemandb7ff6a32012-03-02 14:35:21 +0100463 /* needs src ip/port for logging */
Willy Tarreau9b061e32012-04-07 18:03:52 +0200464 if (si->flags & SI_FL_SRC_ADDR)
Willy Tarreau59b94792012-05-11 16:16:40 +0200465 si_get_from_addr(si);
William Lallemandb7ff6a32012-03-02 14:35:21 +0100466
Willy Tarreau80184712012-07-06 14:54:49 +0200467 fdtab[fd].owner = &si->conn;
Willy Tarreau9650f372009-08-16 14:02:45 +0200468 fdtab[fd].flags = FD_FL_TCP | FD_FL_TCP_NODELAY;
Willy Tarreau505e34a2012-07-06 10:17:53 +0200469 si->conn.flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
Willy Tarreaufd31e532012-07-23 18:24:25 +0200470 si->conn.flags |= CO_FL_NOTIFY_SI; /* we're on a stream_interface */
Willy Tarreau9650f372009-08-16 14:02:45 +0200471
Willy Tarreau076be252012-07-06 16:02:29 +0200472 /* Prepare to send a few handshakes related to the on-wire protocol. */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200473 if (si->send_proxy_ofs)
474 si->conn.flags |= CO_FL_SI_SEND_PROXY;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200475
Willy Tarreaud2274c62012-07-06 14:29:45 +0200476 fdtab[fd].iocb = conn_fd_handler;
Willy Tarreau9650f372009-08-16 14:02:45 +0200477 fd_insert(fd);
478 EV_FD_SET(fd, DIR_WR); /* for connect status */
479
480 si->state = SI_ST_CON;
481 si->flags |= SI_FL_CAP_SPLTCP; /* TCP supports splicing */
482 si->exp = tick_add_ifset(now_ms, be->timeout.connect);
483
484 return SN_ERR_NONE; /* connection is OK */
485}
486
487
Willy Tarreau59b94792012-05-11 16:16:40 +0200488/*
489 * Retrieves the source address for the socket <fd>, with <dir> indicating
490 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
491 * success, -1 in case of error. The socket's source address is stored in
492 * <sa> for <salen> bytes.
493 */
494int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
495{
496 if (dir)
497 return getsockname(fd, sa, &salen);
498 else
499 return getpeername(fd, sa, &salen);
500}
501
502
503/*
504 * Retrieves the original destination address for the socket <fd>, with <dir>
505 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
506 * listener, if the original destination address was translated, the original
507 * address is retrieved. It returns 0 in case of success, -1 in case of error.
508 * The socket's source address is stored in <sa> for <salen> bytes.
509 */
510int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
511{
512 if (dir)
513 return getpeername(fd, sa, &salen);
514#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
515 else if (getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
516 return 0;
517#endif
518 else
519 return getsockname(fd, sa, &salen);
520}
521
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200522/* This is the callback which is set when a connection establishment is pending
523 * and we have nothing to send, or if we have an init function we want to call
Willy Tarreaua190d592012-05-20 18:35:19 +0200524 * once the connection is established. It returns zero if it needs some polling
525 * before being called again.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200526 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200527int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200528{
Willy Tarreau239d7182012-07-23 18:53:03 +0200529 int fd = conn->t.sock.fd;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200530
Willy Tarreau80184712012-07-06 14:54:49 +0200531 if (conn->flags & CO_FL_ERROR)
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200532 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200533
Willy Tarreau80184712012-07-06 14:54:49 +0200534 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200535 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200536
Willy Tarreau2da156f2012-07-23 15:07:23 +0200537 /* stop here if we reached the end of data */
538 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
539 goto out_error;
540
Willy Tarreau2c6be842012-07-06 17:12:34 +0200541 /* We have no data to send to check the connection, and
542 * getsockopt() will not inform us whether the connection
543 * is still pending. So we'll reuse connect() to check the
544 * state of the socket. This has the advantage of giving us
545 * the following info :
546 * - error
547 * - connecting (EALREADY, EINPROGRESS)
548 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200549 */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200550 if ((connect(fd, conn->peeraddr, conn->peerlen) < 0)) {
551 if (errno == EALREADY || errno == EINPROGRESS)
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200552 return 0;
Willy Tarreaua190d592012-05-20 18:35:19 +0200553
Willy Tarreau2c6be842012-07-06 17:12:34 +0200554 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200555 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200556
Willy Tarreau2c6be842012-07-06 17:12:34 +0200557 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200558 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200559
Willy Tarreau076be252012-07-06 16:02:29 +0200560 /* The FD is ready now, we'll mark the connection as complete and
561 * forward the event to the data layer which will update the stream
562 * interface flags.
Willy Tarreaua190d592012-05-20 18:35:19 +0200563 */
Willy Tarreau80184712012-07-06 14:54:49 +0200564 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200565 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200566
567 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200568 /* Write error on the file descriptor. Report it to the connection
569 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200570 */
571
Willy Tarreau80184712012-07-06 14:54:49 +0200572 conn->flags |= CO_FL_ERROR;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200573 EV_FD_REM(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200574 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200575}
576
Willy Tarreau59b94792012-05-11 16:16:40 +0200577
Willy Tarreaue6b98942007-10-29 01:09:36 +0100578/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
579 * an error message in <err> if the message is at most <errlen> bytes long
580 * (including '\0'). The return value is composed from ERR_ABORT, ERR_WARN,
581 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
582 * was alright and that no message was returned. ERR_RETRYABLE means that an
583 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700584 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100585 * the meaning of the error, but just indicate that a message is present which
586 * should be displayed with the respective level. Last, ERR_ABORT indicates
587 * that it's pointless to try to start other listeners. No error message is
588 * returned if errlen is NULL.
589 */
590int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
591{
592 __label__ tcp_return, tcp_close_return;
593 int fd, err;
594 const char *msg = NULL;
595
596 /* ensure we never return garbage */
597 if (errmsg && errlen)
598 *errmsg = 0;
599
600 if (listener->state != LI_ASSIGNED)
601 return ERR_NONE; /* already bound */
602
603 err = ERR_NONE;
604
605 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
606 err |= ERR_RETRYABLE | ERR_ALERT;
607 msg = "cannot create listening socket";
608 goto tcp_return;
609 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100610
Willy Tarreaue6b98942007-10-29 01:09:36 +0100611 if (fd >= global.maxsock) {
612 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
613 msg = "not enough free sockets (raise '-n' parameter)";
614 goto tcp_close_return;
615 }
616
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200617 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100618 err |= ERR_FATAL | ERR_ALERT;
619 msg = "cannot make socket non-blocking";
620 goto tcp_close_return;
621 }
622
Simon Hormande072bd2011-06-24 15:11:37 +0900623 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100624 /* not fatal but should be reported */
625 msg = "cannot do so_reuseaddr";
626 err |= ERR_ALERT;
627 }
628
629 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900630 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100631
Willy Tarreaue6b98942007-10-29 01:09:36 +0100632#ifdef SO_REUSEPORT
633 /* OpenBSD supports this. As it's present in old libc versions of Linux,
634 * it might return an error that we will silently ignore.
635 */
Simon Hormande072bd2011-06-24 15:11:37 +0900636 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100637#endif
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100638#ifdef CONFIG_HAP_LINUX_TPROXY
David du Colombier65c17962012-07-13 14:34:59 +0200639 if (listener->options & LI_O_FOREIGN) {
640 switch (listener->addr.ss_family) {
641 case AF_INET:
642 if ((setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
643 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)) {
644 msg = "cannot make listening socket transparent";
645 err |= ERR_ALERT;
646 }
647 break;
648 case AF_INET6:
649 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1) {
650 msg = "cannot make listening socket transparent";
651 err |= ERR_ALERT;
652 }
653 break;
654 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100655 }
656#endif
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100657#ifdef SO_BINDTODEVICE
658 /* Note: this might fail if not CAP_NET_RAW */
659 if (listener->interface) {
660 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100661 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100662 msg = "cannot bind listener to device";
663 err |= ERR_WARN;
664 }
665 }
666#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400667#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100668 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400669 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200670 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
671 msg = "cannot set MSS";
672 err |= ERR_WARN;
673 }
674 }
675#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200676#if defined(TCP_DEFER_ACCEPT)
677 if (listener->options & LI_O_DEF_ACCEPT) {
678 /* defer accept by up to one second */
679 int accept_delay = 1;
680 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
681 msg = "cannot enable DEFER_ACCEPT";
682 err |= ERR_WARN;
683 }
684 }
685#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +0100686 if (bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
687 err |= ERR_RETRYABLE | ERR_ALERT;
688 msg = "cannot bind socket";
689 goto tcp_close_return;
690 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100691
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100692 if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100693 err |= ERR_RETRYABLE | ERR_ALERT;
694 msg = "cannot listen to socket";
695 goto tcp_close_return;
696 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100697
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400698#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200699 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900700 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200701#endif
702
Willy Tarreaue6b98942007-10-29 01:09:36 +0100703 /* the socket is ready */
704 listener->fd = fd;
705 listener->state = LI_LISTEN;
706
Willy Tarreaueabf3132008-08-29 23:36:51 +0200707 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreaueb472682010-05-28 18:46:57 +0200708 fdtab[fd].flags = FD_FL_TCP | ((listener->options & LI_O_NOLINGER) ? FD_FL_TCP_NOLING : 0);
Willy Tarreauaece46a2012-07-06 12:25:58 +0200709 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200710 fd_insert(fd);
711
Willy Tarreaue6b98942007-10-29 01:09:36 +0100712 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100713 if (msg && errlen) {
714 char pn[INET6_ADDRSTRLEN];
715
Willy Tarreau631f01c2011-09-05 00:36:48 +0200716 addr_to_str(&listener->addr, pn, sizeof(pn));
717 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100718 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100719 return err;
720
721 tcp_close_return:
722 close(fd);
723 goto tcp_return;
724}
725
726/* This function creates all TCP sockets bound to the protocol entry <proto>.
727 * It is intended to be used as the protocol's bind_all() function.
728 * The sockets will be registered but not added to any fd_set, in order not to
729 * loose them across the fork(). A call to enable_all_listeners() is needed
730 * to complete initialization. The return value is composed from ERR_*.
731 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200732static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100733{
734 struct listener *listener;
735 int err = ERR_NONE;
736
737 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200738 err |= tcp_bind_listener(listener, errmsg, errlen);
739 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100740 break;
741 }
742
743 return err;
744}
745
746/* Add listener to the list of tcpv4 listeners. The listener's state
747 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
748 * listeners is updated. This is the function to use to add a new listener.
749 */
750void tcpv4_add_listener(struct listener *listener)
751{
752 if (listener->state != LI_INIT)
753 return;
754 listener->state = LI_ASSIGNED;
755 listener->proto = &proto_tcpv4;
756 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
757 proto_tcpv4.nb_listeners++;
758}
759
760/* Add listener to the list of tcpv4 listeners. The listener's state
761 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
762 * listeners is updated. This is the function to use to add a new listener.
763 */
764void tcpv6_add_listener(struct listener *listener)
765{
766 if (listener->state != LI_INIT)
767 return;
768 listener->state = LI_ASSIGNED;
769 listener->proto = &proto_tcpv6;
770 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
771 proto_tcpv6.nb_listeners++;
772}
773
Willy Tarreauedcf6682008-11-30 23:15:34 +0100774/* This function performs the TCP request analysis on the current request. It
775 * returns 1 if the processing can continue on next analysers, or zero if it
776 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200777 * request. It relies on buffers flags, and updates s->req->analysers. The
778 * function may be called for frontend rules and backend rules. It only relies
779 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100780 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200781int tcp_inspect_request(struct session *s, struct buffer *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100782{
783 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200784 struct stksess *ts;
785 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100786 int partial;
787
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100788 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 +0100789 now_ms, __FUNCTION__,
790 s,
791 req,
792 req->rex, req->wex,
793 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100794 req->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100795 req->analysers);
796
Willy Tarreauedcf6682008-11-30 23:15:34 +0100797 /* We don't know whether we have enough data, so must proceed
798 * this way :
799 * - iterate through all rules in their declaration order
800 * - if one rule returns MISS, it means the inspect delay is
801 * not over yet, then return immediately, otherwise consider
802 * it as a non-match.
803 * - if one rule returns OK, then return OK
804 * - if one rule returns KO, then return KO
805 */
806
Willy Tarreaub824b002010-09-29 16:36:16 +0200807 if (req->flags & (BF_SHUTR|BF_FULL) || !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200808 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100809 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200810 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100811
Willy Tarreaufb356202010-08-03 14:02:05 +0200812 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100813 int ret = ACL_PAT_PASS;
814
815 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200816 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100817 if (ret == ACL_PAT_MISS) {
Willy Tarreau520d95e2009-09-19 21:04:57 +0200818 buffer_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100819 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200820 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
821 req->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100822 return 0;
823 }
824
825 ret = acl_pass(ret);
826 if (rule->cond->pol == ACL_COND_UNLESS)
827 ret = !ret;
828 }
829
830 if (ret) {
831 /* we have a matching rule. */
832 if (rule->action == TCP_ACT_REJECT) {
833 buffer_abort(req);
834 buffer_abort(s->rep);
835 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200836
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100837 s->be->be_counters.denied_req++;
838 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200839 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200840 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200841
Willy Tarreauedcf6682008-11-30 23:15:34 +0100842 if (!(s->flags & SN_ERR_MASK))
843 s->flags |= SN_ERR_PRXCOND;
844 if (!(s->flags & SN_FINST_MASK))
845 s->flags |= SN_FINST_R;
846 return 0;
847 }
Willy Tarreau56123282010-08-06 19:06:56 +0200848 else if (rule->action == TCP_ACT_TRK_SC1) {
849 if (!s->stkctr1_entry) {
850 /* only the first valid track-sc1 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200851 * Also, note that right now we can only track SRC so we
852 * don't check how to get the key, but later we may need
853 * to consider rule->act_prm->trk_ctr.type.
854 */
855 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +0100856 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200857 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200858 session_track_stkctr1(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200859 if (s->fe != s->be)
860 s->flags |= SN_BE_TRACK_SC1;
861 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200862 }
863 }
Willy Tarreau56123282010-08-06 19:06:56 +0200864 else if (rule->action == TCP_ACT_TRK_SC2) {
865 if (!s->stkctr2_entry) {
866 /* only the first valid track-sc2 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;
David du Colombier4f92d322011-03-24 11:09:31 +0100872 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200873 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200874 session_track_stkctr2(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200875 if (s->fe != s->be)
876 s->flags |= SN_BE_TRACK_SC2;
877 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200878 }
879 }
880 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100881 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200882 break;
883 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100884 }
885 }
886
887 /* if we get there, it means we have no rule which matches, or
888 * we have an explicit accept, so we apply the default accept.
889 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200890 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100891 req->analyse_exp = TICK_ETERNITY;
892 return 1;
893}
894
Emeric Brun97679e72010-09-23 17:56:44 +0200895/* This function performs the TCP response analysis on the current response. It
896 * returns 1 if the processing can continue on next analysers, or zero if it
897 * needs more data, encounters an error, or wants to immediately abort the
898 * response. It relies on buffers flags, and updates s->rep->analysers. The
899 * function may be called for backend rules.
900 */
901int tcp_inspect_response(struct session *s, struct buffer *rep, int an_bit)
902{
903 struct tcp_rule *rule;
904 int partial;
905
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100906 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 +0200907 now_ms, __FUNCTION__,
908 s,
909 rep,
910 rep->rex, rep->wex,
911 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100912 rep->i,
Emeric Brun97679e72010-09-23 17:56:44 +0200913 rep->analysers);
914
915 /* We don't know whether we have enough data, so must proceed
916 * this way :
917 * - iterate through all rules in their declaration order
918 * - if one rule returns MISS, it means the inspect delay is
919 * not over yet, then return immediately, otherwise consider
920 * it as a non-match.
921 * - if one rule returns OK, then return OK
922 * - if one rule returns KO, then return KO
923 */
924
925 if (rep->flags & BF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200926 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +0200927 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200928 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +0200929
930 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
931 int ret = ACL_PAT_PASS;
932
933 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200934 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Emeric Brun97679e72010-09-23 17:56:44 +0200935 if (ret == ACL_PAT_MISS) {
936 /* just set the analyser timeout once at the beginning of the response */
937 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
938 rep->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_rep.inspect_delay);
939 return 0;
940 }
941
942 ret = acl_pass(ret);
943 if (rule->cond->pol == ACL_COND_UNLESS)
944 ret = !ret;
945 }
946
947 if (ret) {
948 /* we have a matching rule. */
949 if (rule->action == TCP_ACT_REJECT) {
950 buffer_abort(rep);
951 buffer_abort(s->req);
952 rep->analysers = 0;
953
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100954 s->be->be_counters.denied_resp++;
955 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +0200956 if (s->listener->counters)
957 s->listener->counters->denied_resp++;
958
959 if (!(s->flags & SN_ERR_MASK))
960 s->flags |= SN_ERR_PRXCOND;
961 if (!(s->flags & SN_FINST_MASK))
962 s->flags |= SN_FINST_D;
963 return 0;
964 }
965 else {
966 /* otherwise accept */
967 break;
968 }
969 }
970 }
971
972 /* if we get there, it means we have no rule which matches, or
973 * we have an explicit accept, so we apply the default accept.
974 */
975 rep->analysers &= ~an_bit;
976 rep->analyse_exp = TICK_ETERNITY;
977 return 1;
978}
979
980
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200981/* This function performs the TCP layer4 analysis on the current request. It
982 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
983 * matches or if no more rule matches. It can only use rules which don't need
984 * any data.
985 */
986int tcp_exec_req_rules(struct session *s)
987{
988 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200989 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200990 struct stktable *t = NULL;
991 int result = 1;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200992 int ret;
993
994 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
995 ret = ACL_PAT_PASS;
996
997 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200998 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200999 ret = acl_pass(ret);
1000 if (rule->cond->pol == ACL_COND_UNLESS)
1001 ret = !ret;
1002 }
1003
1004 if (ret) {
1005 /* we have a matching rule. */
1006 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001007 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001008 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001009 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001010
1011 if (!(s->flags & SN_ERR_MASK))
1012 s->flags |= SN_ERR_PRXCOND;
1013 if (!(s->flags & SN_FINST_MASK))
1014 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001015 result = 0;
1016 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001017 }
Willy Tarreau56123282010-08-06 19:06:56 +02001018 else if (rule->action == TCP_ACT_TRK_SC1) {
1019 if (!s->stkctr1_entry) {
1020 /* only the first valid track-sc1 directive applies.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001021 * Also, note that right now we can only track SRC so we
1022 * don't check how to get the key, but later we may need
1023 * to consider rule->act_prm->trk_ctr.type.
1024 */
1025 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +01001026 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001027 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001028 session_track_stkctr1(s, t, ts);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001029 }
1030 }
Willy Tarreau56123282010-08-06 19:06:56 +02001031 else if (rule->action == TCP_ACT_TRK_SC2) {
1032 if (!s->stkctr2_entry) {
1033 /* only the first valid track-sc2 directive applies.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001034 * Also, note that right now we can only track SRC so we
1035 * don't check how to get the key, but later we may need
1036 * to consider rule->act_prm->trk_ctr.type.
1037 */
1038 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +01001039 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001040 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001041 session_track_stkctr2(s, t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001042 }
1043 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001044 else {
1045 /* otherwise it's an accept */
1046 break;
1047 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001048 }
1049 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001050 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001051}
1052
Emeric Brun97679e72010-09-23 17:56:44 +02001053/* Parse a tcp-response rule. Return a negative value in case of failure */
1054static int tcp_parse_response_rule(char **args, int arg, int section_type,
1055 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001056 struct tcp_rule *rule, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001057{
1058 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001059 memprintf(err, "%s %s is only allowed in 'backend' sections",
1060 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001061 return -1;
1062 }
1063
1064 if (strcmp(args[arg], "accept") == 0) {
1065 arg++;
1066 rule->action = TCP_ACT_ACCEPT;
1067 }
1068 else if (strcmp(args[arg], "reject") == 0) {
1069 arg++;
1070 rule->action = TCP_ACT_REJECT;
1071 }
1072 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001073 memprintf(err,
1074 "'%s %s' expects 'accept' or 'reject' in %s '%s' (got '%s')",
1075 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001076 return -1;
1077 }
1078
1079 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001080 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1081 memprintf(err,
1082 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1083 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001084 return -1;
1085 }
1086 }
1087 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001088 memprintf(err,
1089 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001090 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1091 return -1;
1092 }
1093 return 0;
1094}
1095
1096
1097
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001098/* Parse a tcp-request rule. Return a negative value in case of failure */
1099static int tcp_parse_request_rule(char **args, int arg, int section_type,
1100 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001101 struct tcp_rule *rule, char **err)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001102{
1103 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001104 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1105 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001106 return -1;
1107 }
1108
1109 if (!strcmp(args[arg], "accept")) {
1110 arg++;
1111 rule->action = TCP_ACT_ACCEPT;
1112 }
1113 else if (!strcmp(args[arg], "reject")) {
1114 arg++;
1115 rule->action = TCP_ACT_REJECT;
1116 }
Willy Tarreau56123282010-08-06 19:06:56 +02001117 else if (strcmp(args[arg], "track-sc1") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001118 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001119 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001120
1121 arg++;
1122 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001123 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001124
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001125 if (ret < 0) { /* nb: warnings are not handled yet */
1126 memprintf(err,
1127 "'%s %s %s' : %s in %s '%s'",
1128 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1129 return ret;
1130 }
Willy Tarreau56123282010-08-06 19:06:56 +02001131 rule->action = TCP_ACT_TRK_SC1;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001132 }
Willy Tarreau56123282010-08-06 19:06:56 +02001133 else if (strcmp(args[arg], "track-sc2") == 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_SC2;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001148 }
1149 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001150 memprintf(err,
1151 "'%s %s' expects 'accept', 'reject', 'track-sc1' "
1152 "or 'track-sc2' in %s '%s' (got '%s')",
1153 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001154 return -1;
1155 }
1156
1157 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001158 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1159 memprintf(err,
1160 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1161 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001162 return -1;
1163 }
1164 }
1165 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001166 memprintf(err,
1167 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001168 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1169 return -1;
1170 }
1171 return 0;
1172}
1173
Emeric Brun97679e72010-09-23 17:56:44 +02001174/* This function should be called to parse a line starting with the "tcp-response"
1175 * keyword.
1176 */
1177static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001178 struct proxy *defpx, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001179{
1180 const char *ptr = NULL;
1181 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001182 int warn = 0;
1183 int arg;
1184 struct tcp_rule *rule;
1185
1186 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001187 memprintf(err, "missing argument for '%s' in %s '%s'",
1188 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001189 return -1;
1190 }
1191
1192 if (strcmp(args[1], "inspect-delay") == 0) {
1193 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001194 memprintf(err, "%s %s is only allowed in 'backend' sections",
1195 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001196 return -1;
1197 }
1198
1199 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001200 memprintf(err,
1201 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1202 args[0], args[1], proxy_type_str(curpx), curpx->id);
1203 if (ptr)
1204 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001205 return -1;
1206 }
1207
1208 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001209 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1210 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001211 return 1;
1212 }
1213 curpx->tcp_rep.inspect_delay = val;
1214 return 0;
1215 }
1216
Simon Hormande072bd2011-06-24 15:11:37 +09001217 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001218 LIST_INIT(&rule->list);
1219 arg = 1;
1220
1221 if (strcmp(args[1], "content") == 0) {
1222 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001223 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001224 goto error;
1225
1226 if (rule->cond && (rule->cond->requires & ACL_USE_L6REQ_VOLATILE)) {
1227 struct acl *acl;
1228 const char *name;
1229
1230 acl = cond_find_require(rule->cond, ACL_USE_L6REQ_VOLATILE);
1231 name = acl ? acl->name : "(unknown)";
1232
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001233 memprintf(err,
1234 "acl '%s' involves some request-only criteria which will be ignored in '%s %s'",
1235 name, args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001236 warn++;
1237 }
1238
1239 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1240 }
1241 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001242 memprintf(err,
1243 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1244 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001245 goto error;
1246 }
1247
1248 return warn;
1249 error:
1250 free(rule);
1251 return -1;
1252}
1253
1254
Willy Tarreaub6866442008-07-14 23:54:42 +02001255/* This function should be called to parse a line starting with the "tcp-request"
1256 * keyword.
1257 */
1258static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001259 struct proxy *defpx, char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001260{
1261 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001262 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001263 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001264 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001265 struct tcp_rule *rule;
Willy Tarreaub6866442008-07-14 23:54:42 +02001266
1267 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001268 if (curpx == defpx)
1269 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1270 else
1271 memprintf(err, "missing argument for '%s' in %s '%s'",
1272 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001273 return -1;
1274 }
1275
1276 if (!strcmp(args[1], "inspect-delay")) {
1277 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001278 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1279 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001280 return -1;
1281 }
1282
Willy Tarreaub6866442008-07-14 23:54:42 +02001283 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001284 memprintf(err,
1285 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1286 args[0], args[1], proxy_type_str(curpx), curpx->id);
1287 if (ptr)
1288 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001289 return -1;
1290 }
1291
1292 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001293 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1294 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001295 return 1;
1296 }
1297 curpx->tcp_req.inspect_delay = val;
1298 return 0;
1299 }
1300
Simon Hormande072bd2011-06-24 15:11:37 +09001301 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001302 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001303 arg = 1;
1304
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001305 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001306 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001307 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001308 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001309
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001310 if (rule->cond && (rule->cond->requires & ACL_USE_RTR_ANY)) {
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001311 struct acl *acl;
1312 const char *name;
1313
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001314 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001315 name = acl ? acl->name : "(unknown)";
1316
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001317 memprintf(err,
1318 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1319 name, args[0], args[1]);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001320 warn++;
1321 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001322 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001323 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001324 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001325 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001326
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001327 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001328 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1329 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001330 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001331 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001332
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001333 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001334 goto error;
1335
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001336 if (rule->cond && (rule->cond->requires & (ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY))) {
1337 struct acl *acl;
1338 const char *name;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001339
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001340 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY);
1341 name = acl ? acl->name : "(unknown)";
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001342
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001343 if (acl->requires & (ACL_USE_L6_ANY|ACL_USE_L7_ANY)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001344 memprintf(err,
1345 "'%s %s' may not reference acl '%s' which makes use of "
1346 "payload in %s '%s'. Please use '%s content' for this.",
1347 args[0], args[1], name, proxy_type_str(curpx), curpx->id, args[0]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001348 goto error;
1349 }
1350 if (acl->requires & ACL_USE_RTR_ANY)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001351 memprintf(err,
1352 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1353 name, args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001354 warn++;
1355 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001356 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001357 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001358 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001359 if (curpx == defpx)
1360 memprintf(err,
1361 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1362 args[0], args[1]);
1363 else
1364 memprintf(err,
1365 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
1366 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001367 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001368 }
1369
Willy Tarreau1a687942010-05-23 22:40:30 +02001370 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001371 error:
1372 free(rule);
1373 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001374}
1375
Willy Tarreau645513a2010-05-24 20:55:15 +02001376
1377/************************************************************************/
Willy Tarreau32389b72012-04-23 23:13:20 +02001378/* All supported sample fetch functios must be declared here */
1379/************************************************************************/
1380
1381/* Fetch the request RDP cookie identified in the args, or any cookie if no arg
Willy Tarreau12785782012-04-27 21:37:17 +02001382 * is passed. It is usable both for ACL and for samples. Note: this decoder
Willy Tarreau32389b72012-04-23 23:13:20 +02001383 * only works with non-wrapping data. Accepts either 0 or 1 argument. Argument
1384 * is a string (cookie name), other types will lead to undefined behaviour.
1385 */
1386int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001387smp_fetch_rdp_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau32389b72012-04-23 23:13:20 +02001388 const struct arg *args, struct sample *smp)
1389{
1390 int bleft;
1391 const unsigned char *data;
1392
1393 if (!l4 || !l4->req)
1394 return 0;
1395
1396 smp->flags = 0;
1397 smp->type = SMP_T_CSTR;
1398
1399 bleft = l4->req->i;
1400 if (bleft <= 11)
1401 goto too_short;
1402
1403 data = (const unsigned char *)l4->req->p + 11;
1404 bleft -= 11;
1405
1406 if (bleft <= 7)
1407 goto too_short;
1408
1409 if (strncasecmp((const char *)data, "Cookie:", 7) != 0)
1410 goto not_cookie;
1411
1412 data += 7;
1413 bleft -= 7;
1414
1415 while (bleft > 0 && *data == ' ') {
1416 data++;
1417 bleft--;
1418 }
1419
1420 if (args) {
1421
1422 if (bleft <= args->data.str.len)
1423 goto too_short;
1424
1425 if ((data[args->data.str.len] != '=') ||
1426 strncasecmp(args->data.str.str, (const char *)data, args->data.str.len) != 0)
1427 goto not_cookie;
1428
1429 data += args->data.str.len + 1;
1430 bleft -= args->data.str.len + 1;
1431 } else {
1432 while (bleft > 0 && *data != '=') {
1433 if (*data == '\r' || *data == '\n')
1434 goto not_cookie;
1435 data++;
1436 bleft--;
1437 }
1438
1439 if (bleft < 1)
1440 goto too_short;
1441
1442 if (*data != '=')
1443 goto not_cookie;
1444
1445 data++;
1446 bleft--;
1447 }
1448
1449 /* data points to cookie value */
1450 smp->data.str.str = (char *)data;
1451 smp->data.str.len = 0;
1452
1453 while (bleft > 0 && *data != '\r') {
1454 data++;
1455 bleft--;
1456 }
1457
1458 if (bleft < 2)
1459 goto too_short;
1460
1461 if (data[0] != '\r' || data[1] != '\n')
1462 goto not_cookie;
1463
1464 smp->data.str.len = (char *)data - smp->data.str.str;
1465 smp->flags = SMP_F_VOLATILE;
1466 return 1;
1467
1468 too_short:
1469 smp->flags = SMP_F_MAY_CHANGE;
1470 not_cookie:
1471 return 0;
1472}
1473
Willy Tarreau32389b72012-04-23 23:13:20 +02001474/************************************************************************/
Willy Tarreau645513a2010-05-24 20:55:15 +02001475/* All supported ACL keywords must be declared here. */
1476/************************************************************************/
1477
Willy Tarreau32389b72012-04-23 23:13:20 +02001478/* returns either 1 or 0 depending on whether an RDP cookie is found or not */
1479static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001480acl_fetch_rdp_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001481 const struct arg *args, struct sample *smp)
Willy Tarreau32389b72012-04-23 23:13:20 +02001482{
1483 int ret;
1484
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001485 ret = smp_fetch_rdp_cookie(px, l4, l7, opt, args, smp);
Willy Tarreau32389b72012-04-23 23:13:20 +02001486
1487 if (smp->flags & SMP_F_MAY_CHANGE)
1488 return 0;
1489
1490 smp->flags = SMP_F_VOLATILE;
1491 smp->type = SMP_T_UINT;
1492 smp->data.uint = ret;
1493 return 1;
1494}
1495
1496
Willy Tarreau4a129812012-04-25 17:31:42 +02001497/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001498static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001499smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001500 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001501{
Willy Tarreauf4362b32011-12-16 17:49:52 +01001502 switch (l4->si[0].addr.from.ss_family) {
1503 case AF_INET:
Willy Tarreauf853c462012-04-23 18:53:56 +02001504 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].addr.from)->sin_addr;
1505 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001506 break;
1507 case AF_INET6:
Willy Tarreauf853c462012-04-23 18:53:56 +02001508 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].addr.from))->sin6_addr;
1509 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001510 break;
1511 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001512 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001513 }
Emeric Brunf769f512010-10-22 17:14:01 +02001514
Willy Tarreau37406352012-04-23 16:16:37 +02001515 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001516 return 1;
1517}
1518
Willy Tarreaua5e37562011-12-16 17:06:15 +01001519/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001520static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001521smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001522 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001523{
Willy Tarreauf853c462012-04-23 18:53:56 +02001524 smp->type = SMP_T_UINT;
1525 if (!(smp->data.uint = get_host_port(&l4->si[0].addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001526 return 0;
1527
Willy Tarreau37406352012-04-23 16:16:37 +02001528 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001529 return 1;
1530}
1531
Willy Tarreau4a129812012-04-25 17:31:42 +02001532/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001533static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001534smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001535 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001536{
Willy Tarreau59b94792012-05-11 16:16:40 +02001537 si_get_to_addr(&l4->si[0]);
Willy Tarreau645513a2010-05-24 20:55:15 +02001538
Willy Tarreauf4362b32011-12-16 17:49:52 +01001539 switch (l4->si[0].addr.to.ss_family) {
1540 case AF_INET:
Willy Tarreauf853c462012-04-23 18:53:56 +02001541 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].addr.to)->sin_addr;
1542 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001543 break;
1544 case AF_INET6:
Willy Tarreauf853c462012-04-23 18:53:56 +02001545 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].addr.to))->sin6_addr;
1546 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001547 break;
1548 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001549 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001550 }
Emeric Brunf769f512010-10-22 17:14:01 +02001551
Willy Tarreau37406352012-04-23 16:16:37 +02001552 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001553 return 1;
1554}
1555
Willy Tarreaua5e37562011-12-16 17:06:15 +01001556/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001557static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001558smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001559 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001560{
Willy Tarreau59b94792012-05-11 16:16:40 +02001561 si_get_to_addr(&l4->si[0]);
Willy Tarreau645513a2010-05-24 20:55:15 +02001562
Willy Tarreauf853c462012-04-23 18:53:56 +02001563 smp->type = SMP_T_UINT;
1564 if (!(smp->data.uint = get_host_port(&l4->si[0].addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001565 return 0;
1566
Willy Tarreau37406352012-04-23 16:16:37 +02001567 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001568 return 1;
1569}
1570
1571static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001572smp_fetch_payload_lv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1573 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001574{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001575 unsigned int len_offset = arg_p[0].data.uint;
1576 unsigned int len_size = arg_p[1].data.uint;
1577 unsigned int buf_offset;
1578 unsigned int buf_size = 0;
Emericf2d7cae2010-11-05 18:13:50 +01001579 struct buffer *b;
1580 int i;
1581
1582 /* Format is (len offset, len size, buf offset) or (len offset, len size) */
1583 /* by default buf offset == len offset + len size */
1584 /* buf offset could be absolute or relative to len offset + len size if prefixed by + or - */
1585
1586 if (!l4)
1587 return 0;
1588
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001589 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001590
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001591 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001592 return 0;
1593
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001594 if (len_offset + len_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001595 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001596
1597 for (i = 0; i < len_size; i++) {
Willy Tarreau89fa7062012-03-02 16:13:16 +01001598 buf_size = (buf_size << 8) + ((unsigned char *)b->p)[i + len_offset];
Emericf2d7cae2010-11-05 18:13:50 +01001599 }
1600
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001601 /* buf offset may be implicit, absolute or relative */
1602 buf_offset = len_offset + len_size;
1603 if (arg_p[2].type == ARGT_UINT)
1604 buf_offset = arg_p[2].data.uint;
1605 else if (arg_p[2].type == ARGT_SINT)
1606 buf_offset += arg_p[2].data.sint;
1607
Willy Tarreau82ea8002012-04-25 19:19:43 +02001608 if (!buf_size || buf_size > b->size || buf_offset + buf_size > b->size) {
1609 /* will never match */
1610 smp->flags = 0;
1611 return 0;
1612 }
1613
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001614 if (buf_offset + buf_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001615 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001616
1617 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001618 smp->type = SMP_T_CBIN;
Willy Tarreau342acb42012-04-23 22:03:39 +02001619 chunk_initlen(&smp->data.str, b->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001620 smp->flags = SMP_F_VOLATILE;
Emericf2d7cae2010-11-05 18:13:50 +01001621 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001622
1623 too_short:
1624 smp->flags = SMP_F_MAY_CHANGE;
1625 return 0;
Emericf2d7cae2010-11-05 18:13:50 +01001626}
1627
1628static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001629smp_fetch_payload(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1630 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001631{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001632 unsigned int buf_offset = arg_p[0].data.uint;
1633 unsigned int buf_size = arg_p[1].data.uint;
Emericf2d7cae2010-11-05 18:13:50 +01001634 struct buffer *b;
1635
1636 if (!l4)
1637 return 0;
1638
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001639 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001640
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001641 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001642 return 0;
Willy Tarreau82ea8002012-04-25 19:19:43 +02001643
1644 if (!buf_size || buf_size > b->size || buf_offset + buf_size > b->size) {
1645 /* will never match */
1646 smp->flags = 0;
1647 return 0;
1648 }
Emericf2d7cae2010-11-05 18:13:50 +01001649
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001650 if (buf_offset + buf_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001651 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001652
1653 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001654 smp->type = SMP_T_CBIN;
Willy Tarreau342acb42012-04-23 22:03:39 +02001655 chunk_initlen(&smp->data.str, b->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001656 smp->flags = SMP_F_VOLATILE;
Simon Hormanab814e02011-06-24 14:50:20 +09001657 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001658
1659 too_short:
1660 smp->flags = SMP_F_MAY_CHANGE;
1661 return 0;
Simon Hormanab814e02011-06-24 14:50:20 +09001662}
1663
Willy Tarreau21d68a62012-04-20 15:52:36 +02001664/* This function is used to validate the arguments passed to a "payload" fetch
1665 * keyword. This keyword expects two positive integers, with the second one
1666 * being strictly positive. It is assumed that the types are already the correct
1667 * ones. Returns 0 on error, non-zero if OK. If <err_msg> is not NULL, it will be
1668 * filled with a pointer to an error message in case of error, that the caller
1669 * is responsible for freeing. The initial location must either be freeable or
1670 * NULL.
1671 */
1672static int val_payload(struct arg *arg, char **err_msg)
1673{
1674 if (!arg[1].data.uint) {
1675 if (err_msg)
1676 memprintf(err_msg, "payload length must be > 0");
1677 return 0;
1678 }
1679 return 1;
1680}
1681
1682/* This function is used to validate the arguments passed to a "payload_lv" fetch
1683 * keyword. This keyword allows two positive integers and an optional signed one,
1684 * with the second one being strictly positive and the third one being greater than
1685 * the opposite of the two others if negative. It is assumed that the types are
1686 * already the correct ones. Returns 0 on error, non-zero if OK. If <err_msg> is
1687 * not NULL, it will be filled with a pointer to an error message in case of
1688 * error, that the caller is responsible for freeing. The initial location must
1689 * either be freeable or NULL.
1690 */
1691static int val_payload_lv(struct arg *arg, char **err_msg)
1692{
1693 if (!arg[1].data.uint) {
1694 if (err_msg)
1695 memprintf(err_msg, "payload length must be > 0");
1696 return 0;
1697 }
1698
1699 if (arg[2].type == ARGT_SINT &&
1700 (int)(arg[0].data.uint + arg[1].data.uint + arg[2].data.sint) < 0) {
1701 if (err_msg)
1702 memprintf(err_msg, "payload offset too negative");
1703 return 0;
1704 }
1705 return 1;
1706}
1707
Willy Tarreaub6866442008-07-14 23:54:42 +02001708static struct cfg_kw_list cfg_kws = {{ },{
1709 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001710 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001711 { 0, NULL, NULL },
1712}};
1713
Willy Tarreau61612d42012-04-19 18:42:05 +02001714/* Note: must not be declared <const> as its list will be overwritten.
1715 * Please take care of keeping this list alphabetically sorted.
1716 */
Willy Tarreaub6866442008-07-14 23:54:42 +02001717static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001718 { "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 +02001719 { "dst_port", acl_parse_int, smp_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreau0d5fe142012-04-26 12:24:45 +02001720 { "payload", acl_parse_str, smp_fetch_payload, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(2,UINT,UINT), val_payload },
1721 { "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 +02001722 { "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 +02001723 { "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 +02001724 { "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 +02001725 { "src_port", acl_parse_int, smp_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreaub6866442008-07-14 23:54:42 +02001726 { NULL, NULL, NULL, NULL },
1727}};
1728
Willy Tarreau4a129812012-04-25 17:31:42 +02001729/* Note: must not be declared <const> as its list will be overwritten.
1730 * Note: fetches that may return multiple types must be declared as the lowest
1731 * common denominator, the type that can be casted into all other ones. For
1732 * instance v4/v6 must be declared v4.
1733 */
Willy Tarreau12785782012-04-27 21:37:17 +02001734static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001735 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau4a129812012-04-25 17:31:42 +02001736 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001737 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001738 { "payload", smp_fetch_payload, ARG2(2,UINT,UINT), val_payload, SMP_T_CBIN, SMP_CAP_REQ|SMP_CAP_RES },
1739 { "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 +02001740 { "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 +02001741 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001742 { NULL, NULL, 0, 0, 0 },
Willy Tarreau645513a2010-05-24 20:55:15 +02001743}};
1744
Willy Tarreaue6b98942007-10-29 01:09:36 +01001745__attribute__((constructor))
1746static void __tcp_protocol_init(void)
1747{
1748 protocol_register(&proto_tcpv4);
1749 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001750 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001751 cfg_register_keywords(&cfg_kws);
1752 acl_register_keywords(&acl_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001753}
1754
1755
1756/*
1757 * Local variables:
1758 * c-indent-level: 8
1759 * c-basic-offset: 8
1760 * End:
1761 */