blob: cebc477107d6894cb3f54adac20478d8b10dcc51 [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 Tarreau80184712012-07-06 14:54:49 +0200530 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200531 struct buffer *b = si->ob;
Willy Tarreaua190d592012-05-20 18:35:19 +0200532 int retval = 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200533
Willy Tarreau80184712012-07-06 14:54:49 +0200534 if (conn->flags & CO_FL_ERROR)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200535 goto out_error;
536
Willy Tarreau80184712012-07-06 14:54:49 +0200537 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200538 goto out_ignore; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200539
Willy Tarreau2da156f2012-07-23 15:07:23 +0200540 /* stop here if we reached the end of data */
541 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
542 goto out_error;
543
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200544 /* we might have been called just after an asynchronous shutw */
545 if (b->flags & BF_SHUTW)
546 goto out_wakeup;
547
Willy Tarreau2c6be842012-07-06 17:12:34 +0200548 /* We have no data to send to check the connection, and
549 * getsockopt() will not inform us whether the connection
550 * is still pending. So we'll reuse connect() to check the
551 * state of the socket. This has the advantage of giving us
552 * the following info :
553 * - error
554 * - connecting (EALREADY, EINPROGRESS)
555 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200556 */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200557 if ((connect(fd, conn->peeraddr, conn->peerlen) < 0)) {
558 if (errno == EALREADY || errno == EINPROGRESS)
Willy Tarreaua190d592012-05-20 18:35:19 +0200559 goto out_ignore;
560
Willy Tarreau2c6be842012-07-06 17:12:34 +0200561 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200562 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200563
Willy Tarreau2c6be842012-07-06 17:12:34 +0200564 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200565 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200566
567 /* OK we just need to indicate that we got a connection
568 * and that we wrote nothing.
569 */
570 b->flags |= BF_WRITE_NULL;
571
Willy Tarreau076be252012-07-06 16:02:29 +0200572 /* The FD is ready now, we'll mark the connection as complete and
573 * forward the event to the data layer which will update the stream
574 * interface flags.
Willy Tarreaua190d592012-05-20 18:35:19 +0200575 */
Willy Tarreau80184712012-07-06 14:54:49 +0200576 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200577 si->exp = TICK_ETERNITY;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200578
579 out_wakeup:
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200580 out_ignore:
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200581 return retval;
582
583 out_error:
584 /* Write error on the file descriptor. We mark the FD as STERROR so
585 * that we don't use it anymore. The error is reported to the stream
586 * interface which will take proper action. We must not perturbate the
587 * buffer because the stream interface wants to ensure transparent
588 * connection retries.
589 */
590
Willy Tarreau80184712012-07-06 14:54:49 +0200591 conn->flags |= CO_FL_ERROR;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200592 fdtab[fd].ev &= ~FD_POLL_STICKY;
593 EV_FD_REM(fd);
594 si->flags |= SI_FL_ERR;
Willy Tarreaua190d592012-05-20 18:35:19 +0200595 retval = 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200596 goto out_wakeup;
597}
598
Willy Tarreau59b94792012-05-11 16:16:40 +0200599
Willy Tarreaue6b98942007-10-29 01:09:36 +0100600/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
601 * an error message in <err> if the message is at most <errlen> bytes long
602 * (including '\0'). The return value is composed from ERR_ABORT, ERR_WARN,
603 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
604 * was alright and that no message was returned. ERR_RETRYABLE means that an
605 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700606 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100607 * the meaning of the error, but just indicate that a message is present which
608 * should be displayed with the respective level. Last, ERR_ABORT indicates
609 * that it's pointless to try to start other listeners. No error message is
610 * returned if errlen is NULL.
611 */
612int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
613{
614 __label__ tcp_return, tcp_close_return;
615 int fd, err;
616 const char *msg = NULL;
617
618 /* ensure we never return garbage */
619 if (errmsg && errlen)
620 *errmsg = 0;
621
622 if (listener->state != LI_ASSIGNED)
623 return ERR_NONE; /* already bound */
624
625 err = ERR_NONE;
626
627 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
628 err |= ERR_RETRYABLE | ERR_ALERT;
629 msg = "cannot create listening socket";
630 goto tcp_return;
631 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100632
Willy Tarreaue6b98942007-10-29 01:09:36 +0100633 if (fd >= global.maxsock) {
634 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
635 msg = "not enough free sockets (raise '-n' parameter)";
636 goto tcp_close_return;
637 }
638
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200639 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100640 err |= ERR_FATAL | ERR_ALERT;
641 msg = "cannot make socket non-blocking";
642 goto tcp_close_return;
643 }
644
Simon Hormande072bd2011-06-24 15:11:37 +0900645 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100646 /* not fatal but should be reported */
647 msg = "cannot do so_reuseaddr";
648 err |= ERR_ALERT;
649 }
650
651 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900652 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100653
Willy Tarreaue6b98942007-10-29 01:09:36 +0100654#ifdef SO_REUSEPORT
655 /* OpenBSD supports this. As it's present in old libc versions of Linux,
656 * it might return an error that we will silently ignore.
657 */
Simon Hormande072bd2011-06-24 15:11:37 +0900658 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100659#endif
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100660#ifdef CONFIG_HAP_LINUX_TPROXY
David du Colombier65c17962012-07-13 14:34:59 +0200661 if (listener->options & LI_O_FOREIGN) {
662 switch (listener->addr.ss_family) {
663 case AF_INET:
664 if ((setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
665 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)) {
666 msg = "cannot make listening socket transparent";
667 err |= ERR_ALERT;
668 }
669 break;
670 case AF_INET6:
671 if (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1) {
672 msg = "cannot make listening socket transparent";
673 err |= ERR_ALERT;
674 }
675 break;
676 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100677 }
678#endif
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100679#ifdef SO_BINDTODEVICE
680 /* Note: this might fail if not CAP_NET_RAW */
681 if (listener->interface) {
682 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100683 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100684 msg = "cannot bind listener to device";
685 err |= ERR_WARN;
686 }
687 }
688#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400689#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100690 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400691 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200692 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
693 msg = "cannot set MSS";
694 err |= ERR_WARN;
695 }
696 }
697#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200698#if defined(TCP_DEFER_ACCEPT)
699 if (listener->options & LI_O_DEF_ACCEPT) {
700 /* defer accept by up to one second */
701 int accept_delay = 1;
702 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
703 msg = "cannot enable DEFER_ACCEPT";
704 err |= ERR_WARN;
705 }
706 }
707#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +0100708 if (bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
709 err |= ERR_RETRYABLE | ERR_ALERT;
710 msg = "cannot bind socket";
711 goto tcp_close_return;
712 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100713
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100714 if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100715 err |= ERR_RETRYABLE | ERR_ALERT;
716 msg = "cannot listen to socket";
717 goto tcp_close_return;
718 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100719
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400720#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200721 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900722 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200723#endif
724
Willy Tarreaue6b98942007-10-29 01:09:36 +0100725 /* the socket is ready */
726 listener->fd = fd;
727 listener->state = LI_LISTEN;
728
Willy Tarreaueabf3132008-08-29 23:36:51 +0200729 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreaueb472682010-05-28 18:46:57 +0200730 fdtab[fd].flags = FD_FL_TCP | ((listener->options & LI_O_NOLINGER) ? FD_FL_TCP_NOLING : 0);
Willy Tarreauaece46a2012-07-06 12:25:58 +0200731 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200732 fd_insert(fd);
733
Willy Tarreaue6b98942007-10-29 01:09:36 +0100734 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100735 if (msg && errlen) {
736 char pn[INET6_ADDRSTRLEN];
737
Willy Tarreau631f01c2011-09-05 00:36:48 +0200738 addr_to_str(&listener->addr, pn, sizeof(pn));
739 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100740 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100741 return err;
742
743 tcp_close_return:
744 close(fd);
745 goto tcp_return;
746}
747
748/* This function creates all TCP sockets bound to the protocol entry <proto>.
749 * It is intended to be used as the protocol's bind_all() function.
750 * The sockets will be registered but not added to any fd_set, in order not to
751 * loose them across the fork(). A call to enable_all_listeners() is needed
752 * to complete initialization. The return value is composed from ERR_*.
753 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200754static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100755{
756 struct listener *listener;
757 int err = ERR_NONE;
758
759 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200760 err |= tcp_bind_listener(listener, errmsg, errlen);
761 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100762 break;
763 }
764
765 return err;
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 tcpv4_add_listener(struct listener *listener)
773{
774 if (listener->state != LI_INIT)
775 return;
776 listener->state = LI_ASSIGNED;
777 listener->proto = &proto_tcpv4;
778 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
779 proto_tcpv4.nb_listeners++;
780}
781
782/* Add listener to the list of tcpv4 listeners. The listener's state
783 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
784 * listeners is updated. This is the function to use to add a new listener.
785 */
786void tcpv6_add_listener(struct listener *listener)
787{
788 if (listener->state != LI_INIT)
789 return;
790 listener->state = LI_ASSIGNED;
791 listener->proto = &proto_tcpv6;
792 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
793 proto_tcpv6.nb_listeners++;
794}
795
Willy Tarreauedcf6682008-11-30 23:15:34 +0100796/* This function performs the TCP request analysis on the current request. It
797 * returns 1 if the processing can continue on next analysers, or zero if it
798 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +0200799 * request. It relies on buffers flags, and updates s->req->analysers. The
800 * function may be called for frontend rules and backend rules. It only relies
801 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +0100802 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200803int tcp_inspect_request(struct session *s, struct buffer *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100804{
805 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +0200806 struct stksess *ts;
807 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100808 int partial;
809
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100810 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 +0100811 now_ms, __FUNCTION__,
812 s,
813 req,
814 req->rex, req->wex,
815 req->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100816 req->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +0100817 req->analysers);
818
Willy Tarreauedcf6682008-11-30 23:15:34 +0100819 /* We don't know whether we have enough data, so must proceed
820 * this way :
821 * - iterate through all rules in their declaration order
822 * - if one rule returns MISS, it means the inspect delay is
823 * not over yet, then return immediately, otherwise consider
824 * it as a non-match.
825 * - if one rule returns OK, then return OK
826 * - if one rule returns KO, then return KO
827 */
828
Willy Tarreaub824b002010-09-29 16:36:16 +0200829 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 +0200830 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100831 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200832 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100833
Willy Tarreaufb356202010-08-03 14:02:05 +0200834 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100835 int ret = ACL_PAT_PASS;
836
837 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200838 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ | partial);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100839 if (ret == ACL_PAT_MISS) {
Willy Tarreau520d95e2009-09-19 21:04:57 +0200840 buffer_dont_connect(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100841 /* just set the request timeout once at the beginning of the request */
Willy Tarreaufb356202010-08-03 14:02:05 +0200842 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
843 req->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_req.inspect_delay);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100844 return 0;
845 }
846
847 ret = acl_pass(ret);
848 if (rule->cond->pol == ACL_COND_UNLESS)
849 ret = !ret;
850 }
851
852 if (ret) {
853 /* we have a matching rule. */
854 if (rule->action == TCP_ACT_REJECT) {
855 buffer_abort(req);
856 buffer_abort(s->rep);
857 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200858
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100859 s->be->be_counters.denied_req++;
860 s->fe->fe_counters.denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200861 if (s->listener->counters)
Willy Tarreau23968d82010-05-23 23:50:44 +0200862 s->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200863
Willy Tarreauedcf6682008-11-30 23:15:34 +0100864 if (!(s->flags & SN_ERR_MASK))
865 s->flags |= SN_ERR_PRXCOND;
866 if (!(s->flags & SN_FINST_MASK))
867 s->flags |= SN_FINST_R;
868 return 0;
869 }
Willy Tarreau56123282010-08-06 19:06:56 +0200870 else if (rule->action == TCP_ACT_TRK_SC1) {
871 if (!s->stkctr1_entry) {
872 /* only the first valid track-sc1 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200873 * Also, note that right now we can only track SRC so we
874 * don't check how to get the key, but later we may need
875 * to consider rule->act_prm->trk_ctr.type.
876 */
877 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +0100878 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200879 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200880 session_track_stkctr1(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200881 if (s->fe != s->be)
882 s->flags |= SN_BE_TRACK_SC1;
883 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200884 }
885 }
Willy Tarreau56123282010-08-06 19:06:56 +0200886 else if (rule->action == TCP_ACT_TRK_SC2) {
887 if (!s->stkctr2_entry) {
888 /* only the first valid track-sc2 directive applies.
Willy Tarreaud1f96522010-08-03 19:34:32 +0200889 * Also, note that right now we can only track SRC so we
890 * don't check how to get the key, but later we may need
891 * to consider rule->act_prm->trk_ctr.type.
892 */
893 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +0100894 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200895 if (ts) {
Willy Tarreau56123282010-08-06 19:06:56 +0200896 session_track_stkctr2(s, t, ts);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200897 if (s->fe != s->be)
898 s->flags |= SN_BE_TRACK_SC2;
899 }
Willy Tarreaud1f96522010-08-03 19:34:32 +0200900 }
901 }
902 else {
Willy Tarreauedcf6682008-11-30 23:15:34 +0100903 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +0200904 break;
905 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100906 }
907 }
908
909 /* if we get there, it means we have no rule which matches, or
910 * we have an explicit accept, so we apply the default accept.
911 */
Willy Tarreau3a816292009-07-07 10:55:49 +0200912 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +0100913 req->analyse_exp = TICK_ETERNITY;
914 return 1;
915}
916
Emeric Brun97679e72010-09-23 17:56:44 +0200917/* This function performs the TCP response analysis on the current response. It
918 * returns 1 if the processing can continue on next analysers, or zero if it
919 * needs more data, encounters an error, or wants to immediately abort the
920 * response. It relies on buffers flags, and updates s->rep->analysers. The
921 * function may be called for backend rules.
922 */
923int tcp_inspect_response(struct session *s, struct buffer *rep, int an_bit)
924{
925 struct tcp_rule *rule;
926 int partial;
927
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100928 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 +0200929 now_ms, __FUNCTION__,
930 s,
931 rep,
932 rep->rex, rep->wex,
933 rep->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100934 rep->i,
Emeric Brun97679e72010-09-23 17:56:44 +0200935 rep->analysers);
936
937 /* We don't know whether we have enough data, so must proceed
938 * this way :
939 * - iterate through all rules in their declaration order
940 * - if one rule returns MISS, it means the inspect delay is
941 * not over yet, then return immediately, otherwise consider
942 * it as a non-match.
943 * - if one rule returns OK, then return OK
944 * - if one rule returns KO, then return KO
945 */
946
947 if (rep->flags & BF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200948 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +0200949 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200950 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +0200951
952 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
953 int ret = ACL_PAT_PASS;
954
955 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200956 ret = acl_exec_cond(rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_RES | partial);
Emeric Brun97679e72010-09-23 17:56:44 +0200957 if (ret == ACL_PAT_MISS) {
958 /* just set the analyser timeout once at the beginning of the response */
959 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
960 rep->analyse_exp = tick_add_ifset(now_ms, s->be->tcp_rep.inspect_delay);
961 return 0;
962 }
963
964 ret = acl_pass(ret);
965 if (rule->cond->pol == ACL_COND_UNLESS)
966 ret = !ret;
967 }
968
969 if (ret) {
970 /* we have a matching rule. */
971 if (rule->action == TCP_ACT_REJECT) {
972 buffer_abort(rep);
973 buffer_abort(s->req);
974 rep->analysers = 0;
975
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100976 s->be->be_counters.denied_resp++;
977 s->fe->fe_counters.denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +0200978 if (s->listener->counters)
979 s->listener->counters->denied_resp++;
980
981 if (!(s->flags & SN_ERR_MASK))
982 s->flags |= SN_ERR_PRXCOND;
983 if (!(s->flags & SN_FINST_MASK))
984 s->flags |= SN_FINST_D;
985 return 0;
986 }
987 else {
988 /* otherwise accept */
989 break;
990 }
991 }
992 }
993
994 /* if we get there, it means we have no rule which matches, or
995 * we have an explicit accept, so we apply the default accept.
996 */
997 rep->analysers &= ~an_bit;
998 rep->analyse_exp = TICK_ETERNITY;
999 return 1;
1000}
1001
1002
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001003/* This function performs the TCP layer4 analysis on the current request. It
1004 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1005 * matches or if no more rule matches. It can only use rules which don't need
1006 * any data.
1007 */
1008int tcp_exec_req_rules(struct session *s)
1009{
1010 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001011 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001012 struct stktable *t = NULL;
1013 int result = 1;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001014 int ret;
1015
1016 list_for_each_entry(rule, &s->fe->tcp_req.l4_rules, list) {
1017 ret = ACL_PAT_PASS;
1018
1019 if (rule->cond) {
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001020 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001021 ret = acl_pass(ret);
1022 if (rule->cond->pol == ACL_COND_UNLESS)
1023 ret = !ret;
1024 }
1025
1026 if (ret) {
1027 /* we have a matching rule. */
1028 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001029 s->fe->fe_counters.denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001030 if (s->listener->counters)
Willy Tarreau2799e982010-06-05 15:43:21 +02001031 s->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001032
1033 if (!(s->flags & SN_ERR_MASK))
1034 s->flags |= SN_ERR_PRXCOND;
1035 if (!(s->flags & SN_FINST_MASK))
1036 s->flags |= SN_FINST_R;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001037 result = 0;
1038 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001039 }
Willy Tarreau56123282010-08-06 19:06:56 +02001040 else if (rule->action == TCP_ACT_TRK_SC1) {
1041 if (!s->stkctr1_entry) {
1042 /* only the first valid track-sc1 directive applies.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001043 * Also, note that right now we can only track SRC so we
1044 * don't check how to get the key, but later we may need
1045 * to consider rule->act_prm->trk_ctr.type.
1046 */
1047 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +01001048 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001049 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001050 session_track_stkctr1(s, t, ts);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001051 }
1052 }
Willy Tarreau56123282010-08-06 19:06:56 +02001053 else if (rule->action == TCP_ACT_TRK_SC2) {
1054 if (!s->stkctr2_entry) {
1055 /* only the first valid track-sc2 directive applies.
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001056 * Also, note that right now we can only track SRC so we
1057 * don't check how to get the key, but later we may need
1058 * to consider rule->act_prm->trk_ctr.type.
1059 */
1060 t = rule->act_prm.trk_ctr.table.t;
David du Colombier4f92d322011-03-24 11:09:31 +01001061 ts = stktable_get_entry(t, tcp_src_to_stktable_key(s));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001062 if (ts)
Willy Tarreau56123282010-08-06 19:06:56 +02001063 session_track_stkctr2(s, t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001064 }
1065 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001066 else {
1067 /* otherwise it's an accept */
1068 break;
1069 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001070 }
1071 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001072 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001073}
1074
Emeric Brun97679e72010-09-23 17:56:44 +02001075/* Parse a tcp-response rule. Return a negative value in case of failure */
1076static int tcp_parse_response_rule(char **args, int arg, int section_type,
1077 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001078 struct tcp_rule *rule, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001079{
1080 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001081 memprintf(err, "%s %s is only allowed in 'backend' sections",
1082 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001083 return -1;
1084 }
1085
1086 if (strcmp(args[arg], "accept") == 0) {
1087 arg++;
1088 rule->action = TCP_ACT_ACCEPT;
1089 }
1090 else if (strcmp(args[arg], "reject") == 0) {
1091 arg++;
1092 rule->action = TCP_ACT_REJECT;
1093 }
1094 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001095 memprintf(err,
1096 "'%s %s' expects 'accept' or 'reject' in %s '%s' (got '%s')",
1097 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Emeric Brun97679e72010-09-23 17:56:44 +02001098 return -1;
1099 }
1100
1101 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001102 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1103 memprintf(err,
1104 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1105 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001106 return -1;
1107 }
1108 }
1109 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001110 memprintf(err,
1111 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001112 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1113 return -1;
1114 }
1115 return 0;
1116}
1117
1118
1119
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001120/* Parse a tcp-request rule. Return a negative value in case of failure */
1121static int tcp_parse_request_rule(char **args, int arg, int section_type,
1122 struct proxy *curpx, struct proxy *defpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001123 struct tcp_rule *rule, char **err)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001124{
1125 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001126 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1127 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001128 return -1;
1129 }
1130
1131 if (!strcmp(args[arg], "accept")) {
1132 arg++;
1133 rule->action = TCP_ACT_ACCEPT;
1134 }
1135 else if (!strcmp(args[arg], "reject")) {
1136 arg++;
1137 rule->action = TCP_ACT_REJECT;
1138 }
Willy Tarreau56123282010-08-06 19:06:56 +02001139 else if (strcmp(args[arg], "track-sc1") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001140 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001141 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001142
1143 arg++;
1144 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001145 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001146
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001147 if (ret < 0) { /* nb: warnings are not handled yet */
1148 memprintf(err,
1149 "'%s %s %s' : %s in %s '%s'",
1150 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1151 return ret;
1152 }
Willy Tarreau56123282010-08-06 19:06:56 +02001153 rule->action = TCP_ACT_TRK_SC1;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001154 }
Willy Tarreau56123282010-08-06 19:06:56 +02001155 else if (strcmp(args[arg], "track-sc2") == 0) {
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001156 int ret;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001157 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001158
1159 arg++;
1160 ret = parse_track_counters(args, &arg, section_type, curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001161 &rule->act_prm.trk_ctr, defpx, err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001162
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001163 if (ret < 0) { /* nb: warnings are not handled yet */
1164 memprintf(err,
1165 "'%s %s %s' : %s in %s '%s'",
1166 args[0], args[1], args[kw], *err, proxy_type_str(curpx), curpx->id);
1167 return ret;
1168 }
Willy Tarreau56123282010-08-06 19:06:56 +02001169 rule->action = TCP_ACT_TRK_SC2;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001170 }
1171 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001172 memprintf(err,
1173 "'%s %s' expects 'accept', 'reject', 'track-sc1' "
1174 "or 'track-sc2' in %s '%s' (got '%s')",
1175 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001176 return -1;
1177 }
1178
1179 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001180 if ((rule->cond = build_acl_cond(NULL, 0, curpx, (const char **)args+arg, err)) == NULL) {
1181 memprintf(err,
1182 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1183 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001184 return -1;
1185 }
1186 }
1187 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001188 memprintf(err,
1189 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001190 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1191 return -1;
1192 }
1193 return 0;
1194}
1195
Emeric Brun97679e72010-09-23 17:56:44 +02001196/* This function should be called to parse a line starting with the "tcp-response"
1197 * keyword.
1198 */
1199static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001200 struct proxy *defpx, char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001201{
1202 const char *ptr = NULL;
1203 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001204 int warn = 0;
1205 int arg;
1206 struct tcp_rule *rule;
1207
1208 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001209 memprintf(err, "missing argument for '%s' in %s '%s'",
1210 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001211 return -1;
1212 }
1213
1214 if (strcmp(args[1], "inspect-delay") == 0) {
1215 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001216 memprintf(err, "%s %s is only allowed in 'backend' sections",
1217 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001218 return -1;
1219 }
1220
1221 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001222 memprintf(err,
1223 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1224 args[0], args[1], proxy_type_str(curpx), curpx->id);
1225 if (ptr)
1226 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001227 return -1;
1228 }
1229
1230 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001231 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1232 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001233 return 1;
1234 }
1235 curpx->tcp_rep.inspect_delay = val;
1236 return 0;
1237 }
1238
Simon Hormande072bd2011-06-24 15:11:37 +09001239 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001240 LIST_INIT(&rule->list);
1241 arg = 1;
1242
1243 if (strcmp(args[1], "content") == 0) {
1244 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001245 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001246 goto error;
1247
1248 if (rule->cond && (rule->cond->requires & ACL_USE_L6REQ_VOLATILE)) {
1249 struct acl *acl;
1250 const char *name;
1251
1252 acl = cond_find_require(rule->cond, ACL_USE_L6REQ_VOLATILE);
1253 name = acl ? acl->name : "(unknown)";
1254
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001255 memprintf(err,
1256 "acl '%s' involves some request-only criteria which will be ignored in '%s %s'",
1257 name, args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001258 warn++;
1259 }
1260
1261 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1262 }
1263 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001264 memprintf(err,
1265 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1266 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001267 goto error;
1268 }
1269
1270 return warn;
1271 error:
1272 free(rule);
1273 return -1;
1274}
1275
1276
Willy Tarreaub6866442008-07-14 23:54:42 +02001277/* This function should be called to parse a line starting with the "tcp-request"
1278 * keyword.
1279 */
1280static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001281 struct proxy *defpx, char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001282{
1283 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001284 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001285 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001286 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001287 struct tcp_rule *rule;
Willy Tarreaub6866442008-07-14 23:54:42 +02001288
1289 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001290 if (curpx == defpx)
1291 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1292 else
1293 memprintf(err, "missing argument for '%s' in %s '%s'",
1294 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001295 return -1;
1296 }
1297
1298 if (!strcmp(args[1], "inspect-delay")) {
1299 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001300 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1301 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001302 return -1;
1303 }
1304
Willy Tarreaub6866442008-07-14 23:54:42 +02001305 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001306 memprintf(err,
1307 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1308 args[0], args[1], proxy_type_str(curpx), curpx->id);
1309 if (ptr)
1310 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001311 return -1;
1312 }
1313
1314 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001315 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1316 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001317 return 1;
1318 }
1319 curpx->tcp_req.inspect_delay = val;
1320 return 0;
1321 }
1322
Simon Hormande072bd2011-06-24 15:11:37 +09001323 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001324 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001325 arg = 1;
1326
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001327 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001328 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001329 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001330 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001331
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001332 if (rule->cond && (rule->cond->requires & ACL_USE_RTR_ANY)) {
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001333 struct acl *acl;
1334 const char *name;
1335
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001336 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001337 name = acl ? acl->name : "(unknown)";
1338
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001339 memprintf(err,
1340 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1341 name, args[0], args[1]);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001342 warn++;
1343 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001344 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001345 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001346 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001347 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001348
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001349 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001350 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1351 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001352 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001353 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001354
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001355 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001356 goto error;
1357
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001358 if (rule->cond && (rule->cond->requires & (ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY))) {
1359 struct acl *acl;
1360 const char *name;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001361
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001362 acl = cond_find_require(rule->cond, ACL_USE_RTR_ANY|ACL_USE_L6_ANY|ACL_USE_L7_ANY);
1363 name = acl ? acl->name : "(unknown)";
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001364
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001365 if (acl->requires & (ACL_USE_L6_ANY|ACL_USE_L7_ANY)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001366 memprintf(err,
1367 "'%s %s' may not reference acl '%s' which makes use of "
1368 "payload in %s '%s'. Please use '%s content' for this.",
1369 args[0], args[1], name, proxy_type_str(curpx), curpx->id, args[0]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001370 goto error;
1371 }
1372 if (acl->requires & ACL_USE_RTR_ANY)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001373 memprintf(err,
1374 "acl '%s' involves some response-only criteria which will be ignored in '%s %s'",
1375 name, args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001376 warn++;
1377 }
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001378 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001379 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001380 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001381 if (curpx == defpx)
1382 memprintf(err,
1383 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1384 args[0], args[1]);
1385 else
1386 memprintf(err,
1387 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
1388 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001389 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001390 }
1391
Willy Tarreau1a687942010-05-23 22:40:30 +02001392 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001393 error:
1394 free(rule);
1395 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001396}
1397
Willy Tarreau645513a2010-05-24 20:55:15 +02001398
1399/************************************************************************/
Willy Tarreau32389b72012-04-23 23:13:20 +02001400/* All supported sample fetch functios must be declared here */
1401/************************************************************************/
1402
1403/* Fetch the request RDP cookie identified in the args, or any cookie if no arg
Willy Tarreau12785782012-04-27 21:37:17 +02001404 * is passed. It is usable both for ACL and for samples. Note: this decoder
Willy Tarreau32389b72012-04-23 23:13:20 +02001405 * only works with non-wrapping data. Accepts either 0 or 1 argument. Argument
1406 * is a string (cookie name), other types will lead to undefined behaviour.
1407 */
1408int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001409smp_fetch_rdp_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau32389b72012-04-23 23:13:20 +02001410 const struct arg *args, struct sample *smp)
1411{
1412 int bleft;
1413 const unsigned char *data;
1414
1415 if (!l4 || !l4->req)
1416 return 0;
1417
1418 smp->flags = 0;
1419 smp->type = SMP_T_CSTR;
1420
1421 bleft = l4->req->i;
1422 if (bleft <= 11)
1423 goto too_short;
1424
1425 data = (const unsigned char *)l4->req->p + 11;
1426 bleft -= 11;
1427
1428 if (bleft <= 7)
1429 goto too_short;
1430
1431 if (strncasecmp((const char *)data, "Cookie:", 7) != 0)
1432 goto not_cookie;
1433
1434 data += 7;
1435 bleft -= 7;
1436
1437 while (bleft > 0 && *data == ' ') {
1438 data++;
1439 bleft--;
1440 }
1441
1442 if (args) {
1443
1444 if (bleft <= args->data.str.len)
1445 goto too_short;
1446
1447 if ((data[args->data.str.len] != '=') ||
1448 strncasecmp(args->data.str.str, (const char *)data, args->data.str.len) != 0)
1449 goto not_cookie;
1450
1451 data += args->data.str.len + 1;
1452 bleft -= args->data.str.len + 1;
1453 } else {
1454 while (bleft > 0 && *data != '=') {
1455 if (*data == '\r' || *data == '\n')
1456 goto not_cookie;
1457 data++;
1458 bleft--;
1459 }
1460
1461 if (bleft < 1)
1462 goto too_short;
1463
1464 if (*data != '=')
1465 goto not_cookie;
1466
1467 data++;
1468 bleft--;
1469 }
1470
1471 /* data points to cookie value */
1472 smp->data.str.str = (char *)data;
1473 smp->data.str.len = 0;
1474
1475 while (bleft > 0 && *data != '\r') {
1476 data++;
1477 bleft--;
1478 }
1479
1480 if (bleft < 2)
1481 goto too_short;
1482
1483 if (data[0] != '\r' || data[1] != '\n')
1484 goto not_cookie;
1485
1486 smp->data.str.len = (char *)data - smp->data.str.str;
1487 smp->flags = SMP_F_VOLATILE;
1488 return 1;
1489
1490 too_short:
1491 smp->flags = SMP_F_MAY_CHANGE;
1492 not_cookie:
1493 return 0;
1494}
1495
Willy Tarreau32389b72012-04-23 23:13:20 +02001496/************************************************************************/
Willy Tarreau645513a2010-05-24 20:55:15 +02001497/* All supported ACL keywords must be declared here. */
1498/************************************************************************/
1499
Willy Tarreau32389b72012-04-23 23:13:20 +02001500/* returns either 1 or 0 depending on whether an RDP cookie is found or not */
1501static int
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001502acl_fetch_rdp_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001503 const struct arg *args, struct sample *smp)
Willy Tarreau32389b72012-04-23 23:13:20 +02001504{
1505 int ret;
1506
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001507 ret = smp_fetch_rdp_cookie(px, l4, l7, opt, args, smp);
Willy Tarreau32389b72012-04-23 23:13:20 +02001508
1509 if (smp->flags & SMP_F_MAY_CHANGE)
1510 return 0;
1511
1512 smp->flags = SMP_F_VOLATILE;
1513 smp->type = SMP_T_UINT;
1514 smp->data.uint = ret;
1515 return 1;
1516}
1517
1518
Willy Tarreau4a129812012-04-25 17:31:42 +02001519/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001520static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001521smp_fetch_src(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 Tarreauf4362b32011-12-16 17:49:52 +01001524 switch (l4->si[0].addr.from.ss_family) {
1525 case AF_INET:
Willy Tarreauf853c462012-04-23 18:53:56 +02001526 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].addr.from)->sin_addr;
1527 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001528 break;
1529 case AF_INET6:
Willy Tarreauf853c462012-04-23 18:53:56 +02001530 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].addr.from))->sin6_addr;
1531 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001532 break;
1533 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001534 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001535 }
Emeric Brunf769f512010-10-22 17:14:01 +02001536
Willy Tarreau37406352012-04-23 16:16:37 +02001537 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001538 return 1;
1539}
1540
Willy Tarreaua5e37562011-12-16 17:06:15 +01001541/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001542static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001543smp_fetch_sport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001544 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001545{
Willy Tarreauf853c462012-04-23 18:53:56 +02001546 smp->type = SMP_T_UINT;
1547 if (!(smp->data.uint = get_host_port(&l4->si[0].addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001548 return 0;
1549
Willy Tarreau37406352012-04-23 16:16:37 +02001550 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001551 return 1;
1552}
1553
Willy Tarreau4a129812012-04-25 17:31:42 +02001554/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001555static int
Willy Tarreau4a129812012-04-25 17:31:42 +02001556smp_fetch_dst(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001557 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001558{
Willy Tarreau59b94792012-05-11 16:16:40 +02001559 si_get_to_addr(&l4->si[0]);
Willy Tarreau645513a2010-05-24 20:55:15 +02001560
Willy Tarreauf4362b32011-12-16 17:49:52 +01001561 switch (l4->si[0].addr.to.ss_family) {
1562 case AF_INET:
Willy Tarreauf853c462012-04-23 18:53:56 +02001563 smp->data.ipv4 = ((struct sockaddr_in *)&l4->si[0].addr.to)->sin_addr;
1564 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001565 break;
1566 case AF_INET6:
Willy Tarreauf853c462012-04-23 18:53:56 +02001567 smp->data.ipv6 = ((struct sockaddr_in6 *)(&l4->si[0].addr.to))->sin6_addr;
1568 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001569 break;
1570 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001571 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001572 }
Emeric Brunf769f512010-10-22 17:14:01 +02001573
Willy Tarreau37406352012-04-23 16:16:37 +02001574 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001575 return 1;
1576}
1577
Willy Tarreaua5e37562011-12-16 17:06:15 +01001578/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001579static int
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001580smp_fetch_dport(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreau24e32d82012-04-23 23:55:44 +02001581 const struct arg *args, struct sample *smp)
Willy Tarreau645513a2010-05-24 20:55:15 +02001582{
Willy Tarreau59b94792012-05-11 16:16:40 +02001583 si_get_to_addr(&l4->si[0]);
Willy Tarreau645513a2010-05-24 20:55:15 +02001584
Willy Tarreauf853c462012-04-23 18:53:56 +02001585 smp->type = SMP_T_UINT;
1586 if (!(smp->data.uint = get_host_port(&l4->si[0].addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02001587 return 0;
1588
Willy Tarreau37406352012-04-23 16:16:37 +02001589 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001590 return 1;
1591}
1592
1593static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001594smp_fetch_payload_lv(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1595 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001596{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001597 unsigned int len_offset = arg_p[0].data.uint;
1598 unsigned int len_size = arg_p[1].data.uint;
1599 unsigned int buf_offset;
1600 unsigned int buf_size = 0;
Emericf2d7cae2010-11-05 18:13:50 +01001601 struct buffer *b;
1602 int i;
1603
1604 /* Format is (len offset, len size, buf offset) or (len offset, len size) */
1605 /* by default buf offset == len offset + len size */
1606 /* buf offset could be absolute or relative to len offset + len size if prefixed by + or - */
1607
1608 if (!l4)
1609 return 0;
1610
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001611 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001612
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001613 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001614 return 0;
1615
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001616 if (len_offset + len_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001617 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001618
1619 for (i = 0; i < len_size; i++) {
Willy Tarreau89fa7062012-03-02 16:13:16 +01001620 buf_size = (buf_size << 8) + ((unsigned char *)b->p)[i + len_offset];
Emericf2d7cae2010-11-05 18:13:50 +01001621 }
1622
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001623 /* buf offset may be implicit, absolute or relative */
1624 buf_offset = len_offset + len_size;
1625 if (arg_p[2].type == ARGT_UINT)
1626 buf_offset = arg_p[2].data.uint;
1627 else if (arg_p[2].type == ARGT_SINT)
1628 buf_offset += arg_p[2].data.sint;
1629
Willy Tarreau82ea8002012-04-25 19:19:43 +02001630 if (!buf_size || buf_size > b->size || buf_offset + buf_size > b->size) {
1631 /* will never match */
1632 smp->flags = 0;
1633 return 0;
1634 }
1635
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001636 if (buf_offset + buf_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001637 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001638
1639 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001640 smp->type = SMP_T_CBIN;
Willy Tarreau342acb42012-04-23 22:03:39 +02001641 chunk_initlen(&smp->data.str, b->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001642 smp->flags = SMP_F_VOLATILE;
Emericf2d7cae2010-11-05 18:13:50 +01001643 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001644
1645 too_short:
1646 smp->flags = SMP_F_MAY_CHANGE;
1647 return 0;
Emericf2d7cae2010-11-05 18:13:50 +01001648}
1649
1650static int
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001651smp_fetch_payload(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
1652 const struct arg *arg_p, struct sample *smp)
Emericf2d7cae2010-11-05 18:13:50 +01001653{
Willy Tarreau82ea8002012-04-25 19:19:43 +02001654 unsigned int buf_offset = arg_p[0].data.uint;
1655 unsigned int buf_size = arg_p[1].data.uint;
Emericf2d7cae2010-11-05 18:13:50 +01001656 struct buffer *b;
1657
1658 if (!l4)
1659 return 0;
1660
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001661 b = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? l4->rep : l4->req;
Emericf2d7cae2010-11-05 18:13:50 +01001662
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001663 if (!b)
Emericf2d7cae2010-11-05 18:13:50 +01001664 return 0;
Willy Tarreau82ea8002012-04-25 19:19:43 +02001665
1666 if (!buf_size || buf_size > b->size || buf_offset + buf_size > b->size) {
1667 /* will never match */
1668 smp->flags = 0;
1669 return 0;
1670 }
Emericf2d7cae2010-11-05 18:13:50 +01001671
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001672 if (buf_offset + buf_size > b->i)
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001673 goto too_short;
Emericf2d7cae2010-11-05 18:13:50 +01001674
1675 /* init chunk as read only */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001676 smp->type = SMP_T_CBIN;
Willy Tarreau342acb42012-04-23 22:03:39 +02001677 chunk_initlen(&smp->data.str, b->p + buf_offset, 0, buf_size);
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001678 smp->flags = SMP_F_VOLATILE;
Simon Hormanab814e02011-06-24 14:50:20 +09001679 return 1;
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001680
1681 too_short:
1682 smp->flags = SMP_F_MAY_CHANGE;
1683 return 0;
Simon Hormanab814e02011-06-24 14:50:20 +09001684}
1685
Willy Tarreau21d68a62012-04-20 15:52:36 +02001686/* This function is used to validate the arguments passed to a "payload" fetch
1687 * keyword. This keyword expects two positive integers, with the second one
1688 * being strictly positive. It is assumed that the types are already the correct
1689 * ones. Returns 0 on error, non-zero if OK. If <err_msg> is not NULL, it will be
1690 * filled with a pointer to an error message in case of error, that the caller
1691 * is responsible for freeing. The initial location must either be freeable or
1692 * NULL.
1693 */
1694static int val_payload(struct arg *arg, char **err_msg)
1695{
1696 if (!arg[1].data.uint) {
1697 if (err_msg)
1698 memprintf(err_msg, "payload length must be > 0");
1699 return 0;
1700 }
1701 return 1;
1702}
1703
1704/* This function is used to validate the arguments passed to a "payload_lv" fetch
1705 * keyword. This keyword allows two positive integers and an optional signed one,
1706 * with the second one being strictly positive and the third one being greater than
1707 * the opposite of the two others if negative. It is assumed that the types are
1708 * already the correct ones. Returns 0 on error, non-zero if OK. If <err_msg> is
1709 * not NULL, it will be filled with a pointer to an error message in case of
1710 * error, that the caller is responsible for freeing. The initial location must
1711 * either be freeable or NULL.
1712 */
1713static int val_payload_lv(struct arg *arg, char **err_msg)
1714{
1715 if (!arg[1].data.uint) {
1716 if (err_msg)
1717 memprintf(err_msg, "payload length must be > 0");
1718 return 0;
1719 }
1720
1721 if (arg[2].type == ARGT_SINT &&
1722 (int)(arg[0].data.uint + arg[1].data.uint + arg[2].data.sint) < 0) {
1723 if (err_msg)
1724 memprintf(err_msg, "payload offset too negative");
1725 return 0;
1726 }
1727 return 1;
1728}
1729
Willy Tarreaub6866442008-07-14 23:54:42 +02001730static struct cfg_kw_list cfg_kws = {{ },{
1731 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02001732 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02001733 { 0, NULL, NULL },
1734}};
1735
Willy Tarreau61612d42012-04-19 18:42:05 +02001736/* Note: must not be declared <const> as its list will be overwritten.
1737 * Please take care of keeping this list alphabetically sorted.
1738 */
Willy Tarreaub6866442008-07-14 23:54:42 +02001739static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001740 { "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 +02001741 { "dst_port", acl_parse_int, smp_fetch_dport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreau0d5fe142012-04-26 12:24:45 +02001742 { "payload", acl_parse_str, smp_fetch_payload, acl_match_str, ACL_USE_L6REQ_VOLATILE|ACL_MAY_LOOKUP, ARG2(2,UINT,UINT), val_payload },
1743 { "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 +02001744 { "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 +02001745 { "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 +02001746 { "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 +02001747 { "src_port", acl_parse_int, smp_fetch_sport, acl_match_int, ACL_USE_TCP_PERMANENT, 0 },
Willy Tarreaub6866442008-07-14 23:54:42 +02001748 { NULL, NULL, NULL, NULL },
1749}};
1750
Willy Tarreau4a129812012-04-25 17:31:42 +02001751/* Note: must not be declared <const> as its list will be overwritten.
1752 * Note: fetches that may return multiple types must be declared as the lowest
1753 * common denominator, the type that can be casted into all other ones. For
1754 * instance v4/v6 must be declared v4.
1755 */
Willy Tarreau12785782012-04-27 21:37:17 +02001756static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{
Willy Tarreau4a129812012-04-25 17:31:42 +02001757 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau4a129812012-04-25 17:31:42 +02001758 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau25c1ebc2012-04-25 16:21:44 +02001759 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau0ce3aa02012-04-25 18:46:33 +02001760 { "payload", smp_fetch_payload, ARG2(2,UINT,UINT), val_payload, SMP_T_CBIN, SMP_CAP_REQ|SMP_CAP_RES },
1761 { "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 +02001762 { "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 +02001763 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001764 { NULL, NULL, 0, 0, 0 },
Willy Tarreau645513a2010-05-24 20:55:15 +02001765}};
1766
Willy Tarreaue6b98942007-10-29 01:09:36 +01001767__attribute__((constructor))
1768static void __tcp_protocol_init(void)
1769{
1770 protocol_register(&proto_tcpv4);
1771 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02001772 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02001773 cfg_register_keywords(&cfg_kws);
1774 acl_register_keywords(&acl_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01001775}
1776
1777
1778/*
1779 * Local variables:
1780 * c-indent-level: 8
1781 * c-basic-offset: 8
1782 * End:
1783 */