blob: 19f878e2db81366608ffc1967ec87a1119eadb26 [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>
Willy Tarreau9fcb9842012-04-20 14:45:49 +020043#include <proto/arg.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020044#include <proto/channel.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020045#include <proto/connection.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020046#include <proto/fd.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020047#include <proto/listener.h>
Willy Tarreau9650f372009-08-16 14:02:45 +020048#include <proto/log.h>
49#include <proto/port_range.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020050#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010051#include <proto/proto_tcp.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020052#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020053#include <proto/sample.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020054#include <proto/stream.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020055#include <proto/stick_table.h>
Willy Tarreaucc1e04b2013-09-11 23:20:29 +020056#include <proto/stream_interface.h>
Willy Tarreaua975b8f2010-06-05 19:13:27 +020057#include <proto/task.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010058
Willy Tarreaue8c66af2008-01-13 18:40:14 +010059#ifdef CONFIG_HAP_CTTPROXY
60#include <import/ip_tproxy.h>
61#endif
62
Emeric Bruncf20bf12010-10-22 16:06:11 +020063static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen);
64static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen);
Willy Tarreaue6b98942007-10-29 01:09:36 +010065
Thierry FOURNIERcc87a112014-12-12 19:41:33 +010066/* List head of all known action keywords for "tcp-request connection" */
67struct list tcp_req_conn_keywords = LIST_HEAD_INIT(tcp_req_conn_keywords);
68struct list tcp_req_cont_keywords = LIST_HEAD_INIT(tcp_req_cont_keywords);
69struct list tcp_res_cont_keywords = LIST_HEAD_INIT(tcp_res_cont_keywords);
70
Willy Tarreaue6b98942007-10-29 01:09:36 +010071/* Note: must not be declared <const> as its list will be overwritten */
72static struct protocol proto_tcpv4 = {
73 .name = "tcpv4",
74 .sock_domain = AF_INET,
75 .sock_type = SOCK_STREAM,
76 .sock_prot = IPPROTO_TCP,
77 .sock_family = AF_INET,
78 .sock_addrlen = sizeof(struct sockaddr_in),
79 .l3_addrlen = 32/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020080 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +020081 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +020082 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010083 .bind_all = tcp_bind_listeners,
84 .unbind_all = unbind_all_listeners,
85 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +020086 .get_src = tcp_get_src,
87 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +020088 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +020089 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +010090 .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners),
91 .nb_listeners = 0,
92};
93
94/* Note: must not be declared <const> as its list will be overwritten */
95static struct protocol proto_tcpv6 = {
96 .name = "tcpv6",
97 .sock_domain = AF_INET6,
98 .sock_type = SOCK_STREAM,
99 .sock_prot = IPPROTO_TCP,
100 .sock_family = AF_INET6,
101 .sock_addrlen = sizeof(struct sockaddr_in6),
102 .l3_addrlen = 128/8,
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200103 .accept = &listener_accept,
Willy Tarreau26d8c592012-05-07 18:12:14 +0200104 .connect = tcp_connect_server,
Emeric Bruncf20bf12010-10-22 16:06:11 +0200105 .bind = tcp_bind_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100106 .bind_all = tcp_bind_listeners,
107 .unbind_all = unbind_all_listeners,
108 .enable_all = enable_all_listeners,
Willy Tarreau59b94792012-05-11 16:16:40 +0200109 .get_src = tcp_get_src,
110 .get_dst = tcp_get_dst,
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200111 .drain = tcp_drain,
Willy Tarreau092d8652014-07-07 20:22:12 +0200112 .pause = tcp_pause_listener,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100113 .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners),
114 .nb_listeners = 0,
115};
116
Thierry FOURNIERcc87a112014-12-12 19:41:33 +0100117/*
118 * Register keywords.
119 */
120void tcp_req_conn_keywords_register(struct tcp_action_kw_list *kw_list)
121{
122 LIST_ADDQ(&tcp_req_conn_keywords, &kw_list->list);
123}
124
125void tcp_req_cont_keywords_register(struct tcp_action_kw_list *kw_list)
126{
127 LIST_ADDQ(&tcp_req_cont_keywords, &kw_list->list);
128}
129
130void tcp_res_cont_keywords_register(struct tcp_action_kw_list *kw_list)
131{
132 LIST_ADDQ(&tcp_res_cont_keywords, &kw_list->list);
133}
134
135/*
136 * Return the struct http_req_action_kw associated to a keyword.
137 */
138static struct tcp_action_kw *tcp_req_conn_action(const char *kw)
139{
140 struct tcp_action_kw_list *kw_list;
141 int i;
142
143 if (LIST_ISEMPTY(&tcp_req_conn_keywords))
144 return NULL;
145
146 list_for_each_entry(kw_list, &tcp_req_conn_keywords, list) {
147 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
148 if (!strcmp(kw, kw_list->kw[i].kw))
149 return &kw_list->kw[i];
150 }
151 }
152 return NULL;
153}
154
155static struct tcp_action_kw *tcp_req_cont_action(const char *kw)
156{
157 struct tcp_action_kw_list *kw_list;
158 int i;
159
160 if (LIST_ISEMPTY(&tcp_req_cont_keywords))
161 return NULL;
162
163 list_for_each_entry(kw_list, &tcp_req_cont_keywords, list) {
164 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
165 if (!strcmp(kw, kw_list->kw[i].kw))
166 return &kw_list->kw[i];
167 }
168 }
169 return NULL;
170}
171
172static struct tcp_action_kw *tcp_res_cont_action(const char *kw)
173{
174 struct tcp_action_kw_list *kw_list;
175 int i;
176
177 if (LIST_ISEMPTY(&tcp_res_cont_keywords))
178 return NULL;
179
180 list_for_each_entry(kw_list, &tcp_res_cont_keywords, list) {
181 for (i = 0; kw_list->kw[i].kw != NULL; i++) {
182 if (!strcmp(kw, kw_list->kw[i].kw))
183 return &kw_list->kw[i];
184 }
185 }
186 return NULL;
187}
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100188
David du Colombier6f5ccb12011-03-10 22:26:24 +0100189/* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100190 * case we try to bind <remote>. <flags> is a 2-bit field consisting of :
191 * - 0 : ignore remote address (may even be a NULL pointer)
192 * - 1 : use provided address
193 * - 2 : use provided port
194 * - 3 : use both
195 *
196 * The function supports multiple foreign binding methods :
197 * - linux_tproxy: we directly bind to the foreign address
198 * - cttproxy: we bind to a local address then nat.
199 * The second one can be used as a fallback for the first one.
200 * This function returns 0 when everything's OK, 1 if it could not bind, to the
201 * local address, 2 if it could not bind to the foreign address.
202 */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100203int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote)
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100204{
David du Colombier6f5ccb12011-03-10 22:26:24 +0100205 struct sockaddr_storage bind_addr;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100206 int foreign_ok = 0;
207 int ret;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100208 static int ip_transp_working = 1;
David du Colombier65c17962012-07-13 14:34:59 +0200209 static int ip6_transp_working = 1;
Pieter Baauwd551fb52013-05-08 22:49:23 +0200210
David du Colombier65c17962012-07-13 14:34:59 +0200211 switch (local->ss_family) {
212 case AF_INET:
213 if (flags && ip_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200214 /* This deserves some explanation. Some platforms will support
215 * multiple combinations of certain methods, so we try the
216 * supported ones until one succeeds.
217 */
218 if (0
219#if defined(IP_TRANSPARENT)
220 || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0)
221#endif
222#if defined(IP_FREEBIND)
223 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
224#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200225#if defined(IP_BINDANY)
226 || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0)
227#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200228#if defined(SO_BINDANY)
229 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
230#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200231 )
David du Colombier65c17962012-07-13 14:34:59 +0200232 foreign_ok = 1;
233 else
234 ip_transp_working = 0;
235 }
236 break;
237 case AF_INET6:
238 if (flags && ip6_transp_working) {
Pieter Baauwd551fb52013-05-08 22:49:23 +0200239 if (0
240#if defined(IPV6_TRANSPARENT)
241 || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0)
242#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100243#if defined(IP_FREEBIND)
244 || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0)
245#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200246#if defined(IPV6_BINDANY)
247 || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0)
248#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200249#if defined(SO_BINDANY)
250 || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0)
251#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200252 )
David du Colombier65c17962012-07-13 14:34:59 +0200253 foreign_ok = 1;
254 else
255 ip6_transp_working = 0;
256 }
257 break;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100258 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200259
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100260 if (flags) {
261 memset(&bind_addr, 0, sizeof(bind_addr));
Willy Tarreau96dd0792011-04-19 07:20:57 +0200262 bind_addr.ss_family = remote->ss_family;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100263 switch (remote->ss_family) {
264 case AF_INET:
265 if (flags & 1)
266 ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr;
267 if (flags & 2)
268 ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port;
269 break;
270 case AF_INET6:
271 if (flags & 1)
272 ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr;
273 if (flags & 2)
274 ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port;
275 break;
Willy Tarreau5dc1e982011-12-16 21:25:11 +0100276 default:
277 /* we don't want to try to bind to an unknown address family */
278 foreign_ok = 0;
David du Colombier6f5ccb12011-03-10 22:26:24 +0100279 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100280 }
281
Simon Hormande072bd2011-06-24 15:11:37 +0900282 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100283 if (foreign_ok) {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200284 if (is_inet_addr(&bind_addr)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200285 ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr));
286 if (ret < 0)
287 return 2;
288 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100289 }
290 else {
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200291 if (is_inet_addr(local)) {
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200292 ret = bind(fd, (struct sockaddr *)local, get_addr_len(local));
293 if (ret < 0)
294 return 1;
295 }
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100296 }
297
298 if (!flags)
299 return 0;
300
301#ifdef CONFIG_HAP_CTTPROXY
Willy Tarreau6f831b42011-03-20 14:03:54 +0100302 if (!foreign_ok && remote->ss_family == AF_INET) {
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100303 struct in_tproxy itp1, itp2;
304 memset(&itp1, 0, sizeof(itp1));
305
306 itp1.op = TPROXY_ASSIGN;
Willy Tarreau6f831b42011-03-20 14:03:54 +0100307 itp1.v.addr.faddr = ((struct sockaddr_in *)&bind_addr)->sin_addr;
308 itp1.v.addr.fport = ((struct sockaddr_in *)&bind_addr)->sin_port;
Willy Tarreaue8c66af2008-01-13 18:40:14 +0100309
310 /* set connect flag on socket */
311 itp2.op = TPROXY_FLAGS;
312 itp2.v.flags = ITP_CONNECT | ITP_ONCE;
313
314 if (setsockopt(fd, SOL_IP, IP_TPROXY, &itp1, sizeof(itp1)) != -1 &&
315 setsockopt(fd, SOL_IP, IP_TPROXY, &itp2, sizeof(itp2)) != -1) {
316 foreign_ok = 1;
317 }
318 }
319#endif
320 if (!foreign_ok)
321 /* we could not bind to a foreign address */
322 return 2;
323
324 return 0;
325}
Willy Tarreaue6b98942007-10-29 01:09:36 +0100326
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100327static int create_server_socket(struct connection *conn)
328{
Willy Tarreau529c1392014-12-24 13:47:55 +0100329 const struct netns_entry *ns = NULL;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100330
Willy Tarreau529c1392014-12-24 13:47:55 +0100331#ifdef CONFIG_HAP_NS
332 if (objt_server(conn->target)) {
333 if (__objt_server(conn->target)->flags & SRV_F_USE_NS_FROM_PP)
334 ns = conn->proxy_netns;
335 else
336 ns = __objt_server(conn->target)->netns;
337 }
338#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100339 return my_socketat(ns, conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP);
340}
Willy Tarreau9650f372009-08-16 14:02:45 +0200341
342/*
Willy Tarreau14f8e862012-08-30 22:23:13 +0200343 * This function initiates a TCP connection establishment to the target assigned
344 * to connection <conn> using (si->{target,addr.to}). A source address may be
345 * pointed to by conn->addr.from in case of transparent proxying. Normal source
346 * bind addresses are still determined locally (due to the possible need of a
347 * source port). conn->target may point either to a valid server or to a backend,
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100348 * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are
Willy Tarreauf0837b22012-11-24 10:24:27 +0100349 * supported. The <data> parameter is a boolean indicating whether there are data
350 * waiting for being sent or not, in order to adjust data write polling and on
351 * some platforms, the ability to avoid an empty initial ACK. The <delack> argument
352 * allows the caller to force using a delayed ACK when establishing the connection :
353 * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect
354 * - 1 = delayed ACK if backend has tcp-smart-connect, regardless of data
355 * - 2 = delayed ACK regardless of backend options
Willy Tarreaub1d67742010-03-29 19:36:59 +0200356 *
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200357 * Note that a pending send_proxy message accounts for data.
358 *
Willy Tarreau9650f372009-08-16 14:02:45 +0200359 * It can return one of :
Willy Tarreaue7dff022015-04-03 01:14:29 +0200360 * - SF_ERR_NONE if everything's OK
361 * - SF_ERR_SRVTO if there are no more servers
362 * - SF_ERR_SRVCL if the connection was refused by the server
363 * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn)
364 * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...)
365 * - SF_ERR_INTERNAL for any other purely internal errors
366 * Additionnally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted.
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100367 *
Willy Tarreaue7dff022015-04-03 01:14:29 +0200368 * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise
Willy Tarreau6b0a8502012-11-23 08:51:32 +0100369 * it's invalid and the caller has nothing to do.
Willy Tarreau9650f372009-08-16 14:02:45 +0200370 */
Willy Tarreauf1536862011-03-03 18:27:32 +0100371
Willy Tarreauf0837b22012-11-24 10:24:27 +0100372int tcp_connect_server(struct connection *conn, int data, int delack)
Willy Tarreau9650f372009-08-16 14:02:45 +0200373{
374 int fd;
Willy Tarreauac825402011-03-04 22:04:29 +0100375 struct server *srv;
376 struct proxy *be;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100377 struct conn_src *src;
Willy Tarreauac825402011-03-04 22:04:29 +0100378
Willy Tarreau9ce70132014-01-24 16:08:19 +0100379 conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */
380
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100381 switch (obj_type(conn->target)) {
382 case OBJ_TYPE_PROXY:
383 be = objt_proxy(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100384 srv = NULL;
385 break;
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100386 case OBJ_TYPE_SERVER:
387 srv = objt_server(conn->target);
Willy Tarreauac825402011-03-04 22:04:29 +0100388 be = srv->proxy;
389 break;
390 default:
Willy Tarreau9ce70132014-01-24 16:08:19 +0100391 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200392 return SF_ERR_INTERNAL;
Willy Tarreauac825402011-03-04 22:04:29 +0100393 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200394
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100395 fd = conn->t.sock.fd = create_server_socket(conn);
396
397 if (fd == -1) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200398 qfprintf(stderr, "Cannot get a server socket.\n");
399
Willy Tarreau9ce70132014-01-24 16:08:19 +0100400 if (errno == ENFILE) {
401 conn->err_code = CO_ER_SYS_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200402 send_log(be, LOG_EMERG,
403 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
404 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100405 }
406 else if (errno == EMFILE) {
407 conn->err_code = CO_ER_PROC_FDLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200408 send_log(be, LOG_EMERG,
409 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
410 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100411 }
412 else if (errno == ENOBUFS || errno == ENOMEM) {
413 conn->err_code = CO_ER_SYS_MEMLIM;
Willy Tarreau9650f372009-08-16 14:02:45 +0200414 send_log(be, LOG_EMERG,
415 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
416 be->id, maxfd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100417 }
418 else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) {
419 conn->err_code = CO_ER_NOPROTO;
420 }
421 else
422 conn->err_code = CO_ER_SOCK_ERR;
423
Willy Tarreau9650f372009-08-16 14:02:45 +0200424 /* this is a resource error */
Willy Tarreau9ce70132014-01-24 16:08:19 +0100425 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200426 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200427 }
428
429 if (fd >= global.maxsock) {
430 /* do not log anything there, it's a normal condition when this option
431 * is used to serialize connections to a server !
432 */
433 Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n");
434 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100435 conn->err_code = CO_ER_CONF_FDLIM;
436 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200437 return SF_ERR_PRXCOND; /* it is a configuration limit */
Willy Tarreau9650f372009-08-16 14:02:45 +0200438 }
439
440 if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) ||
Simon Hormande072bd2011-06-24 15:11:37 +0900441 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200442 qfprintf(stderr,"Cannot set client socket to non blocking mode.\n");
443 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100444 conn->err_code = CO_ER_SOCK_ERR;
445 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200446 return SF_ERR_INTERNAL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200447 }
448
449 if (be->options & PR_O_TCP_SRV_KA)
Simon Hormande072bd2011-06-24 15:11:37 +0900450 setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one));
Willy Tarreau9650f372009-08-16 14:02:45 +0200451
Willy Tarreau9650f372009-08-16 14:02:45 +0200452 /* allow specific binding :
453 * - server-specific at first
454 * - proxy-specific next
455 */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100456 if (srv && srv->conn_src.opts & CO_SRC_BIND)
457 src = &srv->conn_src;
458 else if (be->conn_src.opts & CO_SRC_BIND)
459 src = &be->conn_src;
460 else
461 src = NULL;
462
463 if (src) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200464 int ret, flags = 0;
465
Willy Tarreau9cf8d3f2014-05-09 22:56:10 +0200466 if (is_inet_addr(&conn->addr.from)) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100467 switch (src->opts & CO_SRC_TPROXY_MASK) {
Willy Tarreauef9a3602012-12-08 22:29:20 +0100468 case CO_SRC_TPROXY_ADDR:
469 case CO_SRC_TPROXY_CLI:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200470 flags = 3;
471 break;
Willy Tarreauef9a3602012-12-08 22:29:20 +0100472 case CO_SRC_TPROXY_CIP:
473 case CO_SRC_TPROXY_DYN:
Willy Tarreau5f2877a2012-10-26 19:57:58 +0200474 flags = 1;
475 break;
476 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200477 }
Willy Tarreaub1d67742010-03-29 19:36:59 +0200478
Willy Tarreau9650f372009-08-16 14:02:45 +0200479#ifdef SO_BINDTODEVICE
480 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100481 if (src->iface_name)
482 setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1);
Willy Tarreau9650f372009-08-16 14:02:45 +0200483#endif
484
Willy Tarreaua4380b42012-12-08 22:49:11 +0100485 if (src->sport_range) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200486 int attempts = 10; /* should be more than enough to find a spare port */
Willy Tarreaua4380b42012-12-08 22:49:11 +0100487 struct sockaddr_storage sa;
Willy Tarreau9650f372009-08-16 14:02:45 +0200488
489 ret = 1;
Willy Tarreaua4380b42012-12-08 22:49:11 +0100490 sa = src->source_addr;
Willy Tarreau9650f372009-08-16 14:02:45 +0200491
492 do {
493 /* note: in case of retry, we may have to release a previously
494 * allocated port, hence this loop's construct.
495 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200496 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
497 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200498
499 if (!attempts)
500 break;
501 attempts--;
502
Willy Tarreaua4380b42012-12-08 22:49:11 +0100503 fdinfo[fd].local_port = port_range_alloc_port(src->sport_range);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100504 if (!fdinfo[fd].local_port) {
505 conn->err_code = CO_ER_PORT_RANGE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200506 break;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100507 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200508
Willy Tarreaua4380b42012-12-08 22:49:11 +0100509 fdinfo[fd].port_range = src->sport_range;
510 set_host_port(&sa, fdinfo[fd].local_port);
Willy Tarreau9650f372009-08-16 14:02:45 +0200511
Willy Tarreaua4380b42012-12-08 22:49:11 +0100512 ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100513 if (ret != 0)
514 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200515 } while (ret != 0); /* binding NOK */
516 }
517 else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100518 ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100519 if (ret != 0)
520 conn->err_code = CO_ER_CANT_BIND;
Willy Tarreau9650f372009-08-16 14:02:45 +0200521 }
522
Willy Tarreaua4380b42012-12-08 22:49:11 +0100523 if (unlikely(ret != 0)) {
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200524 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
525 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200526 close(fd);
527
Willy Tarreau9650f372009-08-16 14:02:45 +0200528 if (ret == 1) {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100529 Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200530 be->id);
531 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100532 "Cannot bind to source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200533 be->id);
534 } else {
Willy Tarreaua4380b42012-12-08 22:49:11 +0100535 Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200536 be->id);
537 send_log(be, LOG_EMERG,
Willy Tarreaua4380b42012-12-08 22:49:11 +0100538 "Cannot bind to tproxy source address before connect() for backend %s.\n",
Willy Tarreau9650f372009-08-16 14:02:45 +0200539 be->id);
540 }
Willy Tarreau9ce70132014-01-24 16:08:19 +0100541 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200542 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200543 }
544 }
545
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400546#if defined(TCP_QUICKACK)
Willy Tarreau9650f372009-08-16 14:02:45 +0200547 /* disabling tcp quick ack now allows the first request to leave the
548 * machine with the first ACK. We only do this if there are pending
Willy Tarreauf0837b22012-11-24 10:24:27 +0100549 * data in the buffer.
Willy Tarreau9650f372009-08-16 14:02:45 +0200550 */
Willy Tarreaufb20e462014-10-24 12:02:24 +0200551 if (delack == 2 || ((delack || data || conn->send_proxy_ofs) && (be->options2 & PR_O2_SMARTCON)))
Simon Hormande072bd2011-06-24 15:11:37 +0900552 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9650f372009-08-16 14:02:45 +0200553#endif
554
Willy Tarreaue803de22010-01-21 17:43:04 +0100555 if (global.tune.server_sndbuf)
556 setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf));
557
558 if (global.tune.server_rcvbuf)
559 setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf));
560
Willy Tarreau986a9d22012-08-30 21:11:38 +0200561 if ((connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) &&
Willy Tarreau9650f372009-08-16 14:02:45 +0200562 (errno != EINPROGRESS) && (errno != EALREADY) && (errno != EISCONN)) {
563
Willy Tarreaub1719512012-12-08 23:03:28 +0100564 if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200565 char *msg;
Willy Tarreau9ce70132014-01-24 16:08:19 +0100566 if (errno == EAGAIN || errno == EADDRNOTAVAIL) {
Willy Tarreau9650f372009-08-16 14:02:45 +0200567 msg = "no free ports";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100568 conn->err_code = CO_ER_FREE_PORTS;
569 }
570 else {
Willy Tarreau9650f372009-08-16 14:02:45 +0200571 msg = "local address already in use";
Willy Tarreau9ce70132014-01-24 16:08:19 +0100572 conn->err_code = CO_ER_ADDR_INUSE;
573 }
Willy Tarreau9650f372009-08-16 14:02:45 +0200574
Willy Tarreaub1719512012-12-08 23:03:28 +0100575 qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200576 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
577 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200578 close(fd);
Willy Tarreaub1719512012-12-08 23:03:28 +0100579 send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100580 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200581 return SF_ERR_RESOURCE;
Willy Tarreau9650f372009-08-16 14:02:45 +0200582 } else if (errno == ETIMEDOUT) {
583 //qfprintf(stderr,"Connect(): ETIMEDOUT");
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200584 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
585 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200586 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100587 conn->err_code = CO_ER_SOCK_ERR;
588 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200589 return SF_ERR_SRVTO;
Willy Tarreau9650f372009-08-16 14:02:45 +0200590 } else {
591 // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM)
592 //qfprintf(stderr,"Connect(): %d", errno);
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200593 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
594 fdinfo[fd].port_range = NULL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200595 close(fd);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100596 conn->err_code = CO_ER_SOCK_ERR;
597 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200598 return SF_ERR_SRVCL;
Willy Tarreau9650f372009-08-16 14:02:45 +0200599 }
600 }
601
Willy Tarreaufc8f1f02012-12-08 18:53:44 +0100602 conn->flags |= CO_FL_ADDR_TO_SET;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200603
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200604 /* Prepare to send a few handshakes related to the on-wire protocol. */
605 if (conn->send_proxy_ofs)
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200606 conn->flags |= CO_FL_SEND_PROXY;
Willy Tarreau1ec74bf2013-10-24 21:45:00 +0200607
Willy Tarreauf79c8172013-10-21 16:30:56 +0200608 conn_ctrl_init(conn); /* registers the FD */
Willy Tarreauad38ace2013-12-15 14:19:38 +0100609 fdtab[fd].linger_risk = 1; /* close hard if needed */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200610 conn_sock_want_send(conn); /* for connect status */
Willy Tarreau15678ef2012-08-31 13:54:11 +0200611
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200612 if (conn_xprt_init(conn) < 0) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200613 conn_force_close(conn);
Willy Tarreau9ce70132014-01-24 16:08:19 +0100614 conn->flags |= CO_FL_ERROR;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200615 return SF_ERR_RESOURCE;
Willy Tarreau184636e2012-09-06 14:04:41 +0200616 }
Willy Tarreau15678ef2012-08-31 13:54:11 +0200617
Willy Tarreau14f8e862012-08-30 22:23:13 +0200618 if (data)
Willy Tarreau986a9d22012-08-30 21:11:38 +0200619 conn_data_want_send(conn); /* prepare to send data if any */
Willy Tarreau9650f372009-08-16 14:02:45 +0200620
Willy Tarreaue7dff022015-04-03 01:14:29 +0200621 return SF_ERR_NONE; /* connection is OK */
Willy Tarreau9650f372009-08-16 14:02:45 +0200622}
623
624
Willy Tarreau59b94792012-05-11 16:16:40 +0200625/*
626 * Retrieves the source address for the socket <fd>, with <dir> indicating
627 * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of
628 * success, -1 in case of error. The socket's source address is stored in
629 * <sa> for <salen> bytes.
630 */
631int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir)
632{
633 if (dir)
634 return getsockname(fd, sa, &salen);
635 else
636 return getpeername(fd, sa, &salen);
637}
638
639
640/*
641 * Retrieves the original destination address for the socket <fd>, with <dir>
642 * indicating if we're a listener (=0) or an initiator (!=0). In the case of a
643 * listener, if the original destination address was translated, the original
644 * address is retrieved. It returns 0 in case of success, -1 in case of error.
645 * The socket's source address is stored in <sa> for <salen> bytes.
646 */
647int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir)
648{
649 if (dir)
650 return getpeername(fd, sa, &salen);
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100651 else {
652 int ret = getsockname(fd, sa, &salen);
653
654 if (ret < 0)
655 return ret;
656
Willy Tarreau59b94792012-05-11 16:16:40 +0200657#if defined(TPROXY) && defined(SO_ORIGINAL_DST)
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100658 /* For TPROXY and Netfilter's NAT, we can retrieve the original
659 * IPv4 address before DNAT/REDIRECT. We must not do that with
660 * other families because v6-mapped IPv4 addresses are still
661 * reported as v4.
662 */
663 if (((struct sockaddr_storage *)sa)->ss_family == AF_INET
664 && getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0)
665 return 0;
Willy Tarreau59b94792012-05-11 16:16:40 +0200666#endif
Willy Tarreau5e0d0e02014-10-29 21:46:01 +0100667 return ret;
668 }
Willy Tarreau59b94792012-05-11 16:16:40 +0200669}
670
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200671/* Tries to drain any pending incoming data from the socket to reach the
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100672 * receive shutdown. Returns positive if the shutdown was found, negative
673 * if EAGAIN was hit, otherwise zero. This is useful to decide whether we
674 * can close a connection cleanly are we must kill it hard.
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200675 */
676int tcp_drain(int fd)
677{
678 int turns = 2;
679 int len;
680
681 while (turns) {
682#ifdef MSG_TRUNC_CLEARS_INPUT
683 len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC);
684 if (len == -1 && errno == EFAULT)
685#endif
686 len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL);
687
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100688 if (len == 0) {
689 /* cool, shutdown received */
690 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200691 return 1;
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100692 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200693
694 if (len < 0) {
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100695 if (errno == EAGAIN) {
696 /* connection not closed yet */
697 fd_cant_recv(fd);
Willy Tarreau7f4bcc32014-01-20 11:26:12 +0100698 return -1;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100699 }
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200700 if (errno == EINTR) /* oops, try again */
701 continue;
702 /* other errors indicate a dead connection, fine. */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100703 fdtab[fd].linger_risk = 0;
Willy Tarreau2b57cb82013-06-10 19:56:38 +0200704 return 1;
705 }
706 /* OK we read some data, let's try again once */
707 turns--;
708 }
709 /* some data are still present, give up */
710 return 0;
711}
712
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200713/* This is the callback which is set when a connection establishment is pending
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100714 * and we have nothing to send. It updates the FD polling status. It returns 0
715 * if it fails in a fatal way or needs to poll to go further, otherwise it
716 * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's
717 * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in
718 * errno. The error checking is done in two passes in order to limit the number
719 * of syscalls in the normal case :
720 * - if POLL_ERR was reported by the poller, we check for a pending error on
721 * the socket before proceeding. If found, it's assigned to errno so that
722 * upper layers can see it.
723 * - otherwise connect() is used to check the connection state again, since
724 * the getsockopt return cannot reliably be used to know if the connection
725 * is still pending or ready. This one may often return an error as well,
726 * since we don't always have POLL_ERR (eg: OSX or cached events).
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200727 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200728int tcp_connect_probe(struct connection *conn)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200729{
Willy Tarreau239d7182012-07-23 18:53:03 +0200730 int fd = conn->t.sock.fd;
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100731 socklen_t lskerr;
732 int skerr;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200733
Willy Tarreau80184712012-07-06 14:54:49 +0200734 if (conn->flags & CO_FL_ERROR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200735 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200736
Willy Tarreau3c728722014-01-23 13:50:42 +0100737 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200738 return 0;
739
Willy Tarreau80184712012-07-06 14:54:49 +0200740 if (!(conn->flags & CO_FL_WAIT_L4_CONN))
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200741 return 1; /* strange we were called while ready */
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200742
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100743 if (!fd_send_ready(fd))
744 return 0;
745
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100746 /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP
747 * without FD_POLL_IN also indicates a hangup without input data meaning
748 * there was no connection.
749 */
750 if (fdtab[fd].ev & FD_POLL_ERR ||
751 (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) {
752 skerr = 0;
753 lskerr = sizeof(skerr);
754 getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
755 errno = skerr;
756 if (errno == EAGAIN)
757 errno = 0;
758 if (errno)
759 goto out_error;
760 }
Willy Tarreau2da156f2012-07-23 15:07:23 +0200761
Willy Tarreauf12a20e2013-12-04 16:11:04 +0100762 /* Use connect() to check the state of the socket. This has the
763 * advantage of giving us the following info :
Willy Tarreau2c6be842012-07-06 17:12:34 +0200764 * - error
765 * - connecting (EALREADY, EINPROGRESS)
766 * - connected (EISCONN, 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200767 */
Willy Tarreau986a9d22012-08-30 21:11:38 +0200768 if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) {
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200769 if (errno == EALREADY || errno == EINPROGRESS) {
Willy Tarreaud486ef52012-12-10 17:03:52 +0100770 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100771 fd_cant_send(fd);
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200772 return 0;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200773 }
Willy Tarreaua190d592012-05-20 18:35:19 +0200774
Willy Tarreau2c6be842012-07-06 17:12:34 +0200775 if (errno && errno != EISCONN)
Willy Tarreaua190d592012-05-20 18:35:19 +0200776 goto out_error;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200777
Willy Tarreau2c6be842012-07-06 17:12:34 +0200778 /* otherwise we're connected */
Willy Tarreaua190d592012-05-20 18:35:19 +0200779 }
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200780
Willy Tarreau076be252012-07-06 16:02:29 +0200781 /* The FD is ready now, we'll mark the connection as complete and
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200782 * forward the event to the transport layer which will notify the
783 * data layer.
Willy Tarreaua190d592012-05-20 18:35:19 +0200784 */
Willy Tarreau80184712012-07-06 14:54:49 +0200785 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200786 return 1;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200787
788 out_error:
Willy Tarreau0b0c0972012-07-23 20:05:00 +0200789 /* Write error on the file descriptor. Report it to the connection
790 * and disable polling on this FD.
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200791 */
Willy Tarreau3bd3e572014-01-20 11:56:37 +0100792 fdtab[fd].linger_risk = 0;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100793 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreaud486ef52012-12-10 17:03:52 +0100794 __conn_sock_stop_both(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200795 return 0;
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200796}
797
Willy Tarreau59b94792012-05-11 16:16:40 +0200798
Willy Tarreaue6b98942007-10-29 01:09:36 +0100799/* This function tries to bind a TCPv4/v6 listener. It may return a warning or
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100800 * an error message in <errmsg> if the message is at most <errlen> bytes long
801 * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero.
802 * The return value is composed from ERR_ABORT, ERR_WARN,
Willy Tarreaue6b98942007-10-29 01:09:36 +0100803 * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything
804 * was alright and that no message was returned. ERR_RETRYABLE means that an
805 * error occurred but that it may vanish after a retry (eg: port in use), and
Aman Guptad94991d2012-04-06 17:39:26 -0700806 * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter
Willy Tarreaue6b98942007-10-29 01:09:36 +0100807 * the meaning of the error, but just indicate that a message is present which
808 * should be displayed with the respective level. Last, ERR_ABORT indicates
809 * that it's pointless to try to start other listeners. No error message is
810 * returned if errlen is NULL.
811 */
812int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen)
813{
814 __label__ tcp_return, tcp_close_return;
815 int fd, err;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100816 int ext, ready;
817 socklen_t ready_len;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100818 const char *msg = NULL;
819
820 /* ensure we never return garbage */
Willy Tarreau8ab505b2013-01-24 01:41:38 +0100821 if (errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +0100822 *errmsg = 0;
823
824 if (listener->state != LI_ASSIGNED)
825 return ERR_NONE; /* already bound */
826
827 err = ERR_NONE;
828
Willy Tarreau40aa0702013-03-10 23:51:38 +0100829 /* if the listener already has an fd assigned, then we were offered the
830 * fd by an external process (most likely the parent), and we don't want
831 * to create a new socket. However we still want to set a few flags on
832 * the socket.
833 */
834 fd = listener->fd;
835 ext = (fd >= 0);
836
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +0100837 if (!ext) {
838 fd = my_socketat(listener->netns, listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP);
839
840 if (fd == -1) {
841 err |= ERR_RETRYABLE | ERR_ALERT;
842 msg = "cannot create listening socket";
843 goto tcp_return;
844 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100845 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100846
Willy Tarreaue6b98942007-10-29 01:09:36 +0100847 if (fd >= global.maxsock) {
848 err |= ERR_FATAL | ERR_ABORT | ERR_ALERT;
849 msg = "not enough free sockets (raise '-n' parameter)";
850 goto tcp_close_return;
851 }
852
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200853 if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100854 err |= ERR_FATAL | ERR_ALERT;
855 msg = "cannot make socket non-blocking";
856 goto tcp_close_return;
857 }
858
Willy Tarreau40aa0702013-03-10 23:51:38 +0100859 if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100860 /* not fatal but should be reported */
861 msg = "cannot do so_reuseaddr";
862 err |= ERR_ALERT;
863 }
864
865 if (listener->options & LI_O_NOLINGER)
Simon Hormande072bd2011-06-24 15:11:37 +0900866 setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger));
Willy Tarreauedcf6682008-11-30 23:15:34 +0100867
Willy Tarreaue6b98942007-10-29 01:09:36 +0100868#ifdef SO_REUSEPORT
869 /* OpenBSD supports this. As it's present in old libc versions of Linux,
870 * it might return an error that we will silently ignore.
871 */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100872 if (!ext)
873 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one));
Willy Tarreaue6b98942007-10-29 01:09:36 +0100874#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200875
Willy Tarreau40aa0702013-03-10 23:51:38 +0100876 if (!ext && (listener->options & LI_O_FOREIGN)) {
David du Colombier65c17962012-07-13 14:34:59 +0200877 switch (listener->addr.ss_family) {
878 case AF_INET:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200879 if (1
880#if defined(IP_TRANSPARENT)
881 && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1)
882#endif
883#if defined(IP_FREEBIND)
884 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
885#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200886#if defined(IP_BINDANY)
887 && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1)
888#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200889#if defined(SO_BINDANY)
890 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
891#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200892 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200893 msg = "cannot make listening socket transparent";
894 err |= ERR_ALERT;
895 }
896 break;
897 case AF_INET6:
Pieter Baauwd551fb52013-05-08 22:49:23 +0200898 if (1
899#if defined(IPV6_TRANSPARENT)
900 && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1)
901#endif
Lukas Tribus7640e722014-03-03 21:10:51 +0100902#if defined(IP_FREEBIND)
903 && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1)
904#endif
Pieter Baauwff30b662013-05-08 23:22:39 +0200905#if defined(IPV6_BINDANY)
906 && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1)
907#endif
Pieter Baauw1eb75922013-05-08 23:30:23 +0200908#if defined(SO_BINDANY)
909 && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1)
910#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +0200911 ) {
David du Colombier65c17962012-07-13 14:34:59 +0200912 msg = "cannot make listening socket transparent";
913 err |= ERR_ALERT;
914 }
915 break;
916 }
Willy Tarreaub1e52e82008-01-13 14:49:51 +0100917 }
Pieter Baauwd551fb52013-05-08 22:49:23 +0200918
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100919#ifdef SO_BINDTODEVICE
920 /* Note: this might fail if not CAP_NET_RAW */
Willy Tarreau40aa0702013-03-10 23:51:38 +0100921 if (!ext && listener->interface) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100922 if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE,
Willy Tarreau604e8302009-03-06 00:48:23 +0100923 listener->interface, strlen(listener->interface) + 1) == -1) {
Willy Tarreau5e6e2042009-02-04 17:19:29 +0100924 msg = "cannot bind listener to device";
925 err |= ERR_WARN;
926 }
927 }
928#endif
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400929#if defined(TCP_MAXSEG)
Willy Tarreau48a7e722010-12-24 15:26:39 +0100930 if (listener->maxseg > 0) {
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400931 if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG,
Willy Tarreaube1b9182009-06-14 18:48:19 +0200932 &listener->maxseg, sizeof(listener->maxseg)) == -1) {
933 msg = "cannot set MSS";
934 err |= ERR_WARN;
935 }
936 }
937#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +0100938#if defined(TCP_USER_TIMEOUT)
939 if (listener->tcp_ut) {
940 if (setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
941 &listener->tcp_ut, sizeof(listener->tcp_ut)) == -1) {
942 msg = "cannot set TCP User Timeout";
943 err |= ERR_WARN;
944 }
945 }
946#endif
Willy Tarreaucb6cd432009-10-13 07:34:14 +0200947#if defined(TCP_DEFER_ACCEPT)
948 if (listener->options & LI_O_DEF_ACCEPT) {
949 /* defer accept by up to one second */
950 int accept_delay = 1;
951 if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) {
952 msg = "cannot enable DEFER_ACCEPT";
953 err |= ERR_WARN;
954 }
955 }
956#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +0200957#if defined(TCP_FASTOPEN)
958 if (listener->options & LI_O_TCP_FO) {
959 /* TFO needs a queue length, let's use the configured backlog */
960 int qlen = listener->backlog ? listener->backlog : listener->maxconn;
961 if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) {
962 msg = "cannot enable TCP_FASTOPEN";
963 err |= ERR_WARN;
964 }
965 }
966#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100967#if defined(IPV6_V6ONLY)
968 if (listener->options & LI_O_V6ONLY)
969 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one));
Willy Tarreau77e3af92012-11-24 15:07:23 +0100970 else if (listener->options & LI_O_V4V6)
971 setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero));
Willy Tarreau9b6700f2012-11-24 11:55:28 +0100972#endif
973
Willy Tarreau40aa0702013-03-10 23:51:38 +0100974 if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100975 err |= ERR_RETRYABLE | ERR_ALERT;
976 msg = "cannot bind socket";
977 goto tcp_close_return;
978 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100979
Willy Tarreau40aa0702013-03-10 23:51:38 +0100980 ready = 0;
981 ready_len = sizeof(ready);
982 if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1)
983 ready = 0;
984
985 if (!(ext && ready) && /* only listen if not already done by external process */
986 listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100987 err |= ERR_RETRYABLE | ERR_ALERT;
988 msg = "cannot listen to socket";
989 goto tcp_close_return;
990 }
Willy Tarreauedcf6682008-11-30 23:15:34 +0100991
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +0400992#if defined(TCP_QUICKACK)
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200993 if (listener->options & LI_O_NOQUICKACK)
Simon Hormande072bd2011-06-24 15:11:37 +0900994 setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero));
Willy Tarreau9ea05a72009-06-14 12:07:01 +0200995#endif
996
Willy Tarreaue6b98942007-10-29 01:09:36 +0100997 /* the socket is ready */
998 listener->fd = fd;
999 listener->state = LI_LISTEN;
1000
Willy Tarreaueabf3132008-08-29 23:36:51 +02001001 fdtab[fd].owner = listener; /* reference the listener instead of a task */
Willy Tarreauaece46a2012-07-06 12:25:58 +02001002 fdtab[fd].iocb = listener->proto->accept;
Willy Tarreaueb472682010-05-28 18:46:57 +02001003 fd_insert(fd);
1004
Willy Tarreaue6b98942007-10-29 01:09:36 +01001005 tcp_return:
Cyril Bonté43ba1b32010-11-01 19:26:01 +01001006 if (msg && errlen) {
1007 char pn[INET6_ADDRSTRLEN];
1008
Willy Tarreau631f01c2011-09-05 00:36:48 +02001009 addr_to_str(&listener->addr, pn, sizeof(pn));
1010 snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr));
Cyril Bonté43ba1b32010-11-01 19:26:01 +01001011 }
Willy Tarreaue6b98942007-10-29 01:09:36 +01001012 return err;
1013
1014 tcp_close_return:
1015 close(fd);
1016 goto tcp_return;
1017}
1018
1019/* This function creates all TCP sockets bound to the protocol entry <proto>.
1020 * It is intended to be used as the protocol's bind_all() function.
1021 * The sockets will be registered but not added to any fd_set, in order not to
1022 * loose them across the fork(). A call to enable_all_listeners() is needed
1023 * to complete initialization. The return value is composed from ERR_*.
1024 */
Emeric Bruncf20bf12010-10-22 16:06:11 +02001025static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001026{
1027 struct listener *listener;
1028 int err = ERR_NONE;
1029
1030 list_for_each_entry(listener, &proto->listeners, proto_list) {
Emeric Bruncf20bf12010-10-22 16:06:11 +02001031 err |= tcp_bind_listener(listener, errmsg, errlen);
1032 if (err & ERR_ABORT)
Willy Tarreaue6b98942007-10-29 01:09:36 +01001033 break;
1034 }
1035
1036 return err;
1037}
1038
1039/* Add listener to the list of tcpv4 listeners. The listener's state
1040 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
1041 * listeners is updated. This is the function to use to add a new listener.
1042 */
1043void tcpv4_add_listener(struct listener *listener)
1044{
1045 if (listener->state != LI_INIT)
1046 return;
1047 listener->state = LI_ASSIGNED;
1048 listener->proto = &proto_tcpv4;
1049 LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list);
1050 proto_tcpv4.nb_listeners++;
1051}
1052
1053/* Add listener to the list of tcpv4 listeners. The listener's state
1054 * is automatically updated from LI_INIT to LI_ASSIGNED. The number of
1055 * listeners is updated. This is the function to use to add a new listener.
1056 */
1057void tcpv6_add_listener(struct listener *listener)
1058{
1059 if (listener->state != LI_INIT)
1060 return;
1061 listener->state = LI_ASSIGNED;
1062 listener->proto = &proto_tcpv6;
1063 LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list);
1064 proto_tcpv6.nb_listeners++;
1065}
1066
Willy Tarreau092d8652014-07-07 20:22:12 +02001067/* Pause a listener. Returns < 0 in case of failure, 0 if the listener
1068 * was totally stopped, or > 0 if correctly paused.
1069 */
1070int tcp_pause_listener(struct listener *l)
1071{
1072 if (shutdown(l->fd, SHUT_WR) != 0)
1073 return -1; /* Solaris dies here */
1074
1075 if (listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0)
1076 return -1; /* OpenBSD dies here */
1077
1078 if (shutdown(l->fd, SHUT_RD) != 0)
1079 return -1; /* should always be OK */
1080 return 1;
1081}
1082
Willy Tarreauedcf6682008-11-30 23:15:34 +01001083/* This function performs the TCP request analysis on the current request. It
1084 * returns 1 if the processing can continue on next analysers, or zero if it
1085 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreaufb356202010-08-03 14:02:05 +02001086 * request. It relies on buffers flags, and updates s->req->analysers. The
1087 * function may be called for frontend rules and backend rules. It only relies
1088 * on the backend pointer so this works for both cases.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001089 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001090int tcp_inspect_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreauedcf6682008-11-30 23:15:34 +01001091{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001092 struct session *sess = s->sess;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001093 struct tcp_rule *rule;
Willy Tarreaud1f96522010-08-03 19:34:32 +02001094 struct stksess *ts;
1095 struct stktable *t;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001096 int partial;
1097
Willy Tarreau87b09662015-04-03 00:22:06 +02001098 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 +01001099 now_ms, __FUNCTION__,
1100 s,
1101 req,
1102 req->rex, req->wex,
1103 req->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001104 req->buf->i,
Willy Tarreauedcf6682008-11-30 23:15:34 +01001105 req->analysers);
1106
Willy Tarreauedcf6682008-11-30 23:15:34 +01001107 /* We don't know whether we have enough data, so must proceed
1108 * this way :
1109 * - iterate through all rules in their declaration order
1110 * - if one rule returns MISS, it means the inspect delay is
1111 * not over yet, then return immediately, otherwise consider
1112 * it as a non-match.
1113 * - if one rule returns OK, then return OK
1114 * - if one rule returns KO, then return KO
1115 */
1116
Willy Tarreau9b28e032012-10-12 23:49:43 +02001117 if ((req->flags & CF_SHUTR) || buffer_full(req->buf, global.tune.maxrewrite) ||
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +02001118 !s->be->tcp_req.inspect_delay || tick_is_expired(req->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001119 partial = SMP_OPT_FINAL;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001120 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001121 partial = 0;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001122
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001123 /* If "the current_rule_list" match the executed rule list, we are in
1124 * resume condition. If a resume is needed it is always in the action
1125 * and never in the ACL or converters. In this case, we initialise the
1126 * current rule, and go to the action execution point.
1127 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02001128 if (s->current_rule) {
1129 rule = s->current_rule;
1130 s->current_rule = NULL;
1131 if (s->current_rule_list == &s->be->tcp_req.inspect_rules)
1132 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001133 }
1134 s->current_rule_list = &s->be->tcp_req.inspect_rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02001135
Willy Tarreaufb356202010-08-03 14:02:05 +02001136 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001137 enum acl_test_res ret = ACL_TEST_PASS;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001138
1139 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001140 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ | partial);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001141 if (ret == ACL_TEST_MISS)
1142 goto missing_data;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001143
1144 ret = acl_pass(ret);
1145 if (rule->cond->pol == ACL_COND_UNLESS)
1146 ret = !ret;
1147 }
1148
1149 if (ret) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001150resume_execution:
Willy Tarreauedcf6682008-11-30 23:15:34 +01001151 /* we have a matching rule. */
1152 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001153 channel_abort(req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001154 channel_abort(&s->res);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001155 req->analysers = 0;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001156
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001157 s->be->be_counters.denied_req++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001158 sess->fe->fe_counters.denied_req++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001159 if (sess->listener->counters)
1160 sess->listener->counters->denied_req++;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001161
Willy Tarreaue7dff022015-04-03 01:14:29 +02001162 if (!(s->flags & SF_ERR_MASK))
1163 s->flags |= SF_ERR_PRXCOND;
1164 if (!(s->flags & SF_FINST_MASK))
1165 s->flags |= SF_FINST_R;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001166 return 0;
1167 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001168 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001169 /* Note: only the first valid tracking parameter of each
1170 * applies.
1171 */
1172 struct stktable_key *key;
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001173 struct sample smp;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001174
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001175 if (stkctr_entry(&s->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001176 continue;
1177
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001178 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreau192252e2015-04-04 01:47:55 +02001179 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | partial, rule->act_prm.trk_ctr.expr, &smp);
Willy Tarreau1b71eb52014-06-25 17:01:56 +02001180
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001181 if ((smp.flags & SMP_F_MAY_CHANGE) && !(partial & SMP_OPT_FINAL))
1182 goto missing_data; /* key might appear later */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001183
1184 if (key && (ts = stktable_get_entry(t, key))) {
Willy Tarreau87b09662015-04-03 00:22:06 +02001185 stream_track_stkctr(&s->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001186 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001187 if (sess->fe != s->be)
Willy Tarreaucc08d2c2014-01-28 23:18:23 +01001188 stkctr_set_flags(&s->stkctr[tcp_trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreaud1f96522010-08-03 19:34:32 +02001189 }
1190 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001191 else if (rule->action == TCP_ACT_CAPTURE) {
1192 struct sample *key;
1193 struct cap_hdr *h = rule->act_prm.cap.hdr;
Willy Tarreaucb7dd012015-04-03 22:16:32 +02001194 char **cap = s->req_cap;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001195 int len;
1196
Willy Tarreau192252e2015-04-04 01:47:55 +02001197 key = sample_fetch_string(s->be, sess, s, SMP_OPT_DIR_REQ | partial, rule->act_prm.cap.expr);
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001198 if (!key)
1199 continue;
1200
1201 if (key->flags & SMP_F_MAY_CHANGE)
1202 goto missing_data;
1203
1204 if (cap[h->index] == NULL)
1205 cap[h->index] = pool_alloc2(h->pool);
1206
1207 if (cap[h->index] == NULL) /* no more capture memory */
1208 continue;
1209
1210 len = key->data.str.len;
1211 if (len > h->len)
1212 len = h->len;
1213
1214 memcpy(cap[h->index], key->data.str.str, len);
1215 cap[h->index][len] = 0;
1216 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02001217 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001218 /* Custom keywords. */
Willy Tarreaue91ffd02015-04-24 10:10:53 +02001219 if (rule->action_ptr && !rule->action_ptr(rule, s->be, s)) {
Willy Tarreau152b81e2015-04-20 13:26:17 +02001220 s->current_rule = rule;
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001221 goto missing_data;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001222 }
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001223
Willy Tarreauedcf6682008-11-30 23:15:34 +01001224 /* otherwise accept */
Willy Tarreaud1f96522010-08-03 19:34:32 +02001225 break;
1226 }
Willy Tarreauedcf6682008-11-30 23:15:34 +01001227 }
1228 }
1229
1230 /* if we get there, it means we have no rule which matches, or
1231 * we have an explicit accept, so we apply the default accept.
1232 */
Willy Tarreau3a816292009-07-07 10:55:49 +02001233 req->analysers &= ~an_bit;
Willy Tarreauedcf6682008-11-30 23:15:34 +01001234 req->analyse_exp = TICK_ETERNITY;
1235 return 1;
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001236
1237 missing_data:
1238 channel_dont_connect(req);
1239 /* just set the request timeout once at the beginning of the request */
1240 if (!tick_isset(req->analyse_exp) && s->be->tcp_req.inspect_delay)
1241 req->analyse_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
1242 return 0;
1243
Willy Tarreauedcf6682008-11-30 23:15:34 +01001244}
1245
Emeric Brun97679e72010-09-23 17:56:44 +02001246/* This function performs the TCP response analysis on the current response. It
1247 * returns 1 if the processing can continue on next analysers, or zero if it
1248 * needs more data, encounters an error, or wants to immediately abort the
1249 * response. It relies on buffers flags, and updates s->rep->analysers. The
1250 * function may be called for backend rules.
1251 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001252int tcp_inspect_response(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun97679e72010-09-23 17:56:44 +02001253{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001254 struct session *sess = s->sess;
Emeric Brun97679e72010-09-23 17:56:44 +02001255 struct tcp_rule *rule;
1256 int partial;
1257
Willy Tarreau87b09662015-04-03 00:22:06 +02001258 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 +02001259 now_ms, __FUNCTION__,
1260 s,
1261 rep,
1262 rep->rex, rep->wex,
1263 rep->flags,
Willy Tarreau9b28e032012-10-12 23:49:43 +02001264 rep->buf->i,
Emeric Brun97679e72010-09-23 17:56:44 +02001265 rep->analysers);
1266
1267 /* We don't know whether we have enough data, so must proceed
1268 * this way :
1269 * - iterate through all rules in their declaration order
1270 * - if one rule returns MISS, it means the inspect delay is
1271 * not over yet, then return immediately, otherwise consider
1272 * it as a non-match.
1273 * - if one rule returns OK, then return OK
1274 * - if one rule returns KO, then return KO
1275 */
1276
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001277 if (rep->flags & CF_SHUTR || tick_is_expired(rep->analyse_exp, now_ms))
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001278 partial = SMP_OPT_FINAL;
Emeric Brun97679e72010-09-23 17:56:44 +02001279 else
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001280 partial = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001281
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001282 /* If "the current_rule_list" match the executed rule list, we are in
1283 * resume condition. If a resume is needed it is always in the action
1284 * and never in the ACL or converters. In this case, we initialise the
1285 * current rule, and go to the action execution point.
1286 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02001287 if (s->current_rule) {
1288 rule = s->current_rule;
1289 s->current_rule = NULL;
1290 if (s->current_rule_list == &s->be->tcp_rep.inspect_rules)
1291 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001292 }
1293 s->current_rule_list = &s->be->tcp_rep.inspect_rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02001294
Emeric Brun97679e72010-09-23 17:56:44 +02001295 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
Willy Tarreau0cba6072013-11-28 22:21:02 +01001296 enum acl_test_res ret = ACL_TEST_PASS;
Emeric Brun97679e72010-09-23 17:56:44 +02001297
1298 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001299 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_RES | partial);
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001300 if (ret == ACL_TEST_MISS) {
Emeric Brun97679e72010-09-23 17:56:44 +02001301 /* just set the analyser timeout once at the beginning of the response */
1302 if (!tick_isset(rep->analyse_exp) && s->be->tcp_rep.inspect_delay)
Willy Tarreau0bb166b2013-11-04 15:56:53 +01001303 rep->analyse_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
Emeric Brun97679e72010-09-23 17:56:44 +02001304 return 0;
1305 }
1306
1307 ret = acl_pass(ret);
1308 if (rule->cond->pol == ACL_COND_UNLESS)
1309 ret = !ret;
1310 }
1311
1312 if (ret) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001313resume_execution:
Emeric Brun97679e72010-09-23 17:56:44 +02001314 /* we have a matching rule. */
1315 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001316 channel_abort(rep);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001317 channel_abort(&s->req);
Emeric Brun97679e72010-09-23 17:56:44 +02001318 rep->analysers = 0;
1319
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001320 s->be->be_counters.denied_resp++;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001321 sess->fe->fe_counters.denied_resp++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001322 if (sess->listener->counters)
1323 sess->listener->counters->denied_resp++;
Emeric Brun97679e72010-09-23 17:56:44 +02001324
Willy Tarreaue7dff022015-04-03 01:14:29 +02001325 if (!(s->flags & SF_ERR_MASK))
1326 s->flags |= SF_ERR_PRXCOND;
1327 if (!(s->flags & SF_FINST_MASK))
1328 s->flags |= SF_FINST_D;
Emeric Brun97679e72010-09-23 17:56:44 +02001329 return 0;
1330 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001331 else if (rule->action == TCP_ACT_CLOSE) {
Willy Tarreau73796532014-11-28 14:10:28 +01001332 chn_prod(rep)->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
1333 si_shutr(chn_prod(rep));
1334 si_shutw(chn_prod(rep));
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001335 break;
1336 }
Emeric Brun97679e72010-09-23 17:56:44 +02001337 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001338 /* Custom keywords. */
Willy Tarreaue91ffd02015-04-24 10:10:53 +02001339 if (rule->action_ptr && !rule->action_ptr(rule, s->be, s)) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001340 channel_dont_close(rep);
Willy Tarreau152b81e2015-04-20 13:26:17 +02001341 s->current_rule = rule;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001342 return 0;
1343 }
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001344
Emeric Brun97679e72010-09-23 17:56:44 +02001345 /* otherwise accept */
1346 break;
1347 }
1348 }
1349 }
1350
1351 /* if we get there, it means we have no rule which matches, or
1352 * we have an explicit accept, so we apply the default accept.
1353 */
1354 rep->analysers &= ~an_bit;
1355 rep->analyse_exp = TICK_ETERNITY;
1356 return 1;
1357}
1358
1359
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001360/* This function performs the TCP layer4 analysis on the current request. It
1361 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
1362 * matches or if no more rule matches. It can only use rules which don't need
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001363 * any data. This only works on connection-based client-facing stream interfaces.
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001364 */
Willy Tarreaue73ef852015-04-04 16:41:45 +02001365int tcp_exec_req_rules(struct session *sess)
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001366{
1367 struct tcp_rule *rule;
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001368 struct stksess *ts;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001369 struct stktable *t = NULL;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001370 struct connection *conn = objt_conn(sess->origin);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001371 int result = 1;
Willy Tarreau0cba6072013-11-28 22:21:02 +01001372 enum acl_test_res ret;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001373
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001374 if (!conn)
1375 return result;
1376
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001377 list_for_each_entry(rule, &sess->fe->tcp_req.l4_rules, list) {
Thierry FOURNIERa65b3432013-11-28 18:22:00 +01001378 ret = ACL_TEST_PASS;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001379
1380 if (rule->cond) {
Willy Tarreaue73ef852015-04-04 16:41:45 +02001381 ret = acl_exec_cond(rule->cond, sess->fe, sess, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001382 ret = acl_pass(ret);
1383 if (rule->cond->pol == ACL_COND_UNLESS)
1384 ret = !ret;
1385 }
1386
1387 if (ret) {
1388 /* we have a matching rule. */
1389 if (rule->action == TCP_ACT_REJECT) {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001390 sess->fe->fe_counters.denied_conn++;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001391 if (sess->listener->counters)
1392 sess->listener->counters->denied_conn++;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001393
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001394 result = 0;
1395 break;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001396 }
Willy Tarreau44778ad2013-10-30 19:24:00 +01001397 else if (rule->action >= TCP_ACT_TRK_SC0 && rule->action <= TCP_ACT_TRK_SCMAX) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001398 /* Note: only the first valid tracking parameter of each
1399 * applies.
1400 */
1401 struct stktable_key *key;
1402
Willy Tarreau70f454e2015-04-04 16:38:07 +02001403 if (stkctr_entry(&sess->stkctr[tcp_trk_idx(rule->action)]))
Willy Tarreau44778ad2013-10-30 19:24:00 +01001404 continue;
1405
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001406 t = rule->act_prm.trk_ctr.table.t;
Willy Tarreaue73ef852015-04-04 16:41:45 +02001407 key = stktable_fetch_key(t, sess->fe, sess, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->act_prm.trk_ctr.expr, NULL);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001408
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +02001409 if (key && (ts = stktable_get_entry(t, key)))
Willy Tarreau70f454e2015-04-04 16:38:07 +02001410 stream_track_stkctr(&sess->stkctr[tcp_trk_idx(rule->action)], t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001411 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001412 else if (rule->action == TCP_ACT_EXPECT_PX) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001413 conn->flags |= CO_FL_ACCEPT_PROXY;
1414 conn_sock_want_recv(conn);
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001415 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001416 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001417 /* Custom keywords. */
Willy Tarreaue91ffd02015-04-24 10:10:53 +02001418 if (rule->action_ptr)
1419 rule->action_ptr(rule, sess->fe, NULL);
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001420
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001421 /* otherwise it's an accept */
1422 break;
1423 }
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001424 }
1425 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001426 return result;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02001427}
1428
Emeric Brun97679e72010-09-23 17:56:44 +02001429/* Parse a tcp-response rule. Return a negative value in case of failure */
1430static int tcp_parse_response_rule(char **args, int arg, int section_type,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001431 struct proxy *curpx, struct proxy *defpx,
1432 struct tcp_rule *rule, char **err,
1433 unsigned int where,
1434 const char *file, int line)
Emeric Brun97679e72010-09-23 17:56:44 +02001435{
1436 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001437 memprintf(err, "%s %s is only allowed in 'backend' sections",
1438 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001439 return -1;
1440 }
1441
1442 if (strcmp(args[arg], "accept") == 0) {
1443 arg++;
1444 rule->action = TCP_ACT_ACCEPT;
1445 }
1446 else if (strcmp(args[arg], "reject") == 0) {
1447 arg++;
1448 rule->action = TCP_ACT_REJECT;
1449 }
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02001450 else if (strcmp(args[arg], "close") == 0) {
1451 arg++;
1452 rule->action = TCP_ACT_CLOSE;
1453 }
Emeric Brun97679e72010-09-23 17:56:44 +02001454 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001455 struct tcp_action_kw *kw;
1456 kw = tcp_res_cont_action(args[arg]);
1457 if (kw) {
1458 arg++;
1459 if (!kw->parse((const char **)args, &arg, curpx, rule, err))
1460 return -1;
1461 } else {
1462 memprintf(err,
1463 "'%s %s' expects 'accept', 'close' or 'reject' in %s '%s' (got '%s')",
1464 args[0], args[1], proxy_type_str(curpx), curpx->id, args[arg]);
1465 return -1;
1466 }
Emeric Brun97679e72010-09-23 17:56:44 +02001467 }
1468
1469 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001470 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001471 memprintf(err,
1472 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1473 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Emeric Brun97679e72010-09-23 17:56:44 +02001474 return -1;
1475 }
1476 }
1477 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001478 memprintf(err,
1479 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Emeric Brun97679e72010-09-23 17:56:44 +02001480 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1481 return -1;
1482 }
1483 return 0;
1484}
1485
1486
1487
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001488/* Parse a tcp-request rule. Return a negative value in case of failure */
1489static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau80aca902013-01-07 15:42:20 +01001490 struct proxy *curpx, struct proxy *defpx,
1491 struct tcp_rule *rule, char **err,
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001492 unsigned int where, const char *file, int line)
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001493{
1494 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001495 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1496 args[0], args[1]);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001497 return -1;
1498 }
1499
1500 if (!strcmp(args[arg], "accept")) {
1501 arg++;
1502 rule->action = TCP_ACT_ACCEPT;
1503 }
1504 else if (!strcmp(args[arg], "reject")) {
1505 arg++;
1506 rule->action = TCP_ACT_REJECT;
1507 }
Willy Tarreau18bf01e2014-06-13 16:18:52 +02001508 else if (strcmp(args[arg], "capture") == 0) {
1509 struct sample_expr *expr;
1510 struct cap_hdr *hdr;
1511 int kw = arg;
1512 int len = 0;
1513
1514 if (!(curpx->cap & PR_CAP_FE)) {
1515 memprintf(err,
1516 "'%s %s %s' : proxy '%s' has no frontend capability",
1517 args[0], args[1], args[kw], curpx->id);
1518 return -1;
1519 }
1520
1521 if (!(where & SMP_VAL_FE_REQ_CNT)) {
1522 memprintf(err,
1523 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1524 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1525 return -1;
1526 }
1527
1528 arg++;
1529
1530 curpx->conf.args.ctx = ARGC_CAP;
1531 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
1532 if (!expr) {
1533 memprintf(err,
1534 "'%s %s %s' : %s",
1535 args[0], args[1], args[kw], *err);
1536 return -1;
1537 }
1538
1539 if (!(expr->fetch->val & where)) {
1540 memprintf(err,
1541 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
1542 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
1543 free(expr);
1544 return -1;
1545 }
1546
1547 if (strcmp(args[arg], "len") == 0) {
1548 arg++;
1549 if (!args[arg]) {
1550 memprintf(err,
1551 "'%s %s %s' : missing length value",
1552 args[0], args[1], args[kw]);
1553 free(expr);
1554 return -1;
1555 }
1556 /* we copy the table name for now, it will be resolved later */
1557 len = atoi(args[arg]);
1558 if (len <= 0) {
1559 memprintf(err,
1560 "'%s %s %s' : length must be > 0",
1561 args[0], args[1], args[kw]);
1562 free(expr);
1563 return -1;
1564 }
1565 arg++;
1566 }
1567
1568 if (!len) {
1569 memprintf(err,
1570 "'%s %s %s' : a positive 'len' argument is mandatory",
1571 args[0], args[1], args[kw]);
1572 free(expr);
1573 return -1;
1574 }
1575
1576 hdr = calloc(sizeof(struct cap_hdr), 1);
1577 hdr->next = curpx->req_cap;
1578 hdr->name = NULL; /* not a header capture */
1579 hdr->namelen = 0;
1580 hdr->len = len;
1581 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
1582 hdr->index = curpx->nb_req_cap++;
1583
1584 curpx->req_cap = hdr;
1585 curpx->to_log |= LW_REQHDR;
1586
1587 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
1588 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1589
1590 rule->act_prm.cap.expr = expr;
1591 rule->act_prm.cap.hdr = hdr;
1592 rule->action = TCP_ACT_CAPTURE;
1593 }
Willy Tarreaub4c84932013-07-23 19:15:30 +02001594 else if (strncmp(args[arg], "track-sc", 8) == 0 &&
1595 args[arg][9] == '\0' && args[arg][8] >= '0' &&
Willy Tarreaue1cfc1f2014-10-17 11:53:05 +02001596 args[arg][8] < '0' + MAX_SESS_STKCTR) { /* track-sc 0..9 */
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001597 struct sample_expr *expr;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001598 int kw = arg;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001599
1600 arg++;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001601
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001602 curpx->conf.args.ctx = ARGC_TRK;
Thierry FOURNIEReeaa9512014-02-11 14:00:19 +01001603 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001604 if (!expr) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001605 memprintf(err,
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001606 "'%s %s %s' : %s",
Willy Tarreau975c1782013-12-12 23:16:54 +01001607 args[0], args[1], args[kw], *err);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001608 return -1;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001609 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001610
Willy Tarreau80aca902013-01-07 15:42:20 +01001611 if (!(expr->fetch->val & where)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001612 memprintf(err,
Willy Tarreau80aca902013-01-07 15:42:20 +01001613 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
Willy Tarreau33c60de2013-04-12 08:26:32 +02001614 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001615 free(expr);
1616 return -1;
1617 }
1618
1619 /* check if we need to allocate an hdr_idx struct for HTTP parsing */
Willy Tarreau25320b22013-03-24 07:22:08 +01001620 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001621
1622 if (strcmp(args[arg], "table") == 0) {
Willy Tarreau598718a2012-12-09 16:57:27 +01001623 arg++;
1624 if (!args[arg]) {
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001625 memprintf(err,
1626 "'%s %s %s' : missing table name",
1627 args[0], args[1], args[kw]);
1628 free(expr);
1629 return -1;
1630 }
1631 /* we copy the table name for now, it will be resolved later */
Willy Tarreau598718a2012-12-09 16:57:27 +01001632 rule->act_prm.trk_ctr.table.n = strdup(args[arg]);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001633 arg++;
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001634 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001635 rule->act_prm.trk_ctr.expr = expr;
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02001636 rule->action = TCP_ACT_TRK_SC0 + args[kw][8] - '0';
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001637 }
Willy Tarreau4f0d9192013-06-11 20:40:55 +02001638 else if (strcmp(args[arg], "expect-proxy") == 0) {
1639 if (strcmp(args[arg+1], "layer4") != 0) {
1640 memprintf(err,
1641 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
1642 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
1643 return -1;
1644 }
1645
1646 if (!(where & SMP_VAL_FE_CON_ACC)) {
1647 memprintf(err,
1648 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
1649 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
1650 return -1;
1651 }
1652
1653 arg += 2;
1654 rule->action = TCP_ACT_EXPECT_PX;
1655 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001656 else {
Thierry FOURNIERcc87a112014-12-12 19:41:33 +01001657 struct tcp_action_kw *kw;
1658 if (where & SMP_VAL_FE_CON_ACC)
1659 kw = tcp_req_conn_action(args[arg]);
1660 else
1661 kw = tcp_req_cont_action(args[arg]);
1662 if (kw) {
1663 arg++;
1664 if (!kw->parse((const char **)args, &arg, curpx, rule, err))
1665 return -1;
1666 } else {
1667 memprintf(err,
1668 "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d' "
1669 " in %s '%s' (got '%s')",
1670 args[0], args[1], MAX_SESS_STKCTR-1, proxy_type_str(curpx),
1671 curpx->id, args[arg]);
1672 return -1;
1673 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001674 }
1675
1676 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001677 if ((rule->cond = build_acl_cond(file, line, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001678 memprintf(err,
1679 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
1680 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001681 return -1;
1682 }
1683 }
1684 else if (*args[arg]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001685 memprintf(err,
1686 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001687 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1688 return -1;
1689 }
1690 return 0;
1691}
1692
Emeric Brun97679e72010-09-23 17:56:44 +02001693/* This function should be called to parse a line starting with the "tcp-response"
1694 * keyword.
1695 */
1696static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001697 struct proxy *defpx, const char *file, int line,
1698 char **err)
Emeric Brun97679e72010-09-23 17:56:44 +02001699{
1700 const char *ptr = NULL;
1701 unsigned int val;
Emeric Brun97679e72010-09-23 17:56:44 +02001702 int warn = 0;
1703 int arg;
1704 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001705 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001706 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001707 const char *kw;
Emeric Brun97679e72010-09-23 17:56:44 +02001708
1709 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001710 memprintf(err, "missing argument for '%s' in %s '%s'",
1711 args[0], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001712 return -1;
1713 }
1714
1715 if (strcmp(args[1], "inspect-delay") == 0) {
1716 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001717 memprintf(err, "%s %s is only allowed in 'backend' sections",
1718 args[0], args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001719 return -1;
1720 }
1721
1722 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001723 memprintf(err,
1724 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1725 args[0], args[1], proxy_type_str(curpx), curpx->id);
1726 if (ptr)
1727 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Emeric Brun97679e72010-09-23 17:56:44 +02001728 return -1;
1729 }
1730
1731 if (curpx->tcp_rep.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001732 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1733 args[0], args[1], proxy_type_str(curpx), curpx->id);
Emeric Brun97679e72010-09-23 17:56:44 +02001734 return 1;
1735 }
1736 curpx->tcp_rep.inspect_delay = val;
1737 return 0;
1738 }
1739
Simon Hormande072bd2011-06-24 15:11:37 +09001740 rule = calloc(1, sizeof(*rule));
Emeric Brun97679e72010-09-23 17:56:44 +02001741 LIST_INIT(&rule->list);
1742 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001743 where = 0;
Emeric Brun97679e72010-09-23 17:56:44 +02001744
1745 if (strcmp(args[1], "content") == 0) {
1746 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001747
1748 if (curpx->cap & PR_CAP_FE)
1749 where |= SMP_VAL_FE_RES_CNT;
1750 if (curpx->cap & PR_CAP_BE)
1751 where |= SMP_VAL_BE_RES_CNT;
1752
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001753 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Emeric Brun97679e72010-09-23 17:56:44 +02001754 goto error;
1755
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001756 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1757 if (acl) {
1758 if (acl->name && *acl->name)
1759 memprintf(err,
1760 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1761 acl->name, args[0], args[1], sample_ckp_names(where));
1762 else
1763 memprintf(err,
1764 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1765 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001766 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001767 sample_ckp_names(where));
Emeric Brun97679e72010-09-23 17:56:44 +02001768
Emeric Brun97679e72010-09-23 17:56:44 +02001769 warn++;
1770 }
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001771 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1772 if (acl->name && *acl->name)
1773 memprintf(err,
1774 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001775 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001776 else
1777 memprintf(err,
1778 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001779 kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001780 warn++;
1781 }
Emeric Brun97679e72010-09-23 17:56:44 +02001782
1783 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1784 }
1785 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001786 memprintf(err,
1787 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1788 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Emeric Brun97679e72010-09-23 17:56:44 +02001789 goto error;
1790 }
1791
1792 return warn;
1793 error:
1794 free(rule);
1795 return -1;
1796}
1797
1798
Willy Tarreaub6866442008-07-14 23:54:42 +02001799/* This function should be called to parse a line starting with the "tcp-request"
1800 * keyword.
1801 */
1802static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau28a47d62012-09-18 20:02:48 +02001803 struct proxy *defpx, const char *file, int line,
1804 char **err)
Willy Tarreaub6866442008-07-14 23:54:42 +02001805{
1806 const char *ptr = NULL;
Willy Tarreauc7e961e2008-08-17 17:13:47 +02001807 unsigned int val;
Willy Tarreau1a687942010-05-23 22:40:30 +02001808 int warn = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001809 int arg;
Willy Tarreau1a687942010-05-23 22:40:30 +02001810 struct tcp_rule *rule;
Willy Tarreau80aca902013-01-07 15:42:20 +01001811 unsigned int where;
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001812 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +02001813 const char *kw;
Willy Tarreaub6866442008-07-14 23:54:42 +02001814
1815 if (!*args[1]) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001816 if (curpx == defpx)
1817 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1818 else
1819 memprintf(err, "missing argument for '%s' in %s '%s'",
1820 args[0], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001821 return -1;
1822 }
1823
1824 if (!strcmp(args[1], "inspect-delay")) {
1825 if (curpx == defpx) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001826 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1827 args[0], args[1]);
Willy Tarreaub6866442008-07-14 23:54:42 +02001828 return -1;
1829 }
1830
Willy Tarreaub6866442008-07-14 23:54:42 +02001831 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001832 memprintf(err,
1833 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1834 args[0], args[1], proxy_type_str(curpx), curpx->id);
1835 if (ptr)
1836 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
Willy Tarreaub6866442008-07-14 23:54:42 +02001837 return -1;
1838 }
1839
1840 if (curpx->tcp_req.inspect_delay) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001841 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1842 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreaub6866442008-07-14 23:54:42 +02001843 return 1;
1844 }
1845 curpx->tcp_req.inspect_delay = val;
1846 return 0;
1847 }
1848
Simon Hormande072bd2011-06-24 15:11:37 +09001849 rule = calloc(1, sizeof(*rule));
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001850 LIST_INIT(&rule->list);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001851 arg = 1;
Willy Tarreau80aca902013-01-07 15:42:20 +01001852 where = 0;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001853
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001854 if (strcmp(args[1], "content") == 0) {
Willy Tarreaud1f96522010-08-03 19:34:32 +02001855 arg++;
Willy Tarreau80aca902013-01-07 15:42:20 +01001856
1857 if (curpx->cap & PR_CAP_FE)
1858 where |= SMP_VAL_FE_REQ_CNT;
1859 if (curpx->cap & PR_CAP_BE)
1860 where |= SMP_VAL_BE_REQ_CNT;
1861
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001862 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001863 goto error;
Willy Tarreaub6866442008-07-14 23:54:42 +02001864
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001865 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1866 if (acl) {
1867 if (acl->name && *acl->name)
1868 memprintf(err,
1869 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1870 acl->name, args[0], args[1], sample_ckp_names(where));
1871 else
1872 memprintf(err,
1873 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1874 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001875 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001876 sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001877
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001878 warn++;
1879 }
1880 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1881 if (acl->name && *acl->name)
1882 memprintf(err,
1883 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001884 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001885 else
1886 memprintf(err,
1887 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001888 kw, sample_ckp_names(where));
Willy Tarreaudd64f8d2008-07-27 22:02:32 +02001889 warn++;
1890 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001891
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001892 /* the following function directly emits the warning */
1893 warnif_misplaced_tcp_cont(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001894 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001895 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001896 else if (strcmp(args[1], "connection") == 0) {
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001897 arg++;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001898
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001899 if (!(curpx->cap & PR_CAP_FE)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001900 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1901 args[0], args[1], proxy_type_str(curpx), curpx->id);
Simon Horman6c54d8b2011-07-15 13:14:06 +09001902 goto error;
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001903 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001904
Willy Tarreau80aca902013-01-07 15:42:20 +01001905 where |= SMP_VAL_FE_CON_ACC;
1906
Thierry FOURNIER0d6ba512014-02-11 03:31:34 +01001907 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001908 goto error;
1909
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001910 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1911 if (acl) {
1912 if (acl->name && *acl->name)
1913 memprintf(err,
1914 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1915 acl->name, args[0], args[1], sample_ckp_names(where));
1916 else
1917 memprintf(err,
1918 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1919 args[0], args[1],
Willy Tarreau93fddf12013-03-31 22:59:32 +02001920 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001921 sample_ckp_names(where));
Willy Tarreauf059a0f2010-08-03 16:29:52 +02001922
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001923 warn++;
1924 }
1925 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1926 if (acl->name && *acl->name)
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001927 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001928 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001929 acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001930 else
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001931 memprintf(err,
Willy Tarreaua91d0a52013-03-25 08:12:18 +01001932 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
Willy Tarreau93fddf12013-03-31 22:59:32 +02001933 kw, sample_ckp_names(where));
Willy Tarreau68c03ab2010-08-06 15:08:45 +02001934 warn++;
1935 }
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01001936
Willy Tarreau3986b9c2014-09-16 15:39:51 +02001937 /* the following function directly emits the warning */
1938 warnif_misplaced_tcp_conn(curpx, file, line, args[0]);
Willy Tarreaufb024dc2010-08-20 13:35:41 +02001939 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02001940 }
Willy Tarreau1a687942010-05-23 22:40:30 +02001941 else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +02001942 if (curpx == defpx)
1943 memprintf(err,
1944 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1945 args[0], args[1]);
1946 else
1947 memprintf(err,
1948 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
Willy Tarreaudeaec2f2013-04-10 16:31:11 +02001949 args[0], proxy_type_str(curpx), curpx->id, args[1]);
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001950 goto error;
Willy Tarreau1a687942010-05-23 22:40:30 +02001951 }
1952
Willy Tarreau1a687942010-05-23 22:40:30 +02001953 return warn;
Willy Tarreau6a984fa2010-06-14 16:44:27 +02001954 error:
1955 free(rule);
1956 return -1;
Willy Tarreaub6866442008-07-14 23:54:42 +02001957}
1958
Willy Tarreau645513a2010-05-24 20:55:15 +02001959
1960/************************************************************************/
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001961/* All supported sample fetch functions must be declared here */
Willy Tarreau32389b72012-04-23 23:13:20 +02001962/************************************************************************/
1963
Willy Tarreau4a129812012-04-25 17:31:42 +02001964/* fetch the connection's source IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02001965static int
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001966smp_fetch_src(unsigned int opt, const struct arg *args, struct sample *smp,
1967 const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001968{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001969 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001970
1971 if (!cli_conn)
1972 return 0;
1973
1974 switch (cli_conn->addr.from.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01001975 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001976 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001977 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001978 break;
1979 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001980 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02001981 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001982 break;
1983 default:
Emeric Brunf769f512010-10-22 17:14:01 +02001984 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01001985 }
Emeric Brunf769f512010-10-22 17:14:01 +02001986
Willy Tarreau37406352012-04-23 16:16:37 +02001987 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02001988 return 1;
1989}
1990
Willy Tarreaua5e37562011-12-16 17:06:15 +01001991/* set temp integer to the connection's source port */
Willy Tarreau645513a2010-05-24 20:55:15 +02001992static int
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001993smp_fetch_sport(unsigned int opt, const struct arg *args, struct sample *smp,
1994 const char *k, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02001995{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001996 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001997
1998 if (!cli_conn)
1999 return 0;
2000
Willy Tarreauf853c462012-04-23 18:53:56 +02002001 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002002 if (!(smp->data.uint = get_host_port(&cli_conn->addr.from)))
Emeric Brunf769f512010-10-22 17:14:01 +02002003 return 0;
2004
Willy Tarreau37406352012-04-23 16:16:37 +02002005 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02002006 return 1;
2007}
2008
Willy Tarreau4a129812012-04-25 17:31:42 +02002009/* fetch the connection's destination IPv4/IPv6 address */
Willy Tarreau645513a2010-05-24 20:55:15 +02002010static int
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002011smp_fetch_dst(unsigned int opt, const struct arg *args, struct sample *smp,
2012 const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02002013{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002014 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreau645513a2010-05-24 20:55:15 +02002015
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002016 if (!cli_conn)
2017 return 0;
2018
2019 conn_get_to_addr(cli_conn);
2020
2021 switch (cli_conn->addr.to.ss_family) {
Willy Tarreauf4362b32011-12-16 17:49:52 +01002022 case AF_INET:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002023 smp->data.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02002024 smp->type = SMP_T_IPV4;
Willy Tarreauf4362b32011-12-16 17:49:52 +01002025 break;
2026 case AF_INET6:
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002027 smp->data.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr;
Willy Tarreauf853c462012-04-23 18:53:56 +02002028 smp->type = SMP_T_IPV6;
Willy Tarreauf4362b32011-12-16 17:49:52 +01002029 break;
2030 default:
Emeric Brunf769f512010-10-22 17:14:01 +02002031 return 0;
Willy Tarreauf4362b32011-12-16 17:49:52 +01002032 }
Emeric Brunf769f512010-10-22 17:14:01 +02002033
Willy Tarreau37406352012-04-23 16:16:37 +02002034 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02002035 return 1;
2036}
2037
Willy Tarreaua5e37562011-12-16 17:06:15 +01002038/* set temp integer to the frontend connexion's destination port */
Willy Tarreau645513a2010-05-24 20:55:15 +02002039static int
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002040smp_fetch_dport(unsigned int opt, const struct arg *args, struct sample *smp,
2041 const char *kw, void *private)
Willy Tarreau645513a2010-05-24 20:55:15 +02002042{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002043 struct connection *cli_conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002044
2045 if (!cli_conn)
2046 return 0;
2047
2048 conn_get_to_addr(cli_conn);
Willy Tarreau645513a2010-05-24 20:55:15 +02002049
Willy Tarreauf853c462012-04-23 18:53:56 +02002050 smp->type = SMP_T_UINT;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002051 if (!(smp->data.uint = get_host_port(&cli_conn->addr.to)))
Emeric Brunf769f512010-10-22 17:14:01 +02002052 return 0;
2053
Willy Tarreau37406352012-04-23 16:16:37 +02002054 smp->flags = 0;
Willy Tarreau645513a2010-05-24 20:55:15 +02002055 return 1;
Emericf2d7cae2010-11-05 18:13:50 +01002056}
2057
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002058#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01002059/* parse the "v4v6" bind keyword */
2060static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2061{
2062 struct listener *l;
2063
2064 list_for_each_entry(l, &conf->listeners, by_bind) {
2065 if (l->addr.ss_family == AF_INET6)
2066 l->options |= LI_O_V4V6;
2067 }
2068
2069 return 0;
2070}
2071
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002072/* parse the "v6only" bind keyword */
2073static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2074{
2075 struct listener *l;
2076
2077 list_for_each_entry(l, &conf->listeners, by_bind) {
2078 if (l->addr.ss_family == AF_INET6)
2079 l->options |= LI_O_V6ONLY;
2080 }
2081
2082 return 0;
2083}
2084#endif
2085
Pieter Baauwd551fb52013-05-08 22:49:23 +02002086#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02002087/* parse the "transparent" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002088static 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 +02002089{
2090 struct listener *l;
2091
Willy Tarreau4348fad2012-09-20 16:48:07 +02002092 list_for_each_entry(l, &conf->listeners, by_bind) {
2093 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2094 l->options |= LI_O_FOREIGN;
Willy Tarreau44791242012-09-12 23:27:21 +02002095 }
2096
Willy Tarreau44791242012-09-12 23:27:21 +02002097 return 0;
2098}
2099#endif
2100
2101#ifdef TCP_DEFER_ACCEPT
2102/* parse the "defer-accept" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002103static 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 +02002104{
2105 struct listener *l;
2106
Willy Tarreau4348fad2012-09-20 16:48:07 +02002107 list_for_each_entry(l, &conf->listeners, by_bind) {
2108 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2109 l->options |= LI_O_DEF_ACCEPT;
Willy Tarreau44791242012-09-12 23:27:21 +02002110 }
2111
Willy Tarreau44791242012-09-12 23:27:21 +02002112 return 0;
2113}
2114#endif
2115
Willy Tarreau1c862c52012-10-05 16:21:00 +02002116#ifdef TCP_FASTOPEN
Lukas Tribus0defb902013-02-13 23:35:39 +01002117/* parse the "tfo" bind keyword */
Willy Tarreau1c862c52012-10-05 16:21:00 +02002118static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2119{
2120 struct listener *l;
2121
2122 list_for_each_entry(l, &conf->listeners, by_bind) {
2123 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2124 l->options |= LI_O_TCP_FO;
2125 }
2126
2127 return 0;
2128}
2129#endif
2130
Willy Tarreau44791242012-09-12 23:27:21 +02002131#ifdef TCP_MAXSEG
2132/* parse the "mss" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002133static 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 +02002134{
2135 struct listener *l;
2136 int mss;
2137
Willy Tarreau44791242012-09-12 23:27:21 +02002138 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002139 memprintf(err, "'%s' : missing MSS value", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002140 return ERR_ALERT | ERR_FATAL;
2141 }
2142
2143 mss = atoi(args[cur_arg + 1]);
2144 if (!mss || abs(mss) > 65535) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002145 memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002146 return ERR_ALERT | ERR_FATAL;
2147 }
2148
Willy Tarreau4348fad2012-09-20 16:48:07 +02002149 list_for_each_entry(l, &conf->listeners, by_bind) {
2150 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2151 l->maxseg = mss;
2152 }
Willy Tarreau44791242012-09-12 23:27:21 +02002153
2154 return 0;
2155}
2156#endif
2157
Willy Tarreau2af207a2015-02-04 00:45:58 +01002158#ifdef TCP_USER_TIMEOUT
2159/* parse the "tcp-ut" bind keyword */
2160static int bind_parse_tcp_ut(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2161{
2162 const char *ptr = NULL;
2163 struct listener *l;
2164 unsigned int timeout;
2165
2166 if (!*args[cur_arg + 1]) {
2167 memprintf(err, "'%s' : missing TCP User Timeout value", args[cur_arg]);
2168 return ERR_ALERT | ERR_FATAL;
2169 }
2170
2171 ptr = parse_time_err(args[cur_arg + 1], &timeout, TIME_UNIT_MS);
2172 if (ptr) {
2173 memprintf(err, "'%s' : expects a positive delay in milliseconds", args[cur_arg]);
2174 return ERR_ALERT | ERR_FATAL;
2175 }
2176
2177 list_for_each_entry(l, &conf->listeners, by_bind) {
2178 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2179 l->tcp_ut = timeout;
2180 }
2181
2182 return 0;
2183}
2184#endif
2185
Willy Tarreau44791242012-09-12 23:27:21 +02002186#ifdef SO_BINDTODEVICE
Willy Tarreau2af207a2015-02-04 00:45:58 +01002187/* parse the "interface" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02002188static 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 +02002189{
2190 struct listener *l;
2191
Willy Tarreau44791242012-09-12 23:27:21 +02002192 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02002193 memprintf(err, "'%s' : missing interface name", args[cur_arg]);
Willy Tarreau44791242012-09-12 23:27:21 +02002194 return ERR_ALERT | ERR_FATAL;
2195 }
2196
Willy Tarreau4348fad2012-09-20 16:48:07 +02002197 list_for_each_entry(l, &conf->listeners, by_bind) {
2198 if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6)
2199 l->interface = strdup(args[cur_arg + 1]);
2200 }
Willy Tarreau44791242012-09-12 23:27:21 +02002201
2202 global.last_checks |= LSTCHK_NETADM;
2203 return 0;
2204}
2205#endif
2206
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002207#ifdef CONFIG_HAP_NS
2208/* parse the "namespace" bind keyword */
2209static int bind_parse_namespace(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2210{
2211 struct listener *l;
2212 char *namespace = NULL;
2213
2214 if (!*args[cur_arg + 1]) {
2215 memprintf(err, "'%s' : missing namespace id", args[cur_arg]);
2216 return ERR_ALERT | ERR_FATAL;
2217 }
2218 namespace = args[cur_arg + 1];
2219
2220 list_for_each_entry(l, &conf->listeners, by_bind) {
2221 l->netns = netns_store_lookup(namespace, strlen(namespace));
2222
2223 if (l->netns == NULL)
2224 l->netns = netns_store_insert(namespace);
2225
2226 if (l->netns == NULL) {
2227 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
2228 return ERR_ALERT | ERR_FATAL;
2229 }
2230 }
2231 return 0;
2232}
2233#endif
2234
Willy Tarreaudc13c112013-06-21 23:16:39 +02002235static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002236 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
Emeric Brun97679e72010-09-23 17:56:44 +02002237 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
Willy Tarreaub6866442008-07-14 23:54:42 +02002238 { 0, NULL, NULL },
2239}};
2240
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002241
Willy Tarreau61612d42012-04-19 18:42:05 +02002242/* Note: must not be declared <const> as its list will be overwritten.
2243 * Please take care of keeping this list alphabetically sorted.
2244 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002245static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002246 { /* END */ },
Willy Tarreaub6866442008-07-14 23:54:42 +02002247}};
2248
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002249
Willy Tarreau4a129812012-04-25 17:31:42 +02002250/* Note: must not be declared <const> as its list will be overwritten.
2251 * Note: fetches that may return multiple types must be declared as the lowest
2252 * common denominator, the type that can be casted into all other ones. For
2253 * instance v4/v6 must be declared v4.
2254 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02002255static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Willy Tarreaud4c33c82013-01-07 21:59:07 +01002256 { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
2257 { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
2258 { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI },
2259 { "src_port", smp_fetch_sport, 0, NULL, SMP_T_UINT, SMP_USE_L4CLI },
2260 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +02002261}};
2262
Willy Tarreau44791242012-09-12 23:27:21 +02002263/************************************************************************/
2264/* All supported bind keywords must be declared here. */
2265/************************************************************************/
2266
2267/* Note: must not be declared <const> as its list will be overwritten.
2268 * Please take care of keeping this list alphabetically sorted, doing so helps
2269 * all code contributors.
2270 * Optional keywords are also declared with a NULL ->parse() function so that
2271 * the config parser can report an appropriate error when a known keyword was
2272 * not enabled.
2273 */
Willy Tarreau51fb7652012-09-18 18:24:39 +02002274static struct bind_kw_list bind_kws = { "TCP", { }, {
Willy Tarreau44791242012-09-12 23:27:21 +02002275#ifdef TCP_DEFER_ACCEPT
2276 { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */
2277#endif
2278#ifdef SO_BINDTODEVICE
2279 { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */
2280#endif
2281#ifdef TCP_MAXSEG
2282 { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */
2283#endif
Willy Tarreau2af207a2015-02-04 00:45:58 +01002284#ifdef TCP_USER_TIMEOUT
2285 { "tcp-ut", bind_parse_tcp_ut, 1 }, /* set User Timeout on listening socket */
2286#endif
Willy Tarreau1c862c52012-10-05 16:21:00 +02002287#ifdef TCP_FASTOPEN
2288 { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */
2289#endif
Pieter Baauwd551fb52013-05-08 22:49:23 +02002290#ifdef CONFIG_HAP_TRANSPARENT
Willy Tarreau44791242012-09-12 23:27:21 +02002291 { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */
2292#endif
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002293#ifdef IPV6_V6ONLY
Willy Tarreau77e3af92012-11-24 15:07:23 +01002294 { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002295 { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */
2296#endif
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002297#ifdef CONFIG_HAP_NS
2298 { "namespace", bind_parse_namespace, 1 },
2299#endif
Willy Tarreau44791242012-09-12 23:27:21 +02002300 /* the versions with the NULL parse function*/
2301 { "defer-accept", NULL, 0 },
2302 { "interface", NULL, 1 },
2303 { "mss", NULL, 1 },
2304 { "transparent", NULL, 0 },
Willy Tarreau77e3af92012-11-24 15:07:23 +01002305 { "v4v6", NULL, 0 },
Willy Tarreau9b6700f2012-11-24 11:55:28 +01002306 { "v6only", NULL, 0 },
Willy Tarreau44791242012-09-12 23:27:21 +02002307 { NULL, NULL, 0 },
2308}};
2309
Willy Tarreaue6b98942007-10-29 01:09:36 +01002310__attribute__((constructor))
2311static void __tcp_protocol_init(void)
2312{
2313 protocol_register(&proto_tcpv4);
2314 protocol_register(&proto_tcpv6);
Willy Tarreau12785782012-04-27 21:37:17 +02002315 sample_register_fetches(&sample_fetch_keywords);
Willy Tarreaub6866442008-07-14 23:54:42 +02002316 cfg_register_keywords(&cfg_kws);
2317 acl_register_keywords(&acl_kws);
Willy Tarreau44791242012-09-12 23:27:21 +02002318 bind_register_keywords(&bind_kws);
Willy Tarreaue6b98942007-10-29 01:09:36 +01002319}
2320
2321
2322/*
2323 * Local variables:
2324 * c-indent-level: 8
2325 * c-basic-offset: 8
2326 * End:
2327 */