blob: dec5d7d43026206e6e86a838d3048c657204d42c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau2dd0d472006-06-29 17:53:05 +02002 include/common/compat.h
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 Operating system compatibility interface.
4
Willy Tarreaub1e52e82008-01-13 14:49:51 +01005 Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +02006
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*/
21
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#ifndef _COMMON_COMPAT_H
23#define _COMMON_COMPAT_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau3ff3dc12007-05-07 00:19:57 +020025/*
26 * Gcc before 3.0 needs [0] to declare a variable-size array
27 */
28#if __GNUC__ < 3
29#define VAR_ARRAY 0
30#else
31#define VAR_ARRAY
32#endif
33
Willy Tarreaubaaee002006-06-26 02:48:02 +020034/* This is needed on Linux for Netfilter includes */
35#include <sys/socket.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010036#include <sys/types.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020037#include <common/config.h>
Jeremy Hinegardnere7dd2f22008-04-21 07:34:31 +020038#include <common/standard.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039
Willy Tarreau177e2b02008-07-15 00:36:31 +020040#ifndef BITS_PER_INT
41#define BITS_PER_INT (8*sizeof(int))
42#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
44/* this is for libc5 for example */
45#ifndef TCP_NODELAY
46#define TCP_NODELAY 1
47#endif
48
49#ifndef SHUT_RD
50#define SHUT_RD 0
51#endif
52
53#ifndef SHUT_WR
54#define SHUT_WR 1
55#endif
56
Willy Tarreaud6d06902009-08-19 11:22:33 +020057/* only Linux defines it */
58#ifndef MSG_NOSIGNAL
59#define MSG_NOSIGNAL 0
60#endif
61
Willy Tarreauc8f24f82007-11-30 18:38:35 +010062/* AIX does not define MSG_DONTWAIT. We'll define it to zero, and test it
63 * wherever appropriate.
64 */
65#ifndef MSG_DONTWAIT
66#define MSG_DONTWAIT 0
67#endif
68
Willy Tarreaubaaee002006-06-26 02:48:02 +020069#if defined(TPROXY) && defined(NETFILTER)
Jeremy Hinegardnere7dd2f22008-04-21 07:34:31 +020070#include <linux/types.h>
71#include <linux/netfilter_ipv6.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020072#include <linux/netfilter_ipv4.h>
73#endif
74
Willy Tarreau0a459892008-01-13 17:37:16 +010075/* On Linux, IP_TRANSPARENT and/or IP_FREEBIND generally require a kernel patch */
Willy Tarreaub1e52e82008-01-13 14:49:51 +010076#if defined(CONFIG_HAP_LINUX_TPROXY)
Willy Tarreau0a459892008-01-13 17:37:16 +010077#if !defined(IP_FREEBIND)
78#define IP_FREEBIND 15
79#endif /* !IP_FREEBIND */
Willy Tarreaub1e52e82008-01-13 14:49:51 +010080#if !defined(IP_TRANSPARENT)
81#define IP_TRANSPARENT 19
82#endif /* !IP_TRANSPARENT */
83#endif /* CONFIG_HAP_LINUX_TPROXY */
84
Willy Tarreau58b2f832006-11-13 01:22:38 +010085/* We'll try to enable SO_REUSEPORT on Linux 2.4 and 2.6 if not defined.
86 * There are two families of values depending on the architecture. Those
87 * are at least valid on Linux 2.4 and 2.6, reason why we'll rely on the
88 * NETFILTER define.
89 */
90#if !defined(SO_REUSEPORT) && defined(NETFILTER)
91#if (SO_REUSEADDR == 2)
92#define SO_REUSEPORT 15
93#elif (SO_REUSEADDR == 0x0004)
94#define SO_REUSEPORT 0x0200
95#endif /* SO_REUSEADDR */
96#endif /* SO_REUSEPORT */
97
Willy Tarreaubaaee002006-06-26 02:48:02 +020098#if defined(__dietlibc__)
99#include <strings.h>
100#endif
101
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200102#endif /* _COMMON_COMPAT_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103
104/*
105 * Local variables:
106 * c-indent-level: 8
107 * c-basic-offset: 8
108 * End:
109 */