2006-06-26 00:48:02 +00:00
|
|
|
/*
|
2006-06-29 15:53:05 +00:00
|
|
|
include/common/compat.h
|
2006-06-26 00:48:02 +00:00
|
|
|
Operating system compatibility interface.
|
|
|
|
|
2008-01-13 13:49:51 +00:00
|
|
|
Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
|
2006-06-26 00:48:02 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation, version 2.1
|
|
|
|
exclusively.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2006-06-29 15:53:05 +00:00
|
|
|
#ifndef _COMMON_COMPAT_H
|
|
|
|
#define _COMMON_COMPAT_H
|
2006-06-26 00:48:02 +00:00
|
|
|
|
2007-05-06 22:19:57 +00:00
|
|
|
/*
|
|
|
|
* Gcc before 3.0 needs [0] to declare a variable-size array
|
|
|
|
*/
|
|
|
|
#if __GNUC__ < 3
|
|
|
|
#define VAR_ARRAY 0
|
|
|
|
#else
|
|
|
|
#define VAR_ARRAY
|
|
|
|
#endif
|
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
/* This is needed on Linux for Netfilter includes */
|
|
|
|
#include <sys/socket.h>
|
2007-11-30 17:38:35 +00:00
|
|
|
#include <sys/types.h>
|
2006-06-29 16:54:54 +00:00
|
|
|
#include <common/config.h>
|
2008-04-21 05:34:31 +00:00
|
|
|
#include <common/standard.h>
|
2006-06-26 00:48:02 +00:00
|
|
|
|
2008-07-14 22:36:31 +00:00
|
|
|
#ifndef BITS_PER_INT
|
|
|
|
#define BITS_PER_INT (8*sizeof(int))
|
|
|
|
#endif
|
2006-06-26 00:48:02 +00:00
|
|
|
|
|
|
|
/* this is for libc5 for example */
|
|
|
|
#ifndef TCP_NODELAY
|
|
|
|
#define TCP_NODELAY 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SHUT_RD
|
|
|
|
#define SHUT_RD 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SHUT_WR
|
|
|
|
#define SHUT_WR 1
|
|
|
|
#endif
|
|
|
|
|
2009-08-19 09:22:33 +00:00
|
|
|
/* only Linux defines it */
|
|
|
|
#ifndef MSG_NOSIGNAL
|
|
|
|
#define MSG_NOSIGNAL 0
|
|
|
|
#endif
|
|
|
|
|
2007-11-30 17:38:35 +00:00
|
|
|
/* AIX does not define MSG_DONTWAIT. We'll define it to zero, and test it
|
|
|
|
* wherever appropriate.
|
|
|
|
*/
|
|
|
|
#ifndef MSG_DONTWAIT
|
|
|
|
#define MSG_DONTWAIT 0
|
|
|
|
#endif
|
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
#if defined(TPROXY) && defined(NETFILTER)
|
2008-04-21 05:34:31 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/netfilter_ipv6.h>
|
2006-06-26 00:48:02 +00:00
|
|
|
#include <linux/netfilter_ipv4.h>
|
|
|
|
#endif
|
|
|
|
|
2008-01-13 16:37:16 +00:00
|
|
|
/* On Linux, IP_TRANSPARENT and/or IP_FREEBIND generally require a kernel patch */
|
2008-01-13 13:49:51 +00:00
|
|
|
#if defined(CONFIG_HAP_LINUX_TPROXY)
|
2008-01-13 16:37:16 +00:00
|
|
|
#if !defined(IP_FREEBIND)
|
|
|
|
#define IP_FREEBIND 15
|
|
|
|
#endif /* !IP_FREEBIND */
|
2008-01-13 13:49:51 +00:00
|
|
|
#if !defined(IP_TRANSPARENT)
|
|
|
|
#define IP_TRANSPARENT 19
|
|
|
|
#endif /* !IP_TRANSPARENT */
|
|
|
|
#endif /* CONFIG_HAP_LINUX_TPROXY */
|
|
|
|
|
2006-11-13 00:22:38 +00:00
|
|
|
/* We'll try to enable SO_REUSEPORT on Linux 2.4 and 2.6 if not defined.
|
|
|
|
* There are two families of values depending on the architecture. Those
|
|
|
|
* are at least valid on Linux 2.4 and 2.6, reason why we'll rely on the
|
|
|
|
* NETFILTER define.
|
|
|
|
*/
|
|
|
|
#if !defined(SO_REUSEPORT) && defined(NETFILTER)
|
|
|
|
#if (SO_REUSEADDR == 2)
|
|
|
|
#define SO_REUSEPORT 15
|
|
|
|
#elif (SO_REUSEADDR == 0x0004)
|
|
|
|
#define SO_REUSEPORT 0x0200
|
|
|
|
#endif /* SO_REUSEADDR */
|
|
|
|
#endif /* SO_REUSEPORT */
|
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
#if defined(__dietlibc__)
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2006-06-29 15:53:05 +00:00
|
|
|
#endif /* _COMMON_COMPAT_H */
|
2006-06-26 00:48:02 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|