blob: c89360c01aef32dc862e5bc07d9ba9a5909e5de8 [file] [log] [blame]
Willy Tarreaue6b98942007-10-29 01:09:36 +01001/*
2 * AF_INET/AF_INET6 SOCK_STREAM protocol layer (tcp)
3 *
Willy Tarreaud4c33c82013-01-07 21:59:07 +01004 * Copyright 2000-2013 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>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010036#include <common/namespace.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010037
Willy Tarreaue6b98942007-10-29 01:09:36 +010038#include <types/global.h>
Willy Tarreau18bf01e2014-06-13 16:18:52 +020039#include <types/capture.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020040#include <types/server.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010041
42#include <proto/acl.h>
Thierry FOURNIER322a1242015-08-19 09:07:47 +020043#include <proto/action.h>
Willy Tarreau9fcb9842012-04-20 14:45:49 +020044#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020045#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020046#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020047#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020048#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020049#include <proto/log.h>
50#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020051#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010052#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020053#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020054#include <proto/sample.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020055#include <proto/stream.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020056#include <proto/stick_table.h>
Willy Tarreaucc1e04b2013-09-11 23:20:29 +020057#include <proto/stream_interface.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020058#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010059
Emeric Bruncf20bf12010-10-22 16:06:11 +020060static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
61static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010062
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010063/* List head of all known action keywords for "tcp-request connection" */
64struct list tcp_req_conn_keywords = LIST_HEAD_INIT(tcp_req_conn_keywords);
65struct list tcp_req_cont_keywords = LIST_HEAD_INIT(tcp_req_cont_keywords);
66struct list tcp_res_cont_keywords = LIST_HEAD_INIT(tcp_res_cont_keywords);
67
Willy Tarreaue6b98942007-10-29 01:09:36 +010068/* Note: must not be declared <const> as its list will be overwritten */
69static struct protocol proto_tcpv4 = {
70 .name = "tcpv4",
71 .sock_domain = AF_INET,
72 .sock_type = SOCK_STREAM,
73 .sock_prot = IPPROTO_TCP,
74 .sock_family = AF_INET,
75 .sock_addrlen = sizeof(struct sockaddr_in),
76 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020077 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020078 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020079 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010080 .bind_all = tcp_bind_listeners,
81 .unbind_all = unbind_all_listeners,
82 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020083 .get_src = tcp_get_src,
84 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +020085 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +020086 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010087 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
88 .nb_listeners = 0,
89};
90
91/* Note: must not be declared <const> as its list will be overwritten */
92static struct protocol proto_tcpv6 = {
93 .name = "tcpv6",
94 .sock_domain = AF_INET6,
95 .sock_type = SOCK_STREAM,
96 .sock_prot = IPPROTO_TCP,
97 .sock_family = AF_INET6,
98 .sock_addrlen = sizeof(struct sockaddr_in6),
99 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200100 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +0200101 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +0200102 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100103 .bind_all = tcp_bind_listeners,
104 .unbind_all = unbind_all_listeners,
105 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200106 .get_src = tcp_get_src,
107 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200108 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +0200109 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100110 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
111 .nb_listeners = 0,
112};
113
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100114/*
115 * Register keywords.
116 */
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200117void tcp_req_conn_keywords_register(struct action_kw_list *kw_list)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100118{
119 LIST_ADDQ(&tcp_req_conn_keywords, &kw_list->list);
120}
121
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200122void tcp_req_cont_keywords_register(struct action_kw_list *kw_list)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100123{
124 LIST_ADDQ(&tcp_req_cont_keywords, &kw_list->list);
125}
126
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200127void tcp_res_cont_keywords_register(struct action_kw_list *kw_list)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100128{
129 LIST_ADDQ(&tcp_res_cont_keywords, &kw_list->list);
130}
131
132/*
133 * Return the struct http_req_action_kw associated to a keyword.
134 */
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200135static struct action_kw *tcp_req_conn_action(const char *kw)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100136{
Thierry FOURNIER322a1242015-08-19 09:07:47 +0200137 return action_lookup(&tcp_req_conn_keywords, kw);
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100138}
139
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200140static struct action_kw *tcp_req_cont_action(const char *kw)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100141{
Thierry FOURNIER322a1242015-08-19 09:07:47 +0200142 return action_lookup(&tcp_req_cont_keywords, kw);
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100143}
144
Thierry FOURNIER36481b82015-08-19 09:01:53 +0200145static struct action_kw *tcp_res_cont_action(const char *kw)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100146{
Thierry FOURNIER322a1242015-08-19 09:07:47 +0200147 return action_lookup(&tcp_res_cont_keywords, kw);
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100148}
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100149
David du Colombier6f5ccb12011-03-10 22:26:24 +0100150/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100151 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
152 * - 0 : ignore remote address (may even be a NULL pointer)
153 * - 1 : use provided address
154 * - 2 : use provided port
155 * - 3 : use both
156 *
157 * The function supports multiple foreign binding methods :
158 * - linux_tproxy: we directly bind to the foreign address
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100159 * The second one can be used as a fallback for the first one.
160 * This function returns 0 when everything's OK, 1 if it could not bind, to the
161 * local address, 2 if it could not bind to the foreign address.
162 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100163int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100164{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100165 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100166 int foreign_ok = 0;
167 int ret;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100168 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200169 static int ip6_transp_working = 1;
Pieter Baauwd551fb52013-05-08 22:49:23 +0200170
David du Colombier65c17962012-07-13 14:34:59 +0200171 switch (local->ss_family) {
172 case AF_INET:
173 if (flags && ip_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200174 /* This deserves some explanation. Some platforms will support
175 * multiple combinations of certain methods, so we try the
176 * supported ones until one succeeds.
177 */
178 if (0
179#if defined(IP_TRANSPARENT)
180 || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0)
181#endif
182#if defined(IP_FREEBIND)
183 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
184#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200185#if defined(IP_BINDANY)
186 || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0)
187#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200188#if defined(SO_BINDANY)
189 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
190#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200191 )
David du Colombier65c17962012-07-13 14:34:59 +0200192 foreign_ok = 1;
193 else
194 ip_transp_working = 0;
195 }
196 break;
197 case AF_INET6:
198 if (flags && ip6_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200199 if (0
200#if defined(IPV6_TRANSPARENT)
201 || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
202#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100203#if defined(IP_FREEBIND)
204 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
205#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200206#if defined(IPV6_BINDANY)
207 || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0)
208#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200209#if defined(SO_BINDANY)
210 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
211#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200212 )
David du Colombier65c17962012-07-13 14:34:59 +0200213 foreign_ok = 1;
214 else
215 ip6_transp_working = 0;
216 }
217 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100218 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200219
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100220 if (flags) {
221 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200222 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100223 switch (remote->ss_family) {
224 case AF_INET:
225 if (flags & 1)
226 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
227 if (flags & 2)
228 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
229 break;
230 case AF_INET6:
231 if (flags & 1)
232 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
233 if (flags & 2)
234 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
235 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100236 default:
237 /* we don't want to try to bind to an unknown address family */
238 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100239 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100240 }
241
Simon Hormande072bd2011-06-24 15:11:37 +0900242 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100243 if (foreign_ok) {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200244 if (is_inet_addr(&bind_addr)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200245 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
246 if (ret < 0)
247 return 2;
248 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100249 }
250 else {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200251 if (is_inet_addr(local)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200252 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
253 if (ret < 0)
254 return 1;
255 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100256 }
257
258 if (!flags)
259 return 0;
260
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100261 if (!foreign_ok)
262 /* we could not bind to a foreign address */
263 return 2;
264
265 return 0;
266}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100267
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100268static int create_server_socket(struct connection *conn)
269{
Willy Tarreau529c1392014-12-24 13:47:55 +0100270 const struct netns_entry *ns = NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100271
Willy Tarreau529c1392014-12-24 13:47:55 +0100272#ifdef CONFIG_HAP_NS
273 if (objt_server(conn->target)) {
274 if (__objt_server(conn->target)->flags & SRV_F_USE_NS_FROM_PP)
275 ns = conn->proxy_netns;
276 else
277 ns = __objt_server(conn->target)->netns;
278 }
279#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100280 return my_socketat(ns, conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP);
281}
Willy Tarreau9650f372009-08-16 14:02:45 +0200282
283/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200284 * This function initiates a TCP connection establishment to the target assigned
285 * to connection <conn> using (si->{target,addr.to}). A source address may be
286 * pointed to by conn->addr.from in case of transparent proxying. Normal source
287 * bind addresses are still determined locally (due to the possible need of a
288 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100289 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreauf0837b22012-11-24 10:24:27 +0100290 * supported. The <data> parameter is a boolean indicating whether there are data
291 * waiting for being sent or not, in order to adjust data write polling and on
292 * some platforms, the ability to avoid an empty initial ACK. The <delack> argument
293 * allows the caller to force using a delayed ACK when establishing the connection :
294 * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect
295 * - 1 = delayed ACK if backend has tcp-smart-connect, regardless of data
296 * - 2 = delayed ACK regardless of backend options
Willy Tarreaub1d67742010-03-29 19:36:59 +0200297 *
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200298 * Note that a pending send_proxy message accounts for data.
299 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200300 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +0200301 * - SF_ERR_NONE if everything's OK
302 * - SF_ERR_SRVTO if there are no more servers
303 * - SF_ERR_SRVCL if the connection was refused by the server
304 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
305 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
306 * - SF_ERR_INTERNAL for any other purely internal errors
307 * Additionnally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100308 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200309 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100310 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200311 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100312
Willy Tarreauf0837b22012-11-24 10:24:27 +0100313int tcp_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau9650f372009-08-16 14:02:45 +0200314{
315 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100316 struct server *srv;
317 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100318 struct conn_src *src;
Willy Tarreauac825402011-03-04 22:04:29 +0100319
Willy Tarreau9ce70132014-01-24 16:08:19 +0100320 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
321
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100322 switch (obj_type(conn->target)) {
323 case OBJ_TYPE_PROXY:
324 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100325 srv = NULL;
326 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100327 case OBJ_TYPE_SERVER:
328 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100329 be = srv->proxy;
330 break;
331 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100332 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200333 return SF_ERR_INTERNAL;
Willy Tarreauac825402011-03-04 22:04:29 +0100334 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200335
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100336 fd = conn->t.sock.fd = create_server_socket(conn);
337
338 if (fd == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200339 qfprintf(stderr, "Cannot get a server socket.\n");
340
Willy Tarreau9ce70132014-01-24 16:08:19 +0100341 if (errno == ENFILE) {
342 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200343 send_log(be, LOG_EMERG,
344 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
345 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100346 }
347 else if (errno == EMFILE) {
348 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200349 send_log(be, LOG_EMERG,
350 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
351 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100352 }
353 else if (errno == ENOBUFS || errno == ENOMEM) {
354 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200355 send_log(be, LOG_EMERG,
356 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
357 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100358 }
359 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
360 conn->err_code = CO_ER_NOPROTO;
361 }
362 else
363 conn->err_code = CO_ER_SOCK_ERR;
364
Willy Tarreau9650f372009-08-16 14:02:45 +0200365 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100366 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200367 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200368 }
369
370 if (fd >= global.maxsock) {
371 /* do not log anything there, it's a normal condition when this option
372 * is used to serialize connections to a server !
373 */
374 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
375 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100376 conn->err_code = CO_ER_CONF_FDLIM;
377 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200378 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau9650f372009-08-16 14:02:45 +0200379 }
380
381 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900382 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200383 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
384 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100385 conn->err_code = CO_ER_SOCK_ERR;
386 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200387 return SF_ERR_INTERNAL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200388 }
389
390 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900391 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200392
Willy Tarreau9650f372009-08-16 14:02:45 +0200393 /* allow specific binding :
394 * - server-specific at first
395 * - proxy-specific next
396 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100397 if (srv && srv->conn_src.opts & CO_SRC_BIND)
398 src = &srv->conn_src;
399 else if (be->conn_src.opts & CO_SRC_BIND)
400 src = &be->conn_src;
401 else
402 src = NULL;
403
404 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200405 int ret, flags = 0;
406
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200407 if (is_inet_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100408 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100409 case CO_SRC_TPROXY_CLI:
Willy Tarreau387ebf82015-08-04 19:24:13 +0200410 conn->flags |= CO_FL_PRIVATE;
411 /* fall through */
412 case CO_SRC_TPROXY_ADDR:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200413 flags = 3;
414 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100415 case CO_SRC_TPROXY_CIP:
416 case CO_SRC_TPROXY_DYN:
Willy Tarreau387ebf82015-08-04 19:24:13 +0200417 conn->flags |= CO_FL_PRIVATE;
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200418 flags = 1;
419 break;
420 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200421 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200422
Willy Tarreau9650f372009-08-16 14:02:45 +0200423#ifdef SO_BINDTODEVICE
424 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100425 if (src->iface_name)
426 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200427#endif
428
Willy Tarreaua4380b42012-12-08 22:49:11 +0100429 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200430 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100431 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200432
433 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100434 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200435
436 do {
437 /* note: in case of retry, we may have to release a previously
438 * allocated port, hence this loop's construct.
439 */
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
443 if (!attempts)
444 break;
445 attempts--;
446
Willy Tarreaua4380b42012-12-08 22:49:11 +0100447 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100448 if (!fdinfo[fd].local_port) {
449 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200450 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100451 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200452
Willy Tarreaua4380b42012-12-08 22:49:11 +0100453 fdinfo[fd].port_range = src->sport_range;
454 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200455
Willy Tarreaua4380b42012-12-08 22:49:11 +0100456 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100457 if (ret != 0)
458 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200459 } while (ret != 0); /* binding NOK */
460 }
461 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100462 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100463 if (ret != 0)
464 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200465 }
466
Willy Tarreaua4380b42012-12-08 22:49:11 +0100467 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200468 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
469 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200470 close(fd);
471
Willy Tarreau9650f372009-08-16 14:02:45 +0200472 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100473 Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200474 be->id);
475 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100476 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200477 be->id);
478 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100479 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200480 be->id);
481 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100482 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200483 be->id);
484 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100485 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200486 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200487 }
488 }
489
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400490#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200491 /* disabling tcp quick ack now allows the first request to leave the
492 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100493 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200494 */
Willy Tarreaufb20e462014-10-24 12:02:24 +0200495 if (delack == 2 || ((delack || data || conn->send_proxy_ofs) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900496 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200497#endif
498
Willy Tarreaue803de22010-01-21 17:43:04 +0100499 if (global.tune.server_sndbuf)
500 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
501
502 if (global.tune.server_rcvbuf)
503 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
504
Willy Tarreau986a9d22012-08-30 21:11:38 +0200505 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200506 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
507
Willy Tarreaub1719512012-12-08 23:03:28 +0100508 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200509 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100510 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200511 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100512 conn->err_code = CO_ER_FREE_PORTS;
513 }
514 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200515 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100516 conn->err_code = CO_ER_ADDR_INUSE;
517 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200518
Willy Tarreaub1719512012-12-08 23:03:28 +0100519 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200520 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
521 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200522 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100523 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100524 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200525 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200526 } else if (errno == ETIMEDOUT) {
527 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200528 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
529 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200530 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100531 conn->err_code = CO_ER_SOCK_ERR;
532 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200533 return SF_ERR_SRVTO;
Willy Tarreau9650f372009-08-16 14:02:45 +0200534 } else {
535 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
536 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200537 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
538 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200539 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100540 conn->err_code = CO_ER_SOCK_ERR;
541 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200542 return SF_ERR_SRVCL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200543 }
544 }
545
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100546 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200547
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200548 /* Prepare to send a few handshakes related to the on-wire protocol. */
549 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200550 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200551
Willy Tarreauf79c8172013-10-21 16:30:56 +0200552 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100553 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200554 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200555
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200556 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200557 conn_force_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100558 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200559 return SF_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200560 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200561
Willy Tarreau14f8e862012-08-30 22:23:13 +0200562 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200563 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200564
Willy Tarreaue7dff022015-04-03 01:14:29 +0200565 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau9650f372009-08-16 14:02:45 +0200566}
567
568
Willy Tarreau59b94792012-05-11 16:16:40 +0200569/*
570 * Retrieves the source address for the socket <fd>, with <dir> indicating
571 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
572 * success, -1 in case of error. The socket's source address is stored in
573 * <sa> for <salen> bytes.
574 */
575int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
576{
577 if (dir)
578 return getsockname(fd, sa, &salen);
579 else
580 return getpeername(fd, sa, &salen);
581}
582
583
584/*
585 * Retrieves the original destination address for the socket <fd>, with <dir>
586 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
587 * listener, if the original destination address was translated, the original
588 * address is retrieved. It returns 0 in case of success, -1 in case of error.
589 * The socket's source address is stored in <sa> for <salen> bytes.
590 */
591int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
592{
593 if (dir)
594 return getpeername(fd, sa, &salen);
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100595 else {
596 int ret = getsockname(fd, sa, &salen);
597
598 if (ret < 0)
599 return ret;
600
Willy Tarreau59b94792012-05-11 16:16:40 +0200601#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100602 /* For TPROXY and Netfilter's NAT, we can retrieve the original
603 * IPv4 address before DNAT/REDIRECT. We must not do that with
604 * other families because v6-mapped IPv4 addresses are still
605 * reported as v4.
606 */
607 if (((struct sockaddr_storage *)sa)->ss_family == AF_INET
608 && getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
609 return 0;
Willy Tarreau59b94792012-05-11 16:16:40 +0200610#endif
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100611 return ret;
612 }
Willy Tarreau59b94792012-05-11 16:16:40 +0200613}
614
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200615/* Tries to drain any pending incoming data from the socket to reach the
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100616 * receive shutdown. Returns positive if the shutdown was found, negative
617 * if EAGAIN was hit, otherwise zero. This is useful to decide whether we
618 * can close a connection cleanly are we must kill it hard.
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200619 */
620int tcp_drain(int fd)
621{
622 int turns = 2;
623 int len;
624
625 while (turns) {
626#ifdef MSG_TRUNC_CLEARS_INPUT
627 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
628 if (len == -1 && errno == EFAULT)
629#endif
630 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
631
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100632 if (len == 0) {
633 /* cool, shutdown received */
634 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200635 return 1;
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100636 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200637
638 if (len < 0) {
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100639 if (errno == EAGAIN) {
640 /* connection not closed yet */
641 fd_cant_recv(fd);
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100642 return -1;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100643 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200644 if (errno == EINTR) /* oops, try again */
645 continue;
646 /* other errors indicate a dead connection, fine. */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100647 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200648 return 1;
649 }
650 /* OK we read some data, let's try again once */
651 turns--;
652 }
653 /* some data are still present, give up */
654 return 0;
655}
656
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200657/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100658 * and we have nothing to send. It updates the FD polling status. It returns 0
659 * if it fails in a fatal way or needs to poll to go further, otherwise it
660 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
661 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
662 * errno. The error checking is done in two passes in order to limit the number
663 * of syscalls in the normal case :
664 * - if POLL_ERR was reported by the poller, we check for a pending error on
665 * the socket before proceeding. If found, it's assigned to errno so that
666 * upper layers can see it.
667 * - otherwise connect() is used to check the connection state again, since
668 * the getsockopt return cannot reliably be used to know if the connection
669 * is still pending or ready. This one may often return an error as well,
670 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200671 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200672int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200673{
Willy Tarreau239d7182012-07-23 18:53:03 +0200674 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100675 socklen_t lskerr;
676 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200677
Willy Tarreau80184712012-07-06 14:54:49 +0200678 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200679 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200680
Willy Tarreau3c728722014-01-23 13:50:42 +0100681 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200682 return 0;
683
Willy Tarreau80184712012-07-06 14:54:49 +0200684 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200685 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200686
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100687 if (!fd_send_ready(fd))
688 return 0;
689
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100690 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
691 * without FD_POLL_IN also indicates a hangup without input data meaning
692 * there was no connection.
693 */
694 if (fdtab[fd].ev & FD_POLL_ERR ||
695 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
696 skerr = 0;
697 lskerr = sizeof(skerr);
698 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
699 errno = skerr;
700 if (errno == EAGAIN)
701 errno = 0;
702 if (errno)
703 goto out_error;
704 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200705
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100706 /* Use connect() to check the state of the socket. This has the
707 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200708 * - error
709 * - connecting (EALREADY, EINPROGRESS)
710 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200711 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200712 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200713 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100714 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100715 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200716 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200717 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200718
Willy Tarreau2c6be842012-07-06 17:12:34 +0200719 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200720 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200721
Willy Tarreau2c6be842012-07-06 17:12:34 +0200722 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200723 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200724
Willy Tarreau076be252012-07-06 16:02:29 +0200725 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200726 * forward the event to the transport layer which will notify the
727 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200728 */
Willy Tarreau80184712012-07-06 14:54:49 +0200729 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200730 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200731
732 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200733 /* Write error on the file descriptor. Report it to the connection
734 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200735 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100736 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100737 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100738 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200739 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200740}
741
Willy Tarreau59b94792012-05-11 16:16:40 +0200742
Willy Tarreaue6b98942007-10-29 01:09:36 +0100743/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100744 * an error message in <errmsg> if the message is at most <errlen> bytes long
745 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
746 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100747 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
748 * was alright and that no message was returned. ERR_RETRYABLE means that an
749 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700750 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100751 * the meaning of the error, but just indicate that a message is present which
752 * should be displayed with the respective level. Last, ERR_ABORT indicates
753 * that it's pointless to try to start other listeners. No error message is
754 * returned if errlen is NULL.
755 */
756int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
757{
758 __label__ tcp_return, tcp_close_return;
759 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100760 int ext, ready;
761 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100762 const char *msg = NULL;
763
764 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100765 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100766 *errmsg = 0;
767
768 if (listener->state != LI_ASSIGNED)
769 return ERR_NONE; /* already bound */
770
771 err = ERR_NONE;
772
Willy Tarreau40aa0702013-03-10 23:51:38 +0100773 /* if the listener already has an fd assigned, then we were offered the
774 * fd by an external process (most likely the parent), and we don't want
775 * to create a new socket. However we still want to set a few flags on
776 * the socket.
777 */
778 fd = listener->fd;
779 ext = (fd >= 0);
780
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100781 if (!ext) {
782 fd = my_socketat(listener->netns, listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP);
783
784 if (fd == -1) {
785 err |= ERR_RETRYABLE | ERR_ALERT;
786 msg = "cannot create listening socket";
787 goto tcp_return;
788 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100789 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100790
Willy Tarreaue6b98942007-10-29 01:09:36 +0100791 if (fd >= global.maxsock) {
792 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
793 msg = "not enough free sockets (raise '-n' parameter)";
794 goto tcp_close_return;
795 }
796
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200797 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100798 err |= ERR_FATAL | ERR_ALERT;
799 msg = "cannot make socket non-blocking";
800 goto tcp_close_return;
801 }
802
Willy Tarreau40aa0702013-03-10 23:51:38 +0100803 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100804 /* not fatal but should be reported */
805 msg = "cannot do so_reuseaddr";
806 err |= ERR_ALERT;
807 }
808
809 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900810 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100811
Willy Tarreaue6b98942007-10-29 01:09:36 +0100812#ifdef SO_REUSEPORT
813 /* OpenBSD supports this. As it's present in old libc versions of Linux,
814 * it might return an error that we will silently ignore.
815 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100816 if (!ext)
817 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100818#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200819
Willy Tarreau40aa0702013-03-10 23:51:38 +0100820 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200821 switch (listener->addr.ss_family) {
822 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200823 if (1
824#if defined(IP_TRANSPARENT)
825 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
826#endif
827#if defined(IP_FREEBIND)
828 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
829#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200830#if defined(IP_BINDANY)
831 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
832#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200833#if defined(SO_BINDANY)
834 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
835#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200836 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200837 msg = "cannot make listening socket transparent";
838 err |= ERR_ALERT;
839 }
840 break;
841 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200842 if (1
843#if defined(IPV6_TRANSPARENT)
844 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
845#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100846#if defined(IP_FREEBIND)
847 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
848#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200849#if defined(IPV6_BINDANY)
850 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
851#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200852#if defined(SO_BINDANY)
853 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
854#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200855 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200856 msg = "cannot make listening socket transparent";
857 err |= ERR_ALERT;
858 }
859 break;
860 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100861 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200862
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100863#ifdef SO_BINDTODEVICE
864 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100865 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100866 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100867 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100868 msg = "cannot bind listener to device";
869 err |= ERR_WARN;
870 }
871 }
872#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400873#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100874 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400875 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200876 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
877 msg = "cannot set MSS";
878 err |= ERR_WARN;
879 }
880 }
881#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +0100882#if defined(TCP_USER_TIMEOUT)
883 if (listener->tcp_ut) {
884 if (setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
885 &listener->tcp_ut, sizeof(listener->tcp_ut)) == -1) {
886 msg = "cannot set TCP User Timeout";
887 err |= ERR_WARN;
888 }
889 }
890#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200891#if defined(TCP_DEFER_ACCEPT)
892 if (listener->options & LI_O_DEF_ACCEPT) {
893 /* defer accept by up to one second */
894 int accept_delay = 1;
895 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
896 msg = "cannot enable DEFER_ACCEPT";
897 err |= ERR_WARN;
898 }
899 }
900#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200901#if defined(TCP_FASTOPEN)
902 if (listener->options & LI_O_TCP_FO) {
903 /* TFO needs a queue length, let's use the configured backlog */
904 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
905 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
906 msg = "cannot enable TCP_FASTOPEN";
907 err |= ERR_WARN;
908 }
909 }
910#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100911#if defined(IPV6_V6ONLY)
912 if (listener->options & LI_O_V6ONLY)
913 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100914 else if (listener->options & LI_O_V4V6)
915 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100916#endif
917
Willy Tarreau40aa0702013-03-10 23:51:38 +0100918 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100919 err |= ERR_RETRYABLE | ERR_ALERT;
920 msg = "cannot bind socket";
921 goto tcp_close_return;
922 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100923
Willy Tarreau40aa0702013-03-10 23:51:38 +0100924 ready = 0;
925 ready_len = sizeof(ready);
926 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
927 ready = 0;
928
929 if (!(ext && ready) && /* only listen if not already done by external process */
930 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100931 err |= ERR_RETRYABLE | ERR_ALERT;
932 msg = "cannot listen to socket";
933 goto tcp_close_return;
934 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100935
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400936#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200937 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900938 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200939#endif
940
Willy Tarreaue6b98942007-10-29 01:09:36 +0100941 /* the socket is ready */
942 listener->fd = fd;
943 listener->state = LI_LISTEN;
944
Willy Tarreaueabf3132008-08-29 23:36:51 +0200945 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +0200946 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +0200947 fd_insert(fd);
948
Willy Tarreaue6b98942007-10-29 01:09:36 +0100949 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100950 if (msg && errlen) {
951 char pn[INET6_ADDRSTRLEN];
952
Willy Tarreau631f01c2011-09-05 00:36:48 +0200953 addr_to_str(&listener->addr, pn, sizeof(pn));
954 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +0100955 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100956 return err;
957
958 tcp_close_return:
959 close(fd);
960 goto tcp_return;
961}
962
963/* This function creates all TCP sockets bound to the protocol entry <proto>.
964 * It is intended to be used as the protocol's bind_all() function.
965 * The sockets will be registered but not added to any fd_set, in order not to
966 * loose them across the fork(). A call to enable_all_listeners() is needed
967 * to complete initialization. The return value is composed from ERR_*.
968 */
Emeric Bruncf20bf12010-10-22 16:06:11 +0200969static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100970{
971 struct listener *listener;
972 int err = ERR_NONE;
973
974 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +0200975 err |= tcp_bind_listener(listener, errmsg, errlen);
976 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100977 break;
978 }
979
980 return err;
981}
982
983/* Add listener to the list of tcpv4 listeners. The listener's state
984 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
985 * listeners is updated. This is the function to use to add a new listener.
986 */
987void tcpv4_add_listener(struct listener *listener)
988{
989 if (listener->state != LI_INIT)
990 return;
991 listener->state = LI_ASSIGNED;
992 listener->proto = &proto_tcpv4;
993 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
994 proto_tcpv4.nb_listeners++;
995}
996
997/* Add listener to the list of tcpv4 listeners. The listener's state
998 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
999 * listeners is updated. This is the function to use to add a new listener.
1000 */
1001void tcpv6_add_listener(struct listener *listener)
1002{
1003 if (listener->state != LI_INIT)
1004 return;
1005 listener->state = LI_ASSIGNED;
1006 listener->proto = &proto_tcpv6;
1007 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
1008 proto_tcpv6.nb_listeners++;
1009}
1010
Willy Tarreau092d8652014-07-07 20:22:12 +02001011/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
1012 * was totally stopped, or > 0 if correctly paused.
1013 */
1014int tcp_pause_listener(struct listener *l)
1015{
1016 if (shutdown(l->fd, SHUT_WR) != 0)
1017 return -1; /* Solaris dies here */
1018
1019 if (listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0)
1020 return -1; /* OpenBSD dies here */
1021
1022 if (shutdown(l->fd, SHUT_RD) != 0)
1023 return -1; /* should always be OK */
1024 return 1;
1025}
1026
Willy Tarreauedcf6682008-11-30 23:15:34 +01001027/* This function performs the TCP request analysis on the current request. It
1028 * returns 1 if the processing can continue on next analysers, or zero if it
1029 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +02001030 * request. It relies on buffers flags, and updates s->req->analysers. The
1031 * function may be called for frontend rules and backend rules. It only relies
1032 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001033 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001034int tcp_inspect_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +01001035{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001036 struct session *sess = s->sess;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001037 struct act_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +02001038 struct stksess *ts;
1039 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001040 int partial;
1041
Willy Tarreau87b09662015-04-03 00:22:06 +02001042 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Willy Tarreauedcf6682008-11-30 23:15:34 +01001043 now_ms, __FUNCTION__,
1044 s,
1045 req,
1046 req->rex, req->wex,
1047 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001048 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +01001049 req->analysers);
1050
Willy Tarreauedcf6682008-11-30 23:15:34 +01001051 /* We don't know whether we have enough data, so must proceed
1052 * this way :
1053 * - iterate through all rules in their declaration order
1054 * - if one rule returns MISS, it means the inspect delay is
1055 * not over yet, then return immediately, otherwise consider
1056 * it as a non-match.
1057 * - if one rule returns OK, then return OK
1058 * - if one rule returns KO, then return KO
1059 */
1060
Willy Tarreau9b28e032012-10-12 23:49:43 +02001061 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001062 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001063 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001064 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001065 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001066
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001067 /* If "the current_rule_list" match the executed rule list, we are in
1068 * resume condition. If a resume is needed it is always in the action
1069 * and never in the ACL or converters. In this case, we initialise the
1070 * current rule, and go to the action execution point.
1071 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02001072 if (s->current_rule) {
1073 rule = s->current_rule;
1074 s->current_rule = NULL;
1075 if (s->current_rule_list == &s->be->tcp_req.inspect_rules)
1076 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001077 }
1078 s->current_rule_list = &s->be->tcp_req.inspect_rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02001079
Willy Tarreaufb356202010-08-03 14:02:05 +02001080 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001081 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001082
1083 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001084 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ | partial);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001085 if (ret == ACL_TEST_MISS)
1086 goto missing_data;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001087
1088 ret = acl_pass(ret);
1089 if (rule->cond->pol == ACL_COND_UNLESS)
1090 ret = !ret;
1091 }
1092
1093 if (ret) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001094resume_execution:
Willy Tarreauedcf6682008-11-30 23:15:34 +01001095 /* we have a matching rule. */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001096 if (rule->action == ACT_ACTION_ALLOW) {
Willy Tarreau27f78242015-07-04 11:36:30 +02001097 break;
1098 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001099 else if (rule->action == ACT_ACTION_DENY) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001100 channel_abort(req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001101 channel_abort(&s->res);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001102 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001103
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001104 s->be->be_counters.denied_req++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001105 sess->fe->fe_counters.denied_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001106 if (sess->listener->counters)
1107 sess->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001108
Willy Tarreaue7dff022015-04-03 01:14:29 +02001109 if (!(s->flags & SF_ERR_MASK))
1110 s->flags |= SF_ERR_PRXCOND;
1111 if (!(s->flags & SF_FINST_MASK))
1112 s->flags |= SF_FINST_R;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001113 return 0;
1114 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001115 else if (rule->action >= ACT_ACTION_TRK_SC0 && rule->action <= ACT_ACTION_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001116 /* Note: only the first valid tracking parameter of each
1117 * applies.
1118 */
1119 struct stktable_key *key;
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001120 struct sample smp;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001121
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001122 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001123 continue;
1124
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02001125 t = rule->arg.trk_ctr.table.t;
1126 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | partial, rule->arg.trk_ctr.expr, &smp);
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001127
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001128 if ((smp.flags & SMP_F_MAY_CHANGE) && !(partial & SMP_OPT_FINAL))
1129 goto missing_data; /* key might appear later */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001130
1131 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001132 stream_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001133 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001134 if (sess->fe != s->be)
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001135 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001136 }
1137 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001138 else if (rule->action == ACT_TCP_CAPTURE) {
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001139 struct sample *key;
Thierry FOURNIERd0d65ae2015-08-04 08:21:12 +02001140 struct cap_hdr *h = rule->arg.cap.hdr;
Willy Tarreaucb7dd012015-04-03 22:16:32 +02001141 char **cap = s->req_cap;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001142 int len;
1143
Thierry FOURNIERd0d65ae2015-08-04 08:21:12 +02001144 key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ | partial, rule->arg.cap.expr, SMP_T_STR);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001145 if (!key)
1146 continue;
1147
1148 if (key->flags & SMP_F_MAY_CHANGE)
1149 goto missing_data;
1150
1151 if (cap[h->index] == NULL)
1152 cap[h->index] = pool_alloc2(h->pool);
1153
1154 if (cap[h->index] == NULL) /* no more capture memory */
1155 continue;
1156
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001157 len = key->data.u.str.len;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001158 if (len > h->len)
1159 len = h->len;
1160
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001161 memcpy(cap[h->index], key->data.u.str.str, len);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001162 cap[h->index][len] = 0;
1163 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02001164 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001165 /* Custom keywords. */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02001166 if (rule->action_ptr) {
1167 switch (rule->action_ptr(rule, s->be, s->sess, s)) {
1168 case ACT_RET_ERR:
1169 case ACT_RET_CONT:
1170 break;
1171 case ACT_RET_YIELD:
1172 s->current_rule = rule;
1173 goto missing_data;
1174 }
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001175 }
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001176
Thierry FOURNIER561a0f92015-05-29 17:29:14 +02001177 /* accept */
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02001178 if (rule->action == ACT_ACTION_STOP)
Thierry FOURNIER561a0f92015-05-29 17:29:14 +02001179 break;
1180 /* otherwise continue */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001181 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001182 }
1183 }
1184
1185 /* if we get there, it means we have no rule which matches, or
1186 * we have an explicit accept, so we apply the default accept.
1187 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001188 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001189 req->analyse_exp = TICK_ETERNITY;
1190 return 1;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001191
1192 missing_data:
1193 channel_dont_connect(req);
1194 /* just set the request timeout once at the beginning of the request */
1195 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
1196 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
1197 return 0;
1198
Willy Tarreauedcf6682008-11-30 23:15:34 +01001199}
1200
Emeric Brun97679e72010-09-23 17:56:44 +02001201/* This function performs the TCP response analysis on the current response. It
1202 * returns 1 if the processing can continue on next analysers, or zero if it
1203 * needs more data, encounters an error, or wants to immediately abort the
1204 * response. It relies on buffers flags, and updates s->rep->analysers. The
1205 * function may be called for backend rules.
1206 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001207int tcp_inspect_response(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001208{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001209 struct session *sess = s->sess;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001210 struct act_rule *rule;
Emeric Brun97679e72010-09-23 17:56:44 +02001211 int partial;
1212
Willy Tarreau87b09662015-04-03 00:22:06 +02001213 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n",
Emeric Brun97679e72010-09-23 17:56:44 +02001214 now_ms, __FUNCTION__,
1215 s,
1216 rep,
1217 rep->rex, rep->wex,
1218 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001219 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001220 rep->analysers);
1221
1222 /* We don't know whether we have enough data, so must proceed
1223 * this way :
1224 * - iterate through all rules in their declaration order
1225 * - if one rule returns MISS, it means the inspect delay is
1226 * not over yet, then return immediately, otherwise consider
1227 * it as a non-match.
1228 * - if one rule returns OK, then return OK
1229 * - if one rule returns KO, then return KO
1230 */
1231
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001232 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001233 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001234 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001235 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001236
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001237 /* If "the current_rule_list" match the executed rule list, we are in
1238 * resume condition. If a resume is needed it is always in the action
1239 * and never in the ACL or converters. In this case, we initialise the
1240 * current rule, and go to the action execution point.
1241 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02001242 if (s->current_rule) {
1243 rule = s->current_rule;
1244 s->current_rule = NULL;
1245 if (s->current_rule_list == &s->be->tcp_rep.inspect_rules)
1246 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001247 }
1248 s->current_rule_list = &s->be->tcp_rep.inspect_rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02001249
Emeric Brun97679e72010-09-23 17:56:44 +02001250 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001251 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001252
1253 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001254 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001255 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001256 /* just set the analyser timeout once at the beginning of the response */
1257 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001258 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001259 return 0;
1260 }
1261
1262 ret = acl_pass(ret);
1263 if (rule->cond->pol == ACL_COND_UNLESS)
1264 ret = !ret;
1265 }
1266
1267 if (ret) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001268resume_execution:
Emeric Brun97679e72010-09-23 17:56:44 +02001269 /* we have a matching rule. */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001270 if (rule->action == ACT_ACTION_ALLOW) {
Willy Tarreau27f78242015-07-04 11:36:30 +02001271 break;
1272 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001273 else if (rule->action == ACT_ACTION_DENY) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001274 channel_abort(rep);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001275 channel_abort(&s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001276 rep->analysers = 0;
1277
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001278 s->be->be_counters.denied_resp++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001279 sess->fe->fe_counters.denied_resp++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001280 if (sess->listener->counters)
1281 sess->listener->counters->denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001282
Willy Tarreaue7dff022015-04-03 01:14:29 +02001283 if (!(s->flags & SF_ERR_MASK))
1284 s->flags |= SF_ERR_PRXCOND;
1285 if (!(s->flags & SF_FINST_MASK))
1286 s->flags |= SF_FINST_D;
Emeric Brun97679e72010-09-23 17:56:44 +02001287 return 0;
1288 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001289 else if (rule->action == ACT_TCP_CLOSE) {
Willy Tarreau73796532014-11-28 14:10:28 +01001290 chn_prod(rep)->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1291 si_shutr(chn_prod(rep));
1292 si_shutw(chn_prod(rep));
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001293 break;
1294 }
Emeric Brun97679e72010-09-23 17:56:44 +02001295 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001296 /* Custom keywords. */
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02001297 if (rule->action_ptr) {
1298 switch (rule->action_ptr(rule, s->be, s->sess, s)) {
1299 case ACT_RET_ERR:
1300 case ACT_RET_CONT:
1301 break;
1302 case ACT_RET_YIELD:
1303 channel_dont_close(rep);
1304 s->current_rule = rule;
1305 return 0;
1306 }
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001307 }
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001308
Thierry FOURNIER561a0f92015-05-29 17:29:14 +02001309 /* accept */
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02001310 if (rule->action == ACT_ACTION_STOP)
Thierry FOURNIER561a0f92015-05-29 17:29:14 +02001311 break;
1312 /* otherwise continue */
Emeric Brun97679e72010-09-23 17:56:44 +02001313 }
1314 }
1315 }
1316
1317 /* if we get there, it means we have no rule which matches, or
1318 * we have an explicit accept, so we apply the default accept.
1319 */
1320 rep->analysers &= ~an_bit;
1321 rep->analyse_exp = TICK_ETERNITY;
1322 return 1;
1323}
1324
1325
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001326/* This function performs the TCP layer4 analysis on the current request. It
1327 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1328 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001329 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001330 */
Willy Tarreaue73ef852015-04-04 16:41:45 +02001331int tcp_exec_req_rules(struct session *sess)
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001332{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001333 struct act_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001334 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001335 struct stktable *t = NULL;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001336 struct connection *conn = objt_conn(sess->origin);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001337 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001338 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001339
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001340 if (!conn)
1341 return result;
1342
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001343 list_for_each_entry(rule, &sess->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001344 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001345
1346 if (rule->cond) {
Willy Tarreaue73ef852015-04-04 16:41:45 +02001347 ret = acl_exec_cond(rule->cond, sess->fe, sess, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001348 ret = acl_pass(ret);
1349 if (rule->cond->pol == ACL_COND_UNLESS)
1350 ret = !ret;
1351 }
1352
1353 if (ret) {
1354 /* we have a matching rule. */
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001355 if (rule->action == ACT_ACTION_ALLOW) {
Willy Tarreau27f78242015-07-04 11:36:30 +02001356 break;
1357 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001358 else if (rule->action == ACT_ACTION_DENY) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001359 sess->fe->fe_counters.denied_conn++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001360 if (sess->listener->counters)
1361 sess->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001362
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001363 result = 0;
1364 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001365 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001366 else if (rule->action >= ACT_ACTION_TRK_SC0 && rule->action <= ACT_ACTION_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001367 /* Note: only the first valid tracking parameter of each
1368 * applies.
1369 */
1370 struct stktable_key *key;
1371
Willy Tarreau70f454e2015-04-04 16:38:07 +02001372 if (stkctr_entry(&sess->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001373 continue;
1374
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02001375 t = rule->arg.trk_ctr.table.t;
1376 key = stktable_fetch_key(t, sess->fe, sess, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001377
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001378 if (key && (ts = stktable_get_entry(t, key)))
Willy Tarreau70f454e2015-04-04 16:38:07 +02001379 stream_track_stkctr(&sess->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001380 }
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001381 else if (rule->action == ACT_TCP_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001382 conn->flags |= CO_FL_ACCEPT_PROXY;
1383 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001384 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001385 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001386 /* Custom keywords. */
Thierry FOURNIERc89f4f52015-08-11 09:48:02 +02001387 if (rule->action_ptr) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02001388 switch (rule->action_ptr(rule, sess->fe, sess, NULL)) {
1389 case ACT_RET_YIELD:
1390 /* yield is not allowed at this point. If this return code is
1391 * used it is a bug, so I prefer to abort the process.
1392 */
1393 send_log(sess->fe, LOG_WARNING,
1394 "Internal error: yield not allowed with tcp-request connection actions.");
1395 case ACT_RET_CONT:
1396 break;
1397 case ACT_RET_ERR:
1398 result = 0;
1399 break;
1400 }
Thierry FOURNIER91f6ba02015-08-06 08:30:11 +02001401 if (rule->action == ACT_ACTION_CONT)
Thierry FOURNIERc89f4f52015-08-11 09:48:02 +02001402 continue;
1403 }
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001404
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001405 /* otherwise it's an accept */
1406 break;
1407 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001408 }
1409 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001410 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001411}
1412
Emeric Brun97679e72010-09-23 17:56:44 +02001413/* Parse a tcp-response rule. Return a negative value in case of failure */
1414static int tcp_parse_response_rule(char **args, int arg, int section_type,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001415 struct proxy *curpx, struct proxy *defpx,
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001416 struct act_rule *rule, char **err,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001417 unsigned int where,
1418 const char *file, int line)
Emeric Brun97679e72010-09-23 17:56:44 +02001419{
1420 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001421 memprintf(err, "%s %s is only allowed in 'backend' sections",
1422 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001423 return -1;
1424 }
1425
1426 if (strcmp(args[arg], "accept") == 0) {
1427 arg++;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001428 rule->action = ACT_ACTION_ALLOW;
Emeric Brun97679e72010-09-23 17:56:44 +02001429 }
1430 else if (strcmp(args[arg], "reject") == 0) {
1431 arg++;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001432 rule->action = ACT_ACTION_DENY;
Emeric Brun97679e72010-09-23 17:56:44 +02001433 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001434 else if (strcmp(args[arg], "close") == 0) {
1435 arg++;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001436 rule->action = ACT_TCP_CLOSE;
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001437 }
Emeric Brun97679e72010-09-23 17:56:44 +02001438 else {
Thierry FOURNIER36481b82015-08-19 09:01:53 +02001439 struct action_kw *kw;
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001440 kw = tcp_res_cont_action(args[arg]);
1441 if (kw) {
1442 arg++;
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02001443 rule->from = ACT_F_TCP_RES_CNT;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02001444 if (kw->parse((const char **)args, &arg, curpx, rule, err) == ACT_RET_PRS_ERR)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001445 return -1;
1446 } else {
1447 memprintf(err,
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02001448 "'%s %s' expects 'accept', 'close', 'reject' or 'set-var' in %s '%s' (got '%s')",
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001449 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
1450 return -1;
1451 }
Emeric Brun97679e72010-09-23 17:56:44 +02001452 }
1453
1454 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001455 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001456 memprintf(err,
1457 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1458 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001459 return -1;
1460 }
1461 }
1462 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001463 memprintf(err,
1464 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001465 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1466 return -1;
1467 }
1468 return 0;
1469}
1470
1471
1472
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001473/* Parse a tcp-request rule. Return a negative value in case of failure */
1474static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001475 struct proxy *curpx, struct proxy *defpx,
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001476 struct act_rule *rule, char **err,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001477 unsigned int where, const char *file, int line)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001478{
1479 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001480 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1481 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001482 return -1;
1483 }
1484
1485 if (!strcmp(args[arg], "accept")) {
1486 arg++;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001487 rule->action = ACT_ACTION_ALLOW;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001488 }
1489 else if (!strcmp(args[arg], "reject")) {
1490 arg++;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001491 rule->action = ACT_ACTION_DENY;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001492 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001493 else if (strcmp(args[arg], "capture") == 0) {
1494 struct sample_expr *expr;
1495 struct cap_hdr *hdr;
1496 int kw = arg;
1497 int len = 0;
1498
1499 if (!(curpx->cap & PR_CAP_FE)) {
1500 memprintf(err,
1501 "'%s %s %s' : proxy '%s' has no frontend capability",
1502 args[0], args[1], args[kw], curpx->id);
1503 return -1;
1504 }
1505
1506 if (!(where & SMP_VAL_FE_REQ_CNT)) {
1507 memprintf(err,
1508 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1509 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1510 return -1;
1511 }
1512
1513 arg++;
1514
1515 curpx->conf.args.ctx = ARGC_CAP;
1516 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
1517 if (!expr) {
1518 memprintf(err,
1519 "'%s %s %s' : %s",
1520 args[0], args[1], args[kw], *err);
1521 return -1;
1522 }
1523
1524 if (!(expr->fetch->val & where)) {
1525 memprintf(err,
1526 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
1527 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
1528 free(expr);
1529 return -1;
1530 }
1531
1532 if (strcmp(args[arg], "len") == 0) {
1533 arg++;
1534 if (!args[arg]) {
1535 memprintf(err,
1536 "'%s %s %s' : missing length value",
1537 args[0], args[1], args[kw]);
1538 free(expr);
1539 return -1;
1540 }
1541 /* we copy the table name for now, it will be resolved later */
1542 len = atoi(args[arg]);
1543 if (len <= 0) {
1544 memprintf(err,
1545 "'%s %s %s' : length must be > 0",
1546 args[0], args[1], args[kw]);
1547 free(expr);
1548 return -1;
1549 }
1550 arg++;
1551 }
1552
1553 if (!len) {
1554 memprintf(err,
1555 "'%s %s %s' : a positive 'len' argument is mandatory",
1556 args[0], args[1], args[kw]);
1557 free(expr);
1558 return -1;
1559 }
1560
1561 hdr = calloc(sizeof(struct cap_hdr), 1);
1562 hdr->next = curpx->req_cap;
1563 hdr->name = NULL; /* not a header capture */
1564 hdr->namelen = 0;
1565 hdr->len = len;
1566 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
1567 hdr->index = curpx->nb_req_cap++;
1568
1569 curpx->req_cap = hdr;
1570 curpx->to_log |= LW_REQHDR;
1571
1572 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
1573 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1574
Thierry FOURNIERd0d65ae2015-08-04 08:21:12 +02001575 rule->arg.cap.expr = expr;
1576 rule->arg.cap.hdr = hdr;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001577 rule->action = ACT_TCP_CAPTURE;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001578 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001579 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1580 args[arg][9] == '\0' && args[arg][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02001581 args[arg][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001582 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001583 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001584
1585 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001586
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001587 curpx->conf.args.ctx = ARGC_TRK;
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01001588 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001589 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001590 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001591 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001592 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001593 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001594 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001595
Willy Tarreau80aca902013-01-07 15:42:20 +01001596 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001597 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001598 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001599 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001600 free(expr);
1601 return -1;
1602 }
1603
1604 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001605 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001606
1607 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001608 arg++;
1609 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001610 memprintf(err,
1611 "'%s %s %s' : missing table name",
1612 args[0], args[1], args[kw]);
1613 free(expr);
1614 return -1;
1615 }
1616 /* we copy the table name for now, it will be resolved later */
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02001617 rule->arg.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001618 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001619 }
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02001620 rule->arg.trk_ctr.expr = expr;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001621 rule->action = ACT_ACTION_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001622 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001623 else if (strcmp(args[arg], "expect-proxy") == 0) {
1624 if (strcmp(args[arg+1], "layer4") != 0) {
1625 memprintf(err,
1626 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1627 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1628 return -1;
1629 }
1630
1631 if (!(where & SMP_VAL_FE_CON_ACC)) {
1632 memprintf(err,
1633 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1634 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1635 return -1;
1636 }
1637
1638 arg += 2;
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001639 rule->action = ACT_TCP_EXPECT_PX;
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001640 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001641 else {
Thierry FOURNIER36481b82015-08-19 09:01:53 +02001642 struct action_kw *kw;
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02001643 if (where & SMP_VAL_FE_CON_ACC) {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001644 kw = tcp_req_conn_action(args[arg]);
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02001645 rule->from = ACT_F_TCP_REQ_CON;
1646 } else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001647 kw = tcp_req_cont_action(args[arg]);
Thierry FOURNIER5563e4b2015-08-14 19:20:07 +02001648 rule->from = ACT_F_TCP_REQ_CNT;
1649 }
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001650 if (kw) {
1651 arg++;
Thierry FOURNIERafa80492015-08-19 09:04:15 +02001652 if (kw->parse((const char **)args, &arg, curpx, rule, err) == ACT_RET_PRS_ERR)
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001653 return -1;
1654 } else {
1655 memprintf(err,
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02001656 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d', "
1657 " or 'set-var' in %s '%s' (got '%s')",
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001658 args[0], args[1], MAX_SESS_STKCTR-1, proxy_type_str(curpx),
1659 curpx->id, args[arg]);
1660 return -1;
1661 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001662 }
1663
1664 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001665 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001666 memprintf(err,
1667 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1668 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001669 return -1;
1670 }
1671 }
1672 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001673 memprintf(err,
1674 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001675 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1676 return -1;
1677 }
1678 return 0;
1679}
1680
Emeric Brun97679e72010-09-23 17:56:44 +02001681/* This function should be called to parse a line starting with the "tcp-response"
1682 * keyword.
1683 */
1684static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001685 struct proxy *defpx, const char *file, int line,
1686 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001687{
1688 const char *ptr = NULL;
1689 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001690 int warn = 0;
1691 int arg;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001692 struct act_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001693 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001694 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001695 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001696
1697 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001698 memprintf(err, "missing argument for '%s' in %s '%s'",
1699 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001700 return -1;
1701 }
1702
1703 if (strcmp(args[1], "inspect-delay") == 0) {
1704 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001705 memprintf(err, "%s %s is only allowed in 'backend' sections",
1706 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001707 return -1;
1708 }
1709
1710 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001711 memprintf(err,
1712 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1713 args[0], args[1], proxy_type_str(curpx), curpx->id);
1714 if (ptr)
1715 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001716 return -1;
1717 }
1718
1719 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001720 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1721 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001722 return 1;
1723 }
1724 curpx->tcp_rep.inspect_delay = val;
1725 return 0;
1726 }
1727
Simon Hormande072bd2011-06-24 15:11:37 +09001728 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001729 LIST_INIT(&rule->list);
1730 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001731 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001732
1733 if (strcmp(args[1], "content") == 0) {
1734 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001735
1736 if (curpx->cap & PR_CAP_FE)
1737 where |= SMP_VAL_FE_RES_CNT;
1738 if (curpx->cap & PR_CAP_BE)
1739 where |= SMP_VAL_BE_RES_CNT;
1740
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001741 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001742 goto error;
1743
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001744 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1745 if (acl) {
1746 if (acl->name && *acl->name)
1747 memprintf(err,
1748 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1749 acl->name, args[0], args[1], sample_ckp_names(where));
1750 else
1751 memprintf(err,
1752 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1753 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001754 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001755 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001756
Emeric Brun97679e72010-09-23 17:56:44 +02001757 warn++;
1758 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001759 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1760 if (acl->name && *acl->name)
1761 memprintf(err,
1762 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001763 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001764 else
1765 memprintf(err,
1766 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001767 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001768 warn++;
1769 }
Emeric Brun97679e72010-09-23 17:56:44 +02001770
1771 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1772 }
1773 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001774 memprintf(err,
1775 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1776 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001777 goto error;
1778 }
1779
1780 return warn;
1781 error:
1782 free(rule);
1783 return -1;
1784}
1785
1786
Willy Tarreaub6866442008-07-14 23:54:42 +02001787/* This function should be called to parse a line starting with the "tcp-request"
1788 * keyword.
1789 */
1790static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001791 struct proxy *defpx, const char *file, int line,
1792 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001793{
1794 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001795 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001796 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001797 int arg;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001798 struct act_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001799 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001800 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001801 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001802
1803 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001804 if (curpx == defpx)
1805 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1806 else
1807 memprintf(err, "missing argument for '%s' in %s '%s'",
1808 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001809 return -1;
1810 }
1811
1812 if (!strcmp(args[1], "inspect-delay")) {
1813 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001814 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1815 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001816 return -1;
1817 }
1818
Willy Tarreaub6866442008-07-14 23:54:42 +02001819 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001820 memprintf(err,
1821 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1822 args[0], args[1], proxy_type_str(curpx), curpx->id);
1823 if (ptr)
1824 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001825 return -1;
1826 }
1827
1828 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001829 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1830 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001831 return 1;
1832 }
1833 curpx->tcp_req.inspect_delay = val;
1834 return 0;
1835 }
1836
Simon Hormande072bd2011-06-24 15:11:37 +09001837 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001838 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001839 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001840 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001841
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001842 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001843 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001844
1845 if (curpx->cap & PR_CAP_FE)
1846 where |= SMP_VAL_FE_REQ_CNT;
1847 if (curpx->cap & PR_CAP_BE)
1848 where |= SMP_VAL_BE_REQ_CNT;
1849
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001850 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001851 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001852
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001853 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1854 if (acl) {
1855 if (acl->name && *acl->name)
1856 memprintf(err,
1857 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1858 acl->name, args[0], args[1], sample_ckp_names(where));
1859 else
1860 memprintf(err,
1861 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1862 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001863 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001864 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001865
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001866 warn++;
1867 }
1868 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1869 if (acl->name && *acl->name)
1870 memprintf(err,
1871 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001872 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001873 else
1874 memprintf(err,
1875 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001876 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001877 warn++;
1878 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001879
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001880 /* the following function directly emits the warning */
1881 warnif_misplaced_tcp_cont(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001882 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001883 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001884 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001885 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001886
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001887 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001888 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1889 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001890 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001891 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001892
Willy Tarreau80aca902013-01-07 15:42:20 +01001893 where |= SMP_VAL_FE_CON_ACC;
1894
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001895 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001896 goto error;
1897
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001898 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1899 if (acl) {
1900 if (acl->name && *acl->name)
1901 memprintf(err,
1902 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1903 acl->name, args[0], args[1], sample_ckp_names(where));
1904 else
1905 memprintf(err,
1906 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1907 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001908 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001909 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001910
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001911 warn++;
1912 }
1913 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1914 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001915 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001916 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001917 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001918 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001919 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001920 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001921 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001922 warn++;
1923 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001924
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001925 /* the following function directly emits the warning */
1926 warnif_misplaced_tcp_conn(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001927 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001928 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001929 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001930 if (curpx == defpx)
1931 memprintf(err,
1932 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1933 args[0], args[1]);
1934 else
1935 memprintf(err,
1936 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001937 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001938 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001939 }
1940
Willy Tarreau1a687942010-05-23 22:40:30 +02001941 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001942 error:
1943 free(rule);
1944 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001945}
1946
Willy Tarreau645513a2010-05-24 20:55:15 +02001947
1948/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001949/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001950/************************************************************************/
1951
Willy Tarreau4a129812012-04-25 17:31:42 +02001952/* fetch the connection's source IPv4/IPv6 address */
Thierry FOURNIERa123ad82015-07-24 09:12:15 +02001953int smp_fetch_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001954{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001955 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001956
1957 if (!cli_conn)
1958 return 0;
1959
1960 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001961 case AF_INET:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001962 smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001963 smp->data.type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001964 break;
1965 case AF_INET6:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001966 smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001967 smp->data.type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001968 break;
1969 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001970 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001971 }
Emeric Brunf769f512010-10-22 17:14:01 +02001972
Willy Tarreau37406352012-04-23 16:16:37 +02001973 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001974 return 1;
1975}
1976
Willy Tarreaua5e37562011-12-16 17:06:15 +01001977/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001978static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001979smp_fetch_sport(const struct arg *args, struct sample *smp, const char *k, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001980{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001981 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001982
1983 if (!cli_conn)
1984 return 0;
1985
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001986 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001987 if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02001988 return 0;
1989
Willy Tarreau37406352012-04-23 16:16:37 +02001990 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001991 return 1;
1992}
1993
Willy Tarreau4a129812012-04-25 17:31:42 +02001994/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001995static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001996smp_fetch_dst(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001997{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001998 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreau645513a2010-05-24 20:55:15 +02001999
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002000 if (!cli_conn)
2001 return 0;
2002
2003 conn_get_to_addr(cli_conn);
2004
2005 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01002006 case AF_INET:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002007 smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002008 smp->data.type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01002009 break;
2010 case AF_INET6:
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002011 smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002012 smp->data.type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01002013 break;
2014 default:
Emeric Brunf769f512010-10-22 17:14:01 +02002015 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01002016 }
Emeric Brunf769f512010-10-22 17:14:01 +02002017
Willy Tarreau37406352012-04-23 16:16:37 +02002018 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02002019 return 1;
2020}
2021
Willy Tarreaua5e37562011-12-16 17:06:15 +01002022/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02002023static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02002024smp_fetch_dport(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02002025{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002026 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002027
2028 if (!cli_conn)
2029 return 0;
2030
2031 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02002032
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002033 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002034 if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02002035 return 0;
2036
Willy Tarreau37406352012-04-23 16:16:37 +02002037 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02002038 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01002039}
2040
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002041#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01002042/* parse the "v4v6" bind keyword */
2043static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2044{
2045 struct listener *l;
2046
2047 list_for_each_entry(l, &conf->listeners, by_bind) {
2048 if (l->addr.ss_family == AF_INET6)
2049 l->options |= LI_O_V4V6;
2050 }
2051
2052 return 0;
2053}
2054
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002055/* parse the "v6only" bind keyword */
2056static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2057{
2058 struct listener *l;
2059
2060 list_for_each_entry(l, &conf->listeners, by_bind) {
2061 if (l->addr.ss_family == AF_INET6)
2062 l->options |= LI_O_V6ONLY;
2063 }
2064
2065 return 0;
2066}
2067#endif
2068
Pieter Baauwd551fb52013-05-08 22:49:23 +02002069#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02002070/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002071static int bind_parse_transparent(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02002072{
2073 struct listener *l;
2074
Willy Tarreau4348fad2012-09-20 16:48:07 +02002075 list_for_each_entry(l, &conf->listeners, by_bind) {
2076 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2077 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02002078 }
2079
Willy Tarreau44791242012-09-12 23:27:21 +02002080 return 0;
2081}
2082#endif
2083
2084#ifdef TCP_DEFER_ACCEPT
2085/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002086static int bind_parse_defer_accept(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02002087{
2088 struct listener *l;
2089
Willy Tarreau4348fad2012-09-20 16:48:07 +02002090 list_for_each_entry(l, &conf->listeners, by_bind) {
2091 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2092 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02002093 }
2094
Willy Tarreau44791242012-09-12 23:27:21 +02002095 return 0;
2096}
2097#endif
2098
Willy Tarreau1c862c52012-10-05 16:21:00 +02002099#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01002100/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02002101static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2102{
2103 struct listener *l;
2104
2105 list_for_each_entry(l, &conf->listeners, by_bind) {
2106 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2107 l->options |= LI_O_TCP_FO;
2108 }
2109
2110 return 0;
2111}
2112#endif
2113
Willy Tarreau44791242012-09-12 23:27:21 +02002114#ifdef TCP_MAXSEG
2115/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002116static int bind_parse_mss(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02002117{
2118 struct listener *l;
2119 int mss;
2120
Willy Tarreau44791242012-09-12 23:27:21 +02002121 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002122 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002123 return ERR_ALERT | ERR_FATAL;
2124 }
2125
2126 mss = atoi(args[cur_arg + 1]);
2127 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002128 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002129 return ERR_ALERT | ERR_FATAL;
2130 }
2131
Willy Tarreau4348fad2012-09-20 16:48:07 +02002132 list_for_each_entry(l, &conf->listeners, by_bind) {
2133 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2134 l->maxseg = mss;
2135 }
Willy Tarreau44791242012-09-12 23:27:21 +02002136
2137 return 0;
2138}
2139#endif
2140
Willy Tarreau2af207a2015-02-04 00:45:58 +01002141#ifdef TCP_USER_TIMEOUT
2142/* parse the "tcp-ut" bind keyword */
2143static int bind_parse_tcp_ut(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2144{
2145 const char *ptr = NULL;
2146 struct listener *l;
2147 unsigned int timeout;
2148
2149 if (!*args[cur_arg + 1]) {
2150 memprintf(err, "'%s' : missing TCP User Timeout value", args[cur_arg]);
2151 return ERR_ALERT | ERR_FATAL;
2152 }
2153
2154 ptr = parse_time_err(args[cur_arg + 1], &timeout, TIME_UNIT_MS);
2155 if (ptr) {
2156 memprintf(err, "'%s' : expects a positive delay in milliseconds", args[cur_arg]);
2157 return ERR_ALERT | ERR_FATAL;
2158 }
2159
2160 list_for_each_entry(l, &conf->listeners, by_bind) {
2161 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2162 l->tcp_ut = timeout;
2163 }
2164
2165 return 0;
2166}
2167#endif
2168
Willy Tarreau44791242012-09-12 23:27:21 +02002169#ifdef SO_BINDTODEVICE
Willy Tarreau2af207a2015-02-04 00:45:58 +01002170/* parse the "interface" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002171static int bind_parse_interface(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau44791242012-09-12 23:27:21 +02002172{
2173 struct listener *l;
2174
Willy Tarreau44791242012-09-12 23:27:21 +02002175 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002176 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002177 return ERR_ALERT | ERR_FATAL;
2178 }
2179
Willy Tarreau4348fad2012-09-20 16:48:07 +02002180 list_for_each_entry(l, &conf->listeners, by_bind) {
2181 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2182 l->interface = strdup(args[cur_arg + 1]);
2183 }
Willy Tarreau44791242012-09-12 23:27:21 +02002184
2185 global.last_checks |= LSTCHK_NETADM;
2186 return 0;
2187}
2188#endif
2189
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002190#ifdef CONFIG_HAP_NS
2191/* parse the "namespace" bind keyword */
2192static int bind_parse_namespace(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2193{
2194 struct listener *l;
2195 char *namespace = NULL;
2196
2197 if (!*args[cur_arg + 1]) {
2198 memprintf(err, "'%s' : missing namespace id", args[cur_arg]);
2199 return ERR_ALERT | ERR_FATAL;
2200 }
2201 namespace = args[cur_arg + 1];
2202
2203 list_for_each_entry(l, &conf->listeners, by_bind) {
2204 l->netns = netns_store_lookup(namespace, strlen(namespace));
2205
2206 if (l->netns == NULL)
2207 l->netns = netns_store_insert(namespace);
2208
2209 if (l->netns == NULL) {
2210 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
2211 return ERR_ALERT | ERR_FATAL;
2212 }
2213 }
2214 return 0;
2215}
2216#endif
2217
Willy Tarreaudc13c112013-06-21 23:16:39 +02002218static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002219 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02002220 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02002221 { 0, NULL, NULL },
2222}};
2223
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002224
Willy Tarreau61612d42012-04-19 18:42:05 +02002225/* Note: must not be declared <const> as its list will be overwritten.
2226 * Please take care of keeping this list alphabetically sorted.
2227 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002228static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002229 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02002230}};
2231
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002232
Willy Tarreau4a129812012-04-25 17:31:42 +02002233/* Note: must not be declared <const> as its list will be overwritten.
2234 * Note: fetches that may return multiple types must be declared as the lowest
2235 * common denominator, the type that can be casted into all other ones. For
2236 * instance v4/v6 must be declared v4.
2237 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002238static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002239 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002240 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002241 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002242 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI },
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002243 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02002244}};
2245
Willy Tarreau44791242012-09-12 23:27:21 +02002246/************************************************************************/
2247/* All supported bind keywords must be declared here. */
2248/************************************************************************/
2249
2250/* Note: must not be declared <const> as its list will be overwritten.
2251 * Please take care of keeping this list alphabetically sorted, doing so helps
2252 * all code contributors.
2253 * Optional keywords are also declared with a NULL ->parse() function so that
2254 * the config parser can report an appropriate error when a known keyword was
2255 * not enabled.
2256 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02002257static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02002258#ifdef TCP_DEFER_ACCEPT
2259 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
2260#endif
2261#ifdef SO_BINDTODEVICE
2262 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
2263#endif
2264#ifdef TCP_MAXSEG
2265 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
2266#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +01002267#ifdef TCP_USER_TIMEOUT
2268 { "tcp-ut", bind_parse_tcp_ut, 1 }, /* set User Timeout on listening socket */
2269#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02002270#ifdef TCP_FASTOPEN
2271 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
2272#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02002273#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02002274 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
2275#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002276#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01002277 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002278 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
2279#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002280#ifdef CONFIG_HAP_NS
2281 { "namespace", bind_parse_namespace, 1 },
2282#endif
Willy Tarreau44791242012-09-12 23:27:21 +02002283 /* the versions with the NULL parse function*/
2284 { "defer-accept", NULL, 0 },
2285 { "interface", NULL, 1 },
2286 { "mss", NULL, 1 },
2287 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01002288 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002289 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02002290 { NULL, NULL, 0 },
2291}};
2292
Willy Tarreaue6b98942007-10-29 01:09:36 +01002293__attribute__((constructor))
2294static void __tcp_protocol_init(void)
2295{
2296 protocol_register(&proto_tcpv4);
2297 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02002298 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02002299 cfg_register_keywords(&cfg_kws);
2300 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02002301 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01002302}
2303
2304
2305/*
2306 * Local variables:
2307 * c-indent-level: 8
2308 * c-basic-offset: 8
2309 * End:
2310 */