Home | History | Annotate | Line # | Download | only in netinet
ip_compat.h revision 1.3
      1  1.3   darrenr /*	$NetBSD: ip_compat.h,v 1.3 2012/07/22 14:27:51 darrenr Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*
      4  1.1  christos  * Copyright (C) 2012 by Darren Reed.
      5  1.1  christos  *
      6  1.1  christos  * See the IPFILTER.LICENCE file for details on licencing.
      7  1.1  christos  *
      8  1.1  christos  * @(#)ip_compat.h	1.8 1/14/96
      9  1.3   darrenr  * Id: ip_compat.h,v 1.1.1.2 2012/07/22 13:45:09 darrenr Exp
     10  1.1  christos  */
     11  1.1  christos 
     12  1.2  christos #ifndef _NETINET_IP_COMPAT_H_
     13  1.2  christos #define _NETINET_IP_COMPAT_H_
     14  1.1  christos 
     15  1.1  christos #ifndef	__STDC__
     16  1.1  christos # undef		const
     17  1.1  christos # define	const
     18  1.1  christos #endif
     19  1.1  christos 
     20  1.1  christos #if defined(_KERNEL) || defined(KERNEL) || defined(__KERNEL__)
     21  1.1  christos # undef	KERNEL
     22  1.1  christos # undef	_KERNEL
     23  1.1  christos # undef 	__KERNEL__
     24  1.1  christos # define	KERNEL
     25  1.1  christos # define	_KERNEL
     26  1.1  christos # define 	__KERNEL__
     27  1.1  christos #endif
     28  1.1  christos 
     29  1.1  christos #ifndef	SOLARIS
     30  1.1  christos #define	SOLARIS	(defined(sun) && (defined(__svr4__) || defined(__SVR4)))
     31  1.1  christos #endif
     32  1.1  christos #if (defined(SOLARIS2) && (SOLARIS2 >= 8))
     33  1.1  christos # ifndef	USE_INET6
     34  1.1  christos #  define	USE_INET6
     35  1.1  christos # endif
     36  1.1  christos #endif
     37  1.1  christos #if defined(__FreeBSD_version) && (__FreeBSD_version >= 400000) && \
     38  1.1  christos     !defined(_KERNEL) && !defined(USE_INET6) && !defined(NOINET6)
     39  1.1  christos # define	USE_INET6
     40  1.1  christos #endif
     41  1.1  christos #if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 105000000) && \
     42  1.2  christos     !defined(_KERNEL) && !defined(USE_INET6) && !defined(NOINET6)
     43  1.1  christos # define	USE_INET6
     44  1.1  christos #endif
     45  1.1  christos #if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 106140000) && \
     46  1.1  christos     defined(_KERNEL) && \
     47  1.1  christos     (!defined(IPFILTER_LKM) || (__NetBSD_Version__ >= 399000100))
     48  1.1  christos # define	IPFILTER_M_IPFILTER
     49  1.1  christos #endif
     50  1.1  christos #if !defined(USE_INET6)
     51  1.1  christos # if defined(OpenBSD) && (OpenBSD >= 200206) && \
     52  1.1  christos     !defined(_KERNEL) && !defined(USE_INET6)
     53  1.1  christos #  define	USE_INET6
     54  1.1  christos # endif
     55  1.1  christos # if defined(__osf__)
     56  1.1  christos #  define	USE_INET6	1
     57  1.1  christos # endif
     58  1.1  christos # if defined(linux) && (!defined(_KERNEL) || defined(CONFIG_IPV6))
     59  1.1  christos #  define	USE_INET6
     60  1.1  christos # endif
     61  1.1  christos # if defined(HPUXREV) && (HPUXREV >= 1111)
     62  1.1  christos #  define	USE_INET6
     63  1.1  christos # endif
     64  1.1  christos #endif
     65  1.1  christos 
     66  1.1  christos #if defined(BSD) && (BSD < 199103) && defined(__osf__)
     67  1.1  christos # undef BSD
     68  1.1  christos # define BSD 199103
     69  1.1  christos #endif
     70  1.1  christos 
     71  1.1  christos #if defined(__SVR4) || defined(__svr4__) || defined(__sgi)
     72  1.1  christos # define index   strchr
     73  1.1  christos # if !defined(_KERNEL)
     74  1.1  christos #  define	bzero(a,b)	memset(a,0,b)
     75  1.1  christos #  define	bcmp		memcmp
     76  1.1  christos #  define	bcopy(a,b,c)	memmove(b,a,c)
     77  1.1  christos # endif
     78  1.1  christos #endif
     79  1.1  christos 
     80  1.1  christos #ifndef LIFNAMSIZ
     81  1.1  christos # ifdef IF_NAMESIZE
     82  1.1  christos #  define	LIFNAMSIZ	IF_NAMESIZE
     83  1.1  christos # else
     84  1.1  christos #  ifdef	IFNAMSIZ
     85  1.1  christos #   define	LIFNAMSIZ	IFNAMSIZ
     86  1.1  christos #  else
     87  1.1  christos #   define	LIFNAMSIZ	16
     88  1.1  christos #  endif
     89  1.1  christos # endif
     90  1.1  christos #endif
     91  1.1  christos 
     92  1.1  christos #if defined(__sgi) || defined(bsdi) || defined(__hpux) || defined(hpux)
     93  1.1  christos struct  ether_addr {
     94  1.1  christos         u_char  ether_addr_octet[6];
     95  1.1  christos };
     96  1.1  christos #endif
     97  1.1  christos 
     98  1.1  christos #if defined(__sgi) && !defined(IPFILTER_LKM)
     99  1.1  christos # ifdef __STDC__
    100  1.1  christos #  define IPL_EXTERN(ep) ipfilter##ep
    101  1.1  christos # else
    102  1.1  christos #  define IPL_EXTERN(ep) ipfilter/**/ep
    103  1.1  christos # endif
    104  1.1  christos #else
    105  1.1  christos # ifdef __STDC__
    106  1.1  christos #  define IPL_EXTERN(ep) ipl##ep
    107  1.1  christos # else
    108  1.1  christos #  define IPL_EXTERN(ep) ipl/**/ep
    109  1.1  christos # endif
    110  1.1  christos #endif
    111  1.1  christos 
    112  1.1  christos /*
    113  1.1  christos  * This is a workaround for <sys/uio.h> troubles on FreeBSD and OpenBSD.
    114  1.1  christos  */
    115  1.1  christos #ifndef linux
    116  1.1  christos # ifndef _KERNEL
    117  1.1  christos #  define ADD_KERNEL
    118  1.1  christos #  define _KERNEL
    119  1.1  christos #  define KERNEL
    120  1.1  christos # endif
    121  1.1  christos # ifdef __OpenBSD__
    122  1.1  christos struct file;
    123  1.1  christos # endif
    124  1.1  christos # include <sys/uio.h>
    125  1.1  christos # ifdef ADD_KERNEL
    126  1.1  christos #  undef _KERNEL
    127  1.1  christos #  undef KERNEL
    128  1.1  christos # endif
    129  1.1  christos #endif
    130  1.1  christos 
    131  1.1  christos #define	NETBSD_GE_REV(x)	(defined(__NetBSD_Version__) && \
    132  1.1  christos 				 (__NetBSD_Version__ >= (x)))
    133  1.1  christos #define	NETBSD_GT_REV(x)	(defined(__NetBSD_Version__) && \
    134  1.1  christos 				 (__NetBSD_Version__ > (x)))
    135  1.1  christos #define	NETBSD_LT_REV(x)	(defined(__NetBSD_Version__) && \
    136  1.1  christos 				 (__NetBSD_Version__ < (x)))
    137  1.1  christos #define	FREEBSD_GE_REV(x)	(defined(__FreeBSD_version) && \
    138  1.1  christos 				 (__FreeBSD_version >= (x)))
    139  1.1  christos #define	FREEBSD_GT_REV(x)	(defined(__FreeBSD_version) && \
    140  1.1  christos 				 (__FreeBSD_version > (x)))
    141  1.1  christos #define	FREEBSD_LT_REV(x)	(defined(__FreeBSD_version) && \
    142  1.1  christos 				 (__FreeBSD_version < (x)))
    143  1.1  christos #define	BSDOS_GE_REV(x)		(defined(_BSDI_VERSION) && \
    144  1.1  christos 				 (_BSDI_VERSION >= (x)))
    145  1.1  christos #define	BSDOS_GT_REV(x)		(defined(_BSDI_VERSION) && \
    146  1.1  christos 				 (_BSDI_VERSION > (x)))
    147  1.1  christos #define	BSDOS_LT_REV(x)		(defined(_BSDI_VERSION) && \
    148  1.1  christos 				 (_BSDI_VERSION < (x)))
    149  1.1  christos #define	OPENBSD_GE_REV(x)	(defined(OpenBSD) && (OpenBSD >= (x)))
    150  1.1  christos #define	OPENBSD_GT_REV(x)	(defined(OpenBSD) && (OpenBSD > (x)))
    151  1.1  christos #define	OPENBSD_LT_REV(x)	(defined(OpenBSD) && (OpenBSD < (x)))
    152  1.1  christos #define	BSD_GE_YEAR(x)		(defined(BSD) && (BSD >= (x)))
    153  1.1  christos #define	BSD_GT_YEAR(x)		(defined(BSD) && (BSD > (x)))
    154  1.1  christos #define	BSD_LT_YEAR(x)		(defined(BSD) && (BSD < (x)))
    155  1.1  christos 
    156  1.1  christos 
    157  1.1  christos /* ----------------------------------------------------------------------- */
    158  1.1  christos /*                                  S O L A R I S                          */
    159  1.1  christos /* ----------------------------------------------------------------------- */
    160  1.1  christos #if SOLARIS
    161  1.1  christos # define	MENTAT	1
    162  1.1  christos # include	<sys/cmn_err.h>
    163  1.1  christos # include	<sys/isa_defs.h>
    164  1.1  christos # include	<sys/stream.h>
    165  1.1  christos # include	<sys/ioccom.h>
    166  1.1  christos # include	<sys/sysmacros.h>
    167  1.1  christos # include	<sys/kmem.h>
    168  1.1  christos # if SOLARIS2 >= 10
    169  1.1  christos #  include	<sys/procset.h>
    170  1.1  christos #  include	<sys/proc.h>
    171  1.1  christos #  include	<sys/devops.h>
    172  1.1  christos #  include	<sys/ddi_impldefs.h>
    173  1.1  christos #  include	<sys/sdt.h>
    174  1.1  christos # endif
    175  1.1  christos /*
    176  1.1  christos  * because Solaris 2 defines these in two places :-/
    177  1.1  christos  */
    178  1.1  christos # ifndef	_KERNEL
    179  1.1  christos #  define	ADD_KERNEL
    180  1.1  christos #  define	_KERNEL
    181  1.1  christos #  undef	RES_INIT
    182  1.1  christos # endif /* _KERNEL */
    183  1.1  christos 
    184  1.1  christos # if SOLARIS2 >= 8
    185  1.1  christos #  include <netinet/ip6.h>
    186  1.1  christos #  include <netinet/icmp6.h>
    187  1.1  christos # endif
    188  1.1  christos 
    189  1.1  christos # include <inet/common.h>
    190  1.1  christos /* These 5 are defined in <inet/ip.h> and <netinet/ip.h> */
    191  1.1  christos # undef	IPOPT_EOL
    192  1.1  christos # undef	IPOPT_NOP
    193  1.1  christos # undef	IPOPT_LSRR
    194  1.1  christos # undef	IPOPT_RR
    195  1.1  christos # undef	IPOPT_SSRR
    196  1.1  christos # ifdef i386
    197  1.1  christos #  define _SYS_PROMIF_H
    198  1.1  christos # endif
    199  1.1  christos # ifdef	ADD_KERNEL
    200  1.1  christos #  undef	_KERNEL
    201  1.1  christos # endif
    202  1.1  christos # include <inet/mib2.h>
    203  1.1  christos # include <inet/ip.h>
    204  1.1  christos # undef COPYOUT
    205  1.1  christos # if !defined(_SYS_NETI_H)
    206  1.1  christos #  include <inet/ip_ire.h>
    207  1.1  christos # endif
    208  1.1  christos # if SOLARIS2 >= 8
    209  1.1  christos #  define SNPRINTF	snprintf
    210  1.1  christos 
    211  1.1  christos #  include <inet/ip_if.h>
    212  1.1  christos #  define	ipif_local_addr	ipif_lcl_addr
    213  1.1  christos /* Only defined in private include file */
    214  1.1  christos #  ifndef	V4_PART_OF_V6
    215  1.1  christos #   define	V4_PART_OF_V6(v6)	v6.s6_addr32[3]
    216  1.1  christos #  endif
    217  1.1  christos struct ip6_ext {
    218  1.1  christos 	u_char	ip6e_nxt;
    219  1.1  christos 	u_char	ip6e_len;
    220  1.1  christos };
    221  1.1  christos # endif /* SOLARIS2 >= 8 */
    222  1.1  christos 
    223  1.1  christos # if SOLARIS2 >= 6
    224  1.1  christos #  include <sys/atomic.h>
    225  1.1  christos typedef	uint8_t		u_int8_t;
    226  1.1  christos typedef	uint32_t	u_32_t;
    227  1.1  christos # else
    228  1.1  christos typedef	unsigned char	u_int8_t;
    229  1.1  christos typedef unsigned int	u_32_t;
    230  1.1  christos # endif
    231  1.1  christos # define	U_32_T	1
    232  1.1  christos # if SOLARIS2 >= 7
    233  1.1  christos #  define	USE_QUAD_T	1
    234  1.1  christos #  define	U_QUAD_T	uint64_t
    235  1.1  christos #  define	QUAD_T		int64_t
    236  1.1  christos # endif
    237  1.1  christos 
    238  1.1  christos # ifdef _KERNEL
    239  1.1  christos #  define	NEED_LOCAL_RAND		1
    240  1.1  christos #  define	KRWLOCK_T		krwlock_t
    241  1.1  christos #  define	KMUTEX_T		kmutex_t
    242  1.1  christos #  if !defined(FW_HOOKS)
    243  1.1  christos #   include "qif.h"
    244  1.1  christos #   include "pfil.h"
    245  1.1  christos #  endif
    246  1.1  christos #  if SOLARIS2 >= 6
    247  1.1  christos #   if SOLARIS2 == 6
    248  1.1  christos #    define	ATOMIC_INCL(x)		atomic_add_long((uint32_t*)&(x), 1)
    249  1.1  christos #    define	ATOMIC_DECL(x)		atomic_add_long((uint32_t*)&(x), -1)
    250  1.1  christos #   else
    251  1.1  christos #    define	ATOMIC_INCL(x)		atomic_add_long(&(x), 1)
    252  1.1  christos #    define	ATOMIC_DECL(x)		atomic_add_long(&(x), -1)
    253  1.1  christos #   endif /* SOLARIS2 == 6 */
    254  1.1  christos #   define	ATOMIC_INC64(x)		atomic_add_64((uint64_t*)&(x), 1)
    255  1.1  christos #   define	ATOMIC_INC32(x)		atomic_add_32((uint32_t*)&(x), 1)
    256  1.1  christos #   define	ATOMIC_DEC64(x)		atomic_add_64((uint64_t*)&(x), -1)
    257  1.1  christos #   define	ATOMIC_DEC32(x)		atomic_add_32((uint32_t*)&(x), -1)
    258  1.1  christos #  else
    259  1.1  christos #   define	ATOMIC_INC(x)		{ mutex_enter(&softc->ipf_rw); (x)++; \
    260  1.1  christos 					  mutex_exit(&softc->ipf_rw); }
    261  1.1  christos #   define	ATOMIC_DEC(x)		{ mutex_enter(&softc->ipf_rw); (x)--; \
    262  1.1  christos 					  mutex_exit(&softc->ipf_rw); }
    263  1.1  christos #  endif /* SOLARIS2 >= 6 */
    264  1.1  christos #  define	USE_MUTEXES
    265  1.1  christos #  define	MUTEX_ENTER(x)		mutex_enter(&(x)->ipf_lk)
    266  1.1  christos #  define	READ_ENTER(x)		rw_enter(&(x)->ipf_lk, RW_READER)
    267  1.1  christos #  define	WRITE_ENTER(x)		rw_enter(&(x)->ipf_lk, RW_WRITER)
    268  1.1  christos #  define	MUTEX_DOWNGRADE(x)	rw_downgrade(&(x)->ipf_lk)
    269  1.1  christos #  define	RWLOCK_INIT(x, y)	rw_init(&(x)->ipf_lk, (y),  \
    270  1.1  christos 						RW_DRIVER, NULL)
    271  1.1  christos #  define	RWLOCK_EXIT(x)		rw_exit(&(x)->ipf_lk)
    272  1.1  christos #  define	RW_DESTROY(x)		rw_destroy(&(x)->ipf_lk)
    273  1.1  christos #  define	MUTEX_INIT(x, y)	mutex_init(&(x)->ipf_lk, (y), \
    274  1.1  christos 						   MUTEX_DRIVER, NULL)
    275  1.1  christos #  define	MUTEX_DESTROY(x)	mutex_destroy(&(x)->ipf_lk)
    276  1.1  christos #  define	MUTEX_NUKE(x)		bzero((x), sizeof(*(x)))
    277  1.1  christos #  define	MUTEX_EXIT(x)		mutex_exit(&(x)->ipf_lk)
    278  1.1  christos #  define	COPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
    279  1.1  christos #  define	COPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
    280  1.1  christos #  define	BCOPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
    281  1.1  christos #  define	BCOPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
    282  1.1  christos #  define	UIOMOVE(a,b,c,d)	uiomove((caddr_t)a,b,c,d)
    283  1.1  christos #  define	KFREE(x)	kmem_free((char *)(x), sizeof(*(x)))
    284  1.1  christos #  define	KFREES(x,s)	kmem_free((char *)(x), (s))
    285  1.1  christos #  define	SPL_SCHED(x)	;
    286  1.1  christos #  define	SPL_NET(x)	;
    287  1.1  christos #  define	SPL_IMP(x)	;
    288  1.1  christos #  undef	SPL_X
    289  1.1  christos #  define	SPL_X(x)	;
    290  1.1  christos #  ifdef sparc
    291  1.1  christos #   define	ntohs(x)	(x)
    292  1.1  christos #   define	ntohl(x)	(x)
    293  1.1  christos #   define	htons(x)	(x)
    294  1.1  christos #   define	htonl(x)	(x)
    295  1.1  christos #  endif /* sparc */
    296  1.1  christos #  define	KMALLOC(a,b)	(a) = (b)kmem_alloc(sizeof(*(a)), KM_NOSLEEP)
    297  1.1  christos #  define	KMALLOCS(a,b,c)	(a) = (b)kmem_alloc((c), KM_NOSLEEP)
    298  1.1  christos #  define	GET_MINOR(x)	getminor(x)
    299  1.2  christos extern	void	*get_unit(void *, char *, int);
    300  1.1  christos #  define	GETIFP(n, v)	get_unit(softc, n, v)
    301  1.1  christos #  if defined(INSTANCES)
    302  1.1  christos #   include	<sys/hook.h>
    303  1.1  christos #   include	<sys/neti.h>
    304  1.1  christos typedef struct	qpktinfo	{
    305  1.1  christos 	void		*qpi_real;	/* the real one on the STREAM */
    306  1.1  christos 	void		*qpi_ill;	/* COPIED */
    307  1.1  christos 	mblk_t		*qpi_m;
    308  1.1  christos 	queue_t		*qpi_q;
    309  1.1  christos 	void		*qpi_data;	/* where layer 3 header starts */
    310  1.1  christos 	size_t		qpi_off;
    311  1.1  christos 	int		qpi_flags;	/* COPIED */
    312  1.1  christos } qpktinfo_t;
    313  1.1  christos 
    314  1.3   darrenr #define	QF_MULTICAST	0x0001
    315  1.3   darrenr #define	QF_BROADCAST	0x0002
    316  1.1  christos 
    317  1.1  christos typedef struct qifpkt {
    318  1.1  christos 	struct qifpkt	*qp_next;
    319  1.1  christos 	char		qp_ifname[LIFNAMSIZ];
    320  1.1  christos 	int		qp_sap;
    321  1.1  christos 	mblk_t		*qp_mb;
    322  1.1  christos 	int		qp_inout;
    323  1.1  christos } qifpkt_t;
    324  1.1  christos 
    325  1.1  christos #   define	COPYIFNAME(v, x,b)					\
    326  1.1  christos 			do {						\
    327  1.1  christos 				if ((v) == 4) {				\
    328  1.1  christos 					net_getifname(softc->ipf_nd_v4,	\
    329  1.1  christos 						      (phy_if_t)x, b,	\
    330  1.1  christos 						      sizeof(b));	\
    331  1.1  christos 				} else {				\
    332  1.1  christos 					net_getifname(softc->ipf_nd_v6,	\
    333  1.1  christos 						      (phy_if_t)x, b,	\
    334  1.1  christos 						      sizeof(b));	\
    335  1.1  christos 				}					\
    336  1.1  christos 			} while (0)
    337  1.1  christos #   define	GETIFMTU_4(x)	net_getmtu(softc->ipf_nd_v4, (phy_if_t)x, 0)
    338  1.1  christos #   define	GETIFMTU_6(x)	net_getmtu(softc->ipf_nd_v6, (phy_if_t)x, 0)
    339  1.1  christos #   define	GET_SOFTC(x)	ipf_find_softc(x)
    340  1.1  christos #  else
    341  1.1  christos #   define	FASTROUTE_RECURSION	1
    342  1.1  christos #   define	GET_SOFTC(x)	&ipfmain
    343  1.1  christos #   define	GETIFMTU_4(x)	((qif_t *)x)->qf_max_frag
    344  1.1  christos #   define	GETIFMTU_6(x)	((qif_t *)x)->qf_max_frag
    345  1.1  christos #   define	IFNAME(x)	((qif_t *)x)->qf_name
    346  1.1  christos #   define	COPYIFNAME(v, x, b) \
    347  1.1  christos 				(void) strncpy(b, ((qif_t *)x)->qf_name, \
    348  1.1  christos 					       LIFNAMSIZ)
    349  1.1  christos #  endif
    350  1.1  christos #  define	GETKTIME(x)	uniqtime((struct timeval *)x)
    351  1.3   darrenr #  define	MSGDSIZE(m)	msgdsize(m)
    352  1.3   darrenr #  define	M_LEN(m)	((m)->b_wptr - (m)->b_rptr)
    353  1.1  christos #  define	M_ADJ(m,x)	adjmsg(m, x)
    354  1.1  christos #  define	M_COPY(x)	dupmsg((x))
    355  1.1  christos #  define	MTOD(m,t)	((t)((m)->b_rptr))
    356  1.1  christos #  define	MTYPE(m)	((m)->b_datap->db_type)
    357  1.1  christos #  define	FREE_MB_T(m)	freemsg(m)
    358  1.1  christos #  define	ALLOC_MB_T(m,l)	(m) = allocmbt(l)
    359  1.1  christos #  define	PREP_MB_T(f,m)	ipf_prependmbt(f, m)
    360  1.1  christos #  define	M_DUP(m)	copymsg(m)
    361  1.1  christos #  define	m_next		b_cont
    362  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; cmn_err(CE_PANIC, "ipf_panic"); }
    363  1.1  christos typedef mblk_t mb_t;
    364  1.3   darrenr extern	void	mb_copydata __P((mblk_t *, size_t, size_t, char *));
    365  1.3   darrenr extern	void	mb_copyback __P((mblk_t *, size_t, size_t, char *));
    366  1.1  christos # endif /* _KERNEL */
    367  1.1  christos 
    368  1.1  christos # if (SOLARIS2 >= 7)
    369  1.1  christos #  ifdef lint
    370  1.1  christos #   define ALIGN32(ptr)    (ptr ? 0L : 0L)
    371  1.1  christos #   define ALIGN16(ptr)    (ptr ? 0L : 0L)
    372  1.1  christos #  else
    373  1.1  christos #   define ALIGN32(ptr)    (ptr)
    374  1.1  christos #   define ALIGN16(ptr)    (ptr)
    375  1.1  christos #  endif
    376  1.1  christos # endif
    377  1.1  christos 
    378  1.1  christos # if SOLARIS2 < 6
    379  1.1  christos typedef	struct uio	uio_t;
    380  1.1  christos # endif
    381  1.1  christos typedef	int		ioctlcmd_t;
    382  1.1  christos 
    383  1.1  christos # define OS_RECOGNISED 1
    384  1.1  christos 
    385  1.1  christos #endif /* SOLARIS */
    386  1.1  christos 
    387  1.1  christos /* ----------------------------------------------------------------------- */
    388  1.1  christos /*                                  H P U X                                */
    389  1.1  christos /* ----------------------------------------------------------------------- */
    390  1.1  christos #ifdef __hpux
    391  1.1  christos # define	MENTAT	1
    392  1.1  christos # include	<sys/sysmacros.h>
    393  1.1  christos # include	<sys/spinlock.h>
    394  1.1  christos # include	<sys/lock.h>
    395  1.1  christos # include	<sys/stream.h>
    396  1.1  christos # ifdef USE_INET6
    397  1.1  christos #  include	<netinet/if_ether.h>
    398  1.1  christos #  include	<netinet/ip6.h>
    399  1.1  christos #  include	<netinet/icmp6.h>
    400  1.1  christos typedef	struct	ip6_hdr	ip6_t;
    401  1.1  christos # endif
    402  1.1  christos 
    403  1.1  christos # ifdef _KERNEL
    404  1.1  christos #  define	FASTROUTE_RECURSION	1
    405  1.1  christos #  define SNPRINTF	sprintf
    406  1.1  christos #  if (HPUXREV >= 1111)
    407  1.1  christos #   define	IPL_SELECT
    408  1.1  christos #   ifdef	IPL_SELECT
    409  1.1  christos #    include	<machine/sys/user.h>
    410  1.1  christos #    include	<sys/kthread_iface.h>
    411  1.1  christos #    define	READ_COLLISION	0x01
    412  1.1  christos 
    413  1.1  christos typedef	struct	iplog_select_s {
    414  1.1  christos 	kthread_t	*read_waiter;
    415  1.1  christos 	int		state;
    416  1.1  christos } iplog_select_t;
    417  1.1  christos #   endif
    418  1.1  christos #  endif
    419  1.1  christos 
    420  1.1  christos #  define	GETKTIME(x)	uniqtime((struct timeval *)x)
    421  1.1  christos 
    422  1.1  christos #  if HPUXREV == 1111
    423  1.1  christos #   include	"kern_svcs.h"
    424  1.1  christos #  else
    425  1.1  christos #   include	<sys/kern_svcs.h>
    426  1.1  christos #  endif
    427  1.1  christos #  undef	ti_flags
    428  1.1  christos #  undef	TCP_NODELAY
    429  1.1  christos #  undef	TCP_MAXSEG
    430  1.1  christos #  include <sys/reg.h>
    431  1.1  christos #  include "../netinet/ip_info.h"
    432  1.1  christos /*
    433  1.1  christos  * According to /usr/include/sys/spinlock.h on HP-UX 11.00, these functions
    434  1.1  christos  * are available.  Attempting to use them actually results in unresolved
    435  1.1  christos  * symbols when it comes time to load the module.
    436  1.1  christos  * This has been fixed!  Yipee!
    437  1.1  christos  */
    438  1.1  christos #  if 1
    439  1.1  christos #   ifdef __LP64__
    440  1.1  christos #    define	ATOMIC_INCL(x)		lock_and_incr_int64(&softc->ipf_rw.ipf_lk, &(x), 1)
    441  1.1  christos #    define	ATOMIC_DECL(x)		lock_and_incr_int64(&softc->ipf_rw.ipf_lk, &(x), -1)
    442  1.1  christos #   else
    443  1.1  christos #    define	ATOMIC_INCL(x)		lock_and_incr_int32(&softc->ipf_rw.ipf_lk, &(x), 1)
    444  1.1  christos #    define	ATOMIC_DECL(x)		lock_and_incr_int32(&softc->ipf_rw.ipf_lk, &(x), -1)
    445  1.1  christos #   endif
    446  1.1  christos #   define	ATOMIC_INC64(x)		lock_and_incr_int64(&softc->ipf_rw.ipf_lk, &(x), 1)
    447  1.1  christos #   define	ATOMIC_INC32(x)		lock_and_incr_int32(&softc->ipf_rw.ipf_lk, &(x), 1)
    448  1.1  christos #   define	ATOMIC_DEC64(x)		lock_and_incr_int64(&softc->ipf_rw.ipf_lk, &(x), -1)
    449  1.1  christos #   define	ATOMIC_DEC32(x)		lock_and_incr_int32(&softc->ipf_rw.ipf_lk, &(x), -1)
    450  1.1  christos #  else /* 0 */
    451  1.1  christos #   define	ATOMIC_INC64(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
    452  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    453  1.1  christos #   define	ATOMIC_DEC64(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
    454  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    455  1.1  christos #   define	ATOMIC_INC32(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
    456  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    457  1.1  christos #   define	ATOMIC_DEC32(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
    458  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    459  1.1  christos #   define	ATOMIC_INCL(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
    460  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    461  1.1  christos #   define	ATOMIC_DECL(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
    462  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    463  1.1  christos #   define	ATOMIC_INC(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
    464  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    465  1.1  christos #   define	ATOMIC_DEC(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
    466  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
    467  1.1  christos #  endif
    468  1.1  christos #  define	ip_cksum		ip_csuma
    469  1.2  christos #  define	memcpy(a,b,c)		bcopy((void *)b, (void *)a, c)
    470  1.1  christos #  define	USE_MUTEXES
    471  1.1  christos #  define	MUTEX_INIT(x, y)	initlock(&(x)->ipf_lk, 0, 0, (y))
    472  1.1  christos #  define	MUTEX_ENTER(x)		spinlock(&(x)->ipf_lk)
    473  1.1  christos #  define	MUTEX_EXIT(x)		spinunlock(&(x)->ipf_lk);
    474  1.1  christos #  define	MUTEX_DESTROY(x)
    475  1.1  christos #  define	MUTEX_NUKE(x)		bzero((char *)(x), sizeof(*(x)))
    476  1.1  christos #  define	KMUTEX_T		lock_t
    477  1.1  christos #  define	kmutex_t		lock_t		/* for pfil.h */
    478  1.1  christos #  define	krwlock_t		lock_t		/* for pfil.h */
    479  1.1  christos /*
    480  1.1  christos  * The read-write lock implementation in HP-UX 11.0 is crippled - it can
    481  1.1  christos  * only be used by threads working in a user context!
    482  1.1  christos  * This has been fixed!  Yipee! (Or at least it does in 11.00, not 11.11..)
    483  1.1  christos  */
    484  1.1  christos #  if HPUXREV < 1111
    485  1.1  christos #   define	MUTEX_DOWNGRADE(x)	lock_write_to_read(x)
    486  1.1  christos #   define	KRWLOCK_T		struct rw_lock
    487  1.1  christos #   define	READ_ENTER(x)		lock_read(&(x)->ipf_lk)
    488  1.1  christos #   define	WRITE_ENTER(x)		lock_write(&(x)->ipf_lk)
    489  1.1  christos #   if HPUXREV >= 1111
    490  1.1  christos #    define	RWLOCK_INIT(x, y)	rwlock_init4(&(x)->ipf_lk, 0, RWLCK_CANSLEEP, 0, y)
    491  1.1  christos #   else
    492  1.1  christos #    define	RWLOCK_INIT(x, y)	lock_init3(&(x)->ipf_lk, 0, 1, 0, 0, y)
    493  1.1  christos #   endif
    494  1.1  christos #   define	RWLOCK_EXIT(x)		lock_done(&(x)->ipf_lk)
    495  1.1  christos #  else
    496  1.1  christos #   define	KRWLOCK_T		lock_t
    497  1.1  christos #   define	KMUTEX_T		lock_t
    498  1.1  christos #   define	READ_ENTER(x)		MUTEX_ENTER(x)
    499  1.1  christos #   define	WRITE_ENTER(x)		MUTEX_ENTER(x)
    500  1.1  christos #   define	MUTEX_DOWNGRADE(x)
    501  1.1  christos #   define	RWLOCK_INIT(x, y)	initlock(&(x)->ipf_lk, 0, 0, y)
    502  1.1  christos #   define	RWLOCK_EXIT(x)		MUTEX_EXIT(x)
    503  1.1  christos #  endif
    504  1.1  christos #  define	RW_DESTROY(x)
    505  1.1  christos #  define	COPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
    506  1.1  christos #  define	COPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
    507  1.1  christos #  define	SPL_SCHED(x)	;
    508  1.1  christos #  define	SPL_NET(x)	;
    509  1.1  christos #  define	SPL_IMP(x)	;
    510  1.1  christos #  undef	SPL_X
    511  1.1  christos #  define	SPL_X(x)	;
    512  1.2  christos extern	void	*get_unit(char *, int);
    513  1.1  christos #  define	GETIFP(n, v)	get_unit(n, v)
    514  1.1  christos #  define	GETIFMTU_4(x)	((ill_t *)x)->ill_mtu
    515  1.1  christos #  define	GETIFMTU_6(x)	((ill_t *)x)->ill_mtu
    516  1.1  christos #  define	IFNAME(x, b)	((ill_t *)x)->ill_name
    517  1.1  christos #  define	COPYIFNAME(v, x, b) \
    518  1.1  christos 				(void) strncpy(b, ((qif_t *)x)->qf_name, \
    519  1.1  christos 					       LIFNAMSIZ)
    520  1.2  christos #  define	UIOMOVE(a,b,c,d)	uiomove((void *)a,b,c,d)
    521  1.2  christos #  define	SLEEP(id, n)	{ lock_t *_l = get_sleep_lock((void *)id); \
    522  1.1  christos 				  sleep(id, PZERO+1); \
    523  1.1  christos 				  spinunlock(_l); \
    524  1.1  christos 				}
    525  1.2  christos #  define	WAKEUP(id,x)	{ lock_t *_l = get_sleep_lock((void *)id); \
    526  1.1  christos 				  wakeup(id + x); \
    527  1.1  christos 				  spinunlock(_l); \
    528  1.1  christos 				}
    529  1.1  christos #  define	POLLWAKEUP(x)	;
    530  1.1  christos #  define	KMALLOC(a, b)	MALLOC((a), b, sizeof(*(a)), M_IOSYS, M_NOWAIT)
    531  1.2  christos #  define	KMALLOCS(a, b, c) (a) = (b)malloc((c), M_IOSYS, M_NOWAIT)
    532  1.1  christos #  define	KFREE(x)	kmem_free((char *)(x), sizeof(*(x)))
    533  1.1  christos #  define	KFREES(x,s)	kmem_free((char *)(x), (s))
    534  1.3   darrenr #  define	MSGDSIZE(m)	msgdsize(m)
    535  1.1  christos #  define	M_ADJ(m,x)	adjmsg(m, x)
    536  1.3   darrenr #  define	M_LEN(m)	((m)->b_wptr - (m)->b_rptr)
    537  1.3   darrenr #  define	M_COPY(m)	copymsg((m))
    538  1.1  christos #  define	M_DUP(m)	dupmsg(m)
    539  1.1  christos #  define	MTOD(m,t)	((t)((m)->b_rptr))
    540  1.1  christos #  define	MTYPE(m)	((m)->b_datap->db_type)
    541  1.1  christos #  define	FREE_MB_T(m)	freemsg(m)
    542  1.1  christos #  define	m_next		b_cont
    543  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
    544  1.1  christos typedef mblk_t mb_t;
    545  1.1  christos 
    546  1.1  christos #  include "qif.h"
    547  1.1  christos #  include "pfil.h"
    548  1.1  christos 
    549  1.1  christos # else /* _KERNEL */
    550  1.1  christos 
    551  1.1  christos typedef	unsigned char uchar_t;
    552  1.1  christos 
    553  1.1  christos #  ifndef	_SYS_STREAM_INCLUDED
    554  1.1  christos typedef char * mblk_t;
    555  1.2  christos typedef void *queue_t;
    556  1.1  christos typedef	u_long ulong;
    557  1.1  christos #  endif
    558  1.1  christos #  include <netinet/ip_info.h>
    559  1.1  christos 
    560  1.1  christos # endif /* _KERNEL */
    561  1.1  christos 
    562  1.1  christos # ifdef lint
    563  1.1  christos #  define ALIGN32(ptr)    (ptr ? 0L : 0L)
    564  1.1  christos #  define ALIGN16(ptr)    (ptr ? 0L : 0L)
    565  1.1  christos # else
    566  1.1  christos #  define ALIGN32(ptr)    (ptr)
    567  1.1  christos #  define ALIGN16(ptr)    (ptr)
    568  1.1  christos # endif
    569  1.1  christos 
    570  1.1  christos typedef	struct uio	uio_t;
    571  1.1  christos typedef	int		ioctlcmd_t;
    572  1.1  christos typedef	int		minor_t;
    573  1.1  christos typedef unsigned int	u_32_t;
    574  1.1  christos # define	U_32_T	1
    575  1.1  christos 
    576  1.1  christos # define OS_RECOGNISED 1
    577  1.1  christos 
    578  1.1  christos #endif /* __hpux */
    579  1.1  christos 
    580  1.1  christos /* ----------------------------------------------------------------------- */
    581  1.1  christos /*                                  I R I X                                */
    582  1.1  christos /* ----------------------------------------------------------------------- */
    583  1.1  christos #ifdef __sgi
    584  1.1  christos # undef		MENTAT
    585  1.1  christos # if IRIX < 60500
    586  1.1  christos typedef	struct uio	uio_t;
    587  1.1  christos # endif
    588  1.1  christos typedef	int		ioctlcmd_t;
    589  1.1  christos typedef u_int32_t       u_32_t;
    590  1.1  christos # define	U_32_T	1
    591  1.1  christos 
    592  1.1  christos # ifdef INET6
    593  1.1  christos #  define USE_INET6
    594  1.1  christos # endif
    595  1.1  christos 
    596  1.1  christos # define  hz HZ
    597  1.1  christos # include <sys/ksynch.h>
    598  1.1  christos # define	IPF_LOCK_PL	plhi
    599  1.1  christos # include <sys/sema.h>
    600  1.1  christos # undef kmutex_t
    601  1.1  christos typedef struct {
    602  1.1  christos 	lock_t *l;
    603  1.1  christos 	int pl;
    604  1.1  christos } kmutex_t;
    605  1.1  christos 
    606  1.1  christos # ifdef MUTEX_INIT
    607  1.1  christos #  define	KMUTEX_T		mutex_t
    608  1.1  christos # else
    609  1.1  christos #  define	KMUTEX_T		kmutex_t
    610  1.1  christos #  define	KRWLOCK_T		kmutex_t
    611  1.1  christos # endif
    612  1.1  christos 
    613  1.1  christos # ifdef _KERNEL
    614  1.1  christos #  define	NEED_LOCAL_RAND		1
    615  1.1  christos #  define	ATOMIC_INC(x)		{ MUTEX_ENTER(&softc->ipf_rw); \
    616  1.1  christos 					  (x)++; MUTEX_EXIT(&softc->ipf_rw); }
    617  1.1  christos #  define	ATOMIC_DEC(x)		{ MUTEX_ENTER(&softc->ipf_rw); \
    618  1.1  christos 					  (x)--; MUTEX_EXIT(&softc->ipf_rw); }
    619  1.1  christos #  define	USE_MUTEXES
    620  1.1  christos #  ifdef MUTEX_INIT
    621  1.1  christos #   include <sys/atomic_ops.h>
    622  1.1  christos #   define	ATOMIC_INCL(x)		atomicAddUlong(&(x), 1)
    623  1.1  christos #   define	ATOMIC_INC64(x)		atomicAddUint64(&(x), 1)
    624  1.1  christos #   define	ATOMIC_INC32(x)		atomicAddUint(&(x), 1)
    625  1.1  christos #   define	ATOMIC_DECL(x)		atomicAddUlong(&(x), -1)
    626  1.1  christos #   define	ATOMIC_DEC64(x)		atomicAddUint64(&(x), -1)
    627  1.1  christos #   define	ATOMIC_DEC32(x)		atomicAddUint(&(x), -1)
    628  1.1  christos #   undef	MUTEX_INIT
    629  1.1  christos #   define	MUTEX_INIT(x, y)	mutex_init(&(x)->ipf_lk,  \
    630  1.1  christos 						   MUTEX_DEFAULT, y)
    631  1.1  christos #   undef	MUTEX_ENTER
    632  1.1  christos #   define	MUTEX_ENTER(x)		mutex_lock(&(x)->ipf_lk, 0)
    633  1.1  christos #   undef	MUTEX_EXIT
    634  1.1  christos #   define	MUTEX_EXIT(x)		mutex_unlock(&(x)->ipf_lk)
    635  1.1  christos #   undef	MUTEX_DESTROY
    636  1.1  christos #   define	MUTEX_DESTROY(x)	mutex_destroy(&(x)->ipf_lk)
    637  1.1  christos #   define	MUTEX_DOWNGRADE(x)	mrdemote(&(x)->ipf_lk)
    638  1.1  christos #   define	KRWLOCK_T		mrlock_t
    639  1.1  christos #   define	RWLOCK_INIT(x, y)	mrinit(&(x)->ipf_lk, y)
    640  1.1  christos #   undef	RW_DESTROY
    641  1.1  christos #   define	RW_DESTROY(x)		mrfree(&(x)->ipf_lk)
    642  1.1  christos #   define	READ_ENTER(x)		RW_RDLOCK(&(x)->ipf_lk)
    643  1.1  christos #   define	WRITE_ENTER(x)		RW_WRLOCK(&(x)->ipf_lk)
    644  1.1  christos #   define	RWLOCK_EXIT(x)		RW_UNLOCK(&(x)->ipf_lk)
    645  1.1  christos #  else
    646  1.1  christos #   define	READ_ENTER(x)		MUTEX_ENTER(&(x)->ipf_lk)
    647  1.1  christos #   define	WRITE_ENTER(x)		MUTEX_ENTER(&(x)->ipf_lk)
    648  1.1  christos #   define	MUTEX_DOWNGRADE(x)	;
    649  1.1  christos #   define	RWLOCK_EXIT(x)		MUTEX_EXIT(&(x)->ipf_lk)
    650  1.1  christos #   define	MUTEX_EXIT(x)		UNLOCK((x)->ipf_lk.l, (x)->ipf_lk.pl);
    651  1.1  christos #   define	MUTEX_INIT(x,y)		(x)->ipf_lk.l = LOCK_ALLOC((uchar_t)-1, IPF_LOCK_PL, (lkinfo_t *)-1, KM_NOSLEEP)
    652  1.1  christos #   define	MUTEX_DESTROY(x)	LOCK_DEALLOC((x)->ipf_lk.l)
    653  1.1  christos #   define	MUTEX_ENTER(x)		(x)->ipf_lk.pl = LOCK((x)->ipf_lk.l, \
    654  1.1  christos 							      IPF_LOCK_PL);
    655  1.1  christos #  endif
    656  1.1  christos #  define	MUTEX_NUKE(x)		bzero((x), sizeof(*(x)))
    657  1.1  christos #  define	FREE_MB_T(m)	m_freem(m)
    658  1.1  christos #  define	MTOD(m,t)	mtod(m,t)
    659  1.1  christos #  define	COPYIN(a,b,c)	(bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
    660  1.1  christos #  define	COPYOUT(a,b,c)	(bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
    661  1.1  christos #  define	UIOMOVE(a,b,c,d)	uiomove((caddr_t)a,b,c,d)
    662  1.1  christos #  define	SLEEP(id, n)	sleep((id), PZERO+1)
    663  1.1  christos #  define	WAKEUP(id,x)	wakeup(id+x)
    664  1.1  christos #  define	POLLWAKEUP(x)	;
    665  1.1  christos #  define	KFREE(x)	kmem_free((char *)(x), sizeof(*(x)))
    666  1.1  christos #  define	KFREES(x,s)	kmem_free((char *)(x), (s))
    667  1.1  christos #  define	GETIFP(n,v)	ifunit(n)
    668  1.1  christos #  define	GETIFMTU_4(x)	((struct ifnet *)x)->if_mtu
    669  1.1  christos #  define	GETIFMTU_6(x)	((struct ifnet *)x)->if_mtu
    670  1.1  christos #  include <sys/kmem.h>
    671  1.1  christos #  include <sys/ddi.h>
    672  1.1  christos #  define	KMALLOC(a,b)	(a) = (b)kmem_alloc(sizeof(*(a)), KM_NOSLEEP)
    673  1.1  christos #  define	KMALLOCS(a,b,c)	(a) = (b)kmem_alloc((c), KM_NOSLEEP)
    674  1.1  christos #  define	GET_MINOR(x)	getminor(x)
    675  1.1  christos #  define	USE_SPL		1
    676  1.1  christos #  define	SPL_IMP(x)	(x) = splimp()
    677  1.1  christos #  define	SPL_NET(x)	(x) = splnet()
    678  1.1  christos #  define	SPL_SCHED(x)	(x) = splsched()
    679  1.1  christos #  define	SPL_X(x)	(void) splx(x)
    680  1.2  christos extern	void	m_copydata(struct mbuf *, int, int, void *);
    681  1.2  christos extern	void	m_copyback(struct mbuf *, int, int, void *);
    682  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
    683  1.1  christos #  define	M_LEN(x)	(x)->m_len
    684  1.3   darrenr #  define	M_COPY(m)	m_copy((m), 0, M_COPYALL)
    685  1.1  christos #  define	GETKTIME(x)	microtime((struct timeval *)x)
    686  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
    687  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
    688  1.1  christos typedef struct mbuf mb_t;
    689  1.1  christos # else
    690  1.1  christos #  undef RW_DESTROY
    691  1.1  christos #  undef MUTEX_INIT
    692  1.1  christos #  undef MUTEX_DESTROY
    693  1.1  christos # endif /* _KERNEL */
    694  1.1  christos 
    695  1.1  christos # define OS_RECOGNISED 1
    696  1.1  christos 
    697  1.1  christos #endif /* __sgi */
    698  1.1  christos 
    699  1.1  christos /* ----------------------------------------------------------------------- */
    700  1.1  christos /*                                  T R U 6 4                              */
    701  1.1  christos /* ----------------------------------------------------------------------- */
    702  1.1  christos #ifdef __osf__
    703  1.1  christos # undef		MENTAT
    704  1.1  christos 
    705  1.1  christos # include <kern/lock.h>
    706  1.1  christos # include <sys/sysmacros.h>
    707  1.1  christos 
    708  1.1  christos # ifdef _KERNEL
    709  1.1  christos #  define	NEED_LOCAL_RAND		1
    710  1.1  christos #  define	KMUTEX_T		simple_lock_data_t
    711  1.1  christos #  define	KRWLOCK_T		lock_data_t
    712  1.1  christos #  include <net/net_globals.h>
    713  1.1  christos #  define	USE_MUTEXES
    714  1.1  christos #  define	READ_ENTER(x)		lock_read(&(x)->ipf_lk)
    715  1.1  christos #  define	WRITE_ENTER(x)		lock_write(&(x)->ipf_lk)
    716  1.1  christos #  define	MUTEX_DOWNGRADE(x)	lock_write_to_read(&(x)->ipf_lk)
    717  1.1  christos #  define	RWLOCK_INIT(x, y)	lock_init(&(x)->ipf_lk, TRUE)
    718  1.1  christos #  define	RWLOCK_EXIT(x)		lock_done(&(x)->ipf_lk)
    719  1.1  christos #  define	RW_DESTROY(x)		lock_terminate(&(x)->ipf_lk)
    720  1.1  christos #  define	MUTEX_ENTER(x)		simple_lock(&(x)->ipf_lk)
    721  1.1  christos #  define	MUTEX_INIT(x, y)	simple_lock_init(&(x)->ipf_lk)
    722  1.1  christos #  define	MUTEX_DESTROY(x)	simple_lock_terminate(&(x)->ipf_lk)
    723  1.1  christos #  define	MUTEX_EXIT(x)		simple_unlock(&(x)->ipf_lk)
    724  1.1  christos #  define	MUTEX_NUKE(x)		bzero(x, sizeof(*(x)))
    725  1.1  christos #  define	ATOMIC_INC64(x)		atomic_incq((uint64_t*)&(x))
    726  1.1  christos #  define	ATOMIC_DEC64(x)		atomic_decq((uint64_t*)&(x))
    727  1.1  christos #  define	ATOMIC_INC32(x)		atomic_incl((uint32_t*)&(x))
    728  1.1  christos #  define	ATOMIC_DEC32(x)		atomic_decl((uint32_t*)&(x))
    729  1.1  christos #  define	ATOMIC_INCL(x)		atomic_incl((uint32_t*)&(x))
    730  1.1  christos #  define	ATOMIC_DECL(x)		atomic_decl((uint32_t*)&(x))
    731  1.1  christos #  define	ATOMIC_INC(x)		{ simple_lock(&softc->ipf_rw); (x)++; \
    732  1.1  christos 					  simple_unlock(&softc->ipf_rw); }
    733  1.1  christos #  define	ATOMIC_DEC(x)		{ simple_lock(&softc->ipf_rw); (x)--; \
    734  1.1  christos 					  simple_unlock(&softc->ipf_rw); }
    735  1.1  christos #  define	SPL_SCHED(x)		;
    736  1.1  christos #  define	SPL_NET(x)		;
    737  1.1  christos #  define	SPL_IMP(x)		;
    738  1.1  christos #  undef	SPL_X
    739  1.1  christos #  define	SPL_X(x)		;
    740  1.2  christos #  define	UIOMOVE(a,b,c,d)	uiomove((void *)a, b, d)
    741  1.1  christos #  define	FREE_MB_T(m)		m_freem(m)
    742  1.1  christos #  define	MTOD(m,t)		mtod(m,t)
    743  1.1  christos #  define	GETIFP(n, v)		ifunit(n)
    744  1.1  christos #  define	GETIFMTU_4(x)		((struct ifnet *)x)->if_mtu
    745  1.1  christos #  define	GETIFMTU_6(x)		((struct ifnet *)x)->if_mtu
    746  1.1  christos #  define	GET_MINOR		getminor
    747  1.1  christos #  define	WAKEUP(id,x)		wakeup(id + x)
    748  1.1  christos #  define	POLLWAKEUP(x)		;
    749  1.1  christos #  define	COPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
    750  1.1  christos #  define	COPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
    751  1.1  christos #  define	KMALLOC(a, b)	MALLOC((a), b, sizeof(*(a)), M_PFILT, M_NOWAIT)
    752  1.2  christos #  define	KMALLOCS(a, b, c) (a) = (b)malloc((c), M_PFILT, \
    753  1.1  christos 					    ((c) > 4096) ? M_WAITOK : M_NOWAIT)
    754  1.1  christos #  define	KFREE(x)	FREE((x), M_PFILT)
    755  1.1  christos #  define	KFREES(x,s)	FREE((x), M_PFILT)
    756  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
    757  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
    758  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
    759  1.3   darrenr #  define	M_COPY(m)	m_copy((m), 0, M_COPYALL)
    760  1.3   darrenr #  define	M_DUP(m)	m_copy((m), 0, M_COPYALL)
    761  1.1  christos #  define	GETKTIME(x)	microtime((struct timeval *)x)
    762  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
    763  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
    764  1.1  christos #  define	selinfo		sel_queue
    765  1.1  christos typedef struct mbuf mb_t;
    766  1.1  christos # endif /* _KERNEL */
    767  1.1  christos 
    768  1.1  christos # if (defined(_KERNEL) || defined(_NO_BITFIELDS) || (__STDC__ == 1))
    769  1.1  christos #  define	IP_V(x)		((x)->ip_vhl >> 4)
    770  1.1  christos #  define	IP_HL(x)	((x)->ip_vhl & 0xf)
    771  1.1  christos #  define	IP_V_A(x,y)	(x)->ip_vhl |= (((y) << 4) & 0xf0)
    772  1.1  christos #  define	IP_HL_A(x,y)	(x)->ip_vhl |= ((y) & 0xf)
    773  1.1  christos #  define	TCP_X2(x)	((x)->th_xoff & 0xf)
    774  1.1  christos #  define	TCP_X2_A(x,y)	(x)->th_xoff |= ((y) & 0xf)
    775  1.1  christos #  define	TCP_OFF(x)	((x)->th_xoff >> 4)
    776  1.1  christos #  define	TCP_OFF_A(x,y)	(x)->th_xoff |= (((y) << 4) & 0xf0)
    777  1.1  christos # endif
    778  1.1  christos # if TRU64 <= 1885
    779  1.1  christos #  define	ip6_vfc		ip6_vcf
    780  1.1  christos # endif
    781  1.1  christos 
    782  1.1  christos /*
    783  1.1  christos  * These are from's Solaris' #defines for little endian.
    784  1.1  christos  */
    785  1.1  christos #define	IP6F_MORE_FRAG		0x0100
    786  1.1  christos #define	IP6F_RESERVED_MASK	0x0600
    787  1.1  christos #define	IP6F_OFF_MASK		0xf8ff
    788  1.1  christos 
    789  1.1  christos struct ip6_ext {
    790  1.1  christos 	u_char	ip6e_nxt;
    791  1.1  christos 	u_char	ip6e_len;
    792  1.1  christos };
    793  1.1  christos 
    794  1.1  christos typedef	int		ioctlcmd_t;
    795  1.1  christos /*
    796  1.1  christos  * Really, any arch where sizeof(long) != sizeof(int).
    797  1.1  christos  */
    798  1.1  christos typedef unsigned int    u_32_t;
    799  1.1  christos # define	U_32_T	1
    800  1.1  christos 
    801  1.1  christos # define OS_RECOGNISED 1
    802  1.1  christos #endif /* __osf__ */
    803  1.1  christos 
    804  1.1  christos /* ----------------------------------------------------------------------- */
    805  1.1  christos /*                                  N E T B S D                            */
    806  1.1  christos /* ----------------------------------------------------------------------- */
    807  1.1  christos #ifdef __NetBSD__
    808  1.1  christos # define HAS_SYS_MD5_H	1
    809  1.1  christos # if (NetBSD >= 199905) && !defined(IPFILTER_LKM) && defined(_KERNEL)
    810  1.1  christos #  if (__NetBSD_Version__ < 399001400)
    811  1.1  christos #   include "opt_ipfilter_log.h"
    812  1.1  christos #  else
    813  1.1  christos #   include "opt_ipfilter.h"
    814  1.1  christos #  endif
    815  1.1  christos # endif
    816  1.1  christos # if defined(_KERNEL)
    817  1.1  christos #  include <sys/systm.h>
    818  1.1  christos #  include <sys/malloc.h>
    819  1.1  christos #  if (__NetBSD_Version__ > 500000000)
    820  1.1  christos #   include <sys/kauth.h>
    821  1.1  christos #  endif
    822  1.1  christos # else
    823  1.1  christos #  include <stddef.h>
    824  1.1  christos #  include <stdbool.h>
    825  1.1  christos # endif
    826  1.1  christos # if defined(_KERNEL) && !defined(IPFILTER_LKM)
    827  1.2  christos #  if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 599002300)
    828  1.2  christos #    define NBPFILTER 1
    829  1.2  christos #  else
    830  1.2  christos #    include "bpfilter.h"
    831  1.2  christos #  endif
    832  1.1  christos #  if defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 104110000)
    833  1.1  christos #   include "opt_inet.h"
    834  1.1  christos #  endif
    835  1.1  christos #  ifdef INET6
    836  1.1  christos #   define USE_INET6
    837  1.1  christos #  endif
    838  1.1  christos #  if (__NetBSD_Version__ >= 105000000)
    839  1.1  christos #   define HAVE_M_PULLDOWN 1
    840  1.1  christos #  endif
    841  1.1  christos # endif
    842  1.1  christos 
    843  1.2  christos #ifndef _KERNEL
    844  1.2  christos # define	ipf_random	arc4random
    845  1.2  christos #endif
    846  1.2  christos 
    847  1.1  christos # if (__NetBSD_Version__ >= 499000000)
    848  1.1  christos #  ifdef _KERNEL
    849  1.1  christos #   include <sys/rwlock.h>
    850  1.1  christos #   define	USE_MUTEXES		1
    851  1.1  christos #   define	KMUTEX_T		kmutex_t
    852  1.1  christos #   define	KRWLOCK_T		krwlock_t
    853  1.1  christos #   define	MUTEX_DESTROY(x)	mutex_destroy(&(x)->ipf_lk)
    854  1.1  christos #   define	MUTEX_DOWNGRADE(x)	rw_downgrade(&(x)->ipf_lk)
    855  1.1  christos #   define	MUTEX_ENTER(x)		mutex_enter(&(x)->ipf_lk)
    856  1.1  christos #   define	MUTEX_EXIT(x)		mutex_exit(&(x)->ipf_lk)
    857  1.1  christos #   define	MUTEX_INIT(x,y)		mutex_init(&(x)->ipf_lk, MUTEX_DRIVER,\
    858  1.1  christos 						  IPL_SOFTNET)
    859  1.1  christos #   define	MUTEX_NUKE(x)		bzero((x), sizeof(*(x)))
    860  1.1  christos #   define	READ_ENTER(x)		rw_enter(&(x)->ipf_lk, RW_READER)
    861  1.1  christos #   define	RWLOCK_INIT(x, y)	rw_init(&(x)->ipf_lk)
    862  1.1  christos #   define	RWLOCK_EXIT(x)		rw_exit(&(x)->ipf_lk)
    863  1.1  christos #   define	RW_DESTROY(x)		rw_destroy(&(x)->ipf_lk)
    864  1.1  christos #   define	WRITE_ENTER(x)		rw_enter(&(x)->ipf_lk, RW_WRITER)
    865  1.1  christos #   define	SPL_SCHED(x)		;
    866  1.1  christos #   define	SPL_NET(x)		;
    867  1.1  christos #   define	SPL_IMP(x)		;
    868  1.1  christos #   define	SPL_X(x)		;
    869  1.1  christos #  endif
    870  1.1  christos # endif
    871  1.1  christos 
    872  1.1  christos # ifdef _KERNEL
    873  1.2  christos #  include <sys/cprng.h>
    874  1.1  christos #  if (__NetBSD_Version__ >= 399001400)
    875  1.1  christos #   include <sys/selinfo.h>		/* Not in NetBSD 3.1 */
    876  1.1  christos #   define	PROC_T  struct lwp
    877  1.1  christos #   define	KFREE(a)		free((a), _M_IPF)
    878  1.1  christos #   define	KFREES(a, b)		free((a), _M_IPF)
    879  1.1  christos #   define	KMALLOC(a, b)		(a) = (b)malloc(sizeof (*(a)), \
    880  1.1  christos 							_M_IPF, M_NOWAIT)
    881  1.1  christos #   define	KMALLOCS(a, b, c)	(a) = (b)malloc((c), _M_IPF, M_NOWAIT)
    882  1.1  christos #  else
    883  1.1  christos #   define	PROC_T  struct proc
    884  1.1  christos #  endif
    885  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
    886  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
    887  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
    888  1.1  christos #  define	M_COPY(x)	m_copy((x), 0, M_COPYALL)
    889  1.1  christos #  define	GETKTIME(x)	microtime((struct timeval *)x)
    890  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
    891  1.2  christos #  define	COPYIN(a,b,c)	copyin((void *)(a), (void *)(b), (c))
    892  1.2  christos #  define	COPYOUT(a,b,c)	copyout((void *)(a), (void *)(b), (c))
    893  1.2  christos #  define	BCOPYIN(a,b,c)	(bcopy((void *)(a), (void *)(b), (c)), 0)
    894  1.2  christos #  define	BCOPYOUT(a,b,c)	(bcopy((void *)(a), (void *)(b), (c)), 0)
    895  1.1  christos #  if (defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 499004900))
    896  1.1  christos #   define	POLLWAKEUP(x)	selnotify(softc->ipf_selwait+x, 0, 0)
    897  1.1  christos #  endif
    898  1.1  christos typedef struct mbuf mb_t;
    899  1.1  christos # endif /* _KERNEL */
    900  1.1  christos # if (NetBSD <= 1991011) && (NetBSD >= 199606)
    901  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_xname
    902  1.1  christos #  define	COPYIFNAME(v, x, b) \
    903  1.1  christos 				(void) strncpy(b, \
    904  1.1  christos 					       ((struct ifnet *)x)->if_xname, \
    905  1.1  christos 					       LIFNAMSIZ)
    906  1.1  christos # else
    907  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
    908  1.1  christos # endif
    909  1.1  christos typedef	struct uio	uio_t;
    910  1.1  christos typedef	u_long		ioctlcmd_t;
    911  1.1  christos typedef	int		minor_t;
    912  1.1  christos typedef	u_int32_t	u_32_t;
    913  1.1  christos # define	U_32_T	1
    914  1.1  christos 
    915  1.1  christos # define OS_RECOGNISED 1
    916  1.1  christos #endif /* __NetBSD__ */
    917  1.1  christos 
    918  1.1  christos 
    919  1.1  christos /* ----------------------------------------------------------------------- */
    920  1.1  christos /*                                F R E E B S D                            */
    921  1.1  christos /* ----------------------------------------------------------------------- */
    922  1.1  christos #ifdef __FreeBSD__
    923  1.1  christos # if  (__FreeBSD_version < 400000)
    924  1.1  christos #  define	NEED_LOCAL_RAND	1
    925  1.1  christos # endif
    926  1.1  christos # if defined(_KERNEL)
    927  1.1  christos #  if (__FreeBSD_version >= 500000)
    928  1.1  christos #   include "opt_bpf.h"
    929  1.1  christos #  endif
    930  1.1  christos #  if defined(__FreeBSD_version) && (__FreeBSD_version >= 500000)
    931  1.1  christos #   include "opt_inet6.h"
    932  1.1  christos #  endif
    933  1.1  christos #  if defined(INET6) && !defined(USE_INET6)
    934  1.1  christos #   define USE_INET6
    935  1.1  christos #  endif
    936  1.1  christos # endif
    937  1.1  christos 
    938  1.1  christos # if defined(_KERNEL)
    939  1.1  christos #  include <netinet/ip_var.h>
    940  1.1  christos #  if (__FreeBSD_version >= 500024)
    941  1.1  christos #   if (__FreeBSD_version >= 500043)
    942  1.1  christos #    define	p_cred	td_ucred
    943  1.1  christos #    define	p_uid	td_ucred->cr_ruid
    944  1.1  christos #   else
    945  1.1  christos #    define	p_cred	t_proc->p_cred
    946  1.1  christos #    define	p_uid	t_proc->p_cred->p_ruid
    947  1.1  christos #   endif
    948  1.1  christos #  else
    949  1.1  christos #   define	p_uid	p_cred->p_ruid
    950  1.1  christos #  endif /* __FreeBSD_version >= 500024 */
    951  1.1  christos 
    952  1.1  christos #  if (__FreeBSD_version >= 400000)
    953  1.1  christos /*
    954  1.1  christos  * When #define'd, the 5.2.1 kernel panics when used with the ftp proxy.
    955  1.1  christos  * There may be other, safe, kernels but this is not extensively tested yet.
    956  1.1  christos  */
    957  1.1  christos #   define HAVE_M_PULLDOWN
    958  1.1  christos #  endif
    959  1.1  christos #  if !defined(IPFILTER_LKM) && (__FreeBSD_version >= 300000)
    960  1.1  christos #   include "opt_ipfilter.h"
    961  1.1  christos #  endif
    962  1.1  christos #  define	COPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
    963  1.1  christos #  define	COPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
    964  1.1  christos 
    965  1.1  christos #  if (__FreeBSD_version >= 500043)
    966  1.1  christos #   define NETBSD_PF
    967  1.1  christos #  endif
    968  1.1  christos # else
    969  1.1  christos #  include <inttypes.h>
    970  1.1  christos # endif /* _KERNEL */
    971  1.1  christos 
    972  1.1  christos # if (__FreeBSD_version >= 700000)
    973  1.1  christos #  include <sys/selinfo.h>
    974  1.1  christos # endif
    975  1.1  christos # if (__FreeBSD_version >= 500043)
    976  1.1  christos #  include <sys/mutex.h>
    977  1.1  christos #  if (__FreeBSD_version >= 700014)
    978  1.3   darrenr #   define	KRWLOCK_FILL_SZ		36
    979  1.3   darrenr #   define	KMUTEX_FILL_SZ		24
    980  1.1  christos #   include <sys/rwlock.h>
    981  1.1  christos #   ifdef _KERNEL
    982  1.1  christos #    define	KMUTEX_T		struct mtx
    983  1.1  christos #    define	KRWLOCK_T		struct rwlock
    984  1.1  christos #    define	READ_ENTER(x)		rw_rlock(&(x)->ipf_lk)
    985  1.1  christos #    define	WRITE_ENTER(x)		rw_wlock(&(x)->ipf_lk)
    986  1.1  christos #    define	MUTEX_DOWNGRADE(x)	rw_downgrade(&(x)->ipf_lk)
    987  1.1  christos #    define	RWLOCK_INIT(x,y)	rw_init(&(x)->ipf_lk, (y))
    988  1.1  christos #    define	RW_DESTROY(x)		rw_destroy(&(x)->ipf_lk)
    989  1.1  christos #    define	RWLOCK_EXIT(x)		do { \
    990  1.1  christos 					    if (rw_wowned(&(x)->ipf_lk)) \
    991  1.1  christos 					    	rw_wunlock(&(x)->ipf_lk); \
    992  1.1  christos 					    else \
    993  1.1  christos 						rw_runlock(&(x)->ipf_lk); \
    994  1.1  christos 					} while (0)
    995  1.1  christos #   endif
    996  1.1  christos #  else
    997  1.1  christos #   include <sys/sx.h>
    998  1.1  christos /*
    999  1.1  christos  * Whilst the sx(9) locks on FreeBSD have the right semantics and interface
   1000  1.1  christos  * for what we want to use them for, despite testing showing they work -
   1001  1.1  christos  * with a WITNESS kernel, it generates LOR messages.
   1002  1.1  christos  */
   1003  1.1  christos #   if (__FreeBSD_version < 700000)
   1004  1.1  christos #    ifdef _KERNEL
   1005  1.1  christos #     define	KMUTEX_T		struct mtx
   1006  1.1  christos #     define	KRWLOCK_T		struct mtx
   1007  1.1  christos #     define	READ_ENTER(x)		mtx_lock(&(x)->ipf_lk)
   1008  1.1  christos #     define	WRITE_ENTER(x)		mtx_lock(&(x)->ipf_lk)
   1009  1.1  christos #     define	RWLOCK_EXIT(x)		mtx_unlock(&(x)->ipf_lk)
   1010  1.1  christos #     define	MUTEX_DOWNGRADE(x)	;
   1011  1.1  christos #     define	RWLOCK_INIT(x,y)	mtx_init(&(x)->ipf_lk, (y), NULL,\
   1012  1.1  christos 						 MTX_DEF)
   1013  1.1  christos #     define	RW_DESTROY(x)		mtx_destroy(&(x)->ipf_lk)
   1014  1.1  christos #    endif
   1015  1.1  christos #   else
   1016  1.1  christos #    ifdef _KERNEL
   1017  1.1  christos #     define	KRWLOCK_T		struct sx
   1018  1.1  christos #     define	KMUTEX_T		struct mtx
   1019  1.1  christos #     define	READ_ENTER(x)		sx_slock(&(x)->ipf_lk)
   1020  1.1  christos #     define	WRITE_ENTER(x)		sx_xlock(&(x)->ipf_lk)
   1021  1.1  christos #     define	MUTEX_DOWNGRADE(x)	sx_downgrade(&(x)->ipf_lk)
   1022  1.1  christos #     define	RWLOCK_INIT(x, y)	sx_init(&(x)->ipf_lk, (y))
   1023  1.1  christos #     define	RW_DESTROY(x)		sx_destroy(&(x)->ipf_lk)
   1024  1.1  christos #     ifdef sx_unlock
   1025  1.1  christos #      define	RWLOCK_EXIT(x)		sx_unlock(&(x)->ipf_lk)
   1026  1.1  christos #     else
   1027  1.1  christos #      define	RWLOCK_EXIT(x)		do { \
   1028  1.1  christos 					    if ((x)->ipf_lk.sx_cnt < 0) \
   1029  1.1  christos 						sx_xunlock(&(x)->ipf_lk); \
   1030  1.1  christos 					    else \
   1031  1.1  christos 						sx_sunlock(&(x)->ipf_lk); \
   1032  1.1  christos 					} while (0)
   1033  1.1  christos #     endif
   1034  1.1  christos #    endif
   1035  1.1  christos #   endif
   1036  1.1  christos #  endif
   1037  1.1  christos # endif
   1038  1.1  christos 
   1039  1.1  christos # if (__FreeBSD_version >= 501113)
   1040  1.1  christos #  include <net/if_var.h>
   1041  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_xname
   1042  1.1  christos #  define	COPYIFNAME(v, x, b) \
   1043  1.1  christos 				(void) strncpy(b, \
   1044  1.1  christos 					       ((struct ifnet *)x)->if_xname, \
   1045  1.1  christos 					       LIFNAMSIZ)
   1046  1.1  christos # endif
   1047  1.1  christos # if (__FreeBSD_version >= 500043)
   1048  1.1  christos # else
   1049  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
   1050  1.1  christos # endif
   1051  1.1  christos 
   1052  1.1  christos # ifdef _KERNEL
   1053  1.1  christos #  define	GETKTIME(x)	microtime((struct timeval *)x)
   1054  1.1  christos 
   1055  1.1  christos #  if (__FreeBSD_version >= 500002)
   1056  1.1  christos #   include <netinet/in_systm.h>
   1057  1.1  christos #   include <netinet/ip.h>
   1058  1.1  christos #   include <machine/in_cksum.h>
   1059  1.1  christos #  endif
   1060  1.1  christos 
   1061  1.1  christos #  if (__FreeBSD_version >= 500043)
   1062  1.1  christos #   define	USE_MUTEXES
   1063  1.1  christos #   define	MUTEX_ENTER(x)		mtx_lock(&(x)->ipf_lk)
   1064  1.1  christos #   define	MUTEX_EXIT(x)		mtx_unlock(&(x)->ipf_lk)
   1065  1.1  christos #   define	MUTEX_INIT(x,y)		mtx_init(&(x)->ipf_lk, (y), NULL,\
   1066  1.1  christos 						 MTX_DEF)
   1067  1.1  christos #   define	MUTEX_DESTROY(x)	mtx_destroy(&(x)->ipf_lk)
   1068  1.1  christos #   define	MUTEX_NUKE(x)		bzero((x), sizeof(*(x)))
   1069  1.1  christos /*
   1070  1.1  christos  * Whilst the sx(9) locks on FreeBSD have the right semantics and interface
   1071  1.1  christos  * for what we want to use them for, despite testing showing they work -
   1072  1.1  christos  * with a WITNESS kernel, it generates LOR messages.
   1073  1.1  christos  */
   1074  1.1  christos #   include <machine/atomic.h>
   1075  1.1  christos #   define	ATOMIC_INC(x)		{ mtx_lock(&softc->ipf_rw.ipf_lk); (x)++; \
   1076  1.1  christos 					  mtx_unlock(&softc->ipf_rw.ipf_lk); }
   1077  1.1  christos #   define	ATOMIC_DEC(x)		{ mtx_lock(&softc->ipf_rw.ipf_lk); (x)--; \
   1078  1.1  christos 					  mtx_unlock(&softc->ipf_rw.ipf_lk); }
   1079  1.1  christos #   define	ATOMIC_INCL(x)		atomic_add_long(&(x), 1)
   1080  1.1  christos #   define	ATOMIC_INC64(x)		ATOMIC_INC(x)
   1081  1.1  christos #   define	ATOMIC_INC32(x)		atomic_add_32((u_int *)&(x), 1)
   1082  1.1  christos #   define	ATOMIC_DECL(x)		atomic_add_long(&(x), -1)
   1083  1.1  christos #   define	ATOMIC_DEC64(x)		ATOMIC_DEC(x)
   1084  1.1  christos #   define	ATOMIC_DEC32(x)		atomic_add_32((u_int *)&(x), -1)
   1085  1.1  christos #   define	SPL_X(x)	;
   1086  1.1  christos #   define	SPL_NET(x)	;
   1087  1.1  christos #   define	SPL_IMP(x)	;
   1088  1.1  christos #   define	SPL_SCHED(x)	;
   1089  1.2  christos extern	int	in_cksum(struct mbuf *, int);
   1090  1.1  christos #  else
   1091  1.1  christos #   define	SPL_SCHED(x)	x = splhigh()
   1092  1.1  christos #  endif /* __FreeBSD_version >= 500043 */
   1093  1.1  christos #  if (__FreeBSD_version >= 500024)
   1094  1.1  christos #   define	GET_MINOR		dev2unit
   1095  1.1  christos #  endif
   1096  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
   1097  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
   1098  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
   1099  1.1  christos #  define	M_COPY(x)	m_copy((x), 0, M_COPYALL)
   1100  1.1  christos #  define	M_DUP(m)	m_dup(m, M_NOWAIT)
   1101  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
   1102  1.1  christos typedef struct mbuf mb_t;
   1103  1.1  christos # endif /* _KERNEL */
   1104  1.1  christos 
   1105  1.1  christos # if __FreeBSD__ < 3
   1106  1.1  christos #  include <machine/spl.h>
   1107  1.1  christos # else
   1108  1.1  christos #  if __FreeBSD__ == 3
   1109  1.1  christos #   if defined(IPFILTER_LKM) && !defined(ACTUALLY_LKM_NOT_KERNEL)
   1110  1.1  christos #    define	ACTUALLY_LKM_NOT_KERNEL
   1111  1.1  christos #   endif
   1112  1.1  christos #  endif
   1113  1.1  christos # endif
   1114  1.1  christos 
   1115  1.1  christos # if (__FreeBSD_version >= 300000)
   1116  1.1  christos typedef	u_long		ioctlcmd_t;
   1117  1.1  christos # else
   1118  1.1  christos typedef	int		ioctlcmd_t;
   1119  1.1  christos # endif
   1120  1.1  christos typedef	struct uio	uio_t;
   1121  1.1  christos typedef	int		minor_t;
   1122  1.1  christos typedef	u_int32_t	u_32_t;
   1123  1.1  christos # define	U_32_T	1
   1124  1.1  christos 
   1125  1.1  christos # define OS_RECOGNISED 1
   1126  1.1  christos #endif /* __FreeBSD__ */
   1127  1.1  christos 
   1128  1.1  christos 
   1129  1.1  christos /* ----------------------------------------------------------------------- */
   1130  1.1  christos /*                                O P E N B S D                            */
   1131  1.1  christos /* ----------------------------------------------------------------------- */
   1132  1.1  christos #ifdef __OpenBSD__
   1133  1.1  christos # ifdef INET6
   1134  1.1  christos #  define USE_INET6
   1135  1.1  christos # endif
   1136  1.1  christos 
   1137  1.1  christos # ifdef _KERNEL
   1138  1.1  christos #  if !defined(IPFILTER_LKM)
   1139  1.1  christos #   include "bpfilter.h"
   1140  1.1  christos #  endif
   1141  1.1  christos #  if (OpenBSD >= 200311)
   1142  1.1  christos #   define SNPRINTF	snprintf
   1143  1.1  christos #   if defined(USE_INET6)
   1144  1.1  christos #    include "netinet6/in6_var.h"
   1145  1.1  christos #    include "netinet6/nd6.h"
   1146  1.1  christos #   endif
   1147  1.1  christos #  endif
   1148  1.1  christos #  if (OpenBSD >= 200012)
   1149  1.1  christos #   define HAVE_M_PULLDOWN 1
   1150  1.1  christos #  endif
   1151  1.1  christos #  define	COPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
   1152  1.1  christos #  define	COPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
   1153  1.1  christos #  define	GETKTIME(x)	microtime((struct timeval *)x)
   1154  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
   1155  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
   1156  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
   1157  1.3   darrenr #  define	M_COPY(m)	m_copy((m), 0, M_COPYALL)
   1158  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
   1159  1.1  christos typedef struct mbuf mb_t;
   1160  1.1  christos # endif /* _KERNEL */
   1161  1.1  christos # if (OpenBSD >= 199603)
   1162  1.1  christos #  define	IFNAME(x, b)	((struct ifnet *)x)->if_xname
   1163  1.1  christos #  define	COPYIFNAME(v, x, b) \
   1164  1.1  christos 				(void) strncpy(b, \
   1165  1.1  christos 					       ((struct ifnet *)x)->if_xname, \
   1166  1.1  christos 					       LIFNAMSIZ)
   1167  1.1  christos # else
   1168  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
   1169  1.1  christos # endif
   1170  1.1  christos typedef	struct uio	uio_t;
   1171  1.1  christos typedef	u_long		ioctlcmd_t;
   1172  1.1  christos typedef	int		minor_t;
   1173  1.1  christos typedef	u_int32_t	u_32_t;
   1174  1.1  christos # define	U_32_T	1
   1175  1.1  christos 
   1176  1.1  christos # define OS_RECOGNISED 1
   1177  1.1  christos #endif /* __OpenBSD__ */
   1178  1.1  christos 
   1179  1.1  christos 
   1180  1.1  christos /* ----------------------------------------------------------------------- */
   1181  1.1  christos /*                                B S D O S                                */
   1182  1.1  christos /* ----------------------------------------------------------------------- */
   1183  1.1  christos #ifdef _BSDI_VERSION
   1184  1.1  christos # ifdef INET6
   1185  1.1  christos #  define USE_INET6
   1186  1.1  christos # endif
   1187  1.1  christos 
   1188  1.1  christos # ifdef _KERNEL
   1189  1.1  christos #  define	GETKTIME(x)	microtime((struct timeval *)x)
   1190  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
   1191  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
   1192  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
   1193  1.3   darrenr #  define	M_COPY(m)	m_copy((m), 0, M_COPYALL)
   1194  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
   1195  1.1  christos typedef struct mbuf mb_t;
   1196  1.1  christos # endif /* _KERNEL */
   1197  1.1  christos 
   1198  1.1  christos # if (_BSDI_VERSION >= 199701)
   1199  1.1  christos typedef	u_long		ioctlcmd_t;
   1200  1.1  christos # else
   1201  1.1  christos typedef	int		ioctlcmd_t;
   1202  1.1  christos # endif
   1203  1.1  christos typedef	u_int32_t	u_32_t;
   1204  1.1  christos # define	U_32_T	1
   1205  1.1  christos 
   1206  1.1  christos #endif /* _BSDI_VERSION */
   1207  1.1  christos 
   1208  1.1  christos 
   1209  1.1  christos /* ----------------------------------------------------------------------- */
   1210  1.1  christos /*                                  S U N O S 4                            */
   1211  1.1  christos /* ----------------------------------------------------------------------- */
   1212  1.1  christos #if defined(sun) && !defined(OS_RECOGNISED) /* SunOS4 */
   1213  1.1  christos # ifdef _KERNEL
   1214  1.1  christos #  include	<sys/kmem_alloc.h>
   1215  1.1  christos #  define	GETKTIME(x)	uniqtime((struct timeval *)x)
   1216  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
   1217  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
   1218  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
   1219  1.3   darrenr #  define	M_COPY(m)	m_copy((m), 0, M_COPYALL)
   1220  1.1  christos #  define	IFNAME(x)	((struct ifnet *)x)->if_name
   1221  1.1  christos #  define	GETIFP(n, v)	ifunit(n, IFNAMSIZ)
   1222  1.1  christos #  define	GETIFMTU_4(x)	((struct ifnet *)x)->if_mtu
   1223  1.1  christos #  define	KFREE(x)	kmem_free((char *)(x), sizeof(*(x)))
   1224  1.1  christos #  define	KFREES(x,s)	kmem_free((char *)(x), (s))
   1225  1.1  christos #  define	SLEEP(id, n)	sleep((id), PZERO+1)
   1226  1.1  christos #  define	WAKEUP(id,x)	wakeup(id + x)
   1227  1.1  christos #  define	POLLWAKEUP(x)	;
   1228  1.2  christos #  define	UIOMOVE(a,b,c,d)	uiomove((void *)a,b,c,d)
   1229  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
   1230  1.1  christos 
   1231  1.2  christos extern	void	m_copydata(struct mbuf *, int, int, void *);
   1232  1.2  christos extern	void	m_copyback(struct mbuf *, int, int, void *);
   1233  1.1  christos 
   1234  1.1  christos typedef struct mbuf mb_t;
   1235  1.1  christos # endif
   1236  1.1  christos 
   1237  1.1  christos typedef	struct uio	uio_t;
   1238  1.1  christos typedef	int		ioctlcmd_t;
   1239  1.1  christos typedef	int		minor_t;
   1240  1.1  christos typedef	unsigned int	u_32_t;
   1241  1.1  christos # define	U_32_T	1
   1242  1.1  christos 
   1243  1.1  christos # define OS_RECOGNISED 1
   1244  1.1  christos 
   1245  1.1  christos #endif /* SunOS 4 */
   1246  1.1  christos 
   1247  1.1  christos /* ----------------------------------------------------------------------- */
   1248  1.1  christos /*                            L I N U X                                    */
   1249  1.1  christos /* ----------------------------------------------------------------------- */
   1250  1.1  christos #if defined(linux) && !defined(OS_RECOGNISED)
   1251  1.1  christos # include <linux/version.h>
   1252  1.1  christos # if (LINUX >= 20600) && defined(_KERNEL)
   1253  1.1  christos #  define	 HDR_T_PRIVATE	1
   1254  1.1  christos # endif
   1255  1.1  christos # undef USE_INET6
   1256  1.1  christos # ifdef USE_INET6
   1257  1.1  christos struct ip6_ext {
   1258  1.1  christos 	u_char	ip6e_nxt;
   1259  1.1  christos 	u_char	ip6e_len;
   1260  1.1  christos };
   1261  1.1  christos # endif
   1262  1.1  christos 
   1263  1.1  christos # ifdef _KERNEL
   1264  1.1  christos #  include <asm/byteorder.h>
   1265  1.1  christos #  ifdef __LITTLE_ENDIAN
   1266  1.1  christos #   define BIG_ENDIAN		0
   1267  1.1  christos #   define LITTLE_ENDIAN	1
   1268  1.1  christos #   define BYTE_ORDER		LITTLE_ENDIAN
   1269  1.1  christos #  else
   1270  1.1  christos #   define BIG_ENDIAN		1
   1271  1.1  christos #   define LITTLE_ENDIAN	0
   1272  1.1  christos #   define BYTE_ORDER		BIG_ENDIAN
   1273  1.1  christos #  endif
   1274  1.1  christos #  define	IPF_PANIC(x,y)	if (x) { printf y; panic("ipf_panic"); }
   1275  1.1  christos #  define	COPYIN(a,b,c)	copy_from_user((caddr_t)(b), (caddr_t)(a), (c))
   1276  1.1  christos #  define	COPYOUT(a,b,c)	copy_to_user((caddr_t)(b), (caddr_t)(a), (c))
   1277  1.1  christos #  define	FREE_MB_T(m)	kfree_skb(m)
   1278  1.1  christos #  define	GETKTIME(x)	do_gettimeofday((struct timeval *)x)
   1279  1.1  christos #  define	POLLWAKEUP(x)	;
   1280  1.1  christos #  ifdef wait_event_interruptible
   1281  1.1  christos #   define	SLEEP(x,s)	wait_event_interruptible((*(x##_linux)), 0)
   1282  1.1  christos #  else
   1283  1.1  christos #   define	SLEEP(x,s)	0, interruptible_sleep_on(x##_linux)
   1284  1.1  christos #  endif
   1285  1.1  christos #   define	WAKEUP(x,y)	wake_up(x##_linux + y)
   1286  1.1  christos #  define	UIOMOVE(a,b,c,d)	uiomove((caddr_t)a,b,c,d)
   1287  1.1  christos #  define	USE_MUTEXES
   1288  1.1  christos #  define	KRWLOCK_T		rwlock_t
   1289  1.1  christos #  define	KMUTEX_T		spinlock_t
   1290  1.1  christos #  define	MUTEX_INIT(x,y)		spin_lock_init(&(x)->ipf_lk)
   1291  1.1  christos #  define	MUTEX_ENTER(x)		spin_lock_bh(&(x)->ipf_lk)
   1292  1.1  christos #  define	MUTEX_EXIT(x)		spin_unlock_bh(&(x)->ipf_lk)
   1293  1.1  christos #  define	MUTEX_DESTROY(x)	do { } while (0)
   1294  1.1  christos #  define	MUTEX_NUKE(x)		bzero(&(x)->ipf_lk, sizeof((x)->ipf_lk))
   1295  1.1  christos #  define	READ_ENTER(x)		ipf_read_enter(x)
   1296  1.1  christos #  define	WRITE_ENTER(x)		ipf_write_enter(x)
   1297  1.1  christos #  define	RWLOCK_INIT(x,y)	ipf_rw_init(x, y)
   1298  1.1  christos #  define	RW_DESTROY(x)		do { } while (0)
   1299  1.1  christos #  define	RWLOCK_EXIT(x)		ipf_rw_exit(x)
   1300  1.1  christos #  define	MUTEX_DOWNGRADE(x)	ipf_rw_downgrade(x)
   1301  1.1  christos #  define	ATOMIC_INCL(x)		atomic_long_inc((atomic_long_t *)&(x))
   1302  1.1  christos #  define	ATOMIC_DECL(x)		atomic_long_dec((atomic_long_t *)&(x))
   1303  1.1  christos #  define	ATOMIC_INC32(x)		atomic_inc((atomic_t *)&(x))
   1304  1.1  christos #  define	ATOMIC_DEC32(x)		atomic_dec((atomic_t *)&(x))
   1305  1.1  christos #  ifdef CONFIG_X86_32
   1306  1.1  christos #   define	ATOMIC_INC64(x)		do { MUTEX_ENTER(&softc->ipf_rw); \
   1307  1.1  christos 					     (x)++; \
   1308  1.1  christos 					     MUTEX_EXIT(&softc->ipf_rw); \
   1309  1.1  christos 					} while (0)
   1310  1.1  christos #   define	ATOMIC_DEC64(x)		do { MUTEX_ENTER(&softc->ipf_rw); \
   1311  1.1  christos 					     (x)--; \
   1312  1.1  christos 					     MUTEX_EXIT(&softc->ipf_rw); \
   1313  1.1  christos 					} while (0)
   1314  1.1  christos #  else
   1315  1.1  christos #   define	ATOMIC_INC64(x)		atomic64_inc((atomic64_t *)&(x))
   1316  1.1  christos #   define	ATOMIC_DEC64(x)		atomic64_dec((atomic64_t *)&(x))
   1317  1.1  christos #  endif
   1318  1.1  christos #  define	U_QUAD_T		u_int64_t
   1319  1.1  christos #  define	QUAD_T			int64_t
   1320  1.1  christos #  define	SPL_SCHED(x)		do { } while (0)
   1321  1.1  christos #  define	SPL_IMP(x)		do { } while (0)
   1322  1.1  christos #  define	SPL_NET(x)		do { } while (0)
   1323  1.1  christos #  define	SPL_X(x)		do { } while (0)
   1324  1.1  christos #  define	IFNAME(x)		((struct net_device*)x)->name
   1325  1.1  christos typedef	struct	sk_buff	mb_t;
   1326  1.2  christos extern	void	m_copydata(mb_t *, int, int, void *);
   1327  1.2  christos extern	void	m_copyback(mb_t *, int, int, void *);
   1328  1.2  christos extern	void	m_adj(mb_t *, int);
   1329  1.2  christos extern	mb_t	*m_pullup(mb_t *, int);
   1330  1.1  christos #  define	mbuf	sk_buff
   1331  1.1  christos 
   1332  1.1  christos #  define	mtod(m, t)	((t)(m)->data)
   1333  1.1  christos #  define	m_adj(m, x)	skb_trim((m), (m)->len + (x))
   1334  1.1  christos #  define	m_data		data
   1335  1.1  christos #  define	m_len		len
   1336  1.1  christos #  define	m_next		next
   1337  1.1  christos #  define	M_COPY(m)	skb_clone((m), in_interrupt() ? GFP_ATOMIC : \
   1338  1.1  christos 								GFP_KERNEL)
   1339  1.1  christos #  define	MSGDSIZE(m)	(m)->len
   1340  1.1  christos #  define	M_LEN(m)	(m)->len
   1341  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
   1342  1.1  christos #  define	M_DUP(m)	skb_copy((m), in_interrupt() ? GFP_ATOMIC : \
   1343  1.1  christos 								GFP_KERNEL)
   1344  1.1  christos #  define	PREP_MB_T(f, m)	do { \
   1345  1.1  christos 					(m)->next = *(f)->fin_mp; \
   1346  1.1  christos 					*(fin)->fin_mp = (m); \
   1347  1.1  christos 					(f)->fin_m = (m); \
   1348  1.1  christos 				} while (0)
   1349  1.1  christos #  define	ALLOC_MB_T(m,l)	(m) = alloc_skb((l), \
   1350  1.1  christos 						in_interrupt() ? GFP_ATOMIC : \
   1351  1.1  christos 								 GFP_KERNEL)
   1352  1.1  christos 
   1353  1.1  christos #  define	splnet(x)	;
   1354  1.1  christos #  define	printf		printk
   1355  1.1  christos #  define	bcopy(s,d,z)	memmove(d, s, z)
   1356  1.1  christos #  define	bzero(s,z)	memset(s, 0, z)
   1357  1.1  christos #  define	bcmp(a,b,z)	memcmp(a, b, z)
   1358  1.1  christos #  if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
   1359  1.1  christos #   define	ipf_random	random32
   1360  1.1  christos #   define	arc4random	random32
   1361  1.1  christos #  else
   1362  1.1  christos #   include <linux/random.h>
   1363  1.1  christos #   define	ipf_random	get_random_int
   1364  1.1  christos #   define	arc4random	get_random_int
   1365  1.1  christos #  endif
   1366  1.1  christos 
   1367  1.1  christos #  define	ifnet		net_device
   1368  1.1  christos #  define	if_xname	name
   1369  1.1  christos #  define	if_unit		ifindex
   1370  1.1  christos 
   1371  1.1  christos #  define	KMALLOC(x,t)	(x) = (t)kmalloc(sizeof(*(x)), \
   1372  1.1  christos 				    in_interrupt() ? GFP_ATOMIC : GFP_KERNEL)
   1373  1.1  christos #  define	KFREE(x)	kfree(x)
   1374  1.1  christos #  define	KMALLOCS(x,t,s)	(x) = (t)kmalloc((s), \
   1375  1.1  christos 				    in_interrupt() ? GFP_ATOMIC : GFP_KERNEL)
   1376  1.1  christos #  define	KFREES(x,s)	kfree(x)
   1377  1.1  christos 
   1378  1.1  christos #  if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
   1379  1.1  christos #   define	f_uid		f_owner.uid
   1380  1.1  christos #   define	GETIFP(n,v)	dev_get_by_name(&init_net, n)
   1381  1.1  christos #  else
   1382  1.1  christos #   define	GETIFP(n,v)	dev_get_by_name(n)
   1383  1.1  christos #  endif
   1384  1.1  christos #  define	GETIFMTU_4(x)	((struct net_device *)x)->mtu
   1385  1.1  christos #  define	GETIFMTU_6(x)	((struct net_device *)x)->mtu
   1386  1.1  christos 
   1387  1.1  christos # else
   1388  1.1  christos #  include <net/ethernet.h>
   1389  1.1  christos 
   1390  1.1  christos struct mbuf {
   1391  1.1  christos };
   1392  1.1  christos 
   1393  1.1  christos #  ifndef _NET_ROUTE_H
   1394  1.1  christos struct rtentry {
   1395  1.1  christos };
   1396  1.1  christos #  endif
   1397  1.1  christos 
   1398  1.1  christos struct ifnet {
   1399  1.1  christos 	char	if_xname[IFNAMSIZ];
   1400  1.1  christos 	int	if_unit;
   1401  1.2  christos 	int	(* if_output)(struct ifnet *, struct mbuf *, struct sockaddr *, struct rtentry *);
   1402  1.1  christos 	struct	ifaddr	*if_addrlist;
   1403  1.1  christos };
   1404  1.1  christos # define	IFNAME(x)	((struct ifnet *)x)->if_xname
   1405  1.1  christos 
   1406  1.1  christos # endif	/* _KERNEL */
   1407  1.1  christos 
   1408  1.1  christos # define	COPYIFNAME(v, x, b) \
   1409  1.1  christos 				(void) strncpy(b, \
   1410  1.1  christos 					       ((struct ifnet *)x)->if_xname, \
   1411  1.1  christos 					       LIFNAMSIZ)
   1412  1.1  christos 
   1413  1.1  christos # include <linux/fs.h>
   1414  1.1  christos # define	FWRITE	FMODE_WRITE
   1415  1.1  christos # define	FREAD	FMODE_READ
   1416  1.1  christos 
   1417  1.1  christos # define	__USE_MISC	1
   1418  1.1  christos # define	__FAVOR_BSD	1
   1419  1.1  christos 
   1420  1.1  christos typedef	struct uio {
   1421  1.1  christos 	struct iovec	*uio_iov;
   1422  1.1  christos 	void	*uio_file;
   1423  1.1  christos 	char	*uio_buf;
   1424  1.1  christos 	int	uio_iovcnt;
   1425  1.1  christos 	int	uio_offset;
   1426  1.1  christos 	size_t	uio_resid;
   1427  1.1  christos 	int	uio_rw;
   1428  1.1  christos } uio_t;
   1429  1.1  christos 
   1430  1.2  christos extern	int	uiomove(void *, size_t, int, struct uio *);
   1431  1.1  christos 
   1432  1.1  christos # define	UIO_READ	1
   1433  1.1  christos # define	UIO_WRITE	2
   1434  1.1  christos 
   1435  1.1  christos # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)) && !defined(_KERNEL)
   1436  1.1  christos typedef int		fmode_t;
   1437  1.1  christos # endif
   1438  1.1  christos 
   1439  1.1  christos typedef	u_long		ioctlcmd_t;
   1440  1.1  christos typedef	int		minor_t;
   1441  1.1  christos typedef u_int32_t 	u_32_t;
   1442  1.1  christos # define	U_32_T	1
   1443  1.1  christos 
   1444  1.1  christos # define OS_RECOGNISED 1
   1445  1.1  christos 
   1446  1.1  christos #endif
   1447  1.1  christos 
   1448  1.1  christos 
   1449  1.1  christos /* ----------------------------------------------------------------------- */
   1450  1.1  christos /*                                    A I X                                */
   1451  1.1  christos /* ----------------------------------------------------------------------- */
   1452  1.1  christos #if defined(_AIX51)
   1453  1.1  christos # undef		MENTAT
   1454  1.1  christos 
   1455  1.1  christos # include <sys/lock.h>
   1456  1.1  christos # include <sys/sysmacros.h>
   1457  1.1  christos 
   1458  1.1  christos # ifdef _KERNEL
   1459  1.1  christos #  define rw_read_locked(x)		0
   1460  1.1  christos #  include <net/net_globals.h>
   1461  1.1  christos #  include <net/net_malloc.h>
   1462  1.1  christos #  define	KMUTEX_T		simple_lock_t
   1463  1.1  christos #  define	KRWLOCK_T		complex_lock_t
   1464  1.1  christos #  define	USE_MUTEXES		1
   1465  1.1  christos #  define	USE_SPL			1
   1466  1.1  christos #  define	READ_ENTER(x)		lock_read((x)->ipf_lk)
   1467  1.1  christos #  define	WRITE_ENTER(x)		lock_write((x)->ipf_lk)
   1468  1.1  christos #  define	MUTEX_DOWNGRADE(x)	lock_write_to_read((x)->ipf_lk)
   1469  1.1  christos #  define	RWLOCK_INIT(x, y)	lock_alloc(&(x)->ipf_lk, \
   1470  1.1  christos 						   LOCK_ALLOC_PIN, \
   1471  1.1  christos 						   (u_short)y, 0); \
   1472  1.1  christos 					lock_init((x)->ipf_lk, TRUE)
   1473  1.1  christos #  define	RWLOCK_EXIT(x)		lock_done((x)->ipf_lk)
   1474  1.1  christos #  define	RW_DESTROY(x)		lock_free(&(x)->ipf_lk)
   1475  1.1  christos #  define	MUTEX_ENTER(x)		simple_lock((x)->ipf_lk)
   1476  1.1  christos #  define	MUTEX_INIT(x, y)	lock_alloc(&(x)->ipf_lk, \
   1477  1.1  christos 						   LOCK_ALLOC_PIN, \
   1478  1.1  christos 						   (u_short)y, 0); \
   1479  1.1  christos 					simple_lock_init((x)->ipf_lk)
   1480  1.1  christos #  define	MUTEX_DESTROY(x)	lock_free(&(x)->ipf_lk)
   1481  1.1  christos #  define	MUTEX_EXIT(x)		simple_unlock((x)->ipf_lk)
   1482  1.1  christos #  define	MUTEX_NUKE(x)		bzero(&(x)->ipf_lk, sizeof((x)->ipf_lk))
   1483  1.1  christos #   define	ATOMIC_INC64(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
   1484  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1485  1.1  christos #   define	ATOMIC_DEC64(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
   1486  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1487  1.1  christos #   define	ATOMIC_INC32(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
   1488  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1489  1.1  christos #   define	ATOMIC_DEC32(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
   1490  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1491  1.1  christos #   define	ATOMIC_INCL(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
   1492  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1493  1.1  christos #   define	ATOMIC_DECL(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
   1494  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1495  1.1  christos #   define	ATOMIC_INC(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)++; \
   1496  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1497  1.1  christos #   define	ATOMIC_DEC(x)		{ MUTEX_ENTER(&softc->ipf_rw); (x)--; \
   1498  1.1  christos 					  MUTEX_EXIT(&softc->ipf_rw); }
   1499  1.1  christos #  define	SPL_SCHED(x)		x = splsched()
   1500  1.1  christos #  define	SPL_NET(x)		x = splnet()
   1501  1.1  christos #  define	SPL_IMP(x)		x = splimp()
   1502  1.1  christos #  undef	SPL_X
   1503  1.1  christos #  define	SPL_X(x)		splx(x)
   1504  1.2  christos #  define	UIOMOVE(a,b,c,d)	uiomove((void *)a,b,c,d)
   1505  1.2  christos extern void* getifp(char *, int);
   1506  1.1  christos #  define	GETIFP(n, v)		getifp(n, v)
   1507  1.1  christos #  define	GETIFMTU_4(x)		((struct ifnet *)x)->if_mtu
   1508  1.1  christos #  define	GETIFMTU_6(x)		((struct ifnet *)x)->if_mtu
   1509  1.1  christos #  define	GET_MINOR		minor
   1510  1.1  christos #  define	SLEEP(id, n)	sleepx((id), PZERO+1, 0)
   1511  1.1  christos #  define	WAKEUP(id,x)	wakeup(id)
   1512  1.1  christos #  define	POLLWAKEUP(x)	;
   1513  1.1  christos #  define	COPYIN(a,b,c)	copyin((caddr_t)(a), (caddr_t)(b), (c))
   1514  1.1  christos #  define	COPYOUT(a,b,c)	copyout((caddr_t)(a), (caddr_t)(b), (c))
   1515  1.1  christos #  define	KMALLOC(a, b)	MALLOC((a), b, sizeof(*(a)), M_TEMP, M_NOWAIT)
   1516  1.1  christos #  define	KMALLOCS(a, b, c)	MALLOC((a), b, (c), M_TEMP, \
   1517  1.1  christos 					    ((c) > 4096) ? M_WAITOK : M_NOWAIT)
   1518  1.1  christos #  define	KFREE(x)	FREE((x), M_TEMP)
   1519  1.1  christos #  define	KFREES(x,s)	FREE((x), M_TEMP)
   1520  1.3   darrenr #  define	MSGDSIZE(m)	mbufchainlen(m)
   1521  1.3   darrenr #  define	M_LEN(m)	(m)->m_len
   1522  1.1  christos #  define	M_ADJ(m,x)	m_adj(m, x)
   1523  1.3   darrenr #  define	M_COPY(m)	m_copy((m), 0, M_COPYALL)
   1524  1.1  christos #  define	GETKTIME(x)
   1525  1.1  christos #  define	IPF_PANIC(x,y)
   1526  1.1  christos typedef struct mbuf mb_t;
   1527  1.1  christos # endif /* _KERNEL */
   1528  1.1  christos 
   1529  1.1  christos /*
   1530  1.1  christos  * These are from's Solaris' #defines for little endian.
   1531  1.1  christos  */
   1532  1.1  christos #if !defined(IP6F_MORE_FRAG)
   1533  1.1  christos # define	IP6F_MORE_FRAG		0x0100
   1534  1.1  christos #endif
   1535  1.1  christos #if !defined(IP6F_RESERVED_MASK)
   1536  1.1  christos # define	IP6F_RESERVED_MASK	0x0600
   1537  1.1  christos #endif
   1538  1.1  christos #if !defined(IP6F_OFF_MASK)
   1539  1.1  christos # define	IP6F_OFF_MASK		0xf8ff
   1540  1.1  christos #endif
   1541  1.1  christos 
   1542  1.1  christos struct ip6_ext {
   1543  1.1  christos 	u_char	ip6e_nxt;
   1544  1.1  christos 	u_char	ip6e_len;
   1545  1.1  christos };
   1546  1.1  christos 
   1547  1.1  christos typedef	int		ioctlcmd_t;
   1548  1.1  christos typedef	int		minor_t;
   1549  1.1  christos /*
   1550  1.1  christos  * Really, any arch where sizeof(long) != sizeof(int).
   1551  1.1  christos  */
   1552  1.1  christos typedef unsigned int    u_32_t;
   1553  1.1  christos # define	U_32_T	1
   1554  1.1  christos 
   1555  1.1  christos # define OS_RECOGNISED 1
   1556  1.1  christos #endif	/* _AIX51 */
   1557  1.1  christos 
   1558  1.1  christos 
   1559  1.1  christos #ifndef	OS_RECOGNISED
   1560  1.1  christos #error	ip_compat.h does not recognise this platform/OS.
   1561  1.1  christos #endif
   1562  1.1  christos 
   1563  1.1  christos 
   1564  1.1  christos /* ----------------------------------------------------------------------- */
   1565  1.1  christos /*                           G E N E R I C                                 */
   1566  1.1  christos /* ----------------------------------------------------------------------- */
   1567  1.1  christos #ifndef OS_RECOGNISED
   1568  1.1  christos #endif
   1569  1.1  christos 
   1570  1.1  christos /*
   1571  1.1  christos  * For BSD kernels, if bpf is in the kernel, enable ipfilter to use bpf in
   1572  1.1  christos  * filter rules.
   1573  1.1  christos  */
   1574  1.1  christos #if !defined(IPFILTER_BPF)
   1575  1.1  christos # if (defined(NBPF) && (NBPF > 0)) || (defined(DEV_BPF) && (DEV_BPF > 0)) || \
   1576  1.1  christos      (defined(NBPFILTER) && (NBPFILTER > 0))
   1577  1.1  christos #  define	IPFILTER_BPF
   1578  1.1  christos # endif
   1579  1.1  christos #endif
   1580  1.1  christos 
   1581  1.1  christos /*
   1582  1.1  christos  * Userland locking primitives
   1583  1.1  christos  */
   1584  1.3   darrenr #if !defined(KMUTEX_FILL_SZ)
   1585  1.3   darrenr # define	KMUTEX_FILL_SZ	1
   1586  1.3   darrenr #endif
   1587  1.3   darrenr #if !defined(KRWLOCK_FILL_SZ)
   1588  1.3   darrenr # define	KRWLOCK_FILL_SZ	1
   1589  1.3   darrenr #endif
   1590  1.3   darrenr 
   1591  1.1  christos typedef	struct	{
   1592  1.1  christos 	char	*eMm_owner;
   1593  1.1  christos 	char	*eMm_heldin;
   1594  1.1  christos 	u_int	eMm_magic;
   1595  1.1  christos 	int	eMm_held;
   1596  1.1  christos 	int	eMm_heldat;
   1597  1.1  christos } eMmutex_t;
   1598  1.1  christos 
   1599  1.1  christos typedef	struct	{
   1600  1.1  christos 	char	*eMrw_owner;
   1601  1.1  christos 	char	*eMrw_heldin;
   1602  1.1  christos 	u_int	eMrw_magic;
   1603  1.1  christos 	short	eMrw_read;
   1604  1.1  christos 	short	eMrw_write;
   1605  1.1  christos 	int	eMrw_heldat;
   1606  1.1  christos } eMrwlock_t;
   1607  1.1  christos 
   1608  1.1  christos typedef union {
   1609  1.3   darrenr 	char	_fill[KMUTEX_FILL_SZ];
   1610  1.1  christos #ifdef KMUTEX_T
   1611  1.1  christos 	struct	{
   1612  1.1  christos 		KMUTEX_T	ipf_slk;
   1613  1.1  christos 		const char	*ipf_lname;
   1614  1.1  christos 	} ipf_lkun_s;
   1615  1.1  christos #endif
   1616  1.1  christos 	eMmutex_t	ipf_emu;
   1617  1.1  christos } ipfmutex_t;
   1618  1.1  christos 
   1619  1.1  christos typedef union {
   1620  1.3   darrenr 	char	_fill[KRWLOCK_FILL_SZ];
   1621  1.1  christos #ifdef KRWLOCK_T
   1622  1.1  christos 	struct	{
   1623  1.1  christos 		KRWLOCK_T	ipf_slk;
   1624  1.1  christos 		const char	*ipf_lname;
   1625  1.1  christos 		int		ipf_sr;
   1626  1.1  christos 		int		ipf_sw;
   1627  1.1  christos 		u_int		ipf_magic;
   1628  1.1  christos 	} ipf_lkun_s;
   1629  1.1  christos #endif
   1630  1.1  christos 	eMrwlock_t	ipf_emu;
   1631  1.1  christos } ipfrwlock_t;
   1632  1.1  christos 
   1633  1.1  christos #define	ipf_lk		ipf_lkun_s.ipf_slk
   1634  1.1  christos #define	ipf_lname	ipf_lkun_s.ipf_lname
   1635  1.1  christos #define	ipf_isr		ipf_lkun_s.ipf_sr
   1636  1.1  christos #define	ipf_isw		ipf_lkun_s.ipf_sw
   1637  1.1  christos #define	ipf_magic	ipf_lkun_s.ipf_magic
   1638  1.1  christos 
   1639  1.1  christos #if !defined(__GNUC__) || \
   1640  1.1  christos     (defined(__FreeBSD_version) && (__FreeBSD_version >= 503000))
   1641  1.1  christos # ifndef	INLINE
   1642  1.1  christos #  define	INLINE
   1643  1.1  christos # endif
   1644  1.1  christos #else
   1645  1.1  christos # define	INLINE	__inline__
   1646  1.1  christos #endif
   1647  1.1  christos 
   1648  1.2  christos #ifndef EXTERN_INLINE
   1649  1.2  christos # if defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__)
   1650  1.2  christos #  define	EXTERN_INLINE	inline
   1651  1.2  christos # else
   1652  1.2  christos #  define	EXTERN_INLINE	extern inline
   1653  1.2  christos # endif
   1654  1.2  christos #endif
   1655  1.2  christos 
   1656  1.1  christos #if defined(linux) && defined(_KERNEL)
   1657  1.2  christos extern	void	ipf_read_enter(ipfrwlock_t *);
   1658  1.2  christos extern	void	ipf_write_enter(ipfrwlock_t *);
   1659  1.2  christos extern	void	ipf_rw_exit(ipfrwlock_t *);
   1660  1.2  christos extern	void	ipf_rw_init(ipfrwlock_t *, char *);
   1661  1.2  christos extern	void	ipf_rw_downgrade(ipfrwlock_t *);
   1662  1.1  christos #endif
   1663  1.1  christos 
   1664  1.1  christos /*
   1665  1.1  christos  * In a non-kernel environment, there are a lot of macros that need to be
   1666  1.1  christos  * filled in to be null-ops or to point to some compatibility function,
   1667  1.1  christos  * somewhere in userland.
   1668  1.1  christos  */
   1669  1.1  christos #ifndef _KERNEL
   1670  1.1  christos typedef	struct	mb_s	{
   1671  1.1  christos 	struct	mb_s	*mb_next;
   1672  1.1  christos 	char		*mb_data;
   1673  1.1  christos 	void		*mb_ifp;
   1674  1.1  christos 	int		mb_len;
   1675  1.1  christos 	int		mb_flags;
   1676  1.1  christos 	u_long		mb_buf[2048];
   1677  1.1  christos } mb_t;
   1678  1.1  christos # undef		m_next
   1679  1.1  christos # define	m_next		mb_next
   1680  1.1  christos # undef		m_len
   1681  1.1  christos # define	m_len		mb_len
   1682  1.1  christos # undef		m_flags
   1683  1.1  christos # define	m_flags		mb_flags
   1684  1.1  christos # undef		m_data
   1685  1.1  christos # define	m_data		mb_data
   1686  1.1  christos # undef		M_MCAST
   1687  1.1  christos # define	M_MCAST		0x01
   1688  1.1  christos # undef		M_BCAST
   1689  1.1  christos # define	M_BCAST		0x02
   1690  1.1  christos # undef		M_MBCAST
   1691  1.1  christos # define	M_MBCAST	0x04
   1692  1.3   darrenr # define	MSGDSIZE(m)	msgdsize(m)
   1693  1.3   darrenr # define	M_LEN(m)	(m)->mb_len
   1694  1.3   darrenr # define	M_ADJ(m,x)	(m)->mb_len += x
   1695  1.3   darrenr # define	M_COPY(m)	dupmbt(m)
   1696  1.3   darrenr # define	M_DUP(m)	dupmbt(m)
   1697  1.1  christos # define	GETKTIME(x)	gettimeofday((struct timeval *)(x), NULL)
   1698  1.1  christos # define	MTOD(m, t)	((t)(m)->mb_data)
   1699  1.3   darrenr # define	FREE_MB_T(m)	freembt(m)
   1700  1.1  christos # define	ALLOC_MB_T(m,l)	(m) = allocmbt(l)
   1701  1.1  christos # define	PREP_MB_T(f, m)	do { \
   1702  1.1  christos 						(m)->mb_next = *(f)->fin_mp; \
   1703  1.1  christos 						*(fin)->fin_mp = (m); \
   1704  1.1  christos 						(f)->fin_m = (m); \
   1705  1.1  christos 					} while (0)
   1706  1.1  christos # define	SLEEP(x,y)	1;
   1707  1.1  christos # define	WAKEUP(x,y)	;
   1708  1.1  christos # define	POLLWAKEUP(y)	;
   1709  1.1  christos # define	IPF_PANIC(x,y)	;
   1710  1.1  christos # define	PANIC(x,y)	;
   1711  1.1  christos # define	SPL_SCHED(x)	;
   1712  1.1  christos # define	SPL_NET(x)	;
   1713  1.1  christos # define	SPL_IMP(x)	;
   1714  1.1  christos # define	SPL_X(x)	;
   1715  1.1  christos # define	KMALLOC(a,b)	(a) = (b)malloc(sizeof(*a))
   1716  1.1  christos # define	KMALLOCS(a,b,c)	(a) = (b)malloc(c)
   1717  1.1  christos # define	KFREE(x)	free(x)
   1718  1.1  christos # define	KFREES(x,s)	free(x)
   1719  1.1  christos # define	GETIFP(x, v)	get_unit(x,v)
   1720  1.1  christos # define	GETIFMTU_4(x)	2048
   1721  1.1  christos # define	GETIFMTU_6(x)	2048
   1722  1.1  christos # define	COPYIN(a,b,c)	bcopywrap((a), (b), (c))
   1723  1.1  christos # define	COPYOUT(a,b,c)	bcopywrap((a), (b), (c))
   1724  1.1  christos # define	COPYDATA(m, o, l, b)	bcopy(MTOD((mb_t *)m, char *) + (o), \
   1725  1.1  christos 					      (b), (l))
   1726  1.1  christos # define	COPYBACK(m, o, l, b)	bcopy((b), \
   1727  1.1  christos 					      MTOD((mb_t *)m, char *) + (o), \
   1728  1.1  christos 					      (l))
   1729  1.2  christos # define	UIOMOVE(a,b,c,d)	ipfuiomove(a,b,c,d)
   1730  1.2  christos extern	void	m_copydata(mb_t *, int, int, void *);
   1731  1.2  christos extern	int	ipfuiomove(void *, int, int, struct uio *);
   1732  1.2  christos extern	int	bcopywrap(void *, void *, size_t);
   1733  1.2  christos extern	mb_t	*allocmbt(size_t);
   1734  1.2  christos extern	mb_t	*dupmbt(mb_t *);
   1735  1.2  christos extern	void	freembt(mb_t *);
   1736  1.1  christos 
   1737  1.1  christos # define	MUTEX_DESTROY(x)	eMmutex_destroy(&(x)->ipf_emu, \
   1738  1.1  christos 							__FILE__, __LINE__)
   1739  1.1  christos # define	MUTEX_ENTER(x)		eMmutex_enter(&(x)->ipf_emu, \
   1740  1.1  christos 						      __FILE__, __LINE__)
   1741  1.1  christos # define	MUTEX_EXIT(x)		eMmutex_exit(&(x)->ipf_emu, \
   1742  1.1  christos 						     __FILE__, __LINE__)
   1743  1.1  christos # define	MUTEX_INIT(x,y)		eMmutex_init(&(x)->ipf_emu, y, \
   1744  1.1  christos 						     __FILE__, __LINE__)
   1745  1.1  christos # define	MUTEX_NUKE(x)		bzero((x), sizeof(*(x)))
   1746  1.1  christos 
   1747  1.1  christos # define	MUTEX_DOWNGRADE(x)	eMrwlock_downgrade(&(x)->ipf_emu, \
   1748  1.1  christos 							   __FILE__, __LINE__)
   1749  1.1  christos # define	READ_ENTER(x)		eMrwlock_read_enter(&(x)->ipf_emu, \
   1750  1.1  christos 							    __FILE__, __LINE__)
   1751  1.1  christos # define	RWLOCK_INIT(x, y)	eMrwlock_init(&(x)->ipf_emu, y)
   1752  1.1  christos # define	RWLOCK_EXIT(x)		eMrwlock_exit(&(x)->ipf_emu)
   1753  1.1  christos # define	RW_DESTROY(x)		eMrwlock_destroy(&(x)->ipf_emu)
   1754  1.1  christos # define	WRITE_ENTER(x)		eMrwlock_write_enter(&(x)->ipf_emu, \
   1755  1.1  christos 							     __FILE__, \
   1756  1.1  christos 							     __LINE__)
   1757  1.1  christos 
   1758  1.1  christos # define	USE_MUTEXES		1
   1759  1.1  christos 
   1760  1.2  christos extern void eMmutex_destroy(eMmutex_t *, char *, int);
   1761  1.2  christos extern void eMmutex_enter(eMmutex_t *, char *, int);
   1762  1.2  christos extern void eMmutex_exit(eMmutex_t *, char *, int);
   1763  1.2  christos extern void eMmutex_init(eMmutex_t *, char *, char *, int);
   1764  1.2  christos extern void eMrwlock_destroy(eMrwlock_t *);
   1765  1.2  christos extern void eMrwlock_exit(eMrwlock_t *);
   1766  1.2  christos extern void eMrwlock_init(eMrwlock_t *, char *);
   1767  1.2  christos extern void eMrwlock_read_enter(eMrwlock_t *, char *, int);
   1768  1.2  christos extern void eMrwlock_write_enter(eMrwlock_t *, char *, int);
   1769  1.2  christos extern void eMrwlock_downgrade(eMrwlock_t *, char *, int);
   1770  1.1  christos 
   1771  1.1  christos #endif
   1772  1.1  christos 
   1773  1.1  christos extern	mb_t	*allocmbt(size_t);
   1774  1.1  christos 
   1775  1.1  christos #define	MAX_IPV4HDR	((0xf << 2) + sizeof(struct icmp) + sizeof(ip_t) + 8)
   1776  1.1  christos 
   1777  1.1  christos #ifndef	IP_OFFMASK
   1778  1.1  christos # define	IP_OFFMASK	0x1fff
   1779  1.1  christos #endif
   1780  1.1  christos 
   1781  1.1  christos 
   1782  1.1  christos /*
   1783  1.1  christos  * On BSD's use quad_t as a guarantee for getting at least a 64bit sized
   1784  1.1  christos  * object.
   1785  1.1  christos  */
   1786  1.1  christos #if !defined(__amd64__) && BSD_GT_YEAR(199306)
   1787  1.1  christos # define	USE_QUAD_T
   1788  1.1  christos # define	U_QUAD_T	u_quad_t
   1789  1.1  christos # define	QUAD_T		quad_t
   1790  1.1  christos #else /* BSD > 199306 */
   1791  1.1  christos # if !defined(U_QUAD_T)
   1792  1.1  christos #  define	U_QUAD_T	u_long
   1793  1.1  christos #  define	QUAD_T		long
   1794  1.1  christos # endif
   1795  1.1  christos #endif /* BSD > 199306 */
   1796  1.1  christos 
   1797  1.1  christos 
   1798  1.1  christos #ifdef	USE_INET6
   1799  1.1  christos # if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) || \
   1800  1.1  christos      defined(__osf__) || defined(linux)
   1801  1.1  christos #  include <netinet/ip6.h>
   1802  1.1  christos #  include <netinet/icmp6.h>
   1803  1.1  christos #  if !defined(linux)
   1804  1.1  christos #   if defined(_KERNEL) && !defined(__osf__)
   1805  1.1  christos #    include <netinet6/ip6_var.h>
   1806  1.1  christos #   endif
   1807  1.1  christos #  endif
   1808  1.1  christos typedef	struct ip6_hdr	ip6_t;
   1809  1.1  christos # endif
   1810  1.1  christos #endif
   1811  1.1  christos 
   1812  1.1  christos #ifndef	MAX
   1813  1.1  christos # define	MAX(a,b)	(((a) > (b)) ? (a) : (b))
   1814  1.1  christos #endif
   1815  1.1  christos 
   1816  1.1  christos #if defined(_KERNEL)
   1817  1.1  christos # if defined(MENTAT) && !defined(INSTANCES)
   1818  1.1  christos #  define	COPYDATA	mb_copydata
   1819  1.1  christos #  define	COPYBACK	mb_copyback
   1820  1.1  christos # else
   1821  1.1  christos #  define	COPYDATA	m_copydata
   1822  1.1  christos #  define	COPYBACK	m_copyback
   1823  1.1  christos # endif
   1824  1.1  christos # if BSD_GE_YEAR(199306) || defined(__FreeBSD__)
   1825  1.1  christos #  if (defined(__NetBSD_Version__) && (__NetBSD_Version__ < 105180000)) || \
   1826  1.1  christos        defined(__FreeBSD__) || (defined(OpenBSD) && (OpenBSD < 200206)) || \
   1827  1.1  christos        defined(_BSDI_VERSION)
   1828  1.1  christos #   include <vm/vm.h>
   1829  1.1  christos #  endif
   1830  1.1  christos #  if !defined(__FreeBSD__) || FREEBSD_GE_REV(300000)
   1831  1.1  christos #   if NETBSD_GE_REV(105180000) || OPENBSD_GE_REV(200111)
   1832  1.2  christos /* #    include <uvm/uvm_extern.h> */
   1833  1.1  christos #   else
   1834  1.1  christos #    include <vm/vm_extern.h>
   1835  1.1  christos extern  vm_map_t        kmem_map;
   1836  1.1  christos #   endif
   1837  1.1  christos #   include <sys/proc.h>
   1838  1.1  christos #  else /* !__FreeBSD__ || (__FreeBSD__ && __FreeBSD_version >= 300000) */
   1839  1.1  christos #   include <vm/vm_kern.h>
   1840  1.1  christos #  endif /* !__FreeBSD__ || (__FreeBSD__ && __FreeBSD_version >= 300000) */
   1841  1.1  christos 
   1842  1.1  christos #  ifdef IPFILTER_M_IPFILTER
   1843  1.1  christos #    include <sys/malloc.h>
   1844  1.1  christos MALLOC_DECLARE(M_IPFILTER);
   1845  1.1  christos #    define	_M_IPF		M_IPFILTER
   1846  1.1  christos #  else /* IPFILTER_M_IPFILTER */
   1847  1.1  christos #   ifdef M_PFIL
   1848  1.1  christos #    define	_M_IPF		M_PFIL
   1849  1.1  christos #   else
   1850  1.1  christos #    ifdef M_IPFILTER
   1851  1.1  christos #     define	_M_IPF		M_IPFILTER
   1852  1.1  christos #    else
   1853  1.1  christos #     define	_M_IPF		M_TEMP
   1854  1.1  christos #    endif /* M_IPFILTER */
   1855  1.1  christos #   endif /* M_PFIL */
   1856  1.1  christos #  endif /* IPFILTER_M_IPFILTER */
   1857  1.1  christos #  if !defined(KMALLOC)
   1858  1.2  christos #   define	KMALLOC(a, b)	(a) = (b)malloc(sizeof(*(a)), _M_IPF, M_NOWAIT)
   1859  1.1  christos #  endif
   1860  1.1  christos #  if !defined(KMALLOCS)
   1861  1.2  christos #   define	KMALLOCS(a, b, c)	(a) = (b)malloc((c), _M_IPF, M_NOWAIT)
   1862  1.1  christos #  endif
   1863  1.1  christos #  if !defined(KFREE)
   1864  1.2  christos #   define	KFREE(x)	free((x), _M_IPF)
   1865  1.1  christos #  endif
   1866  1.2  christos #  if !defined(KFREES)
   1867  1.2  christos #   define	KFREES(x,s)	free((x), _M_IPF)
   1868  1.1  christos #  endif
   1869  1.2  christos #  define	UIOMOVE(a,b,c,d)	uiomove((void *)a,b,d)
   1870  1.1  christos #  define	SLEEP(id, n)	tsleep((id), PPAUSE|PCATCH, n, 0)
   1871  1.1  christos #  define	WAKEUP(id,x)	wakeup(id+x)
   1872  1.1  christos #  if !defined(POLLWAKEUP)
   1873  1.1  christos #   define	POLLWAKEUP(x)	selwakeup(softc->ipf_selwait+x)
   1874  1.1  christos #  endif
   1875  1.1  christos #  define	GETIFP(n, v)	ifunit(n)
   1876  1.1  christos #  define	GETIFMTU_4(x)	((struct ifnet *)x)->if_mtu
   1877  1.1  christos #  define	GETIFMTU_6(x)	((struct ifnet *)x)->if_mtu
   1878  1.1  christos # endif /* (Free)BSD */
   1879  1.1  christos 
   1880  1.1  christos # if !defined(USE_MUTEXES) && !defined(SPL_NET)
   1881  1.1  christos #  if (defined(NetBSD) && (NetBSD <= 1991011) && (NetBSD >= 199407)) || \
   1882  1.1  christos       OPENBSD_GE_REV(200006)
   1883  1.1  christos #   define	SPL_NET(x)	x = splsoftnet()
   1884  1.1  christos #  else
   1885  1.1  christos #   define	SPL_IMP(x)	x = splimp()
   1886  1.1  christos #   define	SPL_NET(x)	x = splnet()
   1887  1.1  christos #  endif /* NetBSD && (NetBSD <= 1991011) && (NetBSD >= 199407) */
   1888  1.1  christos #  if !defined(SPL_SCHED)
   1889  1.1  christos #   define	SPL_SCHED(x)	x = splsched()
   1890  1.1  christos #  endif
   1891  1.1  christos #  define	SPL_X(x)	(void) splx(x)
   1892  1.1  christos # endif /* !USE_MUTEXES */
   1893  1.1  christos 
   1894  1.1  christos # ifndef FREE_MB_T
   1895  1.1  christos #  define	FREE_MB_T(m)	m_freem(m)
   1896  1.1  christos # endif
   1897  1.1  christos # ifndef ALLOC_MB_T
   1898  1.1  christos #  ifdef MGETHDR
   1899  1.1  christos #   define	ALLOC_MB_T(m,l)	do { \
   1900  1.1  christos 					MGETHDR((m), M_DONTWAIT, MT_HEADER); \
   1901  1.1  christos 					if ((m) != NULL) { \
   1902  1.1  christos 						(m)->m_len = (l); \
   1903  1.1  christos 						(m)->m_pkthdr.len = (l); \
   1904  1.1  christos 					} \
   1905  1.1  christos 				} while (0)
   1906  1.1  christos #  else
   1907  1.1  christos #   define	ALLOC_MB_T(m,l)	do { \
   1908  1.1  christos 					MGET((m), M_DONTWAIT, MT_HEADER); \
   1909  1.1  christos 					if ((m) != NULL) { \
   1910  1.1  christos 						(m)->m_len = (l); \
   1911  1.1  christos 						(m)->m_pkthdr.len = (l); \
   1912  1.1  christos 					} \
   1913  1.1  christos 				} while (0)
   1914  1.1  christos #  endif
   1915  1.1  christos # endif
   1916  1.1  christos # ifndef PREP_MB_T
   1917  1.1  christos #  define	PREP_MB_T(f, m)	do { \
   1918  1.1  christos 						mb_t *_o = *(f)->fin_mp; \
   1919  1.1  christos 						(m)->m_next = _o; \
   1920  1.1  christos 						*(fin)->fin_mp = (m); \
   1921  1.1  christos 						if (_o->m_flags & M_PKTHDR) { \
   1922  1.1  christos 							(m)->m_pkthdr.len += \
   1923  1.1  christos 							    _o->m_pkthdr.len; \
   1924  1.1  christos 							(m)->m_pkthdr.rcvif = \
   1925  1.1  christos 							  _o->m_pkthdr.rcvif; \
   1926  1.1  christos 						} \
   1927  1.1  christos 					} while (0)
   1928  1.1  christos # endif
   1929  1.1  christos # ifndef M_DUP
   1930  1.1  christos #  ifdef M_COPYALL
   1931  1.1  christos #   define	M_DUP(m)	m_dup(m, 0, M_COPYALL, 0)
   1932  1.1  christos #  else
   1933  1.1  christos #   define	M_DUP(m)	m_dup(m)
   1934  1.1  christos #  endif
   1935  1.1  christos # endif
   1936  1.1  christos 
   1937  1.1  christos # ifndef MTOD
   1938  1.1  christos #  define	MTOD(m,t)	mtod(m,t)
   1939  1.1  christos # endif
   1940  1.1  christos 
   1941  1.1  christos # ifndef COPYIN
   1942  1.1  christos #  define	COPYIN(a,b,c)	(bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
   1943  1.1  christos #  define	COPYOUT(a,b,c)	(bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
   1944  1.1  christos # endif
   1945  1.1  christos 
   1946  1.1  christos # ifndef KMALLOC
   1947  1.1  christos #  define	KMALLOC(a,b)	(a) = (b)new_kmem_alloc(sizeof(*(a)), \
   1948  1.1  christos 							KMEM_NOSLEEP)
   1949  1.1  christos #  define	KMALLOCS(a,b,c)	(a) = (b)new_kmem_alloc((c), KMEM_NOSLEEP)
   1950  1.1  christos # endif
   1951  1.1  christos 
   1952  1.1  christos # ifndef	GET_MINOR
   1953  1.1  christos #  define	GET_MINOR(x)	minor(x)
   1954  1.1  christos # endif
   1955  1.1  christos # define	PANIC(x,y)	if (x) panic y
   1956  1.1  christos #endif /* _KERNEL */
   1957  1.1  christos 
   1958  1.1  christos #if !defined(IFNAME) && !defined(_KERNEL)
   1959  1.1  christos # define	IFNAME(x)	get_ifname((struct ifnet *)x)
   1960  1.1  christos #endif
   1961  1.1  christos #ifndef	COPYIFNAME
   1962  1.1  christos # define	NEED_FRGETIFNAME
   1963  1.2  christos extern	char	*ipf_getifname(struct ifnet *, char *);
   1964  1.1  christos # define	COPYIFNAME(v, x, b) \
   1965  1.1  christos 				ipf_getifname((struct ifnet *)x, b)
   1966  1.1  christos #endif
   1967  1.1  christos 
   1968  1.1  christos #ifndef ASSERT
   1969  1.1  christos # ifdef _KERNEL
   1970  1.1  christos #  define	ASSERT(x)
   1971  1.1  christos # else
   1972  1.1  christos #  define	ASSERT(x)	do { if (!(x)) abort(); } while (0)
   1973  1.1  christos # endif
   1974  1.1  christos #endif
   1975  1.1  christos 
   1976  1.1  christos #ifndef BCOPYIN
   1977  1.1  christos #  define	BCOPYIN(a,b,c)	(bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
   1978  1.1  christos #  define	BCOPYOUT(a,b,c)	(bcopy((caddr_t)(a), (caddr_t)(b), (c)), 0)
   1979  1.1  christos #endif
   1980  1.1  christos 
   1981  1.1  christos /*
   1982  1.1  christos  * Because the ctype(3) posix definition, if used "safely" in code everywhere,
   1983  1.1  christos  * would mean all normal code that walks through strings needed casts.  Yuck.
   1984  1.1  christos  */
   1985  1.1  christos #define	ISALNUM(x)	isalnum((u_char)(x))
   1986  1.1  christos #define	ISALPHA(x)	isalpha((u_char)(x))
   1987  1.1  christos #define	ISDIGIT(x)	isdigit((u_char)(x))
   1988  1.1  christos #define	ISSPACE(x)	isspace((u_char)(x))
   1989  1.1  christos #define	ISUPPER(x)	isupper((u_char)(x))
   1990  1.1  christos #define	ISXDIGIT(x)	isxdigit((u_char)(x))
   1991  1.1  christos #define	ISLOWER(x)	islower((u_char)(x))
   1992  1.1  christos #define	TOUPPER(x)	toupper((u_char)(x))
   1993  1.1  christos #define	TOLOWER(x)	tolower((u_char)(x))
   1994  1.1  christos 
   1995  1.1  christos /*
   1996  1.1  christos  * If mutexes aren't being used, turn all the mutex functions into null-ops.
   1997  1.1  christos  */
   1998  1.1  christos #if !defined(USE_MUTEXES)
   1999  1.1  christos # define	USE_SPL			1
   2000  1.1  christos # undef		RW_DESTROY
   2001  1.1  christos # undef		MUTEX_INIT
   2002  1.1  christos # undef		MUTEX_NUKE
   2003  1.1  christos # undef		MUTEX_DESTROY
   2004  1.1  christos # define	MUTEX_ENTER(x)		;
   2005  1.1  christos # define	READ_ENTER(x)		;
   2006  1.1  christos # define	WRITE_ENTER(x)		;
   2007  1.1  christos # define	MUTEX_DOWNGRADE(x)	;
   2008  1.1  christos # define	RWLOCK_INIT(x, y)	;
   2009  1.1  christos # define	RWLOCK_EXIT(x)		;
   2010  1.1  christos # define	RW_DESTROY(x)		;
   2011  1.1  christos # define	MUTEX_EXIT(x)		;
   2012  1.1  christos # define	MUTEX_INIT(x,y)		;
   2013  1.1  christos # define	MUTEX_DESTROY(x)	;
   2014  1.1  christos # define	MUTEX_NUKE(x)		;
   2015  1.1  christos #endif /* !USE_MUTEXES */
   2016  1.1  christos #ifndef	ATOMIC_INC
   2017  1.1  christos # define	ATOMIC_INC(x)		(x)++
   2018  1.1  christos # define	ATOMIC_DEC(x)		(x)--
   2019  1.1  christos #endif
   2020  1.1  christos 
   2021  1.1  christos #if defined(USE_SPL) && defined(_KERNEL)
   2022  1.1  christos # define	SPL_INT(x)	int x
   2023  1.1  christos #else
   2024  1.1  christos # define	SPL_INT(x)
   2025  1.1  christos #endif
   2026  1.1  christos 
   2027  1.1  christos /*
   2028  1.1  christos  * If there are no atomic operations for bit sizes defined, define them to all
   2029  1.1  christos  * use a generic one that works for all sizes.
   2030  1.1  christos  */
   2031  1.1  christos #ifndef	ATOMIC_INCL
   2032  1.1  christos # define	ATOMIC_INCL		ATOMIC_INC
   2033  1.1  christos # define	ATOMIC_INC64		ATOMIC_INC
   2034  1.1  christos # define	ATOMIC_INC32		ATOMIC_INC
   2035  1.1  christos # define	ATOMIC_DECL		ATOMIC_DEC
   2036  1.1  christos # define	ATOMIC_DEC64		ATOMIC_DEC
   2037  1.1  christos # define	ATOMIC_DEC32		ATOMIC_DEC
   2038  1.1  christos #endif
   2039  1.1  christos 
   2040  1.1  christos #ifndef HDR_T_PRIVATE
   2041  1.1  christos typedef	struct	tcphdr	tcphdr_t;
   2042  1.1  christos typedef	struct	udphdr	udphdr_t;
   2043  1.1  christos #endif
   2044  1.1  christos typedef	struct	icmp	icmphdr_t;
   2045  1.1  christos typedef	struct	ip	ip_t;
   2046  1.1  christos typedef	struct	ether_header	ether_header_t;
   2047  1.1  christos typedef	struct	tcpiphdr	tcpiphdr_t;
   2048  1.1  christos 
   2049  1.1  christos #ifndef	FR_GROUPLEN
   2050  1.1  christos # define	FR_GROUPLEN	16
   2051  1.1  christos #endif
   2052  1.1  christos 
   2053  1.1  christos #ifndef offsetof
   2054  1.1  christos # define offsetof(t,m) (size_t)((&((t *)0L)->m))
   2055  1.1  christos #endif
   2056  1.1  christos #ifndef stsizeof
   2057  1.1  christos # define stsizeof(t,m)	sizeof(((t *)0L)->m)
   2058  1.1  christos #endif
   2059  1.1  christos 
   2060  1.1  christos /*
   2061  1.1  christos  * This set of macros has been brought about because on Tru64 it is not
   2062  1.1  christos  * possible to easily assign or examine values in a structure that are
   2063  1.1  christos  * bit fields.
   2064  1.1  christos  */
   2065  1.1  christos #ifndef IP_V
   2066  1.1  christos # define	IP_V(x)		(x)->ip_v
   2067  1.1  christos #endif
   2068  1.1  christos #ifndef	IP_V_A
   2069  1.1  christos # define	IP_V_A(x,y)	(x)->ip_v = (y)
   2070  1.1  christos #endif
   2071  1.1  christos #ifndef	IP_HL
   2072  1.1  christos # define	IP_HL(x)	(x)->ip_hl
   2073  1.1  christos #endif
   2074  1.1  christos #ifndef	IP_HL_A
   2075  1.1  christos # define	IP_HL_A(x,y)	(x)->ip_hl = ((y) & 0xf)
   2076  1.1  christos #endif
   2077  1.1  christos #ifndef	TCP_X2
   2078  1.1  christos # define	TCP_X2(x)	(x)->th_x2
   2079  1.1  christos #endif
   2080  1.1  christos #ifndef	TCP_X2_A
   2081  1.1  christos # define	TCP_X2_A(x,y)	(x)->th_x2 = (y)
   2082  1.1  christos #endif
   2083  1.1  christos #ifndef	TCP_OFF
   2084  1.1  christos # define	TCP_OFF(x)	(x)->th_off
   2085  1.1  christos #endif
   2086  1.1  christos #ifndef	TCP_OFF_A
   2087  1.1  christos # define	TCP_OFF_A(x,y)	(x)->th_off = (y)
   2088  1.1  christos #endif
   2089  1.1  christos #define	IPMINLEN(i, h)	((i)->ip_len >= (IP_HL(i) * 4 + sizeof(struct h)))
   2090  1.1  christos 
   2091  1.1  christos 
   2092  1.1  christos /*
   2093  1.1  christos  * XXX - This is one of those *awful* hacks which nobody likes
   2094  1.1  christos  */
   2095  1.1  christos #ifdef	ultrix
   2096  1.1  christos #define	A_A
   2097  1.1  christos #else
   2098  1.1  christos #define	A_A	&
   2099  1.1  christos #endif
   2100  1.1  christos 
   2101  1.1  christos #define	TCPF_ALL	(TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
   2102  1.1  christos 			 TH_ECN|TH_CWR)
   2103  1.1  christos 
   2104  1.1  christos #if BSD_GE_YEAR(199306) && !defined(m_act)
   2105  1.1  christos # define	m_act	m_nextpkt
   2106  1.1  christos #endif
   2107  1.1  christos 
   2108  1.1  christos /*
   2109  1.1  christos  * Security Options for Intenet Protocol (IPSO) as defined in RFC 1108.
   2110  1.1  christos  *
   2111  1.1  christos  * Basic Option
   2112  1.1  christos  *
   2113  1.1  christos  * 00000001   -   (Reserved 4)
   2114  1.1  christos  * 00111101   -   Top Secret
   2115  1.1  christos  * 01011010   -   Secret
   2116  1.1  christos  * 10010110   -   Confidential
   2117  1.1  christos  * 01100110   -   (Reserved 3)
   2118  1.1  christos  * 11001100   -   (Reserved 2)
   2119  1.1  christos  * 10101011   -   Unclassified
   2120  1.1  christos  * 11110001   -   (Reserved 1)
   2121  1.1  christos  */
   2122  1.1  christos #define	IPSO_CLASS_RES4		0x01
   2123  1.1  christos #define	IPSO_CLASS_TOPS		0x3d
   2124  1.1  christos #define	IPSO_CLASS_SECR		0x5a
   2125  1.1  christos #define	IPSO_CLASS_CONF		0x96
   2126  1.1  christos #define	IPSO_CLASS_RES3		0x66
   2127  1.1  christos #define	IPSO_CLASS_RES2		0xcc
   2128  1.1  christos #define	IPSO_CLASS_UNCL		0xab
   2129  1.1  christos #define	IPSO_CLASS_RES1		0xf1
   2130  1.1  christos 
   2131  1.1  christos #define	IPSO_AUTH_GENSER	0x80
   2132  1.1  christos #define	IPSO_AUTH_ESI		0x40
   2133  1.1  christos #define	IPSO_AUTH_SCI		0x20
   2134  1.1  christos #define	IPSO_AUTH_NSA		0x10
   2135  1.1  christos #define	IPSO_AUTH_DOE		0x08
   2136  1.1  christos #define	IPSO_AUTH_UN		0x06
   2137  1.1  christos #define	IPSO_AUTH_FTE		0x01
   2138  1.1  christos 
   2139  1.1  christos /*
   2140  1.1  christos  * IP option #defines
   2141  1.1  christos  */
   2142  1.1  christos #undef	IPOPT_RR
   2143  1.1  christos #define	IPOPT_RR	7
   2144  1.1  christos #undef	IPOPT_ZSU
   2145  1.1  christos #define	IPOPT_ZSU	10	/* ZSU */
   2146  1.1  christos #undef	IPOPT_MTUP
   2147  1.1  christos #define	IPOPT_MTUP	11	/* MTUP */
   2148  1.1  christos #undef	IPOPT_MTUR
   2149  1.1  christos #define	IPOPT_MTUR	12	/* MTUR */
   2150  1.1  christos #undef	IPOPT_ENCODE
   2151  1.1  christos #define	IPOPT_ENCODE	15	/* ENCODE */
   2152  1.1  christos #undef	IPOPT_TS
   2153  1.1  christos #define	IPOPT_TS	68
   2154  1.1  christos #undef	IPOPT_TR
   2155  1.1  christos #define	IPOPT_TR	82	/* TR */
   2156  1.1  christos #undef	IPOPT_SECURITY
   2157  1.1  christos #define	IPOPT_SECURITY	130
   2158  1.1  christos #undef	IPOPT_LSRR
   2159  1.1  christos #define	IPOPT_LSRR	131
   2160  1.1  christos #undef	IPOPT_E_SEC
   2161  1.1  christos #define	IPOPT_E_SEC	133	/* E-SEC */
   2162  1.1  christos #undef	IPOPT_CIPSO
   2163  1.1  christos #define	IPOPT_CIPSO	134	/* CIPSO */
   2164  1.1  christos #undef	IPOPT_SATID
   2165  1.1  christos #define	IPOPT_SATID	136
   2166  1.1  christos #ifndef	IPOPT_SID
   2167  1.1  christos # define	IPOPT_SID	IPOPT_SATID
   2168  1.1  christos #endif
   2169  1.1  christos #undef	IPOPT_SSRR
   2170  1.1  christos #define	IPOPT_SSRR	137
   2171  1.1  christos #undef	IPOPT_ADDEXT
   2172  1.1  christos #define	IPOPT_ADDEXT	147	/* ADDEXT */
   2173  1.1  christos #undef	IPOPT_VISA
   2174  1.1  christos #define	IPOPT_VISA	142	/* VISA */
   2175  1.1  christos #undef	IPOPT_IMITD
   2176  1.1  christos #define	IPOPT_IMITD	144	/* IMITD */
   2177  1.1  christos #undef	IPOPT_EIP
   2178  1.1  christos #define	IPOPT_EIP	145	/* EIP */
   2179  1.1  christos #undef	IPOPT_RTRALRT
   2180  1.1  christos #define	IPOPT_RTRALRT	148	/* RTRALRT */
   2181  1.1  christos #undef	IPOPT_SDB
   2182  1.1  christos #define	IPOPT_SDB	149
   2183  1.1  christos #undef	IPOPT_NSAPA
   2184  1.1  christos #define	IPOPT_NSAPA	150
   2185  1.1  christos #undef	IPOPT_DPS
   2186  1.1  christos #define	IPOPT_DPS	151
   2187  1.1  christos #undef	IPOPT_UMP
   2188  1.1  christos #define	IPOPT_UMP	152
   2189  1.1  christos #undef	IPOPT_FINN
   2190  1.1  christos #define	IPOPT_FINN	205	/* FINN */
   2191  1.1  christos #undef	IPOPT_AH
   2192  1.1  christos #define	IPOPT_AH	256+IPPROTO_AH
   2193  1.1  christos 
   2194  1.1  christos #ifndef TCPOPT_EOL
   2195  1.1  christos # define TCPOPT_EOL		0
   2196  1.1  christos #endif
   2197  1.1  christos #ifndef TCPOPT_NOP
   2198  1.1  christos # define TCPOPT_NOP		1
   2199  1.1  christos #endif
   2200  1.1  christos #ifndef TCPOPT_MAXSEG
   2201  1.1  christos # define TCPOPT_MAXSEG		2
   2202  1.1  christos #endif
   2203  1.1  christos #ifndef TCPOLEN_MAXSEG
   2204  1.1  christos # define TCPOLEN_MAXSEG		4
   2205  1.1  christos #endif
   2206  1.1  christos #ifndef TCPOPT_WINDOW
   2207  1.1  christos # define TCPOPT_WINDOW		3
   2208  1.1  christos #endif
   2209  1.1  christos #ifndef TCPOLEN_WINDOW
   2210  1.1  christos # define TCPOLEN_WINDOW		3
   2211  1.1  christos #endif
   2212  1.1  christos #ifndef TCPOPT_SACK_PERMITTED
   2213  1.1  christos # define TCPOPT_SACK_PERMITTED	4
   2214  1.1  christos #endif
   2215  1.1  christos #ifndef TCPOLEN_SACK_PERMITTED
   2216  1.1  christos # define TCPOLEN_SACK_PERMITTED	2
   2217  1.1  christos #endif
   2218  1.1  christos #ifndef TCPOPT_SACK
   2219  1.1  christos # define TCPOPT_SACK		5
   2220  1.1  christos #endif
   2221  1.1  christos #ifndef TCPOPT_TIMESTAMP
   2222  1.1  christos # define TCPOPT_TIMESTAMP	8
   2223  1.1  christos #endif
   2224  1.1  christos 
   2225  1.1  christos #ifndef	ICMP_MINLEN
   2226  1.1  christos # define	ICMP_MINLEN	8
   2227  1.1  christos #endif
   2228  1.1  christos #ifndef	ICMP_ECHOREPLY
   2229  1.1  christos # define	ICMP_ECHOREPLY	0
   2230  1.1  christos #endif
   2231  1.1  christos #ifndef	ICMP_UNREACH
   2232  1.1  christos # define	ICMP_UNREACH	3
   2233  1.1  christos #endif
   2234  1.1  christos #ifndef	ICMP_UNREACH_NET
   2235  1.1  christos # define	ICMP_UNREACH_NET	0
   2236  1.1  christos #endif
   2237  1.1  christos #ifndef	ICMP_UNREACH_HOST
   2238  1.1  christos # define	ICMP_UNREACH_HOST	1
   2239  1.1  christos #endif
   2240  1.1  christos #ifndef	ICMP_UNREACH_PROTOCOL
   2241  1.1  christos # define	ICMP_UNREACH_PROTOCOL	2
   2242  1.1  christos #endif
   2243  1.1  christos #ifndef	ICMP_UNREACH_PORT
   2244  1.1  christos # define	ICMP_UNREACH_PORT	3
   2245  1.1  christos #endif
   2246  1.1  christos #ifndef	ICMP_UNREACH_NEEDFRAG
   2247  1.1  christos # define	ICMP_UNREACH_NEEDFRAG	4
   2248  1.1  christos #endif
   2249  1.1  christos #ifndef	ICMP_UNREACH_SRCFAIL
   2250  1.1  christos # define	ICMP_UNREACH_SRCFAIL	5
   2251  1.1  christos #endif
   2252  1.1  christos #ifndef	ICMP_UNREACH_NET_UNKNOWN
   2253  1.1  christos # define	ICMP_UNREACH_NET_UNKNOWN	6
   2254  1.1  christos #endif
   2255  1.1  christos #ifndef	ICMP_UNREACH_HOST_UNKNOWN
   2256  1.1  christos # define	ICMP_UNREACH_HOST_UNKNOWN	7
   2257  1.1  christos #endif
   2258  1.1  christos #ifndef	ICMP_UNREACH_ISOLATED
   2259  1.1  christos # define	ICMP_UNREACH_ISOLATED	8
   2260  1.1  christos #endif
   2261  1.1  christos #ifndef	ICMP_UNREACH_NET_PROHIB
   2262  1.1  christos # define	ICMP_UNREACH_NET_PROHIB	9
   2263  1.1  christos #endif
   2264  1.1  christos #ifndef	ICMP_UNREACH_HOST_PROHIB
   2265  1.1  christos # define	ICMP_UNREACH_HOST_PROHIB	10
   2266  1.1  christos #endif
   2267  1.1  christos #ifndef	ICMP_UNREACH_TOSNET
   2268  1.1  christos # define	ICMP_UNREACH_TOSNET	11
   2269  1.1  christos #endif
   2270  1.1  christos #ifndef	ICMP_UNREACH_TOSHOST
   2271  1.1  christos # define	ICMP_UNREACH_TOSHOST	12
   2272  1.1  christos #endif
   2273  1.1  christos #ifndef	ICMP_UNREACH_ADMIN_PROHIBIT
   2274  1.1  christos # define	ICMP_UNREACH_ADMIN_PROHIBIT	13
   2275  1.1  christos #endif
   2276  1.1  christos #ifndef	ICMP_UNREACH_FILTER
   2277  1.1  christos # define	ICMP_UNREACH_FILTER	13
   2278  1.1  christos #endif
   2279  1.1  christos #ifndef	ICMP_UNREACH_HOST_PRECEDENCE
   2280  1.1  christos # define	ICMP_UNREACH_HOST_PRECEDENCE	14
   2281  1.1  christos #endif
   2282  1.1  christos #ifndef	ICMP_UNREACH_PRECEDENCE_CUTOFF
   2283  1.1  christos # define	ICMP_UNREACH_PRECEDENCE_CUTOFF	15
   2284  1.1  christos #endif
   2285  1.1  christos #ifndef	ICMP_SOURCEQUENCH
   2286  1.1  christos # define	ICMP_SOURCEQUENCH	4
   2287  1.1  christos #endif
   2288  1.1  christos #ifndef	ICMP_REDIRECT_NET
   2289  1.1  christos # define	ICMP_REDIRECT_NET	0
   2290  1.1  christos #endif
   2291  1.1  christos #ifndef	ICMP_REDIRECT_HOST
   2292  1.1  christos # define	ICMP_REDIRECT_HOST	1
   2293  1.1  christos #endif
   2294  1.1  christos #ifndef	ICMP_REDIRECT_TOSNET
   2295  1.1  christos # define	ICMP_REDIRECT_TOSNET	2
   2296  1.1  christos #endif
   2297  1.1  christos #ifndef	ICMP_REDIRECT_TOSHOST
   2298  1.1  christos # define	ICMP_REDIRECT_TOSHOST	3
   2299  1.1  christos #endif
   2300  1.1  christos #ifndef	ICMP_ALTHOSTADDR
   2301  1.1  christos # define	ICMP_ALTHOSTADDR	6
   2302  1.1  christos #endif
   2303  1.1  christos #ifndef	ICMP_TIMXCEED
   2304  1.1  christos # define	ICMP_TIMXCEED	11
   2305  1.1  christos #endif
   2306  1.1  christos #ifndef	ICMP_TIMXCEED_INTRANS
   2307  1.1  christos # define	ICMP_TIMXCEED_INTRANS	0
   2308  1.1  christos #endif
   2309  1.1  christos #ifndef	ICMP_TIMXCEED_REASS
   2310  1.1  christos # define		ICMP_TIMXCEED_REASS	1
   2311  1.1  christos #endif
   2312  1.1  christos #ifndef	ICMP_PARAMPROB
   2313  1.1  christos # define	ICMP_PARAMPROB	12
   2314  1.1  christos #endif
   2315  1.1  christos #ifndef	ICMP_PARAMPROB_ERRATPTR
   2316  1.1  christos # define	ICMP_PARAMPROB_ERRATPTR	0
   2317  1.1  christos #endif
   2318  1.1  christos #ifndef	ICMP_PARAMPROB_OPTABSENT
   2319  1.1  christos # define	ICMP_PARAMPROB_OPTABSENT	1
   2320  1.1  christos #endif
   2321  1.1  christos #ifndef	ICMP_PARAMPROB_LENGTH
   2322  1.1  christos # define	ICMP_PARAMPROB_LENGTH	2
   2323  1.1  christos #endif
   2324  1.1  christos #ifndef ICMP_TSTAMP
   2325  1.1  christos # define	ICMP_TSTAMP	13
   2326  1.1  christos #endif
   2327  1.1  christos #ifndef ICMP_TSTAMPREPLY
   2328  1.1  christos # define	ICMP_TSTAMPREPLY	14
   2329  1.1  christos #endif
   2330  1.1  christos #ifndef ICMP_IREQ
   2331  1.1  christos # define	ICMP_IREQ	15
   2332  1.1  christos #endif
   2333  1.1  christos #ifndef ICMP_IREQREPLY
   2334  1.1  christos # define	ICMP_IREQREPLY	16
   2335  1.1  christos #endif
   2336  1.1  christos #ifndef	ICMP_MASKREQ
   2337  1.1  christos # define	ICMP_MASKREQ	17
   2338  1.1  christos #endif
   2339  1.1  christos #ifndef ICMP_MASKREPLY
   2340  1.1  christos # define	ICMP_MASKREPLY	18
   2341  1.1  christos #endif
   2342  1.1  christos #ifndef	ICMP_TRACEROUTE
   2343  1.1  christos # define	ICMP_TRACEROUTE	30
   2344  1.1  christos #endif
   2345  1.1  christos #ifndef	ICMP_DATACONVERR
   2346  1.1  christos # define	ICMP_DATACONVERR	31
   2347  1.1  christos #endif
   2348  1.1  christos #ifndef	ICMP_MOBILE_REDIRECT
   2349  1.1  christos # define	ICMP_MOBILE_REDIRECT	32
   2350  1.1  christos #endif
   2351  1.1  christos #ifndef	ICMP_IPV6_WHEREAREYOU
   2352  1.1  christos # define	ICMP_IPV6_WHEREAREYOU	33
   2353  1.1  christos #endif
   2354  1.1  christos #ifndef	ICMP_IPV6_IAMHERE
   2355  1.1  christos # define	ICMP_IPV6_IAMHERE	34
   2356  1.1  christos #endif
   2357  1.1  christos #ifndef	ICMP_MOBILE_REGREQUEST
   2358  1.1  christos # define	ICMP_MOBILE_REGREQUEST	35
   2359  1.1  christos #endif
   2360  1.1  christos #ifndef	ICMP_MOBILE_REGREPLY
   2361  1.1  christos # define	ICMP_MOBILE_REGREPLY	36
   2362  1.1  christos #endif
   2363  1.1  christos #ifndef	ICMP_SKIP
   2364  1.1  christos # define	ICMP_SKIP	39
   2365  1.1  christos #endif
   2366  1.1  christos #ifndef	ICMP_PHOTURIS
   2367  1.1  christos # define	ICMP_PHOTURIS	40
   2368  1.1  christos #endif
   2369  1.1  christos #ifndef	ICMP_PHOTURIS_UNKNOWN_INDEX
   2370  1.1  christos # define	ICMP_PHOTURIS_UNKNOWN_INDEX	1
   2371  1.1  christos #endif
   2372  1.1  christos #ifndef	ICMP_PHOTURIS_AUTH_FAILED
   2373  1.1  christos # define	ICMP_PHOTURIS_AUTH_FAILED	2
   2374  1.1  christos #endif
   2375  1.1  christos #ifndef	ICMP_PHOTURIS_DECRYPT_FAILED
   2376  1.1  christos # define	ICMP_PHOTURIS_DECRYPT_FAILED	3
   2377  1.1  christos #endif
   2378  1.1  christos #ifndef	IPVERSION
   2379  1.1  christos # define	IPVERSION	4
   2380  1.1  christos #endif
   2381  1.1  christos #ifndef	IPOPT_MINOFF
   2382  1.1  christos # define	IPOPT_MINOFF	4
   2383  1.1  christos #endif
   2384  1.1  christos #ifndef	IPOPT_COPIED
   2385  1.1  christos # define	IPOPT_COPIED(x)	((x)&0x80)
   2386  1.1  christos #endif
   2387  1.1  christos #ifndef	IPOPT_EOL
   2388  1.1  christos # define	IPOPT_EOL	0
   2389  1.1  christos #endif
   2390  1.1  christos #ifndef	IPOPT_NOP
   2391  1.1  christos # define	IPOPT_NOP	1
   2392  1.1  christos #endif
   2393  1.1  christos #ifndef	IP_MF
   2394  1.1  christos # define	IP_MF	((u_short)0x2000)
   2395  1.1  christos #endif
   2396  1.1  christos #ifndef	ETHERTYPE_IP
   2397  1.1  christos # define	ETHERTYPE_IP	((u_short)0x0800)
   2398  1.1  christos #endif
   2399  1.1  christos #ifndef	TH_FIN
   2400  1.1  christos # define	TH_FIN	0x01
   2401  1.1  christos #endif
   2402  1.1  christos #ifndef	TH_SYN
   2403  1.1  christos # define	TH_SYN	0x02
   2404  1.1  christos #endif
   2405  1.1  christos #ifndef	TH_RST
   2406  1.1  christos # define	TH_RST	0x04
   2407  1.1  christos #endif
   2408  1.1  christos #ifndef	TH_PUSH
   2409  1.1  christos # define	TH_PUSH	0x08
   2410  1.1  christos #endif
   2411  1.1  christos #ifndef	TH_ACK
   2412  1.1  christos # define	TH_ACK	0x10
   2413  1.1  christos #endif
   2414  1.1  christos #ifndef	TH_URG
   2415  1.1  christos # define	TH_URG	0x20
   2416  1.1  christos #endif
   2417  1.1  christos #undef	TH_ACKMASK
   2418  1.1  christos #define	TH_ACKMASK	(TH_FIN|TH_SYN|TH_RST|TH_ACK)
   2419  1.1  christos 
   2420  1.1  christos #ifndef	IPOPT_EOL
   2421  1.1  christos # define	IPOPT_EOL	0
   2422  1.1  christos #endif
   2423  1.1  christos #ifndef	IPOPT_NOP
   2424  1.1  christos # define	IPOPT_NOP	1
   2425  1.1  christos #endif
   2426  1.1  christos #ifndef	IPOPT_RR
   2427  1.1  christos # define	IPOPT_RR	7
   2428  1.1  christos #endif
   2429  1.1  christos #ifndef	IPOPT_TS
   2430  1.1  christos # define	IPOPT_TS	68
   2431  1.1  christos #endif
   2432  1.1  christos #ifndef	IPOPT_SECURITY
   2433  1.1  christos # define	IPOPT_SECURITY	130
   2434  1.1  christos #endif
   2435  1.1  christos #ifndef	IPOPT_LSRR
   2436  1.1  christos # define	IPOPT_LSRR	131
   2437  1.1  christos #endif
   2438  1.1  christos #ifndef	IPOPT_SATID
   2439  1.1  christos # define	IPOPT_SATID	136
   2440  1.1  christos #endif
   2441  1.1  christos #ifndef	IPOPT_SSRR
   2442  1.1  christos # define	IPOPT_SSRR	137
   2443  1.1  christos #endif
   2444  1.1  christos #ifndef	IPOPT_SECUR_UNCLASS
   2445  1.1  christos # define	IPOPT_SECUR_UNCLASS	((u_short)0x0000)
   2446  1.1  christos #endif
   2447  1.1  christos #ifndef	IPOPT_SECUR_CONFID
   2448  1.1  christos # define	IPOPT_SECUR_CONFID	((u_short)0xf135)
   2449  1.1  christos #endif
   2450  1.1  christos #ifndef	IPOPT_SECUR_EFTO
   2451  1.1  christos # define	IPOPT_SECUR_EFTO	((u_short)0x789a)
   2452  1.1  christos #endif
   2453  1.1  christos #ifndef	IPOPT_SECUR_MMMM
   2454  1.1  christos # define	IPOPT_SECUR_MMMM	((u_short)0xbc4d)
   2455  1.1  christos #endif
   2456  1.1  christos #ifndef	IPOPT_SECUR_RESTR
   2457  1.1  christos # define	IPOPT_SECUR_RESTR	((u_short)0xaf13)
   2458  1.1  christos #endif
   2459  1.1  christos #ifndef	IPOPT_SECUR_SECRET
   2460  1.1  christos # define	IPOPT_SECUR_SECRET	((u_short)0xd788)
   2461  1.1  christos #endif
   2462  1.1  christos #ifndef IPOPT_SECUR_TOPSECRET
   2463  1.1  christos # define	IPOPT_SECUR_TOPSECRET	((u_short)0x6bc5)
   2464  1.1  christos #endif
   2465  1.1  christos #ifndef IPOPT_OLEN
   2466  1.1  christos # define	IPOPT_OLEN	1
   2467  1.1  christos #endif
   2468  1.1  christos #ifndef	IPPROTO_HOPOPTS
   2469  1.1  christos # define	IPPROTO_HOPOPTS	0
   2470  1.1  christos #endif
   2471  1.1  christos #ifndef	IPPROTO_IPIP
   2472  1.1  christos # define	IPPROTO_IPIP	4
   2473  1.1  christos #endif
   2474  1.1  christos #ifndef	IPPROTO_ENCAP
   2475  1.1  christos # define	IPPROTO_ENCAP	98
   2476  1.1  christos #endif
   2477  1.1  christos #ifndef	IPPROTO_IPV6
   2478  1.1  christos # define	IPPROTO_IPV6	41
   2479  1.1  christos #endif
   2480  1.1  christos #ifndef	IPPROTO_ROUTING
   2481  1.1  christos # define	IPPROTO_ROUTING	43
   2482  1.1  christos #endif
   2483  1.1  christos #ifndef	IPPROTO_FRAGMENT
   2484  1.1  christos # define	IPPROTO_FRAGMENT	44
   2485  1.1  christos #endif
   2486  1.1  christos #ifndef	IPPROTO_GRE
   2487  1.1  christos # define	IPPROTO_GRE	47	/* GRE encaps RFC 1701 */
   2488  1.1  christos #endif
   2489  1.1  christos #ifndef	IPPROTO_ESP
   2490  1.1  christos # define	IPPROTO_ESP	50
   2491  1.1  christos #endif
   2492  1.1  christos #ifndef	IPPROTO_AH
   2493  1.1  christos # define	IPPROTO_AH	51
   2494  1.1  christos #endif
   2495  1.1  christos #ifndef	IPPROTO_ICMPV6
   2496  1.1  christos # define	IPPROTO_ICMPV6	58
   2497  1.1  christos #endif
   2498  1.1  christos #ifndef	IPPROTO_NONE
   2499  1.1  christos # define	IPPROTO_NONE	59
   2500  1.1  christos #endif
   2501  1.1  christos #ifndef	IPPROTO_DSTOPTS
   2502  1.1  christos # define	IPPROTO_DSTOPTS	60
   2503  1.1  christos #endif
   2504  1.1  christos #ifndef	IPPROTO_MOBILITY
   2505  1.1  christos # define	IPPROTO_MOBILITY	135
   2506  1.1  christos #endif
   2507  1.1  christos 
   2508  1.1  christos #ifndef	ICMP_ROUTERADVERT
   2509  1.1  christos # define	ICMP_ROUTERADVERT	9
   2510  1.1  christos #endif
   2511  1.1  christos #ifndef	ICMP_ROUTERSOLICIT
   2512  1.1  christos # define	ICMP_ROUTERSOLICIT	10
   2513  1.1  christos #endif
   2514  1.1  christos #ifndef	ICMP6_DST_UNREACH
   2515  1.1  christos # define	ICMP6_DST_UNREACH	1
   2516  1.1  christos #endif
   2517  1.1  christos #ifndef	ICMP6_PACKET_TOO_BIG
   2518  1.1  christos # define	ICMP6_PACKET_TOO_BIG	2
   2519  1.1  christos #endif
   2520  1.1  christos #ifndef	ICMP6_TIME_EXCEEDED
   2521  1.1  christos # define	ICMP6_TIME_EXCEEDED	3
   2522  1.1  christos #endif
   2523  1.1  christos #ifndef	ICMP6_PARAM_PROB
   2524  1.1  christos # define	ICMP6_PARAM_PROB	4
   2525  1.1  christos #endif
   2526  1.1  christos 
   2527  1.1  christos #ifndef	ICMP6_ECHO_REQUEST
   2528  1.1  christos # define	ICMP6_ECHO_REQUEST	128
   2529  1.1  christos #endif
   2530  1.1  christos #ifndef	ICMP6_ECHO_REPLY
   2531  1.1  christos # define	ICMP6_ECHO_REPLY	129
   2532  1.1  christos #endif
   2533  1.1  christos #ifndef	ICMP6_MEMBERSHIP_QUERY
   2534  1.1  christos # define	ICMP6_MEMBERSHIP_QUERY	130
   2535  1.1  christos #endif
   2536  1.1  christos #ifndef	MLD6_LISTENER_QUERY
   2537  1.1  christos # define	MLD6_LISTENER_QUERY	130
   2538  1.1  christos #endif
   2539  1.1  christos #ifndef	ICMP6_MEMBERSHIP_REPORT
   2540  1.1  christos # define	ICMP6_MEMBERSHIP_REPORT	131
   2541  1.1  christos #endif
   2542  1.1  christos #ifndef	MLD6_LISTENER_REPORT
   2543  1.1  christos # define	MLD6_LISTENER_REPORT	131
   2544  1.1  christos #endif
   2545  1.1  christos #ifndef	ICMP6_MEMBERSHIP_REDUCTION
   2546  1.1  christos # define	ICMP6_MEMBERSHIP_REDUCTION	132
   2547  1.1  christos #endif
   2548  1.1  christos #ifndef	MLD6_LISTENER_DONE
   2549  1.1  christos # define	MLD6_LISTENER_DONE	132
   2550  1.1  christos #endif
   2551  1.1  christos #ifndef	ND_ROUTER_SOLICIT
   2552  1.1  christos # define	ND_ROUTER_SOLICIT	133
   2553  1.1  christos #endif
   2554  1.1  christos #ifndef	ND_ROUTER_ADVERT
   2555  1.1  christos # define	ND_ROUTER_ADVERT	134
   2556  1.1  christos #endif
   2557  1.1  christos #ifndef	ND_NEIGHBOR_SOLICIT
   2558  1.1  christos # define	ND_NEIGHBOR_SOLICIT	135
   2559  1.1  christos #endif
   2560  1.1  christos #ifndef	ND_NEIGHBOR_ADVERT
   2561  1.1  christos # define	ND_NEIGHBOR_ADVERT	136
   2562  1.1  christos #endif
   2563  1.1  christos #ifndef	ND_REDIRECT
   2564  1.1  christos # define	ND_REDIRECT	137
   2565  1.1  christos #endif
   2566  1.1  christos #ifndef	ICMP6_ROUTER_RENUMBERING
   2567  1.1  christos # define	ICMP6_ROUTER_RENUMBERING	138
   2568  1.1  christos #endif
   2569  1.1  christos #ifndef	ICMP6_WRUREQUEST
   2570  1.1  christos # define	ICMP6_WRUREQUEST	139
   2571  1.1  christos #endif
   2572  1.1  christos #ifndef	ICMP6_WRUREPLY
   2573  1.1  christos # define	ICMP6_WRUREPLY		140
   2574  1.1  christos #endif
   2575  1.1  christos #ifndef	ICMP6_FQDN_QUERY
   2576  1.1  christos # define	ICMP6_FQDN_QUERY	139
   2577  1.1  christos #endif
   2578  1.1  christos #ifndef	ICMP6_FQDN_REPLY
   2579  1.1  christos # define	ICMP6_FQDN_REPLY	140
   2580  1.1  christos #endif
   2581  1.1  christos #ifndef	ICMP6_NI_QUERY
   2582  1.1  christos # define	ICMP6_NI_QUERY		139
   2583  1.1  christos #endif
   2584  1.1  christos #ifndef	ICMP6_NI_REPLY
   2585  1.1  christos # define	ICMP6_NI_REPLY		140
   2586  1.1  christos #endif
   2587  1.1  christos #ifndef	MLD6_MTRACE_RESP
   2588  1.1  christos # define	MLD6_MTRACE_RESP	200
   2589  1.1  christos #endif
   2590  1.1  christos #ifndef	MLD6_MTRACE
   2591  1.1  christos # define	MLD6_MTRACE		201
   2592  1.1  christos #endif
   2593  1.1  christos #ifndef	ICMP6_HADISCOV_REQUEST
   2594  1.1  christos # define	ICMP6_HADISCOV_REQUEST	202
   2595  1.1  christos #endif
   2596  1.1  christos #ifndef	ICMP6_HADISCOV_REPLY
   2597  1.1  christos # define	ICMP6_HADISCOV_REPLY	203
   2598  1.1  christos #endif
   2599  1.1  christos #ifndef	ICMP6_MOBILEPREFIX_SOLICIT
   2600  1.1  christos # define	ICMP6_MOBILEPREFIX_SOLICIT	204
   2601  1.1  christos #endif
   2602  1.1  christos #ifndef	ICMP6_MOBILEPREFIX_ADVERT
   2603  1.1  christos # define	ICMP6_MOBILEPREFIX_ADVERT	205
   2604  1.1  christos #endif
   2605  1.1  christos #ifndef	ICMP6_MAXTYPE
   2606  1.1  christos # define	ICMP6_MAXTYPE		205
   2607  1.1  christos #endif
   2608  1.1  christos 
   2609  1.1  christos #ifndef	ICMP6_DST_UNREACH_NOROUTE
   2610  1.1  christos # define	ICMP6_DST_UNREACH_NOROUTE	0
   2611  1.1  christos #endif
   2612  1.1  christos #ifndef	ICMP6_DST_UNREACH_ADMIN
   2613  1.1  christos # define	ICMP6_DST_UNREACH_ADMIN		1
   2614  1.1  christos #endif
   2615  1.1  christos #ifndef	ICMP6_DST_UNREACH_NOTNEIGHBOR
   2616  1.1  christos # define	ICMP6_DST_UNREACH_NOTNEIGHBOR	2
   2617  1.1  christos #endif
   2618  1.1  christos #ifndef	ICMP6_DST_UNREACH_BEYONDSCOPE
   2619  1.1  christos # define	ICMP6_DST_UNREACH_BEYONDSCOPE	2
   2620  1.1  christos #endif
   2621  1.1  christos #ifndef	ICMP6_DST_UNREACH_ADDR
   2622  1.1  christos # define	ICMP6_DST_UNREACH_ADDR		3
   2623  1.1  christos #endif
   2624  1.1  christos #ifndef	ICMP6_DST_UNREACH_NOPORT
   2625  1.1  christos # define	ICMP6_DST_UNREACH_NOPORT	4
   2626  1.1  christos #endif
   2627  1.1  christos #ifndef	ICMP6_TIME_EXCEED_TRANSIT
   2628  1.1  christos # define	ICMP6_TIME_EXCEED_TRANSIT	0
   2629  1.1  christos #endif
   2630  1.1  christos #ifndef	ICMP6_TIME_EXCEED_REASSEMBLY
   2631  1.1  christos # define	ICMP6_TIME_EXCEED_REASSEMBLY	1
   2632  1.1  christos #endif
   2633  1.1  christos 
   2634  1.1  christos #ifndef	ICMP6_NI_SUCCESS
   2635  1.1  christos # define	ICMP6_NI_SUCCESS	0
   2636  1.1  christos #endif
   2637  1.1  christos #ifndef	ICMP6_NI_REFUSED
   2638  1.1  christos # define	ICMP6_NI_REFUSED	1
   2639  1.1  christos #endif
   2640  1.1  christos #ifndef	ICMP6_NI_UNKNOWN
   2641  1.1  christos # define	ICMP6_NI_UNKNOWN	2
   2642  1.1  christos #endif
   2643  1.1  christos 
   2644  1.1  christos #ifndef	ICMP6_ROUTER_RENUMBERING_COMMAND
   2645  1.1  christos # define	ICMP6_ROUTER_RENUMBERING_COMMAND	0
   2646  1.1  christos #endif
   2647  1.1  christos #ifndef	ICMP6_ROUTER_RENUMBERING_RESULT
   2648  1.1  christos # define	ICMP6_ROUTER_RENUMBERING_RESULT	1
   2649  1.1  christos #endif
   2650  1.1  christos #ifndef	ICMP6_ROUTER_RENUMBERING_SEQNUM_RESET
   2651  1.1  christos # define	ICMP6_ROUTER_RENUMBERING_SEQNUM_RESET	255
   2652  1.1  christos #endif
   2653  1.1  christos 
   2654  1.1  christos #ifndef	ICMP6_PARAMPROB_HEADER
   2655  1.1  christos # define	ICMP6_PARAMPROB_HEADER	0
   2656  1.1  christos #endif
   2657  1.1  christos #ifndef	ICMP6_PARAMPROB_NEXTHEADER
   2658  1.1  christos # define	ICMP6_PARAMPROB_NEXTHEADER	1
   2659  1.1  christos #endif
   2660  1.1  christos #ifndef	ICMP6_PARAMPROB_OPTION
   2661  1.1  christos # define	ICMP6_PARAMPROB_OPTION	2
   2662  1.1  christos #endif
   2663  1.1  christos 
   2664  1.1  christos #ifndef	ICMP6_NI_SUBJ_IPV6
   2665  1.1  christos # define	ICMP6_NI_SUBJ_IPV6	0
   2666  1.1  christos #endif
   2667  1.1  christos #ifndef	ICMP6_NI_SUBJ_FQDN
   2668  1.1  christos # define	ICMP6_NI_SUBJ_FQDN	1
   2669  1.1  christos #endif
   2670  1.1  christos #ifndef	ICMP6_NI_SUBJ_IPV4
   2671  1.1  christos # define	ICMP6_NI_SUBJ_IPV4	2
   2672  1.1  christos #endif
   2673  1.1  christos 
   2674  1.1  christos #ifndef	MLD_MTRACE_RESP
   2675  1.1  christos # define	MLD_MTRACE_RESP		200
   2676  1.1  christos #endif
   2677  1.1  christos #ifndef	MLD_MTRACE
   2678  1.1  christos # define	MLD_MTRACE		201
   2679  1.1  christos #endif
   2680  1.1  christos #ifndef	MLD6_MTRACE_RESP
   2681  1.1  christos # define	MLD6_MTRACE_RESP	MLD_MTRACE_RESP
   2682  1.1  christos #endif
   2683  1.1  christos #ifndef	MLD6_MTRACE
   2684  1.1  christos # define	MLD6_MTRACE		MLD_MTRACE
   2685  1.1  christos #endif
   2686  1.1  christos 
   2687  1.1  christos #if !defined(IPV6_FLOWINFO_MASK)
   2688  1.1  christos # if (BYTE_ORDER == BIG_ENDIAN) || defined(_BIG_ENDIAN)
   2689  1.1  christos #  define IPV6_FLOWINFO_MASK	0x0fffffff	/* flow info (28 bits) */
   2690  1.1  christos # else
   2691  1.1  christos #  if(BYTE_ORDER == LITTLE_ENDIAN) || !defined(_BIG_ENDIAN)
   2692  1.1  christos #   define IPV6_FLOWINFO_MASK	0xffffff0f	/* flow info (28 bits) */
   2693  1.1  christos #  endif /* LITTLE_ENDIAN */
   2694  1.1  christos # endif
   2695  1.1  christos #endif
   2696  1.1  christos #if !defined(IPV6_FLOWLABEL_MASK)
   2697  1.1  christos # if (BYTE_ORDER == BIG_ENDIAN) || defined(_BIG_ENDIAN)
   2698  1.1  christos #  define IPV6_FLOWLABEL_MASK	0x000fffff	/* flow label (20 bits) */
   2699  1.1  christos # else
   2700  1.1  christos #  if (BYTE_ORDER == LITTLE_ENDIAN) || !defined(_BIG_ENDIAN)
   2701  1.1  christos #   define IPV6_FLOWLABEL_MASK	0xffff0f00	/* flow label (20 bits) */
   2702  1.1  christos #  endif /* LITTLE_ENDIAN */
   2703  1.1  christos # endif
   2704  1.1  christos #endif
   2705  1.1  christos 
   2706  1.1  christos /*
   2707  1.1  christos  * ECN is a new addition to TCP - RFC 2481
   2708  1.1  christos  */
   2709  1.1  christos #ifndef TH_ECN
   2710  1.1  christos # define	TH_ECN	0x40
   2711  1.1  christos #endif
   2712  1.1  christos #ifndef TH_CWR
   2713  1.1  christos # define	TH_CWR	0x80
   2714  1.1  christos #endif
   2715  1.1  christos #define	TH_ECNALL	(TH_ECN|TH_CWR)
   2716  1.1  christos 
   2717  1.1  christos /*
   2718  1.1  christos  * TCP States
   2719  1.1  christos  */
   2720  1.1  christos #define IPF_TCPS_LISTEN		0	/* listening for connection */
   2721  1.1  christos #define IPF_TCPS_SYN_SENT	1	/* active, have sent syn */
   2722  1.1  christos #define IPF_TCPS_SYN_RECEIVED	2	/* have send and received syn */
   2723  1.1  christos #define IPF_TCPS_HALF_ESTAB	3	/* for connections not fully "up" */
   2724  1.1  christos /* states < IPF_TCPS_ESTABLISHED are those where connections not established */
   2725  1.1  christos #define IPF_TCPS_ESTABLISHED	4	/* established */
   2726  1.1  christos #define IPF_TCPS_CLOSE_WAIT	5	/* rcvd fin, waiting for close */
   2727  1.1  christos /* states > IPF_TCPS_CLOSE_WAIT are those where user has closed */
   2728  1.1  christos #define IPF_TCPS_FIN_WAIT_1	6	/* have closed, sent fin */
   2729  1.1  christos #define IPF_TCPS_CLOSING	7	/* closed xchd FIN; await FIN ACK */
   2730  1.1  christos #define IPF_TCPS_LAST_ACK	8	/* had fin and close; await FIN ACK */
   2731  1.1  christos /* states > IPF_TCPS_CLOSE_WAIT && < IPF_TCPS_FIN_WAIT_2 await ACK of FIN */
   2732  1.1  christos #define IPF_TCPS_FIN_WAIT_2	9	/* have closed, fin is acked */
   2733  1.1  christos #define IPF_TCPS_TIME_WAIT	10	/* in 2*msl quiet wait after close */
   2734  1.1  christos #define IPF_TCPS_CLOSED		11	/* closed */
   2735  1.1  christos #define IPF_TCP_NSTATES		12
   2736  1.1  christos 
   2737  1.1  christos #define	TCP_MSL			120
   2738  1.1  christos 
   2739  1.1  christos #undef	ICMP_MAX_UNREACH
   2740  1.1  christos #define	ICMP_MAX_UNREACH	14
   2741  1.1  christos #undef	ICMP_MAXTYPE
   2742  1.1  christos #define	ICMP_MAXTYPE		18
   2743  1.1  christos 
   2744  1.1  christos #ifndef	IFNAMSIZ
   2745  1.1  christos #define	IFNAMSIZ		16
   2746  1.1  christos #endif
   2747  1.1  christos 
   2748  1.1  christos #ifndef	LOG_FTP
   2749  1.1  christos # define	LOG_FTP		(11<<3)
   2750  1.1  christos #endif
   2751  1.1  christos #ifndef	LOG_AUTHPRIV
   2752  1.1  christos # define	LOG_AUTHPRIV	(10<<3)
   2753  1.1  christos #endif
   2754  1.1  christos #ifndef	LOG_AUDIT
   2755  1.1  christos # define	LOG_AUDIT	(13<<3)
   2756  1.1  christos #endif
   2757  1.1  christos #ifndef	LOG_NTP
   2758  1.1  christos # define	LOG_NTP		(12<<3)
   2759  1.1  christos #endif
   2760  1.1  christos #ifndef	LOG_SECURITY
   2761  1.1  christos # define	LOG_SECURITY	(13<<3)
   2762  1.1  christos #endif
   2763  1.1  christos #ifndef	LOG_LFMT
   2764  1.1  christos # define	LOG_LFMT	(14<<3)
   2765  1.1  christos #endif
   2766  1.1  christos #ifndef	LOG_CONSOLE
   2767  1.1  christos # define	LOG_CONSOLE	(14<<3)
   2768  1.1  christos #endif
   2769  1.1  christos 
   2770  1.1  christos /*
   2771  1.1  christos  * ICMP error replies have an IP header (20 bytes), 8 bytes of ICMP data,
   2772  1.1  christos  * another IP header and then 64 bits of data, totalling 56.  Of course,
   2773  1.1  christos  * the last 64 bits is dependent on that being available.
   2774  1.1  christos  */
   2775  1.1  christos #define	ICMPERR_ICMPHLEN	8
   2776  1.1  christos #define	ICMPERR_IPICMPHLEN	(20 + 8)
   2777  1.1  christos #define	ICMPERR_MINPKTLEN	(20 + 8 + 20)
   2778  1.1  christos #define	ICMPERR_MAXPKTLEN	(20 + 8 + 20 + 8)
   2779  1.1  christos #define ICMP6ERR_MINPKTLEN	(40 + 8)
   2780  1.1  christos #define ICMP6ERR_IPICMPHLEN	(40 + 8 + 40)
   2781  1.1  christos 
   2782  1.1  christos #ifndef MIN
   2783  1.1  christos # define	MIN(a,b)	(((a)<(b))?(a):(b))
   2784  1.1  christos #endif
   2785  1.1  christos 
   2786  1.1  christos #ifdef RESCUE
   2787  1.1  christos # undef IPFILTER_BPF
   2788  1.1  christos #endif
   2789  1.1  christos 
   2790  1.1  christos #ifdef IPF_DEBUG
   2791  1.1  christos # define	DPRINT(x)	printf x
   2792  1.1  christos #else
   2793  1.1  christos # define	DPRINT(x)
   2794  1.1  christos #endif
   2795  1.1  christos 
   2796  1.1  christos #ifndef	AF_INET6
   2797  1.1  christos # define	AF_INET6	26
   2798  1.1  christos #endif
   2799  1.1  christos 
   2800  1.1  christos #ifdef DTRACE_PROBE
   2801  1.1  christos # ifdef _KERNEL
   2802  1.1  christos #  define	DT(_n)			DTRACE_PROBE(_n)
   2803  1.1  christos #  define	DT1(_n,_a,_b)		DTRACE_PROBE1(_n,_a,_b)
   2804  1.1  christos #  define	DT2(_n,_a,_b,_c,_d)	DTRACE_PROBE2(_n,_a,_b,_c,_d)
   2805  1.1  christos #  define	DT3(_n,_a,_b,_c,_d,_e,_f)	\
   2806  1.1  christos 					DTRACE_PROBE3(_n,_a,_b,_c,_d,_e,_f)
   2807  1.1  christos #  define	DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h) \
   2808  1.1  christos 				DTRACE_PROBE4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
   2809  1.1  christos # else
   2810  1.1  christos #  define	DT(_n)
   2811  1.1  christos #  define	DT1(_n,_a,_b)
   2812  1.1  christos #  define	DT2(_n,_a,_b,_c,_d)
   2813  1.1  christos #  define	DT3(_n,_a,_b,_c,_d,_e,_f)
   2814  1.1  christos #  define	DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
   2815  1.1  christos # endif
   2816  1.1  christos #else
   2817  1.1  christos # define	DT(_n)
   2818  1.1  christos # define	DT1(_n,_a,_b)
   2819  1.1  christos # define	DT2(_n,_a,_b,_c,_d)
   2820  1.1  christos # define	DT3(_n,_a,_b,_c,_d,_e,_f)
   2821  1.1  christos # define	DT4(_n,_a,_b,_c,_d,_e,_f,_g,_h)
   2822  1.1  christos #endif
   2823  1.1  christos 
   2824  1.1  christos struct ip6_routing {
   2825  1.1  christos 	u_char	ip6r_nxt;	/* next header */
   2826  1.1  christos 	u_char	ip6r_len;	/* length in units of 8 octets */
   2827  1.1  christos 	u_char	ip6r_type;	/* always zero */
   2828  1.1  christos 	u_char	ip6r_segleft;	/* segments left */
   2829  1.1  christos 	u_32_t	ip6r_reserved;	/* reserved field */
   2830  1.1  christos };
   2831  1.1  christos 
   2832  1.1  christos #endif	/* __IP_COMPAT_H__ */
   2833