Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 17f449b | 2010-11-07 11:44:13 +0100 | [diff] [blame] | 2 | * include/common/compat.h |
| 3 | * Operating system compatibility interface. |
| 4 | * |
| 5 | * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #ifndef _COMMON_COMPAT_H |
| 23 | #define _COMMON_COMPAT_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Joris Dedieu | 9dd44ba | 2015-06-13 01:05:11 +0200 | [diff] [blame] | 25 | #include <limits.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | /* This is needed on Linux for Netfilter includes */ |
Willy Tarreau | 17f449b | 2010-11-07 11:44:13 +0100 | [diff] [blame] | 27 | #include <sys/param.h> |
Willy Tarreau | c8f24f8 | 2007-11-30 18:38:35 +0100 | [diff] [blame] | 28 | #include <sys/types.h> |
Willy Tarreau | 0e996c6 | 2010-02-26 22:00:19 +0100 | [diff] [blame] | 29 | #include <sys/socket.h> |
Willy Tarreau | 17f449b | 2010-11-07 11:44:13 +0100 | [diff] [blame] | 30 | #include <arpa/inet.h> |
Joris Dedieu | 9dd44ba | 2015-06-13 01:05:11 +0200 | [diff] [blame] | 31 | #include <netinet/in.h> |
Willy Tarreau | 9d87ca0 | 2016-08-10 21:09:24 +0200 | [diff] [blame] | 32 | #include <netinet/tcp.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | |
Willy Tarreau | 177e2b0 | 2008-07-15 00:36:31 +0200 | [diff] [blame] | 34 | #ifndef BITS_PER_INT |
| 35 | #define BITS_PER_INT (8*sizeof(int)) |
| 36 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 37 | |
| 38 | /* this is for libc5 for example */ |
| 39 | #ifndef TCP_NODELAY |
| 40 | #define TCP_NODELAY 1 |
| 41 | #endif |
| 42 | |
| 43 | #ifndef SHUT_RD |
| 44 | #define SHUT_RD 0 |
| 45 | #endif |
| 46 | |
| 47 | #ifndef SHUT_WR |
| 48 | #define SHUT_WR 1 |
| 49 | #endif |
| 50 | |
Willy Tarreau | d6d0690 | 2009-08-19 11:22:33 +0200 | [diff] [blame] | 51 | /* only Linux defines it */ |
| 52 | #ifndef MSG_NOSIGNAL |
| 53 | #define MSG_NOSIGNAL 0 |
| 54 | #endif |
| 55 | |
Willy Tarreau | c8f24f8 | 2007-11-30 18:38:35 +0100 | [diff] [blame] | 56 | /* AIX does not define MSG_DONTWAIT. We'll define it to zero, and test it |
| 57 | * wherever appropriate. |
| 58 | */ |
| 59 | #ifndef MSG_DONTWAIT |
| 60 | #define MSG_DONTWAIT 0 |
| 61 | #endif |
| 62 | |
Willy Tarreau | 6db06d3 | 2009-08-19 11:14:11 +0200 | [diff] [blame] | 63 | /* Only Linux defines MSG_MORE */ |
| 64 | #ifndef MSG_MORE |
| 65 | #define MSG_MORE 0 |
| 66 | #endif |
| 67 | |
Willy Tarreau | 2b57cb8 | 2013-06-10 19:56:38 +0200 | [diff] [blame] | 68 | /* On Linux 2.4 and above, MSG_TRUNC can be used on TCP sockets to drop any |
| 69 | * pending data. Let's rely on NETFILTER to detect if this is supported. |
| 70 | */ |
| 71 | #ifdef NETFILTER |
| 72 | #define MSG_TRUNC_CLEARS_INPUT |
| 73 | #endif |
| 74 | |
Willy Tarreau | 17f449b | 2010-11-07 11:44:13 +0100 | [diff] [blame] | 75 | /* Maximum path length, OS-dependant */ |
| 76 | #ifndef MAXPATHLEN |
| 77 | #define MAXPATHLEN 128 |
| 78 | #endif |
| 79 | |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 80 | /* On Linux, allows pipes to be resized */ |
| 81 | #ifndef F_SETPIPE_SZ |
| 82 | #define F_SETPIPE_SZ (1024 + 7) |
| 83 | #endif |
| 84 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 85 | #if defined(TPROXY) && defined(NETFILTER) |
Jeremy Hinegardner | e7dd2f2 | 2008-04-21 07:34:31 +0200 | [diff] [blame] | 86 | #include <linux/types.h> |
| 87 | #include <linux/netfilter_ipv6.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 88 | #include <linux/netfilter_ipv4.h> |
| 89 | #endif |
| 90 | |
Willy Tarreau | 0a45989 | 2008-01-13 17:37:16 +0100 | [diff] [blame] | 91 | /* On Linux, IP_TRANSPARENT and/or IP_FREEBIND generally require a kernel patch */ |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 92 | #if defined(CONFIG_HAP_LINUX_TPROXY) |
Willy Tarreau | 0a45989 | 2008-01-13 17:37:16 +0100 | [diff] [blame] | 93 | #if !defined(IP_FREEBIND) |
| 94 | #define IP_FREEBIND 15 |
| 95 | #endif /* !IP_FREEBIND */ |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 96 | #if !defined(IP_TRANSPARENT) |
| 97 | #define IP_TRANSPARENT 19 |
| 98 | #endif /* !IP_TRANSPARENT */ |
David du Colombier | 65c1796 | 2012-07-13 14:34:59 +0200 | [diff] [blame] | 99 | #if !defined(IPV6_TRANSPARENT) |
| 100 | #define IPV6_TRANSPARENT 75 |
| 101 | #endif /* !IPV6_TRANSPARENT */ |
Willy Tarreau | b1e52e8 | 2008-01-13 14:49:51 +0100 | [diff] [blame] | 102 | #endif /* CONFIG_HAP_LINUX_TPROXY */ |
| 103 | |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 104 | #if defined(IP_FREEBIND) \ |
Pieter Baauw | ff30b66 | 2013-05-08 23:22:39 +0200 | [diff] [blame] | 105 | || defined(IP_BINDANY) \ |
| 106 | || defined(IPV6_BINDANY) \ |
Pieter Baauw | 1eb7592 | 2013-05-08 23:30:23 +0200 | [diff] [blame] | 107 | || defined(SO_BINDANY) \ |
Pieter Baauw | d551fb5 | 2013-05-08 22:49:23 +0200 | [diff] [blame] | 108 | || defined(IP_TRANSPARENT) \ |
| 109 | || defined(IPV6_TRANSPARENT) |
| 110 | #define CONFIG_HAP_TRANSPARENT |
| 111 | #endif |
| 112 | |
Willy Tarreau | 58b2f83 | 2006-11-13 01:22:38 +0100 | [diff] [blame] | 113 | /* We'll try to enable SO_REUSEPORT on Linux 2.4 and 2.6 if not defined. |
| 114 | * There are two families of values depending on the architecture. Those |
| 115 | * are at least valid on Linux 2.4 and 2.6, reason why we'll rely on the |
| 116 | * NETFILTER define. |
| 117 | */ |
| 118 | #if !defined(SO_REUSEPORT) && defined(NETFILTER) |
| 119 | #if (SO_REUSEADDR == 2) |
| 120 | #define SO_REUSEPORT 15 |
| 121 | #elif (SO_REUSEADDR == 0x0004) |
| 122 | #define SO_REUSEPORT 0x0200 |
| 123 | #endif /* SO_REUSEADDR */ |
| 124 | #endif /* SO_REUSEPORT */ |
| 125 | |
Lukas Tribus | 0999f76 | 2013-04-02 16:43:24 +0200 | [diff] [blame] | 126 | /* only Linux defines TCP_FASTOPEN */ |
| 127 | #ifdef USE_TFO |
| 128 | #ifndef TCP_FASTOPEN |
| 129 | #define TCP_FASTOPEN 23 |
| 130 | #endif |
| 131 | #endif |
| 132 | |
Willy Tarreau | ae459f3 | 2015-09-29 18:19:32 +0200 | [diff] [blame] | 133 | /* FreeBSD doesn't define SOL_IP and prefers IPPROTO_IP */ |
| 134 | #ifndef SOL_IP |
| 135 | #define SOL_IP IPPROTO_IP |
| 136 | #endif |
| 137 | |
Willy Tarreau | 9d87ca0 | 2016-08-10 21:09:24 +0200 | [diff] [blame] | 138 | /* same for SOL_TCP */ |
| 139 | #ifndef SOL_TCP |
| 140 | #define SOL_TCP IPPROTO_TCP |
| 141 | #endif |
| 142 | |
Lukas Tribus | 67db8df | 2013-06-23 17:37:13 +0200 | [diff] [blame] | 143 | /* If IPv6 is supported, define IN6_IS_ADDR_V4MAPPED() if missing. */ |
| 144 | #if defined(IPV6_TCLASS) && !defined(IN6_IS_ADDR_V4MAPPED) |
| 145 | #define IN6_IS_ADDR_V4MAPPED(a) \ |
| 146 | ((((const uint32_t *) (a))[0] == 0) \ |
| 147 | && (((const uint32_t *) (a))[1] == 0) \ |
| 148 | && (((const uint32_t *) (a))[2] == htonl (0xffff))) |
| 149 | #endif |
| 150 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 151 | #if defined(__dietlibc__) |
| 152 | #include <strings.h> |
| 153 | #endif |
| 154 | |
Willy Tarreau | 4698adf | 2018-10-29 19:14:14 +0100 | [diff] [blame] | 155 | /* crypt_r() has been present in glibc since 2.2 and on FreeBSD since 12.0 |
| 156 | * (12000002). No other OS makes any mention of it for now. Feel free to add |
| 157 | * valid known combinations below if needed to relax the crypt() lock when |
| 158 | * using threads. |
| 159 | */ |
| 160 | #if (defined(__GNU_LIBRARY__) && (__GLIBC__ > 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)) \ |
| 161 | || (defined(__FreeBSD__) && __FreeBSD_version >= 1200002) |
| 162 | #define HA_HAVE_CRYPT_R |
| 163 | #endif |
| 164 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 165 | #endif /* _COMMON_COMPAT_H */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 166 | |
| 167 | /* |
| 168 | * Local variables: |
| 169 | * c-indent-level: 8 |
| 170 | * c-basic-offset: 8 |
| 171 | * End: |
| 172 | */ |