blob: 04b325678aee0726ea6986f78bc75c4d9d4c2e2e [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 Tarreaua190d592012-05-20 18:35:19 +0200530 int retval = 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200531
Willy Tarreau80184712012-07-06 14:54:49 +0200532 if (conn->flags & CO_FL_ERROR)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200533 goto out_error;
534
Willy Tarreau80184712012-07-06 14:54:49 +0200535 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200536 goto out_ignore; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200537
Willy Tarreau2da156f2012-07-23 15:07:23 +0200538 /* stop here if we reached the end of data */
539 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
540 goto out_error;
541
Willy Tarreau2c6be842012-07-06 17:12:34 +0200542 /* We have no data to send to check the connection, and
543 * getsockopt() will not inform us whether the connection
544 * is still pending. So we'll reuse connect() to check the
545 * state of the socket. This has the advantage of giving us
546 * the following info :
547 * - error
548 * - connecting (EALREADY, EINPROGRESS)
549 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200550 */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200551 if ((connect(fd, conn->peeraddr, conn->peerlen) < 0)) {
552 if (errno == EALREADY || errno == EINPROGRESS)
Willy Tarreaua190d592012-05-20 18:35:19 +0200553 goto out_ignore;
554
Willy Tarreau2c6be842012-07-06 17:12:34 +0200555 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200556 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200557
Willy Tarreau2c6be842012-07-06 17:12:34 +0200558 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200559 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200560
Willy Tarreau076be252012-07-06 16:02:29 +0200561 /* The FD is ready now, we'll mark the connection as complete and
562 * forward the event to the data layer which will update the stream
563 * interface flags.
Willy Tarreaua190d592012-05-20 18:35:19 +0200564 */
Willy Tarreau80184712012-07-06 14:54:49 +0200565 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200566
567 out_wakeup:
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200568 out_ignore:
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200569 return retval;
570
571 out_error:
572 /* Write error on the file descriptor. We mark the FD as STERROR so
573 * that we don't use it anymore. The error is reported to the stream
574 * interface which will take proper action. We must not perturbate the
575 * buffer because the stream interface wants to ensure transparent
576 * connection retries.
577 */
578
Willy Tarreau80184712012-07-06 14:54:49 +0200579 conn->flags |= CO_FL_ERROR;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200580 EV_FD_REM(fd);
Willy Tarreaua190d592012-05-20 18:35:19 +0200581 retval = 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200582 goto out_wakeup;
583}
584
Willy Tarreau59b94792012-05-11 16:16:40 +0200585
Willy Tarreaue6b98942007-10-29 01:09:36 +0100586/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
587 * an error message in <err> if the message is at most <errlen> bytes long
588 * (including '\0'). The return value is composed from ERR_ABORT, ERR_WARN,
589 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
590 * was alright and that no message was returned. ERR_RETRYABLE means that an
591 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700592 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100593 * the meaning of the error, but just indicate that a message is present which
594 * should be displayed with the respective level. Last, ERR_ABORT indicates
595 * that it's pointless to try to start other listeners. No error message is
596 * returned if errlen is NULL.
597 */
598int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
599{
600 __label__ tcp_return, tcp_close_return;
601 int fd, err;
602 const char *msg = NULL;
603
604 /* ensure we never return garbage */
605 if (errmsg && errlen)
606 *errmsg = 0;
607
608 if (listener->state != LI_ASSIGNED)
609 return ERR_NONE; /* already bound */
610
611 err = ERR_NONE;
612
613 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
614 err |= ERR_RETRYABLE | ERR_ALERT;
615 msg = "cannot create listening socket";
616 goto tcp_return;
617 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100618
Willy Tarreaue6b98942007-10-29 01:09:36 +0100619 if (fd >= global.maxsock) {
620 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
621 msg = "not enough free sockets (raise '-n' parameter)";
622 goto tcp_close_return;
623 }
624
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200625 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100626 err |= ERR_FATAL | ERR_ALERT;
627 msg = "cannot make socket non-blocking";
628 goto tcp_close_return;
629 }
630
Simon Hormande072bd2011-06-24 15:11:37 +0900631 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100632 /* not fatal but should be reported */
633 msg = "cannot do so_reuseaddr";
634 err |= ERR_ALERT;
635 }
636
637 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900638 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100639
Willy Tarreaue6b98942007-10-29 01:09:36 +0100640#ifdef SO_REUSEPORT
641 /* OpenBSD supports this. As it's present in old libc versions of Linux,
642 * it might return an error that we will silently ignore.
643 */
Simon Hormande072bd2011-06-24 15:11:37 +0900644 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100645#endif
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100646#ifdef CONFIG_HAP_LINUX_TPROXY
David du Colombier65c17962012-07-13 14:34:59 +0200647 if (listener->options & LI_O_FOREIGN) {
648 switch (listener->addr.ss_family) {
649 case AF_INET:
650 if ((setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
651 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)) {
652 msg = "cannot make listening socket transparent";
653 err |= ERR_ALERT;
654 }
655 break;
656 case AF_INET6:
657 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1) {
658 msg = "cannot make listening socket transparent";
659 err |= ERR_ALERT;
660 }
661 break;
662 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100663 }
664#endif
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100665#ifdef SO_BINDTODEVICE
666 /* Note: this might fail if not CAP_NET_RAW */
667 if (listener->interface) {
668 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100669 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100670 msg = "cannot bind listener to device";
671 err |= ERR_WARN;
672 }
673 }
674#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400675#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100676 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400677 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200678 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
679 msg = "cannot set MSS";
680 err |= ERR_WARN;
681 }
682 }
683#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200684#if defined(TCP_DEFER_ACCEPT)
685 if (listener->options & LI_O_DEF_ACCEPT) {
686 /* defer accept by up to one second */
687 int accept_delay = 1;
688 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
689 msg = "cannot enable DEFER_ACCEPT";
690 err |= ERR_WARN;
691 }
692 }
693#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +0100694 if (bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
695 err |= ERR_RETRYABLE | ERR_ALERT;
696 msg = "cannot bind socket";
697 goto tcp_close_return;
698 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100699
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100700 if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100701 err |= ERR_RETRYABLE | ERR_ALERT;
702 msg = "cannot listen to socket";
703 goto tcp_close_return;
704 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100705
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400706#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200707 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900708 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200709#endif
710
Willy Tarreaue6b98942007-10-29 01:09:36 +0100711 /* the socket is ready */
712 listener->fd = fd;
713 listener->state = LI_LISTEN;
714
Willy Tarreaueabf3132008-08-29 23:36:51 +0200715 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreaueb472682010-05-28 18:46:57 +0200716 fdtab[fd].flags = FD_FL_TCP | ((listener->options & LI_O_NOLINGER) ? FD_FL_TCP_NOLING : 0);
Willy Tarreauaece46a2012-07-06 12:25:58 +0200717 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200718 fd_insert(fd);
719
Willy Tarreaue6b98942007-10-29 01:09:36 +0100720 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100721 if (msg && errlen) {
722 char pn[INET6_ADDRSTRLEN];
723
Willy Tarreau631f01c2011-09-05 00:36:48 +0200724 addr_to_str(&listener->addr, pn, sizeof(pn));
725 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100726 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100727 return err;
728
729 tcp_close_return:
730 close(fd);
731 goto tcp_return;
732}
733
734/* This function creates all TCP sockets bound to the protocol entry <proto>.
735 * It is intended to be used as the protocol's bind_all() function.
736 * The sockets will be registered but not added to any fd_set, in order not to
737 * loose them across the fork(). A call to enable_all_listeners() is needed
738 * to complete initialization. The return value is composed from ERR_*.
739 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200740static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100741{
742 struct listener *listener;
743 int err = ERR_NONE;
744
745 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200746 err |= tcp_bind_listener(listener, errmsg, errlen);
747 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100748 break;
749 }
750
751 return err;
752}
753
754/* Add listener to the list of tcpv4 listeners. The listener's state
755 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
756 * listeners is updated. This is the function to use to add a new listener.
757 */
758void tcpv4_add_listener(struct listener *listener)
759{
760 if (listener->state != LI_INIT)
761 return;
762 listener->state = LI_ASSIGNED;
763 listener->proto = &proto_tcpv4;
764 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
765 proto_tcpv4.nb_listeners++;
766}
767
768/* Add listener to the list of tcpv4 listeners. The listener's state
769 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
770 * listeners is updated. This is the function to use to add a new listener.
771 */
772void tcpv6_add_listener(struct listener *listener)
773{
774 if (listener->state != LI_INIT)
775 return;
776 listener->state = LI_ASSIGNED;
777 listener->proto = &proto_tcpv6;
778 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
779 proto_tcpv6.nb_listeners++;
780}
781
Willy Tarreauedcf6682008-11-30 23:15:34 +0100782/* This function performs the TCP request analysis on the current request. It
783 * returns 1 if the processing can continue on next analysers, or zero if it
784 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200785 * request. It relies on buffers flags, and updates s->req->analysers. The
786 * function may be called for frontend rules and backend rules. It only relies
787 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100788 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200789int tcp_inspect_request(struct session *s, struct buffer *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100790{
791 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200792 struct stksess *ts;
793 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100794 int partial;
795
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100796 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 +0100797 now_ms, __FUNCTION__,
798 s,
799 req,
800 req->rex, req->wex,
801 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100802 req->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100803 req->analysers);
804
Willy Tarreauedcf6682008-11-30 23:15:34 +0100805 /* We don't know whether we have enough data, so must proceed
806 * this way :
807 * - iterate through all rules in their declaration order
808 * - if one rule returns MISS, it means the inspect delay is
809 * not over yet, then return immediately, otherwise consider
810 * it as a non-match.
811 * - if one rule returns OK, then return OK
812 * - if one rule returns KO, then return KO
813 */
814
Willy Tarreaub824b002010-09-29 16:36:16 +0200815 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 +0200816 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100817 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200818 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100819
Willy Tarreaufb356202010-08-03 14:02:05 +0200820 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100821 int ret = ACL_PAT_PASS;
822
823 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200824 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100825 if (ret == ACL_PAT_MISS) {
Willy Tarreau520d95e2009-09-19 21:04:57 +0200826 buffer_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100827 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200828 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
829 req->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100830 return 0;
831 }
832
833 ret = acl_pass(ret);
834 if (rule->cond->pol == ACL_COND_UNLESS)
835 ret = !ret;
836 }
837
838 if (ret) {
839 /* we have a matching rule. */
840 if (rule->action == TCP_ACT_REJECT) {
841 buffer_abort(req);
842 buffer_abort(s->rep);
843 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200844
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100845 s->be->be_counters.denied_req++;
846 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200847 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200848 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200849
Willy Tarreauedcf6682008-11-30 23:15:34 +0100850 if (!(s->flags & SN_ERR_MASK))
851 s->flags |= SN_ERR_PRXCOND;
852 if (!(s->flags & SN_FINST_MASK))
853 s->flags |= SN_FINST_R;
854 return 0;
855 }
Willy Tarreau56123282010-08-06 19:06:56 +0200856 else if (rule->action == TCP_ACT_TRK_SC1) {
857 if (!s->stkctr1_entry) {
858 /* only the first valid track-sc1 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200859 * Also, note that right now we can only track SRC so we
860 * don't check how to get the key, but later we may need
861 * to consider rule->act_prm->trk_ctr.type.
862 */
863 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +0100864 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200865 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200866 session_track_stkctr1(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200867 if (s->fe != s->be)
868 s->flags |= SN_BE_TRACK_SC1;
869 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200870 }
871 }
Willy Tarreau56123282010-08-06 19:06:56 +0200872 else if (rule->action == TCP_ACT_TRK_SC2) {
873 if (!s->stkctr2_entry) {
874 /* only the first valid track-sc2 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200875 * Also, note that right now we can only track SRC so we
876 * don't check how to get the key, but later we may need
877 * to consider rule->act_prm->trk_ctr.type.
878 */
879 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +0100880 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200881 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200882 session_track_stkctr2(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200883 if (s->fe != s->be)
884 s->flags |= SN_BE_TRACK_SC2;
885 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200886 }
887 }
888 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100889 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200890 break;
891 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100892 }
893 }
894
895 /* if we get there, it means we have no rule which matches, or
896 * we have an explicit accept, so we apply the default accept.
897 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200898 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100899 req->analyse_exp = TICK_ETERNITY;
900 return 1;
901}
902
Emeric Brun97679e72010-09-23 17:56:44 +0200903/* This function performs the TCP response analysis on the current response. It
904 * returns 1 if the processing can continue on next analysers, or zero if it
905 * needs more data, encounters an error, or wants to immediately abort the
906 * response. It relies on buffers flags, and updates s->rep->analysers. The
907 * function may be called for backend rules.
908 */
909int tcp_inspect_response(struct session *s, struct buffer *rep, int an_bit)
910{
911 struct tcp_rule *rule;
912 int partial;
913
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100914 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 +0200915 now_ms, __FUNCTION__,
916 s,
917 rep,
918 rep->rex, rep->wex,
919 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100920 rep->i,
Emeric Brun97679e72010-09-23 17:56:44 +0200921 rep->analysers);
922
923 /* We don't know whether we have enough data, so must proceed
924 * this way :
925 * - iterate through all rules in their declaration order
926 * - if one rule returns MISS, it means the inspect delay is
927 * not over yet, then return immediately, otherwise consider
928 * it as a non-match.
929 * - if one rule returns OK, then return OK
930 * - if one rule returns KO, then return KO
931 */
932
933 if (rep->flags & BF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200934 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +0200935 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200936 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +0200937
938 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
939 int ret = ACL_PAT_PASS;
940
941 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200942 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Emeric Brun97679e72010-09-23 17:56:44 +0200943 if (ret == ACL_PAT_MISS) {
944 /* just set the analyser timeout once at the beginning of the response */
945 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
946 rep->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_rep.inspect_delay);
947 return 0;
948 }
949
950 ret = acl_pass(ret);
951 if (rule->cond->pol == ACL_COND_UNLESS)
952 ret = !ret;
953 }
954
955 if (ret) {
956 /* we have a matching rule. */
957 if (rule->action == TCP_ACT_REJECT) {
958 buffer_abort(rep);
959 buffer_abort(s->req);
960 rep->analysers = 0;
961
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100962 s->be->be_counters.denied_resp++;
963 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +0200964 if (s->listener->counters)
965 s->listener->counters->denied_resp++;
966
967 if (!(s->flags & SN_ERR_MASK))
968 s->flags |= SN_ERR_PRXCOND;
969 if (!(s->flags & SN_FINST_MASK))
970 s->flags |= SN_FINST_D;
971 return 0;
972 }
973 else {
974 /* otherwise accept */
975 break;
976 }
977 }
978 }
979
980 /* if we get there, it means we have no rule which matches, or
981 * we have an explicit accept, so we apply the default accept.
982 */
983 rep->analysers &= ~an_bit;
984 rep->analyse_exp = TICK_ETERNITY;
985 return 1;
986}
987
988
Willy Tarreaua5c0ab22010-05-31 10:30:33 +0200989/* This function performs the TCP layer4 analysis on the current request. It
990 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
991 * matches or if no more rule matches. It can only use rules which don't need
992 * any data.
993 */
994int tcp_exec_req_rules(struct session *s)
995{
996 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200997 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200998 struct stktable *t = NULL;
999 int result = 1;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001000 int ret;
1001
1002 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
1003 ret = ACL_PAT_PASS;
1004
1005 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001006 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001007 ret = acl_pass(ret);
1008 if (rule->cond->pol == ACL_COND_UNLESS)
1009 ret = !ret;
1010 }
1011
1012 if (ret) {
1013 /* we have a matching rule. */
1014 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001015 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001016 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001017 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001018
1019 if (!(s->flags & SN_ERR_MASK))
1020 s->flags |= SN_ERR_PRXCOND;
1021 if (!(s->flags & SN_FINST_MASK))
1022 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001023 result = 0;
1024 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001025 }
Willy Tarreau56123282010-08-06 19:06:56 +02001026 else if (rule->action == TCP_ACT_TRK_SC1) {
1027 if (!s->stkctr1_entry) {
1028 /* only the first valid track-sc1 directive applies.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001029 * Also, note that right now we can only track SRC so we
1030 * don't check how to get the key, but later we may need
1031 * to consider rule->act_prm->trk_ctr.type.
1032 */
1033 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +01001034 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001035 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001036 session_track_stkctr1(s, t, ts);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001037 }
1038 }
Willy Tarreau56123282010-08-06 19:06:56 +02001039 else if (rule->action == TCP_ACT_TRK_SC2) {
1040 if (!s->stkctr2_entry) {
1041 /* only the first valid track-sc2 directive applies.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001042 * Also, note that right now we can only track SRC so we
1043 * don't check how to get the key, but later we may need
1044 * to consider rule->act_prm->trk_ctr.type.
1045 */
1046 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +01001047 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001048 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001049 session_track_stkctr2(s, t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001050 }
1051 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001052 else {
1053 /* otherwise it's an accept */
1054 break;
1055 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001056 }
1057 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001058 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001059}
1060
Emeric Brun97679e72010-09-23 17:56:44 +02001061/* Parse a tcp-response rule. Return a negative value in case of failure */
1062static int tcp_parse_response_rule(char **args, int arg, int section_type,
1063 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001064 struct tcp_rule *rule, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001065{
1066 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001067 memprintf(err, "%s %s is only allowed in 'backend' sections",
1068 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001069 return -1;
1070 }
1071
1072 if (strcmp(args[arg], "accept") == 0) {
1073 arg++;
1074 rule->action = TCP_ACT_ACCEPT;
1075 }
1076 else if (strcmp(args[arg], "reject") == 0) {
1077 arg++;
1078 rule->action = TCP_ACT_REJECT;
1079 }
1080 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001081 memprintf(err,
1082 "'%s %s' expects 'accept' or 'reject' in %s '%s' (got '%s')",
1083 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001084 return -1;
1085 }
1086
1087 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001088 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1089 memprintf(err,
1090 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1091 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001092 return -1;
1093 }
1094 }
1095 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001096 memprintf(err,
1097 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001098 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1099 return -1;
1100 }
1101 return 0;
1102}
1103
1104
1105
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001106/* Parse a tcp-request rule. Return a negative value in case of failure */
1107static int tcp_parse_request_rule(char **args, int arg, int section_type,
1108 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001109 struct tcp_rule *rule, char **err)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001110{
1111 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001112 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1113 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001114 return -1;
1115 }
1116
1117 if (!strcmp(args[arg], "accept")) {
1118 arg++;
1119 rule->action = TCP_ACT_ACCEPT;
1120 }
1121 else if (!strcmp(args[arg], "reject")) {
1122 arg++;
1123 rule->action = TCP_ACT_REJECT;
1124 }
Willy Tarreau56123282010-08-06 19:06:56 +02001125 else if (strcmp(args[arg], "track-sc1") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001126 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001127 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001128
1129 arg++;
1130 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001131 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001132
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001133 if (ret < 0) { /* nb: warnings are not handled yet */
1134 memprintf(err,
1135 "'%s %s %s' : %s in %s '%s'",
1136 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1137 return ret;
1138 }
Willy Tarreau56123282010-08-06 19:06:56 +02001139 rule->action = TCP_ACT_TRK_SC1;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001140 }
Willy Tarreau56123282010-08-06 19:06:56 +02001141 else if (strcmp(args[arg], "track-sc2") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001142 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001143 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001144
1145 arg++;
1146 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001147 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001148
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001149 if (ret < 0) { /* nb: warnings are not handled yet */
1150 memprintf(err,
1151 "'%s %s %s' : %s in %s '%s'",
1152 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1153 return ret;
1154 }
Willy Tarreau56123282010-08-06 19:06:56 +02001155 rule->action = TCP_ACT_TRK_SC2;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001156 }
1157 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001158 memprintf(err,
1159 "'%s %s' expects 'accept', 'reject', 'track-sc1' "
1160 "or 'track-sc2' in %s '%s' (got '%s')",
1161 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001162 return -1;
1163 }
1164
1165 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001166 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1167 memprintf(err,
1168 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1169 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001170 return -1;
1171 }
1172 }
1173 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001174 memprintf(err,
1175 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001176 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1177 return -1;
1178 }
1179 return 0;
1180}
1181
Emeric Brun97679e72010-09-23 17:56:44 +02001182/* This function should be called to parse a line starting with the "tcp-response"
1183 * keyword.
1184 */
1185static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001186 struct proxy *defpx, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001187{
1188 const char *ptr = NULL;
1189 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001190 int warn = 0;
1191 int arg;
1192 struct tcp_rule *rule;
1193
1194 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001195 memprintf(err, "missing argument for '%s' in %s '%s'",
1196 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001197 return -1;
1198 }
1199
1200 if (strcmp(args[1], "inspect-delay") == 0) {
1201 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001202 memprintf(err, "%s %s is only allowed in 'backend' sections",
1203 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001204 return -1;
1205 }
1206
1207 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001208 memprintf(err,
1209 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1210 args[0], args[1], proxy_type_str(curpx), curpx->id);
1211 if (ptr)
1212 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001213 return -1;
1214 }
1215
1216 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001217 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1218 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001219 return 1;
1220 }
1221 curpx->tcp_rep.inspect_delay = val;
1222 return 0;
1223 }
1224
Simon Hormande072bd2011-06-24 15:11:37 +09001225 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001226 LIST_INIT(&rule->list);
1227 arg = 1;
1228
1229 if (strcmp(args[1], "content") == 0) {
1230 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001231 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001232 goto error;
1233
1234 if (rule->cond && (rule->cond->requires & ACL_USE_L6REQ_VOLATILE)) {
1235 struct acl *acl;
1236 const char *name;
1237
1238 acl = cond_find_require(rule->cond, ACL_USE_L6REQ_VOLATILE);
1239 name = acl ? acl->name : "(unknown)";
1240
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001241 memprintf(err,
1242 "acl '%s' involves some request-only criteria which will be ignored in '%s %s'",
1243 name, args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001244 warn++;
1245 }
1246
1247 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1248 }
1249 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001250 memprintf(err,
1251 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1252 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001253 goto error;
1254 }
1255
1256 return warn;
1257 error:
1258 free(rule);
1259 return -1;
1260}
1261
1262
Willy Tarreaub6866442008-07-14 23:54:42 +02001263/* This function should be called to parse a line starting with the "tcp-request"
1264 * keyword.
1265 */
1266static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001267 struct proxy *defpx, char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001268{
1269 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001270 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001271 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001272 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001273 struct tcp_rule *rule;
Willy Tarreaub6866442008-07-14 23:54:42 +02001274
1275 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001276 if (curpx == defpx)
1277 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1278 else
1279 memprintf(err, "missing argument for '%s' in %s '%s'",
1280 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001281 return -1;
1282 }
1283
1284 if (!strcmp(args[1], "inspect-delay")) {
1285 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001286 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1287 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001288 return -1;
1289 }
1290
Willy Tarreaub6866442008-07-14 23:54:42 +02001291 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001292 memprintf(err,
1293 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1294 args[0], args[1], proxy_type_str(curpx), curpx->id);
1295 if (ptr)
1296 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001297 return -1;
1298 }
1299
1300 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001301 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1302 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001303 return 1;
1304 }
1305 curpx->tcp_req.inspect_delay = val;
1306 return 0;
1307 }
1308
Simon Hormande072bd2011-06-24 15:11:37 +09001309 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001310 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001311 arg = 1;
1312
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001313 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001314 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001315 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001316 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001317
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001318 if (rule->cond && (rule->cond->requires & ACL_USE_RTR_ANY)) {
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001319 struct acl *acl;
1320 const char *name;
1321
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001322 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001323 name = acl ? acl->name : "(unknown)";
1324
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001325 memprintf(err,
1326 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1327 name, args[0], args[1]);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001328 warn++;
1329 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001330 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001331 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001332 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001333 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001334
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001335 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001336 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1337 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001338 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001339 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001340
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001341 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001342 goto error;
1343
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001344 if (rule->cond && (rule->cond->requires & (ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY))) {
1345 struct acl *acl;
1346 const char *name;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001347
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001348 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY);
1349 name = acl ? acl->name : "(unknown)";
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001350
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001351 if (acl->requires & (ACL_USE_L6_ANY|ACL_USE_L7_ANY)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001352 memprintf(err,
1353 "'%s %s' may not reference acl '%s' which makes use of "
1354 "payload in %s '%s'. Please use '%s content' for this.",
1355 args[0], args[1], name, proxy_type_str(curpx), curpx->id, args[0]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001356 goto error;
1357 }
1358 if (acl->requires & ACL_USE_RTR_ANY)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001359 memprintf(err,
1360 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1361 name, args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001362 warn++;
1363 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001364 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001365 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001366 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001367 if (curpx == defpx)
1368 memprintf(err,
1369 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1370 args[0], args[1]);
1371 else
1372 memprintf(err,
1373 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
1374 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001375 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001376 }
1377
Willy Tarreau1a687942010-05-23 22:40:30 +02001378 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001379 error:
1380 free(rule);
1381 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001382}
1383
Willy Tarreau645513a2010-05-24 20:55:15 +02001384
1385/************************************************************************/
Willy Tarreau32389b72012-04-23 23:13:20 +02001386/* All supported sample fetch functios must be declared here */
1387/************************************************************************/
1388
1389/* Fetch the request RDP cookie identified in the args, or any cookie if no arg
Willy Tarreau12785782012-04-27 21:37:17 +02001390 * is passed. It is usable both for ACL and for samples. Note: this decoder
Willy Tarreau32389b72012-04-23 23:13:20 +02001391 * only works with non-wrapping data. Accepts either 0 or 1 argument. Argument
1392 * is a string (cookie name), other types will lead to undefined behaviour.
1393 */
1394int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001395smp_fetch_rdp_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau32389b72012-04-23 23:13:20 +02001396 const struct arg *args, struct sample *smp)
1397{
1398 int bleft;
1399 const unsigned char *data;
1400
1401 if (!l4 || !l4->req)
1402 return 0;
1403
1404 smp->flags = 0;
1405 smp->type = SMP_T_CSTR;
1406
1407 bleft = l4->req->i;
1408 if (bleft <= 11)
1409 goto too_short;
1410
1411 data = (const unsigned char *)l4->req->p + 11;
1412 bleft -= 11;
1413
1414 if (bleft <= 7)
1415 goto too_short;
1416
1417 if (strncasecmp((const char *)data, "Cookie:", 7) != 0)
1418 goto not_cookie;
1419
1420 data += 7;
1421 bleft -= 7;
1422
1423 while (bleft > 0 && *data == ' ') {
1424 data++;
1425 bleft--;
1426 }
1427
1428 if (args) {
1429
1430 if (bleft <= args->data.str.len)
1431 goto too_short;
1432
1433 if ((data[args->data.str.len] != '=') ||
1434 strncasecmp(args->data.str.str, (const char *)data, args->data.str.len) != 0)
1435 goto not_cookie;
1436
1437 data += args->data.str.len + 1;
1438 bleft -= args->data.str.len + 1;
1439 } else {
1440 while (bleft > 0 && *data != '=') {
1441 if (*data == '\r' || *data == '\n')
1442 goto not_cookie;
1443 data++;
1444 bleft--;
1445 }
1446
1447 if (bleft < 1)
1448 goto too_short;
1449
1450 if (*data != '=')
1451 goto not_cookie;
1452
1453 data++;
1454 bleft--;
1455 }
1456
1457 /* data points to cookie value */
1458 smp->data.str.str = (char *)data;
1459 smp->data.str.len = 0;
1460
1461 while (bleft > 0 && *data != '\r') {
1462 data++;
1463 bleft--;
1464 }
1465
1466 if (bleft < 2)
1467 goto too_short;
1468
1469 if (data[0] != '\r' || data[1] != '\n')
1470 goto not_cookie;
1471
1472 smp->data.str.len = (char *)data - smp->data.str.str;
1473 smp->flags = SMP_F_VOLATILE;
1474 return 1;
1475
1476 too_short:
1477 smp->flags = SMP_F_MAY_CHANGE;
1478 not_cookie:
1479 return 0;
1480}
1481
Willy Tarreau32389b72012-04-23 23:13:20 +02001482/************************************************************************/
Willy Tarreau645513a2010-05-24 20:55:15 +02001483/* All supported ACL keywords must be declared here. */
1484/************************************************************************/
1485
Willy Tarreau32389b72012-04-23 23:13:20 +02001486/* returns either 1 or 0 depending on whether an RDP cookie is found or not */
1487static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001488acl_fetch_rdp_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001489 const struct arg *args, struct sample *smp)
Willy Tarreau32389b72012-04-23 23:13:20 +02001490{
1491 int ret;
1492
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001493 ret = smp_fetch_rdp_cookie(px, l4, l7, opt, args, smp);
Willy Tarreau32389b72012-04-23 23:13:20 +02001494
1495 if (smp->flags & SMP_F_MAY_CHANGE)
1496 return 0;
1497
1498 smp->flags = SMP_F_VOLATILE;
1499 smp->type = SMP_T_UINT;
1500 smp->data.uint = ret;
1501 return 1;
1502}
1503
1504
Willy Tarreau4a129812012-04-25 17:31:42 +02001505/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001506static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001507smp_fetch_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001508 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001509{
Willy Tarreauf4362b32011-12-16 17:49:52 +01001510 switch (l4->si[0].addr.from.ss_family) {
1511 case AF_INET:
Willy Tarreauf853c462012-04-23 18:53:56 +02001512 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].addr.from)->sin_addr;
1513 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001514 break;
1515 case AF_INET6:
Willy Tarreauf853c462012-04-23 18:53:56 +02001516 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].addr.from))->sin6_addr;
1517 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001518 break;
1519 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001520 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001521 }
Emeric Brunf769f512010-10-22 17:14:01 +02001522
Willy Tarreau37406352012-04-23 16:16:37 +02001523 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001524 return 1;
1525}
1526
Willy Tarreaua5e37562011-12-16 17:06:15 +01001527/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001528static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001529smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001530 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001531{
Willy Tarreauf853c462012-04-23 18:53:56 +02001532 smp->type = SMP_T_UINT;
1533 if (!(smp->data.uint = get_host_port(&l4->si[0].addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001534 return 0;
1535
Willy Tarreau37406352012-04-23 16:16:37 +02001536 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001537 return 1;
1538}
1539
Willy Tarreau4a129812012-04-25 17:31:42 +02001540/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001541static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001542smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001543 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001544{
Willy Tarreau59b94792012-05-11 16:16:40 +02001545 si_get_to_addr(&l4->si[0]);
Willy Tarreau645513a2010-05-24 20:55:15 +02001546
Willy Tarreauf4362b32011-12-16 17:49:52 +01001547 switch (l4->si[0].addr.to.ss_family) {
1548 case AF_INET:
Willy Tarreauf853c462012-04-23 18:53:56 +02001549 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].addr.to)->sin_addr;
1550 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001551 break;
1552 case AF_INET6:
Willy Tarreauf853c462012-04-23 18:53:56 +02001553 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].addr.to))->sin6_addr;
1554 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001555 break;
1556 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001557 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001558 }
Emeric Brunf769f512010-10-22 17:14:01 +02001559
Willy Tarreau37406352012-04-23 16:16:37 +02001560 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001561 return 1;
1562}
1563
Willy Tarreaua5e37562011-12-16 17:06:15 +01001564/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001565static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001566smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001567 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001568{
Willy Tarreau59b94792012-05-11 16:16:40 +02001569 si_get_to_addr(&l4->si[0]);
Willy Tarreau645513a2010-05-24 20:55:15 +02001570
Willy Tarreauf853c462012-04-23 18:53:56 +02001571 smp->type = SMP_T_UINT;
1572 if (!(smp->data.uint = get_host_port(&l4->si[0].addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001573 return 0;
1574
Willy Tarreau37406352012-04-23 16:16:37 +02001575 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001576 return 1;
1577}
1578
1579static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001580smp_fetch_payload_lv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1581 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001582{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001583 unsigned int len_offset = arg_p[0].data.uint;
1584 unsigned int len_size = arg_p[1].data.uint;
1585 unsigned int buf_offset;
1586 unsigned int buf_size = 0;
Emericf2d7cae2010-11-05 18:13:50 +01001587 struct buffer *b;
1588 int i;
1589
1590 /* Format is (len offset, len size, buf offset) or (len offset, len size) */
1591 /* by default buf offset == len offset + len size */
1592 /* buf offset could be absolute or relative to len offset + len size if prefixed by + or - */
1593
1594 if (!l4)
1595 return 0;
1596
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001597 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001598
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001599 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001600 return 0;
1601
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001602 if (len_offset + len_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001603 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001604
1605 for (i = 0; i < len_size; i++) {
Willy Tarreau89fa7062012-03-02 16:13:16 +01001606 buf_size = (buf_size << 8) + ((unsigned char *)b->p)[i + len_offset];
Emericf2d7cae2010-11-05 18:13:50 +01001607 }
1608
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001609 /* buf offset may be implicit, absolute or relative */
1610 buf_offset = len_offset + len_size;
1611 if (arg_p[2].type == ARGT_UINT)
1612 buf_offset = arg_p[2].data.uint;
1613 else if (arg_p[2].type == ARGT_SINT)
1614 buf_offset += arg_p[2].data.sint;
1615
Willy Tarreau82ea8002012-04-25 19:19:43 +02001616 if (!buf_size || buf_size > b->size || buf_offset + buf_size > b->size) {
1617 /* will never match */
1618 smp->flags = 0;
1619 return 0;
1620 }
1621
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001622 if (buf_offset + buf_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001623 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001624
1625 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001626 smp->type = SMP_T_CBIN;
Willy Tarreau342acb42012-04-23 22:03:39 +02001627 chunk_initlen(&smp->data.str, b->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001628 smp->flags = SMP_F_VOLATILE;
Emericf2d7cae2010-11-05 18:13:50 +01001629 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001630
1631 too_short:
1632 smp->flags = SMP_F_MAY_CHANGE;
1633 return 0;
Emericf2d7cae2010-11-05 18:13:50 +01001634}
1635
1636static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001637smp_fetch_payload(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1638 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001639{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001640 unsigned int buf_offset = arg_p[0].data.uint;
1641 unsigned int buf_size = arg_p[1].data.uint;
Emericf2d7cae2010-11-05 18:13:50 +01001642 struct buffer *b;
1643
1644 if (!l4)
1645 return 0;
1646
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001647 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001648
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001649 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001650 return 0;
Willy Tarreau82ea8002012-04-25 19:19:43 +02001651
1652 if (!buf_size || buf_size > b->size || buf_offset + buf_size > b->size) {
1653 /* will never match */
1654 smp->flags = 0;
1655 return 0;
1656 }
Emericf2d7cae2010-11-05 18:13:50 +01001657
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001658 if (buf_offset + buf_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001659 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001660
1661 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001662 smp->type = SMP_T_CBIN;
Willy Tarreau342acb42012-04-23 22:03:39 +02001663 chunk_initlen(&smp->data.str, b->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001664 smp->flags = SMP_F_VOLATILE;
Simon Hormanab814e02011-06-24 14:50:20 +09001665 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001666
1667 too_short:
1668 smp->flags = SMP_F_MAY_CHANGE;
1669 return 0;
Simon Hormanab814e02011-06-24 14:50:20 +09001670}
1671
Willy Tarreau21d68a62012-04-20 15:52:36 +02001672/* This function is used to validate the arguments passed to a "payload" fetch
1673 * keyword. This keyword expects two positive integers, with the second one
1674 * being strictly positive. It is assumed that the types are already the correct
1675 * ones. Returns 0 on error, non-zero if OK. If <err_msg> is not NULL, it will be
1676 * filled with a pointer to an error message in case of error, that the caller
1677 * is responsible for freeing. The initial location must either be freeable or
1678 * NULL.
1679 */
1680static int val_payload(struct arg *arg, char **err_msg)
1681{
1682 if (!arg[1].data.uint) {
1683 if (err_msg)
1684 memprintf(err_msg, "payload length must be > 0");
1685 return 0;
1686 }
1687 return 1;
1688}
1689
1690/* This function is used to validate the arguments passed to a "payload_lv" fetch
1691 * keyword. This keyword allows two positive integers and an optional signed one,
1692 * with the second one being strictly positive and the third one being greater than
1693 * the opposite of the two others if negative. It is assumed that the types are
1694 * already the correct ones. Returns 0 on error, non-zero if OK. If <err_msg> is
1695 * not NULL, it will be filled with a pointer to an error message in case of
1696 * error, that the caller is responsible for freeing. The initial location must
1697 * either be freeable or NULL.
1698 */
1699static int val_payload_lv(struct arg *arg, char **err_msg)
1700{
1701 if (!arg[1].data.uint) {
1702 if (err_msg)
1703 memprintf(err_msg, "payload length must be > 0");
1704 return 0;
1705 }
1706
1707 if (arg[2].type == ARGT_SINT &&
1708 (int)(arg[0].data.uint + arg[1].data.uint + arg[2].data.sint) < 0) {
1709 if (err_msg)
1710 memprintf(err_msg, "payload offset too negative");
1711 return 0;
1712 }
1713 return 1;
1714}
1715
Willy Tarreaub6866442008-07-14 23:54:42 +02001716static struct cfg_kw_list cfg_kws = {{ },{
1717 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001718 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001719 { 0, NULL, NULL },
1720}};
1721
Willy Tarreau61612d42012-04-19 18:42:05 +02001722/* Note: must not be declared <const> as its list will be overwritten.
1723 * Please take care of keeping this list alphabetically sorted.
1724 */
Willy Tarreaub6866442008-07-14 23:54:42 +02001725static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001726 { "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 +02001727 { "dst_port", acl_parse_int, smp_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreau0d5fe142012-04-26 12:24:45 +02001728 { "payload", acl_parse_str, smp_fetch_payload, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(2,UINT,UINT), val_payload },
1729 { "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 +02001730 { "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 +02001731 { "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 +02001732 { "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 +02001733 { "src_port", acl_parse_int, smp_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreaub6866442008-07-14 23:54:42 +02001734 { NULL, NULL, NULL, NULL },
1735}};
1736
Willy Tarreau4a129812012-04-25 17:31:42 +02001737/* Note: must not be declared <const> as its list will be overwritten.
1738 * Note: fetches that may return multiple types must be declared as the lowest
1739 * common denominator, the type that can be casted into all other ones. For
1740 * instance v4/v6 must be declared v4.
1741 */
Willy Tarreau12785782012-04-27 21:37:17 +02001742static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001743 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau4a129812012-04-25 17:31:42 +02001744 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001745 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001746 { "payload", smp_fetch_payload, ARG2(2,UINT,UINT), val_payload, SMP_T_CBIN, SMP_CAP_REQ|SMP_CAP_RES },
1747 { "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 +02001748 { "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 +02001749 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001750 { NULL, NULL, 0, 0, 0 },
Willy Tarreau645513a2010-05-24 20:55:15 +02001751}};
1752
Willy Tarreaue6b98942007-10-29 01:09:36 +01001753__attribute__((constructor))
1754static void __tcp_protocol_init(void)
1755{
1756 protocol_register(&proto_tcpv4);
1757 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001758 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001759 cfg_register_keywords(&cfg_kws);
1760 acl_register_keywords(&acl_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001761}
1762
1763
1764/*
1765 * Local variables:
1766 * c-indent-level: 8
1767 * c-basic-offset: 8
1768 * End:
1769 */