blob: e9b3ae37b992eee5c5754bb19eadd9e75afcd2cd [file] [log] [blame]
Willy Tarreaue6b98942007-10-29 01:09:36 +01001/*
2 * AF_INET/AF_INET6 SOCK_STREAM protocol layer (tcp)
3 *
Willy Tarreaue8c66af2008-01-13 18:40:14 +01004 * Copyright 2000-2008 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
Willy Tarreau9ea05a72009-06-14 12:07:01 +020021#include <netinet/tcp.h>
22
Willy Tarreaue6b98942007-10-29 01:09:36 +010023#include <sys/param.h>
24#include <sys/socket.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <sys/un.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>
34#include <common/memory.h>
35#include <common/mini-clist.h>
36#include <common/standard.h>
37#include <common/time.h>
38#include <common/version.h>
39
Willy Tarreaue6b98942007-10-29 01:09:36 +010040#include <types/global.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010041
42#include <proto/acl.h>
43#include <proto/backend.h>
44#include <proto/buffers.h>
45#include <proto/fd.h>
46#include <proto/protocols.h>
47#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020048#include <proto/proxy.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010049#include <proto/queue.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010050#include <proto/session.h>
51#include <proto/stream_sock.h>
52#include <proto/task.h>
53
Willy Tarreaue8c66af2008-01-13 18:40:14 +010054#ifdef CONFIG_HAP_CTTPROXY
55#include <import/ip_tproxy.h>
56#endif
57
Willy Tarreaue6b98942007-10-29 01:09:36 +010058static int tcp_bind_listeners(struct protocol *proto);
59
60/* Note: must not be declared <const> as its list will be overwritten */
61static struct protocol proto_tcpv4 = {
62 .name = "tcpv4",
63 .sock_domain = AF_INET,
64 .sock_type = SOCK_STREAM,
65 .sock_prot = IPPROTO_TCP,
66 .sock_family = AF_INET,
67 .sock_addrlen = sizeof(struct sockaddr_in),
68 .l3_addrlen = 32/8,
69 .read = &stream_sock_read,
70 .write = &stream_sock_write,
71 .bind_all = tcp_bind_listeners,
72 .unbind_all = unbind_all_listeners,
73 .enable_all = enable_all_listeners,
74 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
75 .nb_listeners = 0,
76};
77
78/* Note: must not be declared <const> as its list will be overwritten */
79static struct protocol proto_tcpv6 = {
80 .name = "tcpv6",
81 .sock_domain = AF_INET6,
82 .sock_type = SOCK_STREAM,
83 .sock_prot = IPPROTO_TCP,
84 .sock_family = AF_INET6,
85 .sock_addrlen = sizeof(struct sockaddr_in6),
86 .l3_addrlen = 128/8,
87 .read = &stream_sock_read,
88 .write = &stream_sock_write,
89 .bind_all = tcp_bind_listeners,
90 .unbind_all = unbind_all_listeners,
91 .enable_all = enable_all_listeners,
92 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
93 .nb_listeners = 0,
94};
95
Willy Tarreaue8c66af2008-01-13 18:40:14 +010096
97/* Binds ipv4 address <local> to socket <fd>, unless <flags> is set, in which
98 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
99 * - 0 : ignore remote address (may even be a NULL pointer)
100 * - 1 : use provided address
101 * - 2 : use provided port
102 * - 3 : use both
103 *
104 * The function supports multiple foreign binding methods :
105 * - linux_tproxy: we directly bind to the foreign address
106 * - cttproxy: we bind to a local address then nat.
107 * The second one can be used as a fallback for the first one.
108 * This function returns 0 when everything's OK, 1 if it could not bind, to the
109 * local address, 2 if it could not bind to the foreign address.
110 */
111int tcpv4_bind_socket(int fd, int flags, struct sockaddr_in *local, struct sockaddr_in *remote)
112{
113 struct sockaddr_in bind_addr;
114 int foreign_ok = 0;
115 int ret;
116
117#ifdef CONFIG_HAP_LINUX_TPROXY
118 static int ip_transp_working = 1;
119 if (flags && ip_transp_working) {
120 if (setsockopt(fd, SOL_IP, IP_TRANSPARENT, (char *) &one, sizeof(one)) == 0
121 || setsockopt(fd, SOL_IP, IP_FREEBIND, (char *) &one, sizeof(one)) == 0)
122 foreign_ok = 1;
123 else
124 ip_transp_working = 0;
125 }
126#endif
127 if (flags) {
128 memset(&bind_addr, 0, sizeof(bind_addr));
129 if (flags & 1)
130 bind_addr.sin_addr = remote->sin_addr;
131 if (flags & 2)
132 bind_addr.sin_port = remote->sin_port;
133 }
134
135 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one));
136 if (foreign_ok) {
137 ret = bind(fd, (struct sockaddr *)&bind_addr, sizeof(bind_addr));
138 if (ret < 0)
139 return 2;
140 }
141 else {
142 ret = bind(fd, (struct sockaddr *)local, sizeof(*local));
143 if (ret < 0)
144 return 1;
145 }
146
147 if (!flags)
148 return 0;
149
150#ifdef CONFIG_HAP_CTTPROXY
151 if (!foreign_ok) {
152 struct in_tproxy itp1, itp2;
153 memset(&itp1, 0, sizeof(itp1));
154
155 itp1.op = TPROXY_ASSIGN;
156 itp1.v.addr.faddr = bind_addr.sin_addr;
157 itp1.v.addr.fport = bind_addr.sin_port;
158
159 /* set connect flag on socket */
160 itp2.op = TPROXY_FLAGS;
161 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
162
163 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
164 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
165 foreign_ok = 1;
166 }
167 }
168#endif
169 if (!foreign_ok)
170 /* we could not bind to a foreign address */
171 return 2;
172
173 return 0;
174}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100175
176/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
177 * an error message in <err> if the message is at most <errlen> bytes long
178 * (including '\0'). The return value is composed from ERR_ABORT, ERR_WARN,
179 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
180 * was alright and that no message was returned. ERR_RETRYABLE means that an
181 * error occurred but that it may vanish after a retry (eg: port in use), and
182 * ERR_FATAL indicates a non-fixable error.ERR_WARN and ERR_ALERT do not alter
183 * the meaning of the error, but just indicate that a message is present which
184 * should be displayed with the respective level. Last, ERR_ABORT indicates
185 * that it's pointless to try to start other listeners. No error message is
186 * returned if errlen is NULL.
187 */
188int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
189{
190 __label__ tcp_return, tcp_close_return;
191 int fd, err;
192 const char *msg = NULL;
193
194 /* ensure we never return garbage */
195 if (errmsg && errlen)
196 *errmsg = 0;
197
198 if (listener->state != LI_ASSIGNED)
199 return ERR_NONE; /* already bound */
200
201 err = ERR_NONE;
202
203 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
204 err |= ERR_RETRYABLE | ERR_ALERT;
205 msg = "cannot create listening socket";
206 goto tcp_return;
207 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100208
Willy Tarreaue6b98942007-10-29 01:09:36 +0100209 if (fd >= global.maxsock) {
210 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
211 msg = "not enough free sockets (raise '-n' parameter)";
212 goto tcp_close_return;
213 }
214
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200215 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100216 err |= ERR_FATAL | ERR_ALERT;
217 msg = "cannot make socket non-blocking";
218 goto tcp_close_return;
219 }
220
221 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one)) == -1) {
222 /* not fatal but should be reported */
223 msg = "cannot do so_reuseaddr";
224 err |= ERR_ALERT;
225 }
226
227 if (listener->options & LI_O_NOLINGER)
228 setsockopt(fd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100229
Willy Tarreaue6b98942007-10-29 01:09:36 +0100230#ifdef SO_REUSEPORT
231 /* OpenBSD supports this. As it's present in old libc versions of Linux,
232 * it might return an error that we will silently ignore.
233 */
234 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (char *) &one, sizeof(one));
235#endif
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100236#ifdef CONFIG_HAP_LINUX_TPROXY
Willy Tarreauedcf6682008-11-30 23:15:34 +0100237 if ((listener->options & LI_O_FOREIGN)
Willy Tarreau0a459892008-01-13 17:37:16 +0100238 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, (char *) &one, sizeof(one)) == -1)
239 && (setsockopt(fd, SOL_IP, IP_FREEBIND, (char *) &one, sizeof(one)) == -1)) {
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100240 msg = "cannot make listening socket transparent";
241 err |= ERR_ALERT;
242 }
243#endif
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100244#ifdef SO_BINDTODEVICE
245 /* Note: this might fail if not CAP_NET_RAW */
246 if (listener->interface) {
247 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100248 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100249 msg = "cannot bind listener to device";
250 err |= ERR_WARN;
251 }
252 }
253#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +0100254 if (bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
255 err |= ERR_RETRYABLE | ERR_ALERT;
256 msg = "cannot bind socket";
257 goto tcp_close_return;
258 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100259
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100260 if (listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100261 err |= ERR_RETRYABLE | ERR_ALERT;
262 msg = "cannot listen to socket";
263 goto tcp_close_return;
264 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100265
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200266#ifdef TCP_QUICKACK
267 if (listener->options & LI_O_NOQUICKACK)
268 setsockopt(fd, SOL_TCP, TCP_QUICKACK, (char *) &zero, sizeof(zero));
269#endif
270
Willy Tarreaue6b98942007-10-29 01:09:36 +0100271 /* the socket is ready */
272 listener->fd = fd;
273 listener->state = LI_LISTEN;
274
275 /* the function for the accept() event */
276 fd_insert(fd);
277 fdtab[fd].cb[DIR_RD].f = listener->accept;
278 fdtab[fd].cb[DIR_WR].f = NULL; /* never called */
279 fdtab[fd].cb[DIR_RD].b = fdtab[fd].cb[DIR_WR].b = NULL;
Willy Tarreaueabf3132008-08-29 23:36:51 +0200280 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreaue6b98942007-10-29 01:09:36 +0100281 fdtab[fd].state = FD_STLISTEN;
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200282 fdtab[fd].flags = FD_FL_TCP;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100283 fdtab[fd].peeraddr = NULL;
284 fdtab[fd].peerlen = 0;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100285 tcp_return:
286 if (msg && errlen)
287 strlcpy2(errmsg, msg, errlen);
288 return err;
289
290 tcp_close_return:
291 close(fd);
292 goto tcp_return;
293}
294
295/* This function creates all TCP sockets bound to the protocol entry <proto>.
296 * It is intended to be used as the protocol's bind_all() function.
297 * The sockets will be registered but not added to any fd_set, in order not to
298 * loose them across the fork(). A call to enable_all_listeners() is needed
299 * to complete initialization. The return value is composed from ERR_*.
300 */
301static int tcp_bind_listeners(struct protocol *proto)
302{
303 struct listener *listener;
304 int err = ERR_NONE;
305
306 list_for_each_entry(listener, &proto->listeners, proto_list) {
307 err |= tcp_bind_listener(listener, NULL, 0);
308 if ((err & ERR_CODE) == ERR_ABORT)
309 break;
310 }
311
312 return err;
313}
314
315/* Add listener to the list of tcpv4 listeners. The listener's state
316 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
317 * listeners is updated. This is the function to use to add a new listener.
318 */
319void tcpv4_add_listener(struct listener *listener)
320{
321 if (listener->state != LI_INIT)
322 return;
323 listener->state = LI_ASSIGNED;
324 listener->proto = &proto_tcpv4;
325 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
326 proto_tcpv4.nb_listeners++;
327}
328
329/* Add listener to the list of tcpv4 listeners. The listener's state
330 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
331 * listeners is updated. This is the function to use to add a new listener.
332 */
333void tcpv6_add_listener(struct listener *listener)
334{
335 if (listener->state != LI_INIT)
336 return;
337 listener->state = LI_ASSIGNED;
338 listener->proto = &proto_tcpv6;
339 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
340 proto_tcpv6.nb_listeners++;
341}
342
Willy Tarreauedcf6682008-11-30 23:15:34 +0100343/* This function performs the TCP request analysis on the current request. It
344 * returns 1 if the processing can continue on next analysers, or zero if it
345 * needs more data, encounters an error, or wants to immediately abort the
346 * request. It relies on buffers flags, and updates s->req->analysers. Its
347 * behaviour is rather simple:
Willy Tarreau86ef7dc2009-03-15 22:55:47 +0100348 * - the analyser should check for errors and timeouts, and react as expected.
349 * It does not have to close anything upon error, the caller will. Note that
350 * the caller also knows how to report errors and timeouts.
351 * - if the analyser does not have enough data, it must return 0 without calling
Willy Tarreauedcf6682008-11-30 23:15:34 +0100352 * other ones. It should also probably do a buffer_write_dis() to ensure
353 * that unprocessed data will not be forwarded. But that probably depends on
354 * the protocol.
355 * - if an analyser has enough data, it just has to pass on to the next
356 * analyser without using buffer_write_dis() (enabled by default).
357 * - if an analyser thinks it has no added value anymore staying here, it must
358 * reset its bit from the analysers flags in order not to be called anymore.
359 *
360 * In the future, analysers should be able to indicate that they want to be
361 * called after XXX bytes have been received (or transfered), and the min of
362 * all's wishes will be used to ring back (unless a special condition occurs).
363 */
364int tcp_inspect_request(struct session *s, struct buffer *req)
365{
366 struct tcp_rule *rule;
367 int partial;
368
369 DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n",
370 now_ms, __FUNCTION__,
371 s,
372 req,
373 req->rex, req->wex,
374 req->flags,
375 req->l,
376 req->analysers);
377
Willy Tarreauedcf6682008-11-30 23:15:34 +0100378 /* We don't know whether we have enough data, so must proceed
379 * this way :
380 * - iterate through all rules in their declaration order
381 * - if one rule returns MISS, it means the inspect delay is
382 * not over yet, then return immediately, otherwise consider
383 * it as a non-match.
384 * - if one rule returns OK, then return OK
385 * - if one rule returns KO, then return KO
386 */
387
Willy Tarreaud869b242009-03-15 14:43:58 +0100388 if (req->flags & BF_SHUTR || !s->fe->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreauedcf6682008-11-30 23:15:34 +0100389 partial = 0;
390 else
391 partial = ACL_PARTIAL;
392
393 list_for_each_entry(rule, &s->fe->tcp_req.inspect_rules, list) {
394 int ret = ACL_PAT_PASS;
395
396 if (rule->cond) {
397 ret = acl_exec_cond(rule->cond, s->fe, s, NULL, ACL_DIR_REQ | partial);
398 if (ret == ACL_PAT_MISS) {
399 buffer_write_dis(req);
400 /* just set the request timeout once at the beginning of the request */
Willy Tarreaud869b242009-03-15 14:43:58 +0100401 if (!tick_isset(req->analyse_exp) && s->fe->tcp_req.inspect_delay)
Willy Tarreauedcf6682008-11-30 23:15:34 +0100402 req->analyse_exp = tick_add_ifset(now_ms, s->fe->tcp_req.inspect_delay);
403 return 0;
404 }
405
406 ret = acl_pass(ret);
407 if (rule->cond->pol == ACL_COND_UNLESS)
408 ret = !ret;
409 }
410
411 if (ret) {
412 /* we have a matching rule. */
413 if (rule->action == TCP_ACT_REJECT) {
414 buffer_abort(req);
415 buffer_abort(s->rep);
416 req->analysers = 0;
417 s->fe->failed_req++;
418 if (!(s->flags & SN_ERR_MASK))
419 s->flags |= SN_ERR_PRXCOND;
420 if (!(s->flags & SN_FINST_MASK))
421 s->flags |= SN_FINST_R;
422 return 0;
423 }
424 /* otherwise accept */
425 break;
426 }
427 }
428
429 /* if we get there, it means we have no rule which matches, or
430 * we have an explicit accept, so we apply the default accept.
431 */
432 req->analysers &= ~AN_REQ_INSPECT;
433 req->analyse_exp = TICK_ETERNITY;
434 return 1;
435}
436
437
Willy Tarreaub6866442008-07-14 23:54:42 +0200438/* This function should be called to parse a line starting with the "tcp-request"
439 * keyword.
440 */
441static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
442 struct proxy *defpx, char *err, int errlen)
443{
444 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +0200445 unsigned int val;
Willy Tarreaub6866442008-07-14 23:54:42 +0200446 int retlen;
447
448 if (!*args[1]) {
449 snprintf(err, errlen, "missing argument for '%s' in %s '%s'",
450 args[0], proxy_type_str(proxy), curpx->id);
451 return -1;
452 }
453
454 if (!strcmp(args[1], "inspect-delay")) {
455 if (curpx == defpx) {
456 snprintf(err, errlen, "%s %s is not allowed in 'defaults' sections",
457 args[0], args[1]);
458 return -1;
459 }
460
461 if (!(curpx->cap & PR_CAP_FE)) {
462 snprintf(err, errlen, "%s %s will be ignored because %s '%s' has no %s capability",
463 args[0], args[1], proxy_type_str(proxy), curpx->id,
464 "frontend");
465 return 1;
466 }
467
468 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
469 retlen = snprintf(err, errlen,
470 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
471 args[0], args[1], proxy_type_str(proxy), curpx->id);
472 if (ptr && retlen < errlen)
473 retlen += snprintf(err+retlen, errlen - retlen,
474 " (unexpected character '%c')", *ptr);
475 return -1;
476 }
477
478 if (curpx->tcp_req.inspect_delay) {
479 snprintf(err, errlen, "ignoring %s %s (was already defined) in %s '%s'",
480 args[0], args[1], proxy_type_str(proxy), curpx->id);
481 return 1;
482 }
483 curpx->tcp_req.inspect_delay = val;
484 return 0;
485 }
486
487 if (!strcmp(args[1], "content")) {
488 int action;
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200489 int warn = 0;
Willy Tarreaub6866442008-07-14 23:54:42 +0200490 int pol = ACL_COND_NONE;
491 struct acl_cond *cond;
492 struct tcp_rule *rule;
493
494 if (curpx == defpx) {
495 snprintf(err, errlen, "%s %s is not allowed in 'defaults' sections",
496 args[0], args[1]);
497 return -1;
498 }
499
500 if (!strcmp(args[2], "accept"))
501 action = TCP_ACT_ACCEPT;
502 else if (!strcmp(args[2], "reject"))
503 action = TCP_ACT_REJECT;
504 else {
505 retlen = snprintf(err, errlen,
506 "'%s %s' expects 'accept' or 'reject', in %s '%s' (was '%s')",
507 args[0], args[1], proxy_type_str(curpx), curpx->id, args[2]);
508 return -1;
509 }
510
511 pol = ACL_COND_NONE;
512 cond = NULL;
513
514 if (!strcmp(args[3], "if"))
515 pol = ACL_COND_IF;
516 else if (!strcmp(args[3], "unless"))
517 pol = ACL_COND_UNLESS;
518
519 /* Note: we consider "if TRUE" when there is no condition */
520 if (pol != ACL_COND_NONE &&
521 (cond = parse_acl_cond((const char **)args+4, &curpx->acl, pol)) == NULL) {
522 retlen = snprintf(err, errlen,
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200523 "error detected in %s '%s' while parsing '%s' condition",
Willy Tarreaub6866442008-07-14 23:54:42 +0200524 proxy_type_str(curpx), curpx->id, args[3]);
525 return -1;
526 }
527
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200528 // FIXME: how to set this ?
529 // cond->line = linenum;
Willy Tarreau8e80e0b2009-05-10 12:05:46 +0200530 if (cond && cond->requires & (ACL_USE_RTR_ANY | ACL_USE_L7_ANY)) {
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200531 struct acl *acl;
532 const char *name;
533
534 acl = cond_find_require(cond, ACL_USE_RTR_ANY|ACL_USE_L7_ANY);
535 name = acl ? acl->name : "(unknown)";
536
537 retlen = snprintf(err, errlen,
538 "acl '%s' involves some %s criteria which will be ignored.",
539 name,
540 (acl->requires & ACL_USE_RTR_ANY) ? "response-only" : "layer 7");
541 warn++;
542 }
Willy Tarreaub6866442008-07-14 23:54:42 +0200543 rule = (struct tcp_rule *)calloc(1, sizeof(*rule));
544 rule->cond = cond;
545 rule->action = action;
546 LIST_INIT(&rule->list);
547 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreaudd64f8d2008-07-27 22:02:32 +0200548 return warn;
Willy Tarreaub6866442008-07-14 23:54:42 +0200549 }
550
551 snprintf(err, errlen, "unknown argument '%s' after '%s' in %s '%s'",
552 args[1], args[0], proxy_type_str(proxy), curpx->id);
553 return -1;
554}
555
556/* return the number of bytes in the request buffer */
557static int
558acl_fetch_req_len(struct proxy *px, struct session *l4, void *l7, int dir,
559 struct acl_expr *expr, struct acl_test *test)
560{
561 if (!l4 || !l4->req)
562 return 0;
563
564 test->i = l4->req->l;
565 test->flags = ACL_TEST_F_VOLATILE | ACL_TEST_F_MAY_CHANGE;
566 return 1;
567}
568
Willy Tarreau655e26a2008-07-15 18:58:05 +0200569/* Return the version of the SSL protocol in the request. It supports both
570 * SSLv3 (TLSv1) header format for any message, and SSLv2 header format for
571 * the hello message. The SSLv3 format is described in RFC 2246 p49, and the
572 * SSLv2 format is described here, and completed p67 of RFC 2246 :
573 * http://wp.netscape.com/eng/security/SSL_2.html
574 *
575 * Note: this decoder only works with non-wrapping data.
576 */
577static int
578acl_fetch_req_ssl_ver(struct proxy *px, struct session *l4, void *l7, int dir,
579 struct acl_expr *expr, struct acl_test *test)
580{
581 int version, bleft, msg_len;
582 const unsigned char *data;
583
584 if (!l4 || !l4->req)
585 return 0;
586
587 msg_len = 0;
588 bleft = l4->req->l;
589 if (!bleft)
590 goto too_short;
591
Willy Tarreauc7e961e2008-08-17 17:13:47 +0200592 data = (const unsigned char *)l4->req->w;
Willy Tarreau655e26a2008-07-15 18:58:05 +0200593 if ((*data >= 0x14 && *data <= 0x17) || (*data == 0xFF)) {
594 /* SSLv3 header format */
595 if (bleft < 5)
596 goto too_short;
597
598 version = (data[1] << 16) + data[2]; /* version: major, minor */
599 msg_len = (data[3] << 8) + data[4]; /* record length */
600
601 /* format introduced with SSLv3 */
602 if (version < 0x00030000)
603 goto not_ssl;
604
605 /* message length between 1 and 2^14 + 2048 */
606 if (msg_len < 1 || msg_len > ((1<<14) + 2048))
607 goto not_ssl;
608
609 bleft -= 5; data += 5;
610 } else {
611 /* SSLv2 header format, only supported for hello (msg type 1) */
612 int rlen, plen, cilen, silen, chlen;
613
614 if (*data & 0x80) {
615 if (bleft < 3)
616 goto too_short;
617 /* short header format : 15 bits for length */
618 rlen = ((data[0] & 0x7F) << 8) | data[1];
619 plen = 0;
620 bleft -= 2; data += 2;
621 } else {
622 if (bleft < 4)
623 goto too_short;
624 /* long header format : 14 bits for length + pad length */
625 rlen = ((data[0] & 0x3F) << 8) | data[1];
626 plen = data[2];
627 bleft -= 3; data += 2;
628 }
629
630 if (*data != 0x01)
631 goto not_ssl;
632 bleft--; data++;
633
634 if (bleft < 8)
635 goto too_short;
636 version = (data[0] << 16) + data[1]; /* version: major, minor */
637 cilen = (data[2] << 8) + data[3]; /* cipher len, multiple of 3 */
638 silen = (data[4] << 8) + data[5]; /* session_id_len: 0 or 16 */
639 chlen = (data[6] << 8) + data[7]; /* 16<=challenge length<=32 */
640
641 bleft -= 8; data += 8;
642 if (cilen % 3 != 0)
643 goto not_ssl;
644 if (silen && silen != 16)
645 goto not_ssl;
646 if (chlen < 16 || chlen > 32)
647 goto not_ssl;
648 if (rlen != 9 + cilen + silen + chlen)
649 goto not_ssl;
650
651 /* focus on the remaining data length */
652 msg_len = cilen + silen + chlen + plen;
653 }
654 /* We could recursively check that the buffer ends exactly on an SSL
655 * fragment boundary and that a possible next segment is still SSL,
656 * but that's a bit pointless. However, we could still check that
657 * all the part of the request which fits in a buffer is already
658 * there.
659 */
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100660 if (msg_len > l4->req->max_len + l4->req->data - l4->req->w)
661 msg_len = l4->req->max_len + l4->req->data - l4->req->w;
Willy Tarreau655e26a2008-07-15 18:58:05 +0200662
663 if (bleft < msg_len)
664 goto too_short;
665
666 /* OK that's enough. We have at least the whole message, and we have
667 * the protocol version.
668 */
669 test->i = version;
670 test->flags = ACL_TEST_F_VOLATILE;
671 return 1;
672
673 too_short:
674 test->flags = ACL_TEST_F_MAY_CHANGE;
675 not_ssl:
676 return 0;
677}
678
Willy Tarreaub6866442008-07-14 23:54:42 +0200679
680static struct cfg_kw_list cfg_kws = {{ },{
681 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
682 { 0, NULL, NULL },
683}};
684
685static struct acl_kw_list acl_kws = {{ },{
Willy Tarreau0ceba5a2008-07-25 19:31:03 +0200686 { "req_len", acl_parse_int, acl_fetch_req_len, acl_match_int, ACL_USE_L4REQ_VOLATILE },
687 { "req_ssl_ver", acl_parse_dotted_ver, acl_fetch_req_ssl_ver, acl_match_int, ACL_USE_L4REQ_VOLATILE },
Willy Tarreaub6866442008-07-14 23:54:42 +0200688 { NULL, NULL, NULL, NULL },
689}};
690
Willy Tarreaue6b98942007-10-29 01:09:36 +0100691__attribute__((constructor))
692static void __tcp_protocol_init(void)
693{
694 protocol_register(&proto_tcpv4);
695 protocol_register(&proto_tcpv6);
Willy Tarreaub6866442008-07-14 23:54:42 +0200696 cfg_register_keywords(&cfg_kws);
697 acl_register_keywords(&acl_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +0100698}
699
700
701/*
702 * Local variables:
703 * c-indent-level: 8
704 * c-basic-offset: 8
705 * End:
706 */