Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 1 | /* |
| 2 | * AF_INET/AF_INET6 SOCK_STREAM protocol layer (tcp) |
| 3 | * |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 5 | * |
| 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 | |
Baptiste Assmann | 39a5f22 | 2016-08-08 14:12:08 +0200 | [diff] [blame] | 13 | /* this is to have tcp_info defined on systems using musl |
| 14 | * library, such as Alpine Linux |
| 15 | */ |
| 16 | #define _GNU_SOURCE |
| 17 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 18 | #include <ctype.h> |
| 19 | #include <errno.h> |
| 20 | #include <fcntl.h> |
| 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
| 24 | #include <time.h> |
| 25 | |
| 26 | #include <sys/param.h> |
| 27 | #include <sys/socket.h> |
| 28 | #include <sys/stat.h> |
| 29 | #include <sys/types.h> |
| 30 | #include <sys/un.h> |
| 31 | |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 32 | #include <netinet/tcp.h> |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 33 | #include <netinet/in.h> |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 34 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 35 | #include <common/compat.h> |
| 36 | #include <common/config.h> |
| 37 | #include <common/debug.h> |
| 38 | #include <common/errors.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 39 | #include <common/mini-clist.h> |
| 40 | #include <common/standard.h> |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 41 | #include <common/namespace.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 42 | |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 43 | #include <types/action.h> |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 44 | #include <types/connection.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 45 | #include <types/global.h> |
| 46 | #include <types/stream.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 47 | |
Willy Tarreau | 9fcb984 | 2012-04-20 14:45:49 +0200 | [diff] [blame] | 48 | #include <proto/arg.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 49 | #include <proto/channel.h> |
Willy Tarreau | d2274c6 | 2012-07-06 14:29:45 +0200 | [diff] [blame] | 50 | #include <proto/connection.h> |
Willy Tarreau | dd2f85e | 2012-09-02 22:34:23 +0200 | [diff] [blame] | 51 | #include <proto/fd.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 52 | #include <proto/listener.h> |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 53 | #include <proto/log.h> |
| 54 | #include <proto/port_range.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 55 | #include <proto/protocol.h> |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 56 | #include <proto/proto_http.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 57 | #include <proto/proto_tcp.h> |
Willy Tarreau | b686644 | 2008-07-14 23:54:42 +0200 | [diff] [blame] | 58 | #include <proto/proxy.h> |
Willy Tarreau | cd3b094 | 2012-04-27 21:52:18 +0200 | [diff] [blame] | 59 | #include <proto/sample.h> |
Willy Tarreau | 163d462 | 2015-10-13 16:16:41 +0200 | [diff] [blame] | 60 | #include <proto/server.h> |
Willy Tarreau | a975b8f | 2010-06-05 19:13:27 +0200 | [diff] [blame] | 61 | #include <proto/task.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 62 | #include <proto/tcp_rules.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 63 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 64 | static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen); |
| 65 | static int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 66 | |
| 67 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 68 | static struct protocol proto_tcpv4 = { |
| 69 | .name = "tcpv4", |
| 70 | .sock_domain = AF_INET, |
| 71 | .sock_type = SOCK_STREAM, |
| 72 | .sock_prot = IPPROTO_TCP, |
| 73 | .sock_family = AF_INET, |
| 74 | .sock_addrlen = sizeof(struct sockaddr_in), |
| 75 | .l3_addrlen = 32/8, |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 76 | .accept = &listener_accept, |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 77 | .connect = tcp_connect_server, |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 78 | .bind = tcp_bind_listener, |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 79 | .bind_all = tcp_bind_listeners, |
| 80 | .unbind_all = unbind_all_listeners, |
| 81 | .enable_all = enable_all_listeners, |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 82 | .get_src = tcp_get_src, |
| 83 | .get_dst = tcp_get_dst, |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 84 | .drain = tcp_drain, |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 85 | .pause = tcp_pause_listener, |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 86 | .listeners = LIST_HEAD_INIT(proto_tcpv4.listeners), |
| 87 | .nb_listeners = 0, |
| 88 | }; |
| 89 | |
| 90 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 91 | static struct protocol proto_tcpv6 = { |
| 92 | .name = "tcpv6", |
| 93 | .sock_domain = AF_INET6, |
| 94 | .sock_type = SOCK_STREAM, |
| 95 | .sock_prot = IPPROTO_TCP, |
| 96 | .sock_family = AF_INET6, |
| 97 | .sock_addrlen = sizeof(struct sockaddr_in6), |
| 98 | .l3_addrlen = 128/8, |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 99 | .accept = &listener_accept, |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 100 | .connect = tcp_connect_server, |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 101 | .bind = tcp_bind_listener, |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 102 | .bind_all = tcp_bind_listeners, |
| 103 | .unbind_all = unbind_all_listeners, |
| 104 | .enable_all = enable_all_listeners, |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 105 | .get_src = tcp_get_src, |
| 106 | .get_dst = tcp_get_dst, |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 107 | .drain = tcp_drain, |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 108 | .pause = tcp_pause_listener, |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 109 | .listeners = LIST_HEAD_INIT(proto_tcpv6.listeners), |
| 110 | .nb_listeners = 0, |
| 111 | }; |
| 112 | |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 113 | /* Binds ipv4/ipv6 address <local> to socket <fd>, unless <flags> is set, in which |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 114 | * case we try to bind <remote>. <flags> is a 2-bit field consisting of : |
| 115 | * - 0 : ignore remote address (may even be a NULL pointer) |
| 116 | * - 1 : use provided address |
| 117 | * - 2 : use provided port |
| 118 | * - 3 : use both |
| 119 | * |
| 120 | * The function supports multiple foreign binding methods : |
| 121 | * - linux_tproxy: we directly bind to the foreign address |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 122 | * The second one can be used as a fallback for the first one. |
| 123 | * This function returns 0 when everything's OK, 1 if it could not bind, to the |
| 124 | * local address, 2 if it could not bind to the foreign address. |
| 125 | */ |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 126 | int tcp_bind_socket(int fd, int flags, struct sockaddr_storage *local, struct sockaddr_storage *remote) |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 127 | { |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 128 | struct sockaddr_storage bind_addr; |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 129 | int foreign_ok = 0; |
| 130 | int ret; |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 131 | static int ip_transp_working = 1; |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 132 | static int ip6_transp_working = 1; |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 133 | |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 134 | switch (local->ss_family) { |
| 135 | case AF_INET: |
| 136 | if (flags && ip_transp_working) { |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 137 | /* This deserves some explanation. Some platforms will support |
| 138 | * multiple combinations of certain methods, so we try the |
| 139 | * supported ones until one succeeds. |
| 140 | */ |
| 141 | if (0 |
| 142 | #if defined(IP_TRANSPARENT) |
| 143 | || (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == 0) |
| 144 | #endif |
| 145 | #if defined(IP_FREEBIND) |
| 146 | || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0) |
| 147 | #endif |
Pieter Baauw | ff30b66 | 2013-05-08 23:22:39 +0200 | [diff] [blame] | 148 | #if defined(IP_BINDANY) |
| 149 | || (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == 0) |
| 150 | #endif |
Pieter Baauw | 1eb7592 | 2013-05-08 23:30:23 +0200 | [diff] [blame] | 151 | #if defined(SO_BINDANY) |
| 152 | || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0) |
| 153 | #endif |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 154 | ) |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 155 | foreign_ok = 1; |
| 156 | else |
| 157 | ip_transp_working = 0; |
| 158 | } |
| 159 | break; |
| 160 | case AF_INET6: |
| 161 | if (flags && ip6_transp_working) { |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 162 | if (0 |
Dinko Korunic | 7276f3a | 2016-09-09 09:41:15 +0200 | [diff] [blame] | 163 | #if defined(IPV6_TRANSPARENT) && defined(SOL_IPV6) |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 164 | || (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == 0) |
| 165 | #endif |
Lukas Tribus | 7640e72 | 2014-03-03 21:10:51 +0100 | [diff] [blame] | 166 | #if defined(IP_FREEBIND) |
| 167 | || (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == 0) |
| 168 | #endif |
Pieter Baauw | ff30b66 | 2013-05-08 23:22:39 +0200 | [diff] [blame] | 169 | #if defined(IPV6_BINDANY) |
| 170 | || (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == 0) |
| 171 | #endif |
Pieter Baauw | 1eb7592 | 2013-05-08 23:30:23 +0200 | [diff] [blame] | 172 | #if defined(SO_BINDANY) |
| 173 | || (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == 0) |
| 174 | #endif |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 175 | ) |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 176 | foreign_ok = 1; |
| 177 | else |
| 178 | ip6_transp_working = 0; |
| 179 | } |
| 180 | break; |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 181 | } |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 182 | |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 183 | if (flags) { |
| 184 | memset(&bind_addr, 0, sizeof(bind_addr)); |
Willy Tarreau | 96dd079 | 2011-04-19 07:20:57 +0200 | [diff] [blame] | 185 | bind_addr.ss_family = remote->ss_family; |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 186 | switch (remote->ss_family) { |
| 187 | case AF_INET: |
| 188 | if (flags & 1) |
| 189 | ((struct sockaddr_in *)&bind_addr)->sin_addr = ((struct sockaddr_in *)remote)->sin_addr; |
| 190 | if (flags & 2) |
| 191 | ((struct sockaddr_in *)&bind_addr)->sin_port = ((struct sockaddr_in *)remote)->sin_port; |
| 192 | break; |
| 193 | case AF_INET6: |
| 194 | if (flags & 1) |
| 195 | ((struct sockaddr_in6 *)&bind_addr)->sin6_addr = ((struct sockaddr_in6 *)remote)->sin6_addr; |
| 196 | if (flags & 2) |
| 197 | ((struct sockaddr_in6 *)&bind_addr)->sin6_port = ((struct sockaddr_in6 *)remote)->sin6_port; |
| 198 | break; |
Willy Tarreau | 5dc1e98 | 2011-12-16 21:25:11 +0100 | [diff] [blame] | 199 | default: |
| 200 | /* we don't want to try to bind to an unknown address family */ |
| 201 | foreign_ok = 0; |
David du Colombier | 6f5ccb1 | 2011-03-10 22:26:24 +0100 | [diff] [blame] | 202 | } |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 203 | } |
| 204 | |
Simon Horman | de072bd | 2011-06-24 15:11:37 +0900 | [diff] [blame] | 205 | setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)); |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 206 | if (foreign_ok) { |
Willy Tarreau | 9cf8d3f | 2014-05-09 22:56:10 +0200 | [diff] [blame] | 207 | if (is_inet_addr(&bind_addr)) { |
Willy Tarreau | 5f2877a | 2012-10-26 19:57:58 +0200 | [diff] [blame] | 208 | ret = bind(fd, (struct sockaddr *)&bind_addr, get_addr_len(&bind_addr)); |
| 209 | if (ret < 0) |
| 210 | return 2; |
| 211 | } |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 212 | } |
| 213 | else { |
Willy Tarreau | 9cf8d3f | 2014-05-09 22:56:10 +0200 | [diff] [blame] | 214 | if (is_inet_addr(local)) { |
Willy Tarreau | 5f2877a | 2012-10-26 19:57:58 +0200 | [diff] [blame] | 215 | ret = bind(fd, (struct sockaddr *)local, get_addr_len(local)); |
| 216 | if (ret < 0) |
| 217 | return 1; |
| 218 | } |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | if (!flags) |
| 222 | return 0; |
| 223 | |
Willy Tarreau | e8c66af | 2008-01-13 18:40:14 +0100 | [diff] [blame] | 224 | if (!foreign_ok) |
| 225 | /* we could not bind to a foreign address */ |
| 226 | return 2; |
| 227 | |
| 228 | return 0; |
| 229 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 230 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 231 | static int create_server_socket(struct connection *conn) |
| 232 | { |
Willy Tarreau | 529c139 | 2014-12-24 13:47:55 +0100 | [diff] [blame] | 233 | const struct netns_entry *ns = NULL; |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 234 | |
Willy Tarreau | 529c139 | 2014-12-24 13:47:55 +0100 | [diff] [blame] | 235 | #ifdef CONFIG_HAP_NS |
| 236 | if (objt_server(conn->target)) { |
| 237 | if (__objt_server(conn->target)->flags & SRV_F_USE_NS_FROM_PP) |
| 238 | ns = conn->proxy_netns; |
| 239 | else |
| 240 | ns = __objt_server(conn->target)->netns; |
| 241 | } |
| 242 | #endif |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 243 | return my_socketat(ns, conn->addr.to.ss_family, SOCK_STREAM, IPPROTO_TCP); |
| 244 | } |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 245 | |
| 246 | /* |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 247 | * This function initiates a TCP connection establishment to the target assigned |
| 248 | * to connection <conn> using (si->{target,addr.to}). A source address may be |
| 249 | * pointed to by conn->addr.from in case of transparent proxying. Normal source |
| 250 | * bind addresses are still determined locally (due to the possible need of a |
| 251 | * source port). conn->target may point either to a valid server or to a backend, |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 252 | * depending on conn->target. Only OBJ_TYPE_PROXY and OBJ_TYPE_SERVER are |
Willy Tarreau | f0837b2 | 2012-11-24 10:24:27 +0100 | [diff] [blame] | 253 | * supported. The <data> parameter is a boolean indicating whether there are data |
| 254 | * waiting for being sent or not, in order to adjust data write polling and on |
| 255 | * some platforms, the ability to avoid an empty initial ACK. The <delack> argument |
| 256 | * allows the caller to force using a delayed ACK when establishing the connection : |
| 257 | * - 0 = no delayed ACK unless data are advertised and backend has tcp-smart-connect |
| 258 | * - 1 = delayed ACK if backend has tcp-smart-connect, regardless of data |
| 259 | * - 2 = delayed ACK regardless of backend options |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 260 | * |
Willy Tarreau | 1ec74bf | 2013-10-24 21:45:00 +0200 | [diff] [blame] | 261 | * Note that a pending send_proxy message accounts for data. |
| 262 | * |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 263 | * It can return one of : |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 264 | * - SF_ERR_NONE if everything's OK |
| 265 | * - SF_ERR_SRVTO if there are no more servers |
| 266 | * - SF_ERR_SRVCL if the connection was refused by the server |
| 267 | * - SF_ERR_PRXCOND if the connection has been limited by the proxy (maxconn) |
| 268 | * - SF_ERR_RESOURCE if a system resource is lacking (eg: fd limits, ports, ...) |
| 269 | * - SF_ERR_INTERNAL for any other purely internal errors |
Tim Düsterhus | 4896c44 | 2016-11-29 02:15:19 +0100 | [diff] [blame] | 270 | * Additionally, in the case of SF_ERR_RESOURCE, an emergency log will be emitted. |
Willy Tarreau | 6b0a850 | 2012-11-23 08:51:32 +0100 | [diff] [blame] | 271 | * |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 272 | * The connection's fd is inserted only when SF_ERR_NONE is returned, otherwise |
Willy Tarreau | 6b0a850 | 2012-11-23 08:51:32 +0100 | [diff] [blame] | 273 | * it's invalid and the caller has nothing to do. |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 274 | */ |
Willy Tarreau | f153686 | 2011-03-03 18:27:32 +0100 | [diff] [blame] | 275 | |
Willy Tarreau | f0837b2 | 2012-11-24 10:24:27 +0100 | [diff] [blame] | 276 | int tcp_connect_server(struct connection *conn, int data, int delack) |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 277 | { |
| 278 | int fd; |
Willy Tarreau | ac82540 | 2011-03-04 22:04:29 +0100 | [diff] [blame] | 279 | struct server *srv; |
| 280 | struct proxy *be; |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 281 | struct conn_src *src; |
Willy Tarreau | ac82540 | 2011-03-04 22:04:29 +0100 | [diff] [blame] | 282 | |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 283 | conn->flags = CO_FL_WAIT_L4_CONN; /* connection in progress */ |
| 284 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 285 | switch (obj_type(conn->target)) { |
| 286 | case OBJ_TYPE_PROXY: |
| 287 | be = objt_proxy(conn->target); |
Willy Tarreau | ac82540 | 2011-03-04 22:04:29 +0100 | [diff] [blame] | 288 | srv = NULL; |
| 289 | break; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 290 | case OBJ_TYPE_SERVER: |
| 291 | srv = objt_server(conn->target); |
Willy Tarreau | ac82540 | 2011-03-04 22:04:29 +0100 | [diff] [blame] | 292 | be = srv->proxy; |
| 293 | break; |
| 294 | default: |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 295 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 296 | return SF_ERR_INTERNAL; |
Willy Tarreau | ac82540 | 2011-03-04 22:04:29 +0100 | [diff] [blame] | 297 | } |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 298 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 299 | fd = conn->t.sock.fd = create_server_socket(conn); |
| 300 | |
| 301 | if (fd == -1) { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 302 | qfprintf(stderr, "Cannot get a server socket.\n"); |
| 303 | |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 304 | if (errno == ENFILE) { |
| 305 | conn->err_code = CO_ER_SYS_FDLIM; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 306 | send_log(be, LOG_EMERG, |
| 307 | "Proxy %s reached system FD limit at %d. Please check system tunables.\n", |
| 308 | be->id, maxfd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 309 | } |
| 310 | else if (errno == EMFILE) { |
| 311 | conn->err_code = CO_ER_PROC_FDLIM; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 312 | send_log(be, LOG_EMERG, |
| 313 | "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n", |
| 314 | be->id, maxfd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 315 | } |
| 316 | else if (errno == ENOBUFS || errno == ENOMEM) { |
| 317 | conn->err_code = CO_ER_SYS_MEMLIM; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 318 | send_log(be, LOG_EMERG, |
| 319 | "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n", |
| 320 | be->id, maxfd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 321 | } |
| 322 | else if (errno == EAFNOSUPPORT || errno == EPROTONOSUPPORT) { |
| 323 | conn->err_code = CO_ER_NOPROTO; |
| 324 | } |
| 325 | else |
| 326 | conn->err_code = CO_ER_SOCK_ERR; |
| 327 | |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 328 | /* this is a resource error */ |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 329 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 330 | return SF_ERR_RESOURCE; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | if (fd >= global.maxsock) { |
| 334 | /* do not log anything there, it's a normal condition when this option |
| 335 | * is used to serialize connections to a server ! |
| 336 | */ |
| 337 | Alert("socket(): not enough free sockets. Raise -n argument. Giving up.\n"); |
| 338 | close(fd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 339 | conn->err_code = CO_ER_CONF_FDLIM; |
| 340 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 341 | return SF_ERR_PRXCOND; /* it is a configuration limit */ |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | if ((fcntl(fd, F_SETFL, O_NONBLOCK)==-1) || |
Simon Horman | de072bd | 2011-06-24 15:11:37 +0900 | [diff] [blame] | 345 | (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)) == -1)) { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 346 | qfprintf(stderr,"Cannot set client socket to non blocking mode.\n"); |
| 347 | close(fd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 348 | conn->err_code = CO_ER_SOCK_ERR; |
| 349 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 350 | return SF_ERR_INTERNAL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | if (be->options & PR_O_TCP_SRV_KA) |
Simon Horman | de072bd | 2011-06-24 15:11:37 +0900 | [diff] [blame] | 354 | setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof(one)); |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 355 | |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 356 | /* allow specific binding : |
| 357 | * - server-specific at first |
| 358 | * - proxy-specific next |
| 359 | */ |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 360 | if (srv && srv->conn_src.opts & CO_SRC_BIND) |
| 361 | src = &srv->conn_src; |
| 362 | else if (be->conn_src.opts & CO_SRC_BIND) |
| 363 | src = &be->conn_src; |
| 364 | else |
| 365 | src = NULL; |
| 366 | |
| 367 | if (src) { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 368 | int ret, flags = 0; |
| 369 | |
Willy Tarreau | 9cf8d3f | 2014-05-09 22:56:10 +0200 | [diff] [blame] | 370 | if (is_inet_addr(&conn->addr.from)) { |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 371 | switch (src->opts & CO_SRC_TPROXY_MASK) { |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 372 | case CO_SRC_TPROXY_CLI: |
Willy Tarreau | 387ebf8 | 2015-08-04 19:24:13 +0200 | [diff] [blame] | 373 | conn->flags |= CO_FL_PRIVATE; |
| 374 | /* fall through */ |
| 375 | case CO_SRC_TPROXY_ADDR: |
Willy Tarreau | 5f2877a | 2012-10-26 19:57:58 +0200 | [diff] [blame] | 376 | flags = 3; |
| 377 | break; |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 378 | case CO_SRC_TPROXY_CIP: |
| 379 | case CO_SRC_TPROXY_DYN: |
Willy Tarreau | 387ebf8 | 2015-08-04 19:24:13 +0200 | [diff] [blame] | 380 | conn->flags |= CO_FL_PRIVATE; |
Willy Tarreau | 5f2877a | 2012-10-26 19:57:58 +0200 | [diff] [blame] | 381 | flags = 1; |
| 382 | break; |
| 383 | } |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 384 | } |
Willy Tarreau | b1d6774 | 2010-03-29 19:36:59 +0200 | [diff] [blame] | 385 | |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 386 | #ifdef SO_BINDTODEVICE |
| 387 | /* Note: this might fail if not CAP_NET_RAW */ |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 388 | if (src->iface_name) |
| 389 | setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, src->iface_name, src->iface_len + 1); |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 390 | #endif |
| 391 | |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 392 | if (src->sport_range) { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 393 | int attempts = 10; /* should be more than enough to find a spare port */ |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 394 | struct sockaddr_storage sa; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 395 | |
| 396 | ret = 1; |
Vincent Bernat | 6e61589 | 2016-05-18 16:17:44 +0200 | [diff] [blame] | 397 | memcpy(&sa, &src->source_addr, sizeof(sa)); |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 398 | |
| 399 | do { |
| 400 | /* note: in case of retry, we may have to release a previously |
| 401 | * allocated port, hence this loop's construct. |
| 402 | */ |
Willy Tarreau | 8d5d77e | 2009-10-18 07:25:52 +0200 | [diff] [blame] | 403 | port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port); |
| 404 | fdinfo[fd].port_range = NULL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 405 | |
| 406 | if (!attempts) |
| 407 | break; |
| 408 | attempts--; |
| 409 | |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 410 | fdinfo[fd].local_port = port_range_alloc_port(src->sport_range); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 411 | if (!fdinfo[fd].local_port) { |
| 412 | conn->err_code = CO_ER_PORT_RANGE; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 413 | break; |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 414 | } |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 415 | |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 416 | fdinfo[fd].port_range = src->sport_range; |
| 417 | set_host_port(&sa, fdinfo[fd].local_port); |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 418 | |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 419 | ret = tcp_bind_socket(fd, flags, &sa, &conn->addr.from); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 420 | if (ret != 0) |
| 421 | conn->err_code = CO_ER_CANT_BIND; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 422 | } while (ret != 0); /* binding NOK */ |
| 423 | } |
| 424 | else { |
Lukas Tribus | 7d56c6d | 2016-09-13 09:51:15 +0000 | [diff] [blame] | 425 | #ifdef IP_BIND_ADDRESS_NO_PORT |
| 426 | static int bind_address_no_port = 1; |
| 427 | setsockopt(fd, SOL_IP, IP_BIND_ADDRESS_NO_PORT, (const void *) &bind_address_no_port, sizeof(int)); |
| 428 | #endif |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 429 | ret = tcp_bind_socket(fd, flags, &src->source_addr, &conn->addr.from); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 430 | if (ret != 0) |
| 431 | conn->err_code = CO_ER_CANT_BIND; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 432 | } |
| 433 | |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 434 | if (unlikely(ret != 0)) { |
Willy Tarreau | 8d5d77e | 2009-10-18 07:25:52 +0200 | [diff] [blame] | 435 | port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port); |
| 436 | fdinfo[fd].port_range = NULL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 437 | close(fd); |
| 438 | |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 439 | if (ret == 1) { |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 440 | Alert("Cannot bind to source address before connect() for backend %s. Aborting.\n", |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 441 | be->id); |
| 442 | send_log(be, LOG_EMERG, |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 443 | "Cannot bind to source address before connect() for backend %s.\n", |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 444 | be->id); |
| 445 | } else { |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 446 | Alert("Cannot bind to tproxy source address before connect() for backend %s. Aborting.\n", |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 447 | be->id); |
| 448 | send_log(be, LOG_EMERG, |
Willy Tarreau | a4380b4 | 2012-12-08 22:49:11 +0100 | [diff] [blame] | 449 | "Cannot bind to tproxy source address before connect() for backend %s.\n", |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 450 | be->id); |
| 451 | } |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 452 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 453 | return SF_ERR_RESOURCE; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 454 | } |
| 455 | } |
| 456 | |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 457 | #if defined(TCP_QUICKACK) |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 458 | /* disabling tcp quick ack now allows the first request to leave the |
| 459 | * machine with the first ACK. We only do this if there are pending |
Willy Tarreau | f0837b2 | 2012-11-24 10:24:27 +0100 | [diff] [blame] | 460 | * data in the buffer. |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 461 | */ |
Willy Tarreau | fb20e46 | 2014-10-24 12:02:24 +0200 | [diff] [blame] | 462 | if (delack == 2 || ((delack || data || conn->send_proxy_ofs) && (be->options2 & PR_O2_SMARTCON))) |
Simon Horman | de072bd | 2011-06-24 15:11:37 +0900 | [diff] [blame] | 463 | setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero)); |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 464 | #endif |
| 465 | |
Willy Tarreau | 163d462 | 2015-10-13 16:16:41 +0200 | [diff] [blame] | 466 | #ifdef TCP_USER_TIMEOUT |
| 467 | /* there is not much more we can do here when it fails, it's still minor */ |
| 468 | if (srv && srv->tcp_ut) |
| 469 | setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, &srv->tcp_ut, sizeof(srv->tcp_ut)); |
| 470 | #endif |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 471 | if (global.tune.server_sndbuf) |
| 472 | setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &global.tune.server_sndbuf, sizeof(global.tune.server_sndbuf)); |
| 473 | |
| 474 | if (global.tune.server_rcvbuf) |
| 475 | setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &global.tune.server_rcvbuf, sizeof(global.tune.server_rcvbuf)); |
| 476 | |
Willy Tarreau | 819efbf | 2017-01-25 14:12:22 +0100 | [diff] [blame] | 477 | if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) == -1) { |
| 478 | if (errno == EINPROGRESS || errno == EALREADY) { |
| 479 | /* common case, let's wait for connect status */ |
| 480 | conn->flags |= CO_FL_WAIT_L4_CONN; |
| 481 | } |
| 482 | else if (errno == EISCONN) { |
| 483 | /* should normally not happen but if so, indicates that it's OK */ |
| 484 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 485 | } |
| 486 | else if (errno == EAGAIN || errno == EADDRINUSE || errno == EADDRNOTAVAIL) { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 487 | char *msg; |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 488 | if (errno == EAGAIN || errno == EADDRNOTAVAIL) { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 489 | msg = "no free ports"; |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 490 | conn->err_code = CO_ER_FREE_PORTS; |
| 491 | } |
| 492 | else { |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 493 | msg = "local address already in use"; |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 494 | conn->err_code = CO_ER_ADDR_INUSE; |
| 495 | } |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 496 | |
Willy Tarreau | b171951 | 2012-12-08 23:03:28 +0100 | [diff] [blame] | 497 | qfprintf(stderr,"Connect() failed for backend %s: %s.\n", be->id, msg); |
Willy Tarreau | 8d5d77e | 2009-10-18 07:25:52 +0200 | [diff] [blame] | 498 | port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port); |
| 499 | fdinfo[fd].port_range = NULL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 500 | close(fd); |
Willy Tarreau | b171951 | 2012-12-08 23:03:28 +0100 | [diff] [blame] | 501 | send_log(be, LOG_ERR, "Connect() failed for backend %s: %s.\n", be->id, msg); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 502 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 503 | return SF_ERR_RESOURCE; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 504 | } else if (errno == ETIMEDOUT) { |
| 505 | //qfprintf(stderr,"Connect(): ETIMEDOUT"); |
Willy Tarreau | 8d5d77e | 2009-10-18 07:25:52 +0200 | [diff] [blame] | 506 | port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port); |
| 507 | fdinfo[fd].port_range = NULL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 508 | close(fd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 509 | conn->err_code = CO_ER_SOCK_ERR; |
| 510 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 511 | return SF_ERR_SRVTO; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 512 | } else { |
| 513 | // (errno == ECONNREFUSED || errno == ENETUNREACH || errno == EACCES || errno == EPERM) |
| 514 | //qfprintf(stderr,"Connect(): %d", errno); |
Willy Tarreau | 8d5d77e | 2009-10-18 07:25:52 +0200 | [diff] [blame] | 515 | port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port); |
| 516 | fdinfo[fd].port_range = NULL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 517 | close(fd); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 518 | conn->err_code = CO_ER_SOCK_ERR; |
| 519 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 520 | return SF_ERR_SRVCL; |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 521 | } |
| 522 | } |
Willy Tarreau | 819efbf | 2017-01-25 14:12:22 +0100 | [diff] [blame] | 523 | else { |
| 524 | /* connect() == 0, this is great! */ |
| 525 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 526 | } |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 527 | |
Willy Tarreau | fc8f1f0 | 2012-12-08 18:53:44 +0100 | [diff] [blame] | 528 | conn->flags |= CO_FL_ADDR_TO_SET; |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 529 | |
Willy Tarreau | 1ec74bf | 2013-10-24 21:45:00 +0200 | [diff] [blame] | 530 | /* Prepare to send a few handshakes related to the on-wire protocol. */ |
| 531 | if (conn->send_proxy_ofs) |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 532 | conn->flags |= CO_FL_SEND_PROXY; |
Willy Tarreau | 1ec74bf | 2013-10-24 21:45:00 +0200 | [diff] [blame] | 533 | |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 534 | conn_ctrl_init(conn); /* registers the FD */ |
Willy Tarreau | ad38ace | 2013-12-15 14:19:38 +0100 | [diff] [blame] | 535 | fdtab[fd].linger_risk = 1; /* close hard if needed */ |
Willy Tarreau | 15678ef | 2012-08-31 13:54:11 +0200 | [diff] [blame] | 536 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 537 | if (conn_xprt_init(conn) < 0) { |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 538 | conn_force_close(conn); |
Willy Tarreau | 9ce7013 | 2014-01-24 16:08:19 +0100 | [diff] [blame] | 539 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 540 | return SF_ERR_RESOURCE; |
Willy Tarreau | 184636e | 2012-09-06 14:04:41 +0200 | [diff] [blame] | 541 | } |
Willy Tarreau | 15678ef | 2012-08-31 13:54:11 +0200 | [diff] [blame] | 542 | |
Willy Tarreau | 819efbf | 2017-01-25 14:12:22 +0100 | [diff] [blame] | 543 | if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_WAIT_L4_CONN)) { |
| 544 | conn_sock_want_send(conn); /* for connect status, proxy protocol or SSL */ |
| 545 | } |
| 546 | else { |
| 547 | /* If there's no more handshake, we need to notify the data |
| 548 | * layer when the connection is already OK otherwise we'll have |
| 549 | * no other opportunity to do it later (eg: health checks). |
| 550 | */ |
| 551 | data = 1; |
| 552 | } |
| 553 | |
Willy Tarreau | 14f8e86 | 2012-08-30 22:23:13 +0200 | [diff] [blame] | 554 | if (data) |
Willy Tarreau | 986a9d2 | 2012-08-30 21:11:38 +0200 | [diff] [blame] | 555 | conn_data_want_send(conn); /* prepare to send data if any */ |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 556 | |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 557 | return SF_ERR_NONE; /* connection is OK */ |
Willy Tarreau | 9650f37 | 2009-08-16 14:02:45 +0200 | [diff] [blame] | 558 | } |
| 559 | |
| 560 | |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 561 | /* |
| 562 | * Retrieves the source address for the socket <fd>, with <dir> indicating |
| 563 | * if we're a listener (=0) or an initiator (!=0). It returns 0 in case of |
| 564 | * success, -1 in case of error. The socket's source address is stored in |
| 565 | * <sa> for <salen> bytes. |
| 566 | */ |
| 567 | int tcp_get_src(int fd, struct sockaddr *sa, socklen_t salen, int dir) |
| 568 | { |
| 569 | if (dir) |
| 570 | return getsockname(fd, sa, &salen); |
| 571 | else |
| 572 | return getpeername(fd, sa, &salen); |
| 573 | } |
| 574 | |
| 575 | |
| 576 | /* |
| 577 | * Retrieves the original destination address for the socket <fd>, with <dir> |
| 578 | * indicating if we're a listener (=0) or an initiator (!=0). In the case of a |
| 579 | * listener, if the original destination address was translated, the original |
| 580 | * address is retrieved. It returns 0 in case of success, -1 in case of error. |
| 581 | * The socket's source address is stored in <sa> for <salen> bytes. |
| 582 | */ |
| 583 | int tcp_get_dst(int fd, struct sockaddr *sa, socklen_t salen, int dir) |
| 584 | { |
| 585 | if (dir) |
| 586 | return getpeername(fd, sa, &salen); |
Willy Tarreau | 5e0d0e0 | 2014-10-29 21:46:01 +0100 | [diff] [blame] | 587 | else { |
| 588 | int ret = getsockname(fd, sa, &salen); |
| 589 | |
| 590 | if (ret < 0) |
| 591 | return ret; |
| 592 | |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 593 | #if defined(TPROXY) && defined(SO_ORIGINAL_DST) |
Willy Tarreau | 5e0d0e0 | 2014-10-29 21:46:01 +0100 | [diff] [blame] | 594 | /* For TPROXY and Netfilter's NAT, we can retrieve the original |
| 595 | * IPv4 address before DNAT/REDIRECT. We must not do that with |
| 596 | * other families because v6-mapped IPv4 addresses are still |
| 597 | * reported as v4. |
| 598 | */ |
| 599 | if (((struct sockaddr_storage *)sa)->ss_family == AF_INET |
| 600 | && getsockopt(fd, SOL_IP, SO_ORIGINAL_DST, sa, &salen) == 0) |
| 601 | return 0; |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 602 | #endif |
Willy Tarreau | 5e0d0e0 | 2014-10-29 21:46:01 +0100 | [diff] [blame] | 603 | return ret; |
| 604 | } |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 605 | } |
| 606 | |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 607 | /* Tries to drain any pending incoming data from the socket to reach the |
Willy Tarreau | 7f4bcc3 | 2014-01-20 11:26:12 +0100 | [diff] [blame] | 608 | * receive shutdown. Returns positive if the shutdown was found, negative |
| 609 | * if EAGAIN was hit, otherwise zero. This is useful to decide whether we |
| 610 | * can close a connection cleanly are we must kill it hard. |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 611 | */ |
| 612 | int tcp_drain(int fd) |
| 613 | { |
| 614 | int turns = 2; |
| 615 | int len; |
| 616 | |
| 617 | while (turns) { |
| 618 | #ifdef MSG_TRUNC_CLEARS_INPUT |
| 619 | len = recv(fd, NULL, INT_MAX, MSG_DONTWAIT | MSG_NOSIGNAL | MSG_TRUNC); |
| 620 | if (len == -1 && errno == EFAULT) |
| 621 | #endif |
| 622 | len = recv(fd, trash.str, trash.size, MSG_DONTWAIT | MSG_NOSIGNAL); |
| 623 | |
Willy Tarreau | 3bd3e57 | 2014-01-20 11:56:37 +0100 | [diff] [blame] | 624 | if (len == 0) { |
| 625 | /* cool, shutdown received */ |
| 626 | fdtab[fd].linger_risk = 0; |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 627 | return 1; |
Willy Tarreau | 3bd3e57 | 2014-01-20 11:56:37 +0100 | [diff] [blame] | 628 | } |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 629 | |
| 630 | if (len < 0) { |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 631 | if (errno == EAGAIN) { |
| 632 | /* connection not closed yet */ |
| 633 | fd_cant_recv(fd); |
Willy Tarreau | 7f4bcc3 | 2014-01-20 11:26:12 +0100 | [diff] [blame] | 634 | return -1; |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 635 | } |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 636 | if (errno == EINTR) /* oops, try again */ |
| 637 | continue; |
| 638 | /* other errors indicate a dead connection, fine. */ |
Willy Tarreau | 3bd3e57 | 2014-01-20 11:56:37 +0100 | [diff] [blame] | 639 | fdtab[fd].linger_risk = 0; |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 640 | return 1; |
| 641 | } |
| 642 | /* OK we read some data, let's try again once */ |
| 643 | turns--; |
| 644 | } |
| 645 | /* some data are still present, give up */ |
| 646 | return 0; |
| 647 | } |
| 648 | |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 649 | /* This is the callback which is set when a connection establishment is pending |
Willy Tarreau | f12a20e | 2013-12-04 16:11:04 +0100 | [diff] [blame] | 650 | * and we have nothing to send. It updates the FD polling status. It returns 0 |
| 651 | * if it fails in a fatal way or needs to poll to go further, otherwise it |
| 652 | * returns non-zero and removes the CO_FL_WAIT_L4_CONN flag from the connection's |
| 653 | * flags. In case of error, it sets CO_FL_ERROR and leaves the error code in |
| 654 | * errno. The error checking is done in two passes in order to limit the number |
| 655 | * of syscalls in the normal case : |
| 656 | * - if POLL_ERR was reported by the poller, we check for a pending error on |
| 657 | * the socket before proceeding. If found, it's assigned to errno so that |
| 658 | * upper layers can see it. |
| 659 | * - otherwise connect() is used to check the connection state again, since |
| 660 | * the getsockopt return cannot reliably be used to know if the connection |
| 661 | * is still pending or ready. This one may often return an error as well, |
| 662 | * since we don't always have POLL_ERR (eg: OSX or cached events). |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 663 | */ |
Willy Tarreau | 239d718 | 2012-07-23 18:53:03 +0200 | [diff] [blame] | 664 | int tcp_connect_probe(struct connection *conn) |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 665 | { |
Willy Tarreau | 239d718 | 2012-07-23 18:53:03 +0200 | [diff] [blame] | 666 | int fd = conn->t.sock.fd; |
Willy Tarreau | f12a20e | 2013-12-04 16:11:04 +0100 | [diff] [blame] | 667 | socklen_t lskerr; |
| 668 | int skerr; |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 669 | |
Willy Tarreau | 8018471 | 2012-07-06 14:54:49 +0200 | [diff] [blame] | 670 | if (conn->flags & CO_FL_ERROR) |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 671 | return 0; |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 672 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 673 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 674 | return 0; |
| 675 | |
Willy Tarreau | 8018471 | 2012-07-06 14:54:49 +0200 | [diff] [blame] | 676 | if (!(conn->flags & CO_FL_WAIT_L4_CONN)) |
Willy Tarreau | 0b0c097 | 2012-07-23 20:05:00 +0200 | [diff] [blame] | 677 | return 1; /* strange we were called while ready */ |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 678 | |
Willy Tarreau | fd803bb | 2014-01-20 15:13:07 +0100 | [diff] [blame] | 679 | if (!fd_send_ready(fd)) |
| 680 | return 0; |
| 681 | |
Willy Tarreau | f12a20e | 2013-12-04 16:11:04 +0100 | [diff] [blame] | 682 | /* we might be the first witness of FD_POLL_ERR. Note that FD_POLL_HUP |
| 683 | * without FD_POLL_IN also indicates a hangup without input data meaning |
| 684 | * there was no connection. |
| 685 | */ |
| 686 | if (fdtab[fd].ev & FD_POLL_ERR || |
| 687 | (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP) { |
| 688 | skerr = 0; |
| 689 | lskerr = sizeof(skerr); |
| 690 | getsockopt(fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr); |
| 691 | errno = skerr; |
| 692 | if (errno == EAGAIN) |
| 693 | errno = 0; |
| 694 | if (errno) |
| 695 | goto out_error; |
| 696 | } |
Willy Tarreau | 2da156f | 2012-07-23 15:07:23 +0200 | [diff] [blame] | 697 | |
Willy Tarreau | f12a20e | 2013-12-04 16:11:04 +0100 | [diff] [blame] | 698 | /* Use connect() to check the state of the socket. This has the |
| 699 | * advantage of giving us the following info : |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 700 | * - error |
| 701 | * - connecting (EALREADY, EINPROGRESS) |
| 702 | * - connected (EISCONN, 0) |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 703 | */ |
Willy Tarreau | 986a9d2 | 2012-08-30 21:11:38 +0200 | [diff] [blame] | 704 | if (connect(fd, (struct sockaddr *)&conn->addr.to, get_addr_len(&conn->addr.to)) < 0) { |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 705 | if (errno == EALREADY || errno == EINPROGRESS) { |
Willy Tarreau | d486ef5 | 2012-12-10 17:03:52 +0100 | [diff] [blame] | 706 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 707 | fd_cant_send(fd); |
Willy Tarreau | 0b0c097 | 2012-07-23 20:05:00 +0200 | [diff] [blame] | 708 | return 0; |
Willy Tarreau | f9dabec | 2012-08-17 17:33:53 +0200 | [diff] [blame] | 709 | } |
Willy Tarreau | a190d59 | 2012-05-20 18:35:19 +0200 | [diff] [blame] | 710 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 711 | if (errno && errno != EISCONN) |
Willy Tarreau | a190d59 | 2012-05-20 18:35:19 +0200 | [diff] [blame] | 712 | goto out_error; |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 713 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 714 | /* otherwise we're connected */ |
Willy Tarreau | a190d59 | 2012-05-20 18:35:19 +0200 | [diff] [blame] | 715 | } |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 716 | |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 717 | /* The FD is ready now, we'll mark the connection as complete and |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 718 | * forward the event to the transport layer which will notify the |
| 719 | * data layer. |
Willy Tarreau | a190d59 | 2012-05-20 18:35:19 +0200 | [diff] [blame] | 720 | */ |
Willy Tarreau | 8018471 | 2012-07-06 14:54:49 +0200 | [diff] [blame] | 721 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 0b0c097 | 2012-07-23 20:05:00 +0200 | [diff] [blame] | 722 | return 1; |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 723 | |
| 724 | out_error: |
Willy Tarreau | 0b0c097 | 2012-07-23 20:05:00 +0200 | [diff] [blame] | 725 | /* Write error on the file descriptor. Report it to the connection |
| 726 | * and disable polling on this FD. |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 727 | */ |
Willy Tarreau | 3bd3e57 | 2014-01-20 11:56:37 +0100 | [diff] [blame] | 728 | fdtab[fd].linger_risk = 0; |
Willy Tarreau | 26f4a04 | 2013-12-04 23:44:10 +0100 | [diff] [blame] | 729 | conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH; |
Willy Tarreau | d486ef5 | 2012-12-10 17:03:52 +0100 | [diff] [blame] | 730 | __conn_sock_stop_both(conn); |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 731 | return 0; |
Willy Tarreau | eeda90e | 2012-05-11 19:53:32 +0200 | [diff] [blame] | 732 | } |
| 733 | |
Willy Tarreau | 59b9479 | 2012-05-11 16:16:40 +0200 | [diff] [blame] | 734 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 735 | /* This function tries to bind a TCPv4/v6 listener. It may return a warning or |
Willy Tarreau | 8ab505b | 2013-01-24 01:41:38 +0100 | [diff] [blame] | 736 | * an error message in <errmsg> if the message is at most <errlen> bytes long |
| 737 | * (including '\0'). Note that <errmsg> may be NULL if <errlen> is also zero. |
| 738 | * The return value is composed from ERR_ABORT, ERR_WARN, |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 739 | * ERR_ALERT, ERR_RETRYABLE and ERR_FATAL. ERR_NONE indicates that everything |
| 740 | * was alright and that no message was returned. ERR_RETRYABLE means that an |
| 741 | * error occurred but that it may vanish after a retry (eg: port in use), and |
Aman Gupta | d94991d | 2012-04-06 17:39:26 -0700 | [diff] [blame] | 742 | * ERR_FATAL indicates a non-fixable error. ERR_WARN and ERR_ALERT do not alter |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 743 | * the meaning of the error, but just indicate that a message is present which |
| 744 | * should be displayed with the respective level. Last, ERR_ABORT indicates |
| 745 | * that it's pointless to try to start other listeners. No error message is |
| 746 | * returned if errlen is NULL. |
| 747 | */ |
| 748 | int tcp_bind_listener(struct listener *listener, char *errmsg, int errlen) |
| 749 | { |
| 750 | __label__ tcp_return, tcp_close_return; |
| 751 | int fd, err; |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 752 | int ext, ready; |
| 753 | socklen_t ready_len; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 754 | const char *msg = NULL; |
| 755 | |
| 756 | /* ensure we never return garbage */ |
Willy Tarreau | 8ab505b | 2013-01-24 01:41:38 +0100 | [diff] [blame] | 757 | if (errlen) |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 758 | *errmsg = 0; |
| 759 | |
| 760 | if (listener->state != LI_ASSIGNED) |
| 761 | return ERR_NONE; /* already bound */ |
| 762 | |
| 763 | err = ERR_NONE; |
| 764 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 765 | /* if the listener already has an fd assigned, then we were offered the |
| 766 | * fd by an external process (most likely the parent), and we don't want |
| 767 | * to create a new socket. However we still want to set a few flags on |
| 768 | * the socket. |
| 769 | */ |
| 770 | fd = listener->fd; |
| 771 | ext = (fd >= 0); |
| 772 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 773 | if (!ext) { |
| 774 | fd = my_socketat(listener->netns, listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP); |
| 775 | |
| 776 | if (fd == -1) { |
| 777 | err |= ERR_RETRYABLE | ERR_ALERT; |
| 778 | msg = "cannot create listening socket"; |
| 779 | goto tcp_return; |
| 780 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 781 | } |
Willy Tarreau | edcf668 | 2008-11-30 23:15:34 +0100 | [diff] [blame] | 782 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 783 | if (fd >= global.maxsock) { |
| 784 | err |= ERR_FATAL | ERR_ABORT | ERR_ALERT; |
| 785 | msg = "not enough free sockets (raise '-n' parameter)"; |
| 786 | goto tcp_close_return; |
| 787 | } |
| 788 | |
Willy Tarreau | fb14edc | 2009-06-14 15:24:37 +0200 | [diff] [blame] | 789 | if (fcntl(fd, F_SETFL, O_NONBLOCK) == -1) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 790 | err |= ERR_FATAL | ERR_ALERT; |
| 791 | msg = "cannot make socket non-blocking"; |
| 792 | goto tcp_close_return; |
| 793 | } |
| 794 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 795 | if (!ext && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 796 | /* not fatal but should be reported */ |
| 797 | msg = "cannot do so_reuseaddr"; |
| 798 | err |= ERR_ALERT; |
| 799 | } |
| 800 | |
| 801 | if (listener->options & LI_O_NOLINGER) |
Simon Horman | de072bd | 2011-06-24 15:11:37 +0900 | [diff] [blame] | 802 | setsockopt(fd, SOL_SOCKET, SO_LINGER, &nolinger, sizeof(struct linger)); |
Willy Tarreau | edcf668 | 2008-11-30 23:15:34 +0100 | [diff] [blame] | 803 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 804 | #ifdef SO_REUSEPORT |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 805 | /* OpenBSD and Linux 3.9 support this. As it's present in old libc versions of |
| 806 | * Linux, it might return an error that we will silently ignore. |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 807 | */ |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 808 | if (!ext && (global.tune.options & GTUNE_USE_REUSEPORT)) |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 809 | setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &one, sizeof(one)); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 810 | #endif |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 811 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 812 | if (!ext && (listener->options & LI_O_FOREIGN)) { |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 813 | switch (listener->addr.ss_family) { |
| 814 | case AF_INET: |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 815 | if (1 |
| 816 | #if defined(IP_TRANSPARENT) |
| 817 | && (setsockopt(fd, SOL_IP, IP_TRANSPARENT, &one, sizeof(one)) == -1) |
| 818 | #endif |
| 819 | #if defined(IP_FREEBIND) |
| 820 | && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1) |
| 821 | #endif |
Pieter Baauw | ff30b66 | 2013-05-08 23:22:39 +0200 | [diff] [blame] | 822 | #if defined(IP_BINDANY) |
| 823 | && (setsockopt(fd, IPPROTO_IP, IP_BINDANY, &one, sizeof(one)) == -1) |
| 824 | #endif |
Pieter Baauw | 1eb7592 | 2013-05-08 23:30:23 +0200 | [diff] [blame] | 825 | #if defined(SO_BINDANY) |
| 826 | && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1) |
| 827 | #endif |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 828 | ) { |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 829 | msg = "cannot make listening socket transparent"; |
| 830 | err |= ERR_ALERT; |
| 831 | } |
| 832 | break; |
| 833 | case AF_INET6: |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 834 | if (1 |
Dinko Korunic | 7276f3a | 2016-09-09 09:41:15 +0200 | [diff] [blame] | 835 | #if defined(IPV6_TRANSPARENT) && defined(SOL_IPV6) |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 836 | && (setsockopt(fd, SOL_IPV6, IPV6_TRANSPARENT, &one, sizeof(one)) == -1) |
| 837 | #endif |
Lukas Tribus | 7640e72 | 2014-03-03 21:10:51 +0100 | [diff] [blame] | 838 | #if defined(IP_FREEBIND) |
| 839 | && (setsockopt(fd, SOL_IP, IP_FREEBIND, &one, sizeof(one)) == -1) |
| 840 | #endif |
Pieter Baauw | ff30b66 | 2013-05-08 23:22:39 +0200 | [diff] [blame] | 841 | #if defined(IPV6_BINDANY) |
| 842 | && (setsockopt(fd, IPPROTO_IPV6, IPV6_BINDANY, &one, sizeof(one)) == -1) |
| 843 | #endif |
Pieter Baauw | 1eb7592 | 2013-05-08 23:30:23 +0200 | [diff] [blame] | 844 | #if defined(SO_BINDANY) |
| 845 | && (setsockopt(fd, SOL_SOCKET, SO_BINDANY, &one, sizeof(one)) == -1) |
| 846 | #endif |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 847 | ) { |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 848 | msg = "cannot make listening socket transparent"; |
| 849 | err |= ERR_ALERT; |
| 850 | } |
| 851 | break; |
| 852 | } |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 853 | } |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 854 | |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 855 | #ifdef SO_BINDTODEVICE |
| 856 | /* Note: this might fail if not CAP_NET_RAW */ |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 857 | if (!ext && listener->interface) { |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 858 | if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, |
Willy Tarreau | 604e830 | 2009-03-06 00:48:23 +0100 | [diff] [blame] | 859 | listener->interface, strlen(listener->interface) + 1) == -1) { |
Willy Tarreau | 5e6e204 | 2009-02-04 17:19:29 +0100 | [diff] [blame] | 860 | msg = "cannot bind listener to device"; |
| 861 | err |= ERR_WARN; |
| 862 | } |
| 863 | } |
| 864 | #endif |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 865 | #if defined(TCP_MAXSEG) |
Willy Tarreau | 48a7e72 | 2010-12-24 15:26:39 +0100 | [diff] [blame] | 866 | if (listener->maxseg > 0) { |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 867 | if (setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, |
Willy Tarreau | be1b918 | 2009-06-14 18:48:19 +0200 | [diff] [blame] | 868 | &listener->maxseg, sizeof(listener->maxseg)) == -1) { |
| 869 | msg = "cannot set MSS"; |
| 870 | err |= ERR_WARN; |
| 871 | } |
| 872 | } |
| 873 | #endif |
Willy Tarreau | 2af207a | 2015-02-04 00:45:58 +0100 | [diff] [blame] | 874 | #if defined(TCP_USER_TIMEOUT) |
| 875 | if (listener->tcp_ut) { |
| 876 | if (setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, |
| 877 | &listener->tcp_ut, sizeof(listener->tcp_ut)) == -1) { |
| 878 | msg = "cannot set TCP User Timeout"; |
| 879 | err |= ERR_WARN; |
| 880 | } |
| 881 | } |
| 882 | #endif |
Willy Tarreau | cb6cd43 | 2009-10-13 07:34:14 +0200 | [diff] [blame] | 883 | #if defined(TCP_DEFER_ACCEPT) |
| 884 | if (listener->options & LI_O_DEF_ACCEPT) { |
| 885 | /* defer accept by up to one second */ |
| 886 | int accept_delay = 1; |
| 887 | if (setsockopt(fd, IPPROTO_TCP, TCP_DEFER_ACCEPT, &accept_delay, sizeof(accept_delay)) == -1) { |
| 888 | msg = "cannot enable DEFER_ACCEPT"; |
| 889 | err |= ERR_WARN; |
| 890 | } |
| 891 | } |
| 892 | #endif |
Willy Tarreau | 1c862c5 | 2012-10-05 16:21:00 +0200 | [diff] [blame] | 893 | #if defined(TCP_FASTOPEN) |
| 894 | if (listener->options & LI_O_TCP_FO) { |
| 895 | /* TFO needs a queue length, let's use the configured backlog */ |
| 896 | int qlen = listener->backlog ? listener->backlog : listener->maxconn; |
| 897 | if (setsockopt(fd, IPPROTO_TCP, TCP_FASTOPEN, &qlen, sizeof(qlen)) == -1) { |
| 898 | msg = "cannot enable TCP_FASTOPEN"; |
| 899 | err |= ERR_WARN; |
| 900 | } |
| 901 | } |
| 902 | #endif |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 903 | #if defined(IPV6_V6ONLY) |
| 904 | if (listener->options & LI_O_V6ONLY) |
| 905 | setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &one, sizeof(one)); |
Willy Tarreau | 77e3af9 | 2012-11-24 15:07:23 +0100 | [diff] [blame] | 906 | else if (listener->options & LI_O_V4V6) |
| 907 | setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &zero, sizeof(zero)); |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 908 | #endif |
| 909 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 910 | if (!ext && bind(fd, (struct sockaddr *)&listener->addr, listener->proto->sock_addrlen) == -1) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 911 | err |= ERR_RETRYABLE | ERR_ALERT; |
| 912 | msg = "cannot bind socket"; |
| 913 | goto tcp_close_return; |
| 914 | } |
Willy Tarreau | edcf668 | 2008-11-30 23:15:34 +0100 | [diff] [blame] | 915 | |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 916 | ready = 0; |
| 917 | ready_len = sizeof(ready); |
| 918 | if (getsockopt(fd, SOL_SOCKET, SO_ACCEPTCONN, &ready, &ready_len) == -1) |
| 919 | ready = 0; |
| 920 | |
| 921 | if (!(ext && ready) && /* only listen if not already done by external process */ |
| 922 | listen(fd, listener->backlog ? listener->backlog : listener->maxconn) == -1) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 923 | err |= ERR_RETRYABLE | ERR_ALERT; |
| 924 | msg = "cannot listen to socket"; |
| 925 | goto tcp_close_return; |
| 926 | } |
Willy Tarreau | edcf668 | 2008-11-30 23:15:34 +0100 | [diff] [blame] | 927 | |
Dmitry Sivachenko | caf5898 | 2009-08-24 15:11:06 +0400 | [diff] [blame] | 928 | #if defined(TCP_QUICKACK) |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 929 | if (listener->options & LI_O_NOQUICKACK) |
Simon Horman | de072bd | 2011-06-24 15:11:37 +0900 | [diff] [blame] | 930 | setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, &zero, sizeof(zero)); |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 931 | #endif |
| 932 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 933 | /* the socket is ready */ |
| 934 | listener->fd = fd; |
| 935 | listener->state = LI_LISTEN; |
| 936 | |
Willy Tarreau | eabf313 | 2008-08-29 23:36:51 +0200 | [diff] [blame] | 937 | fdtab[fd].owner = listener; /* reference the listener instead of a task */ |
Willy Tarreau | aece46a | 2012-07-06 12:25:58 +0200 | [diff] [blame] | 938 | fdtab[fd].iocb = listener->proto->accept; |
Willy Tarreau | eb47268 | 2010-05-28 18:46:57 +0200 | [diff] [blame] | 939 | fd_insert(fd); |
| 940 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 941 | tcp_return: |
Cyril Bonté | 43ba1b3 | 2010-11-01 19:26:01 +0100 | [diff] [blame] | 942 | if (msg && errlen) { |
| 943 | char pn[INET6_ADDRSTRLEN]; |
| 944 | |
Willy Tarreau | 631f01c | 2011-09-05 00:36:48 +0200 | [diff] [blame] | 945 | addr_to_str(&listener->addr, pn, sizeof(pn)); |
| 946 | snprintf(errmsg, errlen, "%s [%s:%d]", msg, pn, get_host_port(&listener->addr)); |
Cyril Bonté | 43ba1b3 | 2010-11-01 19:26:01 +0100 | [diff] [blame] | 947 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 948 | return err; |
| 949 | |
| 950 | tcp_close_return: |
| 951 | close(fd); |
| 952 | goto tcp_return; |
| 953 | } |
| 954 | |
| 955 | /* This function creates all TCP sockets bound to the protocol entry <proto>. |
| 956 | * It is intended to be used as the protocol's bind_all() function. |
| 957 | * The sockets will be registered but not added to any fd_set, in order not to |
| 958 | * loose them across the fork(). A call to enable_all_listeners() is needed |
| 959 | * to complete initialization. The return value is composed from ERR_*. |
| 960 | */ |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 961 | static int tcp_bind_listeners(struct protocol *proto, char *errmsg, int errlen) |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 962 | { |
| 963 | struct listener *listener; |
| 964 | int err = ERR_NONE; |
| 965 | |
| 966 | list_for_each_entry(listener, &proto->listeners, proto_list) { |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 967 | err |= tcp_bind_listener(listener, errmsg, errlen); |
| 968 | if (err & ERR_ABORT) |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 969 | break; |
| 970 | } |
| 971 | |
| 972 | return err; |
| 973 | } |
| 974 | |
| 975 | /* Add listener to the list of tcpv4 listeners. The listener's state |
| 976 | * is automatically updated from LI_INIT to LI_ASSIGNED. The number of |
| 977 | * listeners is updated. This is the function to use to add a new listener. |
| 978 | */ |
| 979 | void tcpv4_add_listener(struct listener *listener) |
| 980 | { |
| 981 | if (listener->state != LI_INIT) |
| 982 | return; |
| 983 | listener->state = LI_ASSIGNED; |
| 984 | listener->proto = &proto_tcpv4; |
| 985 | LIST_ADDQ(&proto_tcpv4.listeners, &listener->proto_list); |
| 986 | proto_tcpv4.nb_listeners++; |
| 987 | } |
| 988 | |
| 989 | /* Add listener to the list of tcpv4 listeners. The listener's state |
| 990 | * is automatically updated from LI_INIT to LI_ASSIGNED. The number of |
| 991 | * listeners is updated. This is the function to use to add a new listener. |
| 992 | */ |
| 993 | void tcpv6_add_listener(struct listener *listener) |
| 994 | { |
| 995 | if (listener->state != LI_INIT) |
| 996 | return; |
| 997 | listener->state = LI_ASSIGNED; |
| 998 | listener->proto = &proto_tcpv6; |
| 999 | LIST_ADDQ(&proto_tcpv6.listeners, &listener->proto_list); |
| 1000 | proto_tcpv6.nb_listeners++; |
| 1001 | } |
| 1002 | |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 1003 | /* Pause a listener. Returns < 0 in case of failure, 0 if the listener |
| 1004 | * was totally stopped, or > 0 if correctly paused. |
| 1005 | */ |
| 1006 | int tcp_pause_listener(struct listener *l) |
| 1007 | { |
| 1008 | if (shutdown(l->fd, SHUT_WR) != 0) |
| 1009 | return -1; /* Solaris dies here */ |
| 1010 | |
| 1011 | if (listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0) |
| 1012 | return -1; /* OpenBSD dies here */ |
| 1013 | |
| 1014 | if (shutdown(l->fd, SHUT_RD) != 0) |
| 1015 | return -1; /* should always be OK */ |
| 1016 | return 1; |
| 1017 | } |
| 1018 | |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1019 | /* |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1020 | * Execute the "set-src" action. May be called from {tcp,http}request. |
| 1021 | * It only changes the address and tries to preserve the original port. If the |
| 1022 | * previous family was neither AF_INET nor AF_INET6, the port is set to zero. |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1023 | */ |
| 1024 | enum act_return tcp_action_req_set_src(struct act_rule *rule, struct proxy *px, |
| 1025 | struct session *sess, struct stream *s, int flags) |
| 1026 | { |
| 1027 | struct connection *cli_conn; |
| 1028 | |
| 1029 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) { |
| 1030 | struct sample *smp; |
| 1031 | |
| 1032 | smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR); |
| 1033 | if (smp) { |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1034 | int port = get_net_port(&cli_conn->addr.from); |
| 1035 | |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1036 | if (smp->data.type == SMP_T_IPV4) { |
| 1037 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_family = AF_INET; |
| 1038 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = smp->data.u.ipv4.s_addr; |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1039 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = port; |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1040 | } else if (smp->data.type == SMP_T_IPV6) { |
| 1041 | ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_family = AF_INET6; |
| 1042 | memcpy(&((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr, &smp->data.u.ipv6, sizeof(struct in6_addr)); |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1043 | ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = port; |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1044 | } |
| 1045 | } |
William Lallemand | 01252ed | 2016-05-25 02:33:16 +0200 | [diff] [blame] | 1046 | cli_conn->flags |= CO_FL_ADDR_FROM_SET; |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1047 | } |
| 1048 | return ACT_RET_CONT; |
| 1049 | } |
| 1050 | |
William Lallemand | 44be640 | 2016-05-25 01:51:35 +0200 | [diff] [blame] | 1051 | /* |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1052 | * Execute the "set-dst" action. May be called from {tcp,http}request. |
| 1053 | * It only changes the address and tries to preserve the original port. If the |
| 1054 | * previous family was neither AF_INET nor AF_INET6, the port is set to zero. |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1055 | */ |
| 1056 | enum act_return tcp_action_req_set_dst(struct act_rule *rule, struct proxy *px, |
| 1057 | struct session *sess, struct stream *s, int flags) |
| 1058 | { |
| 1059 | struct connection *cli_conn; |
| 1060 | |
| 1061 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) { |
| 1062 | struct sample *smp; |
| 1063 | |
| 1064 | smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_ADDR); |
| 1065 | if (smp) { |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1066 | int port = get_net_port(&cli_conn->addr.to); |
| 1067 | |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1068 | if (smp->data.type == SMP_T_IPV4) { |
| 1069 | ((struct sockaddr_in *)&cli_conn->addr.to)->sin_family = AF_INET; |
| 1070 | ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr = smp->data.u.ipv4.s_addr; |
| 1071 | } else if (smp->data.type == SMP_T_IPV6) { |
| 1072 | ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_family = AF_INET6; |
| 1073 | memcpy(&((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr, &smp->data.u.ipv6, sizeof(struct in6_addr)); |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1074 | ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_port = port; |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1075 | } |
| 1076 | cli_conn->flags |= CO_FL_ADDR_TO_SET; |
| 1077 | } |
| 1078 | } |
| 1079 | return ACT_RET_CONT; |
| 1080 | } |
| 1081 | |
| 1082 | /* |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1083 | * Execute the "set-src-port" action. May be called from {tcp,http}request. |
| 1084 | * We must test the sin_family before setting the port. If the address family |
| 1085 | * is neither AF_INET nor AF_INET6, the address is forced to AF_INET "0.0.0.0" |
| 1086 | * and the port is assigned. |
William Lallemand | 44be640 | 2016-05-25 01:51:35 +0200 | [diff] [blame] | 1087 | */ |
| 1088 | enum act_return tcp_action_req_set_src_port(struct act_rule *rule, struct proxy *px, |
| 1089 | struct session *sess, struct stream *s, int flags) |
| 1090 | { |
| 1091 | struct connection *cli_conn; |
| 1092 | |
| 1093 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) { |
| 1094 | struct sample *smp; |
| 1095 | |
| 1096 | conn_get_from_addr(cli_conn); |
| 1097 | |
| 1098 | smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT); |
| 1099 | if (smp) { |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1100 | if (cli_conn->addr.from.ss_family == AF_INET6) { |
William Lallemand | 44be640 | 2016-05-25 01:51:35 +0200 | [diff] [blame] | 1101 | ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = htons(smp->data.u.sint); |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1102 | } else { |
| 1103 | if (cli_conn->addr.from.ss_family != AF_INET) { |
| 1104 | cli_conn->addr.from.ss_family = AF_INET; |
| 1105 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = 0; |
| 1106 | } |
| 1107 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = htons(smp->data.u.sint); |
William Lallemand | 44be640 | 2016-05-25 01:51:35 +0200 | [diff] [blame] | 1108 | } |
| 1109 | } |
| 1110 | } |
| 1111 | return ACT_RET_CONT; |
| 1112 | } |
| 1113 | |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1114 | /* |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1115 | * Execute the "set-dst-port" action. May be called from {tcp,http}request. |
| 1116 | * We must test the sin_family before setting the port. If the address family |
| 1117 | * is neither AF_INET nor AF_INET6, the address is forced to AF_INET "0.0.0.0" |
| 1118 | * and the port is assigned. |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1119 | */ |
| 1120 | enum act_return tcp_action_req_set_dst_port(struct act_rule *rule, struct proxy *px, |
| 1121 | struct session *sess, struct stream *s, int flags) |
| 1122 | { |
| 1123 | struct connection *cli_conn; |
| 1124 | |
| 1125 | if ((cli_conn = objt_conn(sess->origin)) && conn_ctrl_ready(cli_conn)) { |
| 1126 | struct sample *smp; |
| 1127 | |
| 1128 | conn_get_to_addr(cli_conn); |
| 1129 | |
| 1130 | smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT); |
| 1131 | if (smp) { |
Willy Tarreau | 00005ce | 2016-10-21 15:07:45 +0200 | [diff] [blame] | 1132 | if (cli_conn->addr.from.ss_family == AF_INET6) { |
| 1133 | ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_port = htons(smp->data.u.sint); |
| 1134 | } else { |
| 1135 | if (cli_conn->addr.from.ss_family != AF_INET) { |
| 1136 | cli_conn->addr.from.ss_family = AF_INET; |
| 1137 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr = 0; |
| 1138 | } |
| 1139 | ((struct sockaddr_in *)&cli_conn->addr.from)->sin_port = htons(smp->data.u.sint); |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1140 | } |
| 1141 | } |
| 1142 | } |
| 1143 | return ACT_RET_CONT; |
| 1144 | } |
| 1145 | |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1146 | /* Executes the "silent-drop" action. May be called from {tcp,http}{request,response} */ |
| 1147 | static enum act_return tcp_exec_action_silent_drop(struct act_rule *rule, struct proxy *px, struct session *sess, struct stream *strm, int flags) |
| 1148 | { |
| 1149 | struct connection *conn = objt_conn(sess->origin); |
| 1150 | |
| 1151 | if (!conn) |
| 1152 | goto out; |
| 1153 | |
| 1154 | if (!conn_ctrl_ready(conn)) |
| 1155 | goto out; |
| 1156 | |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1157 | #ifdef TCP_QUICKACK |
Willy Tarreau | fc2a2d9 | 2015-09-29 18:15:01 +0200 | [diff] [blame] | 1158 | /* drain is needed only to send the quick ACK */ |
| 1159 | conn_sock_drain(conn); |
| 1160 | |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1161 | /* re-enable quickack if it was disabled to ack all data and avoid |
| 1162 | * retransmits from the client that might trigger a real reset. |
| 1163 | */ |
| 1164 | setsockopt(conn->t.sock.fd, SOL_TCP, TCP_QUICKACK, &one, sizeof(one)); |
| 1165 | #endif |
| 1166 | /* lingering must absolutely be disabled so that we don't send a |
| 1167 | * shutdown(), this is critical to the TCP_REPAIR trick. When no stream |
| 1168 | * is present, returning with ERR will cause lingering to be disabled. |
| 1169 | */ |
| 1170 | if (strm) |
| 1171 | strm->si[0].flags |= SI_FL_NOLINGER; |
| 1172 | |
Willy Tarreau | f50ec0f | 2015-09-29 18:11:32 +0200 | [diff] [blame] | 1173 | /* We're on the client-facing side, we must force to disable lingering to |
| 1174 | * ensure we will use an RST exclusively and kill any pending data. |
| 1175 | */ |
| 1176 | fdtab[conn->t.sock.fd].linger_risk = 1; |
| 1177 | |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1178 | #ifdef TCP_REPAIR |
| 1179 | if (setsockopt(conn->t.sock.fd, SOL_TCP, TCP_REPAIR, &one, sizeof(one)) == 0) { |
| 1180 | /* socket will be quiet now */ |
| 1181 | goto out; |
| 1182 | } |
| 1183 | #endif |
| 1184 | /* either TCP_REPAIR is not defined or it failed (eg: permissions). |
| 1185 | * Let's fall back on the TTL trick, though it only works for routed |
| 1186 | * network and has no effect on local net. |
| 1187 | */ |
| 1188 | #ifdef IP_TTL |
| 1189 | setsockopt(conn->t.sock.fd, SOL_IP, IP_TTL, &one, sizeof(one)); |
| 1190 | #endif |
| 1191 | out: |
| 1192 | /* kill the stream if any */ |
| 1193 | if (strm) { |
| 1194 | channel_abort(&strm->req); |
| 1195 | channel_abort(&strm->res); |
| 1196 | strm->req.analysers = 0; |
| 1197 | strm->res.analysers = 0; |
| 1198 | strm->be->be_counters.denied_req++; |
| 1199 | if (!(strm->flags & SF_ERR_MASK)) |
| 1200 | strm->flags |= SF_ERR_PRXCOND; |
| 1201 | if (!(strm->flags & SF_FINST_MASK)) |
| 1202 | strm->flags |= SF_FINST_R; |
| 1203 | } |
| 1204 | |
| 1205 | sess->fe->fe_counters.denied_req++; |
| 1206 | if (sess->listener->counters) |
| 1207 | sess->listener->counters->denied_req++; |
| 1208 | |
| 1209 | return ACT_RET_STOP; |
| 1210 | } |
| 1211 | |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1212 | /* parse "set-{src,dst}[-port]" action */ |
| 1213 | enum act_parse_ret tcp_parse_set_src_dst(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err) |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1214 | { |
| 1215 | int cur_arg; |
| 1216 | struct sample_expr *expr; |
| 1217 | unsigned int where; |
| 1218 | |
| 1219 | cur_arg = *orig_arg; |
| 1220 | expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args); |
| 1221 | if (!expr) |
| 1222 | return ACT_RET_PRS_ERR; |
| 1223 | |
| 1224 | where = 0; |
| 1225 | if (proxy->cap & PR_CAP_FE) |
| 1226 | where |= SMP_VAL_FE_HRQ_HDR; |
| 1227 | if (proxy->cap & PR_CAP_BE) |
| 1228 | where |= SMP_VAL_BE_HRQ_HDR; |
| 1229 | |
| 1230 | if (!(expr->fetch->val & where)) { |
| 1231 | memprintf(err, |
| 1232 | "fetch method '%s' extracts information from '%s', none of which is available here", |
| 1233 | args[cur_arg-1], sample_src_names(expr->fetch->use)); |
| 1234 | free(expr); |
| 1235 | return ACT_RET_PRS_ERR; |
| 1236 | } |
| 1237 | rule->arg.expr = expr; |
| 1238 | rule->action = ACT_CUSTOM; |
| 1239 | |
| 1240 | if (!strcmp(args[*orig_arg-1], "set-src")) { |
| 1241 | rule->action_ptr = tcp_action_req_set_src; |
William Lallemand | 44be640 | 2016-05-25 01:51:35 +0200 | [diff] [blame] | 1242 | } else if (!strcmp(args[*orig_arg-1], "set-src-port")) { |
| 1243 | rule->action_ptr = tcp_action_req_set_src_port; |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1244 | } else if (!strcmp(args[*orig_arg-1], "set-dst")) { |
| 1245 | rule->action_ptr = tcp_action_req_set_dst; |
| 1246 | } else if (!strcmp(args[*orig_arg-1], "set-dst-port")) { |
| 1247 | rule->action_ptr = tcp_action_req_set_dst_port; |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1248 | } else { |
| 1249 | return ACT_RET_PRS_ERR; |
| 1250 | } |
| 1251 | |
| 1252 | (*orig_arg)++; |
| 1253 | |
| 1254 | return ACT_RET_PRS_OK; |
| 1255 | } |
| 1256 | |
| 1257 | |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1258 | /* Parse a "silent-drop" action. It takes no argument. It returns ACT_RET_PRS_OK on |
| 1259 | * success, ACT_RET_PRS_ERR on error. |
| 1260 | */ |
| 1261 | static enum act_parse_ret tcp_parse_silent_drop(const char **args, int *orig_arg, struct proxy *px, |
| 1262 | struct act_rule *rule, char **err) |
| 1263 | { |
| 1264 | rule->action = ACT_CUSTOM; |
| 1265 | rule->action_ptr = tcp_exec_action_silent_drop; |
| 1266 | return ACT_RET_PRS_OK; |
| 1267 | } |
| 1268 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1269 | |
| 1270 | /************************************************************************/ |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1271 | /* All supported sample fetch functions must be declared here */ |
Willy Tarreau | 32389b7 | 2012-04-23 23:13:20 +0200 | [diff] [blame] | 1272 | /************************************************************************/ |
| 1273 | |
Willy Tarreau | 4a12981 | 2012-04-25 17:31:42 +0200 | [diff] [blame] | 1274 | /* fetch the connection's source IPv4/IPv6 address */ |
Thierry FOURNIER | a123ad8 | 2015-07-24 09:12:15 +0200 | [diff] [blame] | 1275 | int smp_fetch_src(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1276 | { |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1277 | struct connection *cli_conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1278 | |
| 1279 | if (!cli_conn) |
| 1280 | return 0; |
| 1281 | |
| 1282 | switch (cli_conn->addr.from.ss_family) { |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1283 | case AF_INET: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1284 | smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1285 | smp->data.type = SMP_T_IPV4; |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1286 | break; |
| 1287 | case AF_INET6: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1288 | smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.from)->sin6_addr; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1289 | smp->data.type = SMP_T_IPV6; |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1290 | break; |
| 1291 | default: |
Emeric Brun | f769f51 | 2010-10-22 17:14:01 +0200 | [diff] [blame] | 1292 | return 0; |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1293 | } |
Emeric Brun | f769f51 | 2010-10-22 17:14:01 +0200 | [diff] [blame] | 1294 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1295 | smp->flags = 0; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1296 | return 1; |
| 1297 | } |
| 1298 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1299 | /* set temp integer to the connection's source port */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1300 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1301 | smp_fetch_sport(const struct arg *args, struct sample *smp, const char *k, void *private) |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1302 | { |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1303 | struct connection *cli_conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1304 | |
| 1305 | if (!cli_conn) |
| 1306 | return 0; |
| 1307 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1308 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1309 | if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.from))) |
Emeric Brun | f769f51 | 2010-10-22 17:14:01 +0200 | [diff] [blame] | 1310 | return 0; |
| 1311 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1312 | smp->flags = 0; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1313 | return 1; |
| 1314 | } |
| 1315 | |
Willy Tarreau | 4a12981 | 2012-04-25 17:31:42 +0200 | [diff] [blame] | 1316 | /* fetch the connection's destination IPv4/IPv6 address */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1317 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1318 | smp_fetch_dst(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1319 | { |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1320 | struct connection *cli_conn = objt_conn(smp->sess->origin); |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1321 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1322 | if (!cli_conn) |
| 1323 | return 0; |
| 1324 | |
| 1325 | conn_get_to_addr(cli_conn); |
| 1326 | |
| 1327 | switch (cli_conn->addr.to.ss_family) { |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1328 | case AF_INET: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1329 | smp->data.u.ipv4 = ((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1330 | smp->data.type = SMP_T_IPV4; |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1331 | break; |
| 1332 | case AF_INET6: |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1333 | smp->data.u.ipv6 = ((struct sockaddr_in6 *)&cli_conn->addr.to)->sin6_addr; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1334 | smp->data.type = SMP_T_IPV6; |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1335 | break; |
| 1336 | default: |
Emeric Brun | f769f51 | 2010-10-22 17:14:01 +0200 | [diff] [blame] | 1337 | return 0; |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 1338 | } |
Emeric Brun | f769f51 | 2010-10-22 17:14:01 +0200 | [diff] [blame] | 1339 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1340 | smp->flags = 0; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1341 | return 1; |
| 1342 | } |
| 1343 | |
Willy Tarreau | 16e0156 | 2016-08-09 16:46:18 +0200 | [diff] [blame] | 1344 | /* check if the destination address of the front connection is local to the |
| 1345 | * system or if it was intercepted. |
| 1346 | */ |
| 1347 | int smp_fetch_dst_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1348 | { |
| 1349 | struct connection *conn = objt_conn(smp->sess->origin); |
| 1350 | struct listener *li = smp->sess->listener; |
| 1351 | |
| 1352 | if (!conn) |
| 1353 | return 0; |
| 1354 | |
| 1355 | conn_get_to_addr(conn); |
| 1356 | if (!(conn->flags & CO_FL_ADDR_TO_SET)) |
| 1357 | return 0; |
| 1358 | |
| 1359 | smp->data.type = SMP_T_BOOL; |
| 1360 | smp->flags = 0; |
| 1361 | smp->data.u.sint = addr_is_local(li->netns, &conn->addr.to); |
| 1362 | return smp->data.u.sint >= 0; |
| 1363 | } |
| 1364 | |
| 1365 | /* check if the source address of the front connection is local to the system |
| 1366 | * or not. |
| 1367 | */ |
| 1368 | int smp_fetch_src_is_local(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1369 | { |
| 1370 | struct connection *conn = objt_conn(smp->sess->origin); |
| 1371 | struct listener *li = smp->sess->listener; |
| 1372 | |
| 1373 | if (!conn) |
| 1374 | return 0; |
| 1375 | |
| 1376 | conn_get_from_addr(conn); |
| 1377 | if (!(conn->flags & CO_FL_ADDR_FROM_SET)) |
| 1378 | return 0; |
| 1379 | |
| 1380 | smp->data.type = SMP_T_BOOL; |
| 1381 | smp->flags = 0; |
| 1382 | smp->data.u.sint = addr_is_local(li->netns, &conn->addr.from); |
| 1383 | return smp->data.u.sint >= 0; |
| 1384 | } |
| 1385 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1386 | /* set temp integer to the frontend connexion's destination port */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1387 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1388 | smp_fetch_dport(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1389 | { |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 1390 | struct connection *cli_conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1391 | |
| 1392 | if (!cli_conn) |
| 1393 | return 0; |
| 1394 | |
| 1395 | conn_get_to_addr(cli_conn); |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1396 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1397 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1398 | if (!(smp->data.u.sint = get_host_port(&cli_conn->addr.to))) |
Emeric Brun | f769f51 | 2010-10-22 17:14:01 +0200 | [diff] [blame] | 1399 | return 0; |
| 1400 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1401 | smp->flags = 0; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1402 | return 1; |
Emeric | f2d7cae | 2010-11-05 18:13:50 +0100 | [diff] [blame] | 1403 | } |
| 1404 | |
Thierry Fournier / OZON.IO | 6310bef | 2016-07-24 20:16:50 +0200 | [diff] [blame] | 1405 | #ifdef TCP_INFO |
| 1406 | |
| 1407 | /* Returns some tcp_info data is its avalaible. "dir" must be set to 0 if |
| 1408 | * the client connection is require, otherwise it is set to 1. "val" represents |
| 1409 | * the required value. Use 0 for rtt and 1 for rttavg. "unit" is the expected unit |
| 1410 | * by default, the rtt is in us. Id "unit" is set to 0, the unit is us, if it is |
| 1411 | * set to 1, the untis are milliseconds. |
| 1412 | * If the function fails it returns 0, otherwise it returns 1 and "result" is filled. |
| 1413 | */ |
| 1414 | static inline int get_tcp_info(const struct arg *args, struct sample *smp, |
| 1415 | int dir, int val) |
| 1416 | { |
| 1417 | struct connection *conn; |
| 1418 | struct tcp_info info; |
| 1419 | socklen_t optlen; |
| 1420 | |
| 1421 | /* strm can be null. */ |
| 1422 | if (!smp->strm) |
| 1423 | return 0; |
| 1424 | |
| 1425 | /* get the object associated with the stream interface.The |
| 1426 | * object can be other thing than a connection. For example, |
| 1427 | * it be a appctx. */ |
| 1428 | conn = objt_conn(smp->strm->si[dir].end); |
| 1429 | if (!conn) |
| 1430 | return 0; |
| 1431 | |
| 1432 | /* The fd may not be avalaible for the tcp_info struct, and the |
| 1433 | syscal can fail. */ |
| 1434 | optlen = sizeof(info); |
| 1435 | if (getsockopt(conn->t.sock.fd, SOL_TCP, TCP_INFO, &info, &optlen) == -1) |
| 1436 | return 0; |
| 1437 | |
| 1438 | /* extract the value. */ |
| 1439 | smp->data.type = SMP_T_SINT; |
| 1440 | switch (val) { |
Joe Williams | 30fcd39 | 2016-08-10 07:06:44 -0700 | [diff] [blame] | 1441 | case 0: smp->data.u.sint = info.tcpi_rtt; break; |
| 1442 | case 1: smp->data.u.sint = info.tcpi_rttvar; break; |
| 1443 | #if defined(__linux__) |
| 1444 | /* these ones are common to all Linux versions */ |
| 1445 | case 2: smp->data.u.sint = info.tcpi_unacked; break; |
| 1446 | case 3: smp->data.u.sint = info.tcpi_sacked; break; |
| 1447 | case 4: smp->data.u.sint = info.tcpi_lost; break; |
| 1448 | case 5: smp->data.u.sint = info.tcpi_retrans; break; |
| 1449 | case 6: smp->data.u.sint = info.tcpi_fackets; break; |
| 1450 | case 7: smp->data.u.sint = info.tcpi_reordering; break; |
| 1451 | #elif defined(__FreeBSD__) || defined(__NetBSD__) |
| 1452 | /* the ones are found on FreeBSD and NetBSD featuring TCP_INFO */ |
| 1453 | case 2: smp->data.u.sint = info.__tcpi_unacked; break; |
| 1454 | case 3: smp->data.u.sint = info.__tcpi_sacked; break; |
| 1455 | case 4: smp->data.u.sint = info.__tcpi_lost; break; |
| 1456 | case 5: smp->data.u.sint = info.__tcpi_retrans; break; |
| 1457 | case 6: smp->data.u.sint = info.__tcpi_fackets; break; |
| 1458 | case 7: smp->data.u.sint = info.__tcpi_reordering; break; |
| 1459 | #endif |
Thierry Fournier / OZON.IO | 6310bef | 2016-07-24 20:16:50 +0200 | [diff] [blame] | 1460 | default: return 0; |
| 1461 | } |
| 1462 | |
| 1463 | /* Convert the value as expected. */ |
| 1464 | if (args) { |
| 1465 | if (args[0].type == ARGT_STR) { |
| 1466 | if (strcmp(args[0].data.str.str, "us") == 0) { |
| 1467 | /* Do nothing. */ |
| 1468 | } else if (strcmp(args[0].data.str.str, "ms") == 0) { |
| 1469 | smp->data.u.sint = (smp->data.u.sint + 500) / 1000; |
| 1470 | } else |
| 1471 | return 0; |
| 1472 | } else if (args[0].type == ARGT_STOP) { |
| 1473 | smp->data.u.sint = (smp->data.u.sint + 500) / 1000; |
| 1474 | } else |
| 1475 | return 0; |
| 1476 | } |
| 1477 | |
| 1478 | return 1; |
| 1479 | } |
| 1480 | |
| 1481 | /* get the mean rtt of a client connexion */ |
| 1482 | static int |
| 1483 | smp_fetch_fc_rtt(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1484 | { |
| 1485 | if (!get_tcp_info(args, smp, 0, 0)) |
| 1486 | return 0; |
| 1487 | return 1; |
| 1488 | } |
| 1489 | |
| 1490 | /* get the variance of the mean rtt of a client connexion */ |
| 1491 | static int |
| 1492 | smp_fetch_fc_rttvar(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1493 | { |
| 1494 | if (!get_tcp_info(args, smp, 0, 1)) |
| 1495 | return 0; |
| 1496 | return 1; |
| 1497 | } |
Joe Williams | 30fcd39 | 2016-08-10 07:06:44 -0700 | [diff] [blame] | 1498 | |
| 1499 | #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) |
| 1500 | |
| 1501 | /* get the unacked counter on a client connexion */ |
| 1502 | static int |
| 1503 | smp_fetch_fc_unacked(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1504 | { |
| 1505 | if (!get_tcp_info(args, smp, 0, 2)) |
| 1506 | return 0; |
| 1507 | return 1; |
| 1508 | } |
| 1509 | |
| 1510 | /* get the sacked counter on a client connexion */ |
| 1511 | static int |
| 1512 | smp_fetch_fc_sacked(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1513 | { |
| 1514 | if (!get_tcp_info(args, smp, 0, 3)) |
| 1515 | return 0; |
| 1516 | return 1; |
| 1517 | } |
| 1518 | |
| 1519 | /* get the lost counter on a client connexion */ |
| 1520 | static int |
| 1521 | smp_fetch_fc_lost(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1522 | { |
| 1523 | if (!get_tcp_info(args, smp, 0, 4)) |
| 1524 | return 0; |
| 1525 | return 1; |
| 1526 | } |
| 1527 | |
| 1528 | /* get the retrans counter on a client connexion */ |
| 1529 | static int |
| 1530 | smp_fetch_fc_retrans(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1531 | { |
| 1532 | if (!get_tcp_info(args, smp, 0, 5)) |
| 1533 | return 0; |
| 1534 | return 1; |
| 1535 | } |
| 1536 | |
| 1537 | /* get the fackets counter on a client connexion */ |
| 1538 | static int |
| 1539 | smp_fetch_fc_fackets(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1540 | { |
| 1541 | if (!get_tcp_info(args, smp, 0, 6)) |
| 1542 | return 0; |
| 1543 | return 1; |
| 1544 | } |
| 1545 | |
| 1546 | /* get the reordering counter on a client connexion */ |
| 1547 | static int |
| 1548 | smp_fetch_fc_reordering(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1549 | { |
| 1550 | if (!get_tcp_info(args, smp, 0, 7)) |
| 1551 | return 0; |
| 1552 | return 1; |
| 1553 | } |
| 1554 | #endif // linux || freebsd || netbsd |
| 1555 | #endif // TCP_INFO |
Thierry Fournier / OZON.IO | 6310bef | 2016-07-24 20:16:50 +0200 | [diff] [blame] | 1556 | |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 1557 | #ifdef IPV6_V6ONLY |
Willy Tarreau | 77e3af9 | 2012-11-24 15:07:23 +0100 | [diff] [blame] | 1558 | /* parse the "v4v6" bind keyword */ |
| 1559 | static int bind_parse_v4v6(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1560 | { |
| 1561 | struct listener *l; |
| 1562 | |
| 1563 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1564 | if (l->addr.ss_family == AF_INET6) |
| 1565 | l->options |= LI_O_V4V6; |
| 1566 | } |
| 1567 | |
| 1568 | return 0; |
| 1569 | } |
| 1570 | |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 1571 | /* parse the "v6only" bind keyword */ |
| 1572 | static int bind_parse_v6only(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1573 | { |
| 1574 | struct listener *l; |
| 1575 | |
| 1576 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1577 | if (l->addr.ss_family == AF_INET6) |
| 1578 | l->options |= LI_O_V6ONLY; |
| 1579 | } |
| 1580 | |
| 1581 | return 0; |
| 1582 | } |
| 1583 | #endif |
| 1584 | |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 1585 | #ifdef CONFIG_HAP_TRANSPARENT |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1586 | /* parse the "transparent" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1587 | static int bind_parse_transparent(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1588 | { |
| 1589 | struct listener *l; |
| 1590 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1591 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1592 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) |
| 1593 | l->options |= LI_O_FOREIGN; |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1594 | } |
| 1595 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1596 | return 0; |
| 1597 | } |
| 1598 | #endif |
| 1599 | |
| 1600 | #ifdef TCP_DEFER_ACCEPT |
| 1601 | /* parse the "defer-accept" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1602 | static int bind_parse_defer_accept(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1603 | { |
| 1604 | struct listener *l; |
| 1605 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1606 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1607 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) |
| 1608 | l->options |= LI_O_DEF_ACCEPT; |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1609 | } |
| 1610 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1611 | return 0; |
| 1612 | } |
| 1613 | #endif |
| 1614 | |
Willy Tarreau | 1c862c5 | 2012-10-05 16:21:00 +0200 | [diff] [blame] | 1615 | #ifdef TCP_FASTOPEN |
Lukas Tribus | 0defb90 | 2013-02-13 23:35:39 +0100 | [diff] [blame] | 1616 | /* parse the "tfo" bind keyword */ |
Willy Tarreau | 1c862c5 | 2012-10-05 16:21:00 +0200 | [diff] [blame] | 1617 | static int bind_parse_tfo(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1618 | { |
| 1619 | struct listener *l; |
| 1620 | |
| 1621 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1622 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) |
| 1623 | l->options |= LI_O_TCP_FO; |
| 1624 | } |
| 1625 | |
| 1626 | return 0; |
| 1627 | } |
| 1628 | #endif |
| 1629 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1630 | #ifdef TCP_MAXSEG |
| 1631 | /* parse the "mss" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1632 | static int bind_parse_mss(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1633 | { |
| 1634 | struct listener *l; |
| 1635 | int mss; |
| 1636 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1637 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1638 | memprintf(err, "'%s' : missing MSS value", args[cur_arg]); |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1639 | return ERR_ALERT | ERR_FATAL; |
| 1640 | } |
| 1641 | |
| 1642 | mss = atoi(args[cur_arg + 1]); |
| 1643 | if (!mss || abs(mss) > 65535) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1644 | memprintf(err, "'%s' : expects an MSS with and absolute value between 1 and 65535", args[cur_arg]); |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1645 | return ERR_ALERT | ERR_FATAL; |
| 1646 | } |
| 1647 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1648 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1649 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) |
| 1650 | l->maxseg = mss; |
| 1651 | } |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1652 | |
| 1653 | return 0; |
| 1654 | } |
| 1655 | #endif |
| 1656 | |
Willy Tarreau | 2af207a | 2015-02-04 00:45:58 +0100 | [diff] [blame] | 1657 | #ifdef TCP_USER_TIMEOUT |
| 1658 | /* parse the "tcp-ut" bind keyword */ |
| 1659 | static int bind_parse_tcp_ut(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1660 | { |
| 1661 | const char *ptr = NULL; |
| 1662 | struct listener *l; |
| 1663 | unsigned int timeout; |
| 1664 | |
| 1665 | if (!*args[cur_arg + 1]) { |
| 1666 | memprintf(err, "'%s' : missing TCP User Timeout value", args[cur_arg]); |
| 1667 | return ERR_ALERT | ERR_FATAL; |
| 1668 | } |
| 1669 | |
| 1670 | ptr = parse_time_err(args[cur_arg + 1], &timeout, TIME_UNIT_MS); |
| 1671 | if (ptr) { |
| 1672 | memprintf(err, "'%s' : expects a positive delay in milliseconds", args[cur_arg]); |
| 1673 | return ERR_ALERT | ERR_FATAL; |
| 1674 | } |
| 1675 | |
| 1676 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1677 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) |
| 1678 | l->tcp_ut = timeout; |
| 1679 | } |
| 1680 | |
| 1681 | return 0; |
| 1682 | } |
| 1683 | #endif |
| 1684 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1685 | #ifdef SO_BINDTODEVICE |
Willy Tarreau | 2af207a | 2015-02-04 00:45:58 +0100 | [diff] [blame] | 1686 | /* parse the "interface" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1687 | static int bind_parse_interface(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1688 | { |
| 1689 | struct listener *l; |
| 1690 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1691 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1692 | memprintf(err, "'%s' : missing interface name", args[cur_arg]); |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1693 | return ERR_ALERT | ERR_FATAL; |
| 1694 | } |
| 1695 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1696 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1697 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) |
| 1698 | l->interface = strdup(args[cur_arg + 1]); |
| 1699 | } |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1700 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1701 | return 0; |
| 1702 | } |
| 1703 | #endif |
| 1704 | |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1705 | #ifdef CONFIG_HAP_NS |
| 1706 | /* parse the "namespace" bind keyword */ |
| 1707 | static int bind_parse_namespace(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1708 | { |
| 1709 | struct listener *l; |
| 1710 | char *namespace = NULL; |
| 1711 | |
| 1712 | if (!*args[cur_arg + 1]) { |
| 1713 | memprintf(err, "'%s' : missing namespace id", args[cur_arg]); |
| 1714 | return ERR_ALERT | ERR_FATAL; |
| 1715 | } |
| 1716 | namespace = args[cur_arg + 1]; |
| 1717 | |
| 1718 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1719 | l->netns = netns_store_lookup(namespace, strlen(namespace)); |
| 1720 | |
| 1721 | if (l->netns == NULL) |
| 1722 | l->netns = netns_store_insert(namespace); |
| 1723 | |
| 1724 | if (l->netns == NULL) { |
| 1725 | Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]); |
| 1726 | return ERR_ALERT | ERR_FATAL; |
| 1727 | } |
| 1728 | } |
| 1729 | return 0; |
| 1730 | } |
| 1731 | #endif |
| 1732 | |
Willy Tarreau | 163d462 | 2015-10-13 16:16:41 +0200 | [diff] [blame] | 1733 | #ifdef TCP_USER_TIMEOUT |
| 1734 | /* parse the "tcp-ut" server keyword */ |
| 1735 | static int srv_parse_tcp_ut(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1736 | { |
| 1737 | const char *ptr = NULL; |
| 1738 | unsigned int timeout; |
| 1739 | |
| 1740 | if (!*args[*cur_arg + 1]) { |
| 1741 | memprintf(err, "'%s' : missing TCP User Timeout value", args[*cur_arg]); |
| 1742 | return ERR_ALERT | ERR_FATAL; |
| 1743 | } |
| 1744 | |
| 1745 | ptr = parse_time_err(args[*cur_arg + 1], &timeout, TIME_UNIT_MS); |
| 1746 | if (ptr) { |
| 1747 | memprintf(err, "'%s' : expects a positive delay in milliseconds", args[*cur_arg]); |
| 1748 | return ERR_ALERT | ERR_FATAL; |
| 1749 | } |
| 1750 | |
| 1751 | if (newsrv->addr.ss_family == AF_INET || newsrv->addr.ss_family == AF_INET6) |
| 1752 | newsrv->tcp_ut = timeout; |
| 1753 | |
| 1754 | return 0; |
| 1755 | } |
| 1756 | #endif |
| 1757 | |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1758 | |
Willy Tarreau | 4a12981 | 2012-04-25 17:31:42 +0200 | [diff] [blame] | 1759 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1760 | * Note: fetches that may return multiple types must be declared as the lowest |
| 1761 | * common denominator, the type that can be casted into all other ones. For |
| 1762 | * instance v4/v6 must be declared v4. |
| 1763 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1764 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1765 | { "dst", smp_fetch_dst, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI }, |
Willy Tarreau | 16e0156 | 2016-08-09 16:46:18 +0200 | [diff] [blame] | 1766 | { "dst_is_local", smp_fetch_dst_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1767 | { "dst_port", smp_fetch_dport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1768 | { "src", smp_fetch_src, 0, NULL, SMP_T_IPV4, SMP_USE_L4CLI }, |
Willy Tarreau | 16e0156 | 2016-08-09 16:46:18 +0200 | [diff] [blame] | 1769 | { "src_is_local", smp_fetch_src_is_local, 0, NULL, SMP_T_BOOL, SMP_USE_L4CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1770 | { "src_port", smp_fetch_sport, 0, NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
Thierry Fournier / OZON.IO | 6310bef | 2016-07-24 20:16:50 +0200 | [diff] [blame] | 1771 | #ifdef TCP_INFO |
Joe Williams | 30fcd39 | 2016-08-10 07:06:44 -0700 | [diff] [blame] | 1772 | { "fc_rtt", smp_fetch_fc_rtt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1773 | { "fc_rttvar", smp_fetch_fc_rttvar, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1774 | #if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) |
| 1775 | { "fc_unacked", smp_fetch_fc_unacked, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1776 | { "fc_sacked", smp_fetch_fc_sacked, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1777 | { "fc_retrans", smp_fetch_fc_retrans, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1778 | { "fc_fackets", smp_fetch_fc_fackets, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1779 | { "fc_lost", smp_fetch_fc_lost, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1780 | { "fc_reordering", smp_fetch_fc_reordering, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L4CLI }, |
| 1781 | #endif // linux || freebsd || netbsd |
| 1782 | #endif // TCP_INFO |
Willy Tarreau | d4c33c8 | 2013-01-07 21:59:07 +0100 | [diff] [blame] | 1783 | { /* END */ }, |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1784 | }}; |
| 1785 | |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1786 | /************************************************************************/ |
| 1787 | /* All supported bind keywords must be declared here. */ |
| 1788 | /************************************************************************/ |
| 1789 | |
| 1790 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1791 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1792 | * all code contributors. |
| 1793 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1794 | * the config parser can report an appropriate error when a known keyword was |
| 1795 | * not enabled. |
| 1796 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1797 | static struct bind_kw_list bind_kws = { "TCP", { }, { |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1798 | #ifdef TCP_DEFER_ACCEPT |
| 1799 | { "defer-accept", bind_parse_defer_accept, 0 }, /* wait for some data for 1 second max before doing accept */ |
| 1800 | #endif |
| 1801 | #ifdef SO_BINDTODEVICE |
| 1802 | { "interface", bind_parse_interface, 1 }, /* specifically bind to this interface */ |
| 1803 | #endif |
| 1804 | #ifdef TCP_MAXSEG |
| 1805 | { "mss", bind_parse_mss, 1 }, /* set MSS of listening socket */ |
| 1806 | #endif |
Willy Tarreau | 2af207a | 2015-02-04 00:45:58 +0100 | [diff] [blame] | 1807 | #ifdef TCP_USER_TIMEOUT |
| 1808 | { "tcp-ut", bind_parse_tcp_ut, 1 }, /* set User Timeout on listening socket */ |
| 1809 | #endif |
Willy Tarreau | 1c862c5 | 2012-10-05 16:21:00 +0200 | [diff] [blame] | 1810 | #ifdef TCP_FASTOPEN |
| 1811 | { "tfo", bind_parse_tfo, 0 }, /* enable TCP_FASTOPEN of listening socket */ |
| 1812 | #endif |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 1813 | #ifdef CONFIG_HAP_TRANSPARENT |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1814 | { "transparent", bind_parse_transparent, 0 }, /* transparently bind to the specified addresses */ |
| 1815 | #endif |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 1816 | #ifdef IPV6_V6ONLY |
Willy Tarreau | 77e3af9 | 2012-11-24 15:07:23 +0100 | [diff] [blame] | 1817 | { "v4v6", bind_parse_v4v6, 0 }, /* force socket to bind to IPv4+IPv6 */ |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 1818 | { "v6only", bind_parse_v6only, 0 }, /* force socket to bind to IPv6 only */ |
| 1819 | #endif |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1820 | #ifdef CONFIG_HAP_NS |
| 1821 | { "namespace", bind_parse_namespace, 1 }, |
| 1822 | #endif |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1823 | /* the versions with the NULL parse function*/ |
| 1824 | { "defer-accept", NULL, 0 }, |
| 1825 | { "interface", NULL, 1 }, |
| 1826 | { "mss", NULL, 1 }, |
| 1827 | { "transparent", NULL, 0 }, |
Willy Tarreau | 77e3af9 | 2012-11-24 15:07:23 +0100 | [diff] [blame] | 1828 | { "v4v6", NULL, 0 }, |
Willy Tarreau | 9b6700f | 2012-11-24 11:55:28 +0100 | [diff] [blame] | 1829 | { "v6only", NULL, 0 }, |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1830 | { NULL, NULL, 0 }, |
| 1831 | }}; |
| 1832 | |
Willy Tarreau | 163d462 | 2015-10-13 16:16:41 +0200 | [diff] [blame] | 1833 | static struct srv_kw_list srv_kws = { "TCP", { }, { |
| 1834 | #ifdef TCP_USER_TIMEOUT |
Frédéric Lécaille | 5c3cd97 | 2017-03-15 16:36:09 +0100 | [diff] [blame] | 1835 | { "tcp-ut", srv_parse_tcp_ut, 1, 1 }, /* set TCP user timeout on server */ |
Willy Tarreau | 163d462 | 2015-10-13 16:16:41 +0200 | [diff] [blame] | 1836 | #endif |
| 1837 | { NULL, NULL, 0 }, |
| 1838 | }}; |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1839 | |
| 1840 | static struct action_kw_list tcp_req_conn_actions = {ILH, { |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1841 | { "silent-drop", tcp_parse_silent_drop }, |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1842 | { "set-src", tcp_parse_set_src_dst }, |
| 1843 | { "set-src-port", tcp_parse_set_src_dst }, |
| 1844 | { "set-dst" , tcp_parse_set_src_dst }, |
| 1845 | { "set-dst-port", tcp_parse_set_src_dst }, |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1846 | { /* END */ } |
| 1847 | }}; |
| 1848 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 1849 | static struct action_kw_list tcp_req_sess_actions = {ILH, { |
| 1850 | { "silent-drop", tcp_parse_silent_drop }, |
| 1851 | { "set-src", tcp_parse_set_src_dst }, |
| 1852 | { "set-src-port", tcp_parse_set_src_dst }, |
| 1853 | { "set-dst" , tcp_parse_set_src_dst }, |
| 1854 | { "set-dst-port", tcp_parse_set_src_dst }, |
| 1855 | { /* END */ } |
| 1856 | }}; |
| 1857 | |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1858 | static struct action_kw_list tcp_req_cont_actions = {ILH, { |
| 1859 | { "silent-drop", tcp_parse_silent_drop }, |
| 1860 | { /* END */ } |
| 1861 | }}; |
| 1862 | |
| 1863 | static struct action_kw_list tcp_res_cont_actions = {ILH, { |
| 1864 | { "silent-drop", tcp_parse_silent_drop }, |
| 1865 | { /* END */ } |
| 1866 | }}; |
| 1867 | |
| 1868 | static struct action_kw_list http_req_actions = {ILH, { |
William Lallemand | 2e785f2 | 2016-05-25 01:48:42 +0200 | [diff] [blame] | 1869 | { "silent-drop", tcp_parse_silent_drop }, |
William Lallemand | 13e9b0c | 2016-05-25 02:34:07 +0200 | [diff] [blame] | 1870 | { "set-src", tcp_parse_set_src_dst }, |
| 1871 | { "set-src-port", tcp_parse_set_src_dst }, |
| 1872 | { "set-dst", tcp_parse_set_src_dst }, |
| 1873 | { "set-dst-port", tcp_parse_set_src_dst }, |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1874 | { /* END */ } |
| 1875 | }}; |
| 1876 | |
| 1877 | static struct action_kw_list http_res_actions = {ILH, { |
| 1878 | { "silent-drop", tcp_parse_silent_drop }, |
| 1879 | { /* END */ } |
| 1880 | }}; |
| 1881 | |
| 1882 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 1883 | __attribute__((constructor)) |
| 1884 | static void __tcp_protocol_init(void) |
| 1885 | { |
| 1886 | protocol_register(&proto_tcpv4); |
| 1887 | protocol_register(&proto_tcpv6); |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 1888 | sample_register_fetches(&sample_fetch_keywords); |
Willy Tarreau | 4479124 | 2012-09-12 23:27:21 +0200 | [diff] [blame] | 1889 | bind_register_keywords(&bind_kws); |
Willy Tarreau | 163d462 | 2015-10-13 16:16:41 +0200 | [diff] [blame] | 1890 | srv_register_keywords(&srv_kws); |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1891 | tcp_req_conn_keywords_register(&tcp_req_conn_actions); |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 1892 | tcp_req_sess_keywords_register(&tcp_req_sess_actions); |
Willy Tarreau | 2d392c2 | 2015-08-24 01:43:45 +0200 | [diff] [blame] | 1893 | tcp_req_cont_keywords_register(&tcp_req_cont_actions); |
| 1894 | tcp_res_cont_keywords_register(&tcp_res_cont_actions); |
| 1895 | http_req_keywords_register(&http_req_actions); |
| 1896 | http_res_keywords_register(&http_res_actions); |
Willy Tarreau | ba96291 | 2016-12-21 18:55:02 +0100 | [diff] [blame] | 1897 | |
| 1898 | |
| 1899 | hap_register_build_opts("Built with transparent proxy support using:" |
| 1900 | #if defined(IP_TRANSPARENT) |
| 1901 | " IP_TRANSPARENT" |
| 1902 | #endif |
| 1903 | #if defined(IPV6_TRANSPARENT) |
| 1904 | " IPV6_TRANSPARENT" |
| 1905 | #endif |
| 1906 | #if defined(IP_FREEBIND) |
| 1907 | " IP_FREEBIND" |
| 1908 | #endif |
| 1909 | #if defined(IP_BINDANY) |
| 1910 | " IP_BINDANY" |
| 1911 | #endif |
| 1912 | #if defined(IPV6_BINDANY) |
| 1913 | " IPV6_BINDANY" |
| 1914 | #endif |
| 1915 | #if defined(SO_BINDANY) |
| 1916 | " SO_BINDANY" |
| 1917 | #endif |
| 1918 | "", 0); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 1919 | } |
| 1920 | |
| 1921 | |
| 1922 | /* |
| 1923 | * Local variables: |
| 1924 | * c-indent-level: 8 |
| 1925 | * c-basic-offset: 8 |
| 1926 | * End: |
| 1927 | */ |