Commit 60c195c7 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Ingo Molnar

make netfilter use strict integer types

Netfilter traditionally uses BSD integer types in its
interface headers. This changes it to use the Linux
strict integer types, like everyone else.

Cc: netfilter-devel@vger.kernel.org
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 1d7f83d5
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
#define _NF_CONNTRACK_TCP_H #define _NF_CONNTRACK_TCP_H
/* TCP tracking. */ /* TCP tracking. */
#include <linux/types.h>
/* This is exposed to userspace (ctnetlink) */ /* This is exposed to userspace (ctnetlink) */
enum tcp_conntrack { enum tcp_conntrack {
TCP_CONNTRACK_NONE, TCP_CONNTRACK_NONE,
...@@ -34,8 +36,8 @@ enum tcp_conntrack { ...@@ -34,8 +36,8 @@ enum tcp_conntrack {
#define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED 0x10 #define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED 0x10
struct nf_ct_tcp_flags { struct nf_ct_tcp_flags {
u_int8_t flags; __u8 flags;
u_int8_t mask; __u8 mask;
}; };
#ifdef __KERNEL__ #ifdef __KERNEL__
......
...@@ -25,8 +25,8 @@ enum nfnetlink_groups { ...@@ -25,8 +25,8 @@ enum nfnetlink_groups {
/* General form of address family dependent message. /* General form of address family dependent message.
*/ */
struct nfgenmsg { struct nfgenmsg {
u_int8_t nfgen_family; /* AF_xxx */ __u8 nfgen_family; /* AF_xxx */
u_int8_t version; /* nfnetlink version */ __u8 version; /* nfnetlink version */
__be16 res_id; /* resource id */ __be16 res_id; /* resource id */
}; };
......
#ifndef _NFNETLINK_COMPAT_H #ifndef _NFNETLINK_COMPAT_H
#define _NFNETLINK_COMPAT_H #define _NFNETLINK_COMPAT_H
#include <linux/types.h>
#ifndef __KERNEL__ #ifndef __KERNEL__
/* Old nfnetlink macros for userspace */ /* Old nfnetlink macros for userspace */
...@@ -20,8 +23,8 @@ ...@@ -20,8 +23,8 @@
struct nfattr struct nfattr
{ {
u_int16_t nfa_len; __u16 nfa_len;
u_int16_t nfa_type; /* we use 15 bits for the type, and the highest __u16 nfa_type; /* we use 15 bits for the type, and the highest
* bit to indicate whether the payload is nested */ * bit to indicate whether the payload is nested */
}; };
......
...@@ -17,14 +17,14 @@ enum nfulnl_msg_types { ...@@ -17,14 +17,14 @@ enum nfulnl_msg_types {
struct nfulnl_msg_packet_hdr { struct nfulnl_msg_packet_hdr {
__be16 hw_protocol; /* hw protocol (network order) */ __be16 hw_protocol; /* hw protocol (network order) */
u_int8_t hook; /* netfilter hook */ __u8 hook; /* netfilter hook */
u_int8_t _pad; __u8 _pad;
}; };
struct nfulnl_msg_packet_hw { struct nfulnl_msg_packet_hw {
__be16 hw_addrlen; __be16 hw_addrlen;
u_int16_t _pad; __u16 _pad;
u_int8_t hw_addr[8]; __u8 hw_addr[8];
}; };
struct nfulnl_msg_packet_timestamp { struct nfulnl_msg_packet_timestamp {
...@@ -35,12 +35,12 @@ struct nfulnl_msg_packet_timestamp { ...@@ -35,12 +35,12 @@ struct nfulnl_msg_packet_timestamp {
enum nfulnl_attr_type { enum nfulnl_attr_type {
NFULA_UNSPEC, NFULA_UNSPEC,
NFULA_PACKET_HDR, NFULA_PACKET_HDR,
NFULA_MARK, /* u_int32_t nfmark */ NFULA_MARK, /* __u32 nfmark */
NFULA_TIMESTAMP, /* nfulnl_msg_packet_timestamp */ NFULA_TIMESTAMP, /* nfulnl_msg_packet_timestamp */
NFULA_IFINDEX_INDEV, /* u_int32_t ifindex */ NFULA_IFINDEX_INDEV, /* __u32 ifindex */
NFULA_IFINDEX_OUTDEV, /* u_int32_t ifindex */ NFULA_IFINDEX_OUTDEV, /* __u32 ifindex */
NFULA_IFINDEX_PHYSINDEV, /* u_int32_t ifindex */ NFULA_IFINDEX_PHYSINDEV, /* __u32 ifindex */
NFULA_IFINDEX_PHYSOUTDEV, /* u_int32_t ifindex */ NFULA_IFINDEX_PHYSOUTDEV, /* __u32 ifindex */
NFULA_HWADDR, /* nfulnl_msg_packet_hw */ NFULA_HWADDR, /* nfulnl_msg_packet_hw */
NFULA_PAYLOAD, /* opaque data payload */ NFULA_PAYLOAD, /* opaque data payload */
NFULA_PREFIX, /* string prefix */ NFULA_PREFIX, /* string prefix */
...@@ -65,23 +65,23 @@ enum nfulnl_msg_config_cmds { ...@@ -65,23 +65,23 @@ enum nfulnl_msg_config_cmds {
}; };
struct nfulnl_msg_config_cmd { struct nfulnl_msg_config_cmd {
u_int8_t command; /* nfulnl_msg_config_cmds */ __u8 command; /* nfulnl_msg_config_cmds */
} __attribute__ ((packed)); } __attribute__ ((packed));
struct nfulnl_msg_config_mode { struct nfulnl_msg_config_mode {
__be32 copy_range; __be32 copy_range;
u_int8_t copy_mode; __u8 copy_mode;
u_int8_t _pad; __u8 _pad;
} __attribute__ ((packed)); } __attribute__ ((packed));
enum nfulnl_attr_config { enum nfulnl_attr_config {
NFULA_CFG_UNSPEC, NFULA_CFG_UNSPEC,
NFULA_CFG_CMD, /* nfulnl_msg_config_cmd */ NFULA_CFG_CMD, /* nfulnl_msg_config_cmd */
NFULA_CFG_MODE, /* nfulnl_msg_config_mode */ NFULA_CFG_MODE, /* nfulnl_msg_config_mode */
NFULA_CFG_NLBUFSIZ, /* u_int32_t buffer size */ NFULA_CFG_NLBUFSIZ, /* __u32 buffer size */
NFULA_CFG_TIMEOUT, /* u_int32_t in 1/100 s */ NFULA_CFG_TIMEOUT, /* __u32 in 1/100 s */
NFULA_CFG_QTHRESH, /* u_int32_t */ NFULA_CFG_QTHRESH, /* __u32 */
NFULA_CFG_FLAGS, /* u_int16_t */ NFULA_CFG_FLAGS, /* __u16 */
__NFULA_CFG_MAX __NFULA_CFG_MAX
}; };
#define NFULA_CFG_MAX (__NFULA_CFG_MAX -1) #define NFULA_CFG_MAX (__NFULA_CFG_MAX -1)
......
...@@ -15,13 +15,13 @@ enum nfqnl_msg_types { ...@@ -15,13 +15,13 @@ enum nfqnl_msg_types {
struct nfqnl_msg_packet_hdr { struct nfqnl_msg_packet_hdr {
__be32 packet_id; /* unique ID of packet in queue */ __be32 packet_id; /* unique ID of packet in queue */
__be16 hw_protocol; /* hw protocol (network order) */ __be16 hw_protocol; /* hw protocol (network order) */
u_int8_t hook; /* netfilter hook */ __u8 hook; /* netfilter hook */
} __attribute__ ((packed)); } __attribute__ ((packed));
struct nfqnl_msg_packet_hw { struct nfqnl_msg_packet_hw {
__be16 hw_addrlen; __be16 hw_addrlen;
u_int16_t _pad; __u16 _pad;
u_int8_t hw_addr[8]; __u8 hw_addr[8];
}; };
struct nfqnl_msg_packet_timestamp { struct nfqnl_msg_packet_timestamp {
...@@ -33,12 +33,12 @@ enum nfqnl_attr_type { ...@@ -33,12 +33,12 @@ enum nfqnl_attr_type {
NFQA_UNSPEC, NFQA_UNSPEC,
NFQA_PACKET_HDR, NFQA_PACKET_HDR,
NFQA_VERDICT_HDR, /* nfqnl_msg_verdict_hrd */ NFQA_VERDICT_HDR, /* nfqnl_msg_verdict_hrd */
NFQA_MARK, /* u_int32_t nfmark */ NFQA_MARK, /* __u32 nfmark */
NFQA_TIMESTAMP, /* nfqnl_msg_packet_timestamp */ NFQA_TIMESTAMP, /* nfqnl_msg_packet_timestamp */
NFQA_IFINDEX_INDEV, /* u_int32_t ifindex */ NFQA_IFINDEX_INDEV, /* __u32 ifindex */
NFQA_IFINDEX_OUTDEV, /* u_int32_t ifindex */ NFQA_IFINDEX_OUTDEV, /* __u32 ifindex */
NFQA_IFINDEX_PHYSINDEV, /* u_int32_t ifindex */ NFQA_IFINDEX_PHYSINDEV, /* __u32 ifindex */
NFQA_IFINDEX_PHYSOUTDEV, /* u_int32_t ifindex */ NFQA_IFINDEX_PHYSOUTDEV, /* __u32 ifindex */
NFQA_HWADDR, /* nfqnl_msg_packet_hw */ NFQA_HWADDR, /* nfqnl_msg_packet_hw */
NFQA_PAYLOAD, /* opaque data payload */ NFQA_PAYLOAD, /* opaque data payload */
...@@ -61,8 +61,8 @@ enum nfqnl_msg_config_cmds { ...@@ -61,8 +61,8 @@ enum nfqnl_msg_config_cmds {
}; };
struct nfqnl_msg_config_cmd { struct nfqnl_msg_config_cmd {
u_int8_t command; /* nfqnl_msg_config_cmds */ __u8 command; /* nfqnl_msg_config_cmds */
u_int8_t _pad; __u8 _pad;
__be16 pf; /* AF_xxx for PF_[UN]BIND */ __be16 pf; /* AF_xxx for PF_[UN]BIND */
}; };
...@@ -74,7 +74,7 @@ enum nfqnl_config_mode { ...@@ -74,7 +74,7 @@ enum nfqnl_config_mode {
struct nfqnl_msg_config_params { struct nfqnl_msg_config_params {
__be32 copy_range; __be32 copy_range;
u_int8_t copy_mode; /* enum nfqnl_config_mode */ __u8 copy_mode; /* enum nfqnl_config_mode */
} __attribute__ ((packed)); } __attribute__ ((packed));
...@@ -82,7 +82,7 @@ enum nfqnl_attr_config { ...@@ -82,7 +82,7 @@ enum nfqnl_attr_config {
NFQA_CFG_UNSPEC, NFQA_CFG_UNSPEC,
NFQA_CFG_CMD, /* nfqnl_msg_config_cmd */ NFQA_CFG_CMD, /* nfqnl_msg_config_cmd */
NFQA_CFG_PARAMS, /* nfqnl_msg_config_params */ NFQA_CFG_PARAMS, /* nfqnl_msg_config_params */
NFQA_CFG_QUEUE_MAXLEN, /* u_int32_t */ NFQA_CFG_QUEUE_MAXLEN, /* __u32 */
__NFQA_CFG_MAX __NFQA_CFG_MAX
}; };
#define NFQA_CFG_MAX (__NFQA_CFG_MAX-1) #define NFQA_CFG_MAX (__NFQA_CFG_MAX-1)
......
#ifndef _X_TABLES_H #ifndef _X_TABLES_H
#define _X_TABLES_H #define _X_TABLES_H
#include <linux/types.h>
#define XT_FUNCTION_MAXNAMELEN 30 #define XT_FUNCTION_MAXNAMELEN 30
#define XT_TABLE_MAXNAMELEN 32 #define XT_TABLE_MAXNAMELEN 32
...@@ -8,22 +10,22 @@ struct xt_entry_match ...@@ -8,22 +10,22 @@ struct xt_entry_match
{ {
union { union {
struct { struct {
u_int16_t match_size; __u16 match_size;
/* Used by userspace */ /* Used by userspace */
char name[XT_FUNCTION_MAXNAMELEN-1]; char name[XT_FUNCTION_MAXNAMELEN-1];
u_int8_t revision; __u8 revision;
} user; } user;
struct { struct {
u_int16_t match_size; __u16 match_size;
/* Used inside the kernel */ /* Used inside the kernel */
struct xt_match *match; struct xt_match *match;
} kernel; } kernel;
/* Total length */ /* Total length */
u_int16_t match_size; __u16 match_size;
} u; } u;
unsigned char data[0]; unsigned char data[0];
...@@ -33,22 +35,22 @@ struct xt_entry_target ...@@ -33,22 +35,22 @@ struct xt_entry_target
{ {
union { union {
struct { struct {
u_int16_t target_size; __u16 target_size;
/* Used by userspace */ /* Used by userspace */
char name[XT_FUNCTION_MAXNAMELEN-1]; char name[XT_FUNCTION_MAXNAMELEN-1];
u_int8_t revision; __u8 revision;
} user; } user;
struct { struct {
u_int16_t target_size; __u16 target_size;
/* Used inside the kernel */ /* Used inside the kernel */
struct xt_target *target; struct xt_target *target;
} kernel; } kernel;
/* Total length */ /* Total length */
u_int16_t target_size; __u16 target_size;
} u; } u;
unsigned char data[0]; unsigned char data[0];
...@@ -74,7 +76,7 @@ struct xt_get_revision ...@@ -74,7 +76,7 @@ struct xt_get_revision
{ {
char name[XT_FUNCTION_MAXNAMELEN-1]; char name[XT_FUNCTION_MAXNAMELEN-1];
u_int8_t revision; __u8 revision;
}; };
/* CONTINUE verdict for targets */ /* CONTINUE verdict for targets */
...@@ -90,10 +92,10 @@ struct xt_get_revision ...@@ -90,10 +92,10 @@ struct xt_get_revision
*/ */
struct _xt_align struct _xt_align
{ {
u_int8_t u8; __u8 u8;
u_int16_t u16; __u16 u16;
u_int32_t u32; __u32 u32;
u_int64_t u64; __u64 u64;
}; };
#define XT_ALIGN(s) (((s) + (__alignof__(struct _xt_align)-1)) \ #define XT_ALIGN(s) (((s) + (__alignof__(struct _xt_align)-1)) \
...@@ -109,7 +111,7 @@ struct _xt_align ...@@ -109,7 +111,7 @@ struct _xt_align
struct xt_counters struct xt_counters
{ {
u_int64_t pcnt, bcnt; /* Packet and byte counters */ __u64 pcnt, bcnt; /* Packet and byte counters */
}; };
/* The argument to IPT_SO_ADD_COUNTERS. */ /* The argument to IPT_SO_ADD_COUNTERS. */
......
#ifndef _XT_CLASSIFY_H #ifndef _XT_CLASSIFY_H
#define _XT_CLASSIFY_H #define _XT_CLASSIFY_H
#include <linux/types.h>
struct xt_classify_target_info { struct xt_classify_target_info {
u_int32_t priority; __u32 priority;
}; };
#endif /*_XT_CLASSIFY_H */ #endif /*_XT_CLASSIFY_H */
#ifndef _XT_CONNMARK_H_target #ifndef _XT_CONNMARK_H_target
#define _XT_CONNMARK_H_target #define _XT_CONNMARK_H_target
#include <linux/types.h>
/* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com> /* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
* by Henrik Nordstrom <hno@marasystems.com> * by Henrik Nordstrom <hno@marasystems.com>
* *
...@@ -19,12 +21,12 @@ enum { ...@@ -19,12 +21,12 @@ enum {
struct xt_connmark_target_info { struct xt_connmark_target_info {
unsigned long mark; unsigned long mark;
unsigned long mask; unsigned long mask;
u_int8_t mode; __u8 mode;
}; };
struct xt_connmark_tginfo1 { struct xt_connmark_tginfo1 {
u_int32_t ctmark, ctmask, nfmask; __u32 ctmark, ctmask, nfmask;
u_int8_t mode; __u8 mode;
}; };
#endif /*_XT_CONNMARK_H_target*/ #endif /*_XT_CONNMARK_H_target*/
#ifndef _XT_CONNSECMARK_H_target #ifndef _XT_CONNSECMARK_H_target
#define _XT_CONNSECMARK_H_target #define _XT_CONNSECMARK_H_target
#include <linux/types.h>
enum { enum {
CONNSECMARK_SAVE = 1, CONNSECMARK_SAVE = 1,
CONNSECMARK_RESTORE, CONNSECMARK_RESTORE,
}; };
struct xt_connsecmark_target_info { struct xt_connsecmark_target_info {
u_int8_t mode; __u8 mode;
}; };
#endif /*_XT_CONNSECMARK_H_target */ #endif /*_XT_CONNSECMARK_H_target */
...@@ -11,15 +11,16 @@ ...@@ -11,15 +11,16 @@
#ifndef _XT_DSCP_TARGET_H #ifndef _XT_DSCP_TARGET_H
#define _XT_DSCP_TARGET_H #define _XT_DSCP_TARGET_H
#include <linux/netfilter/xt_dscp.h> #include <linux/netfilter/xt_dscp.h>
#include <linux/types.h>
/* target info */ /* target info */
struct xt_DSCP_info { struct xt_DSCP_info {
u_int8_t dscp; __u8 dscp;
}; };
struct xt_tos_target_info { struct xt_tos_target_info {
u_int8_t tos_value; __u8 tos_value;
u_int8_t tos_mask; __u8 tos_mask;
}; };
#endif /* _XT_DSCP_TARGET_H */ #endif /* _XT_DSCP_TARGET_H */
#ifndef _XT_MARK_H_target #ifndef _XT_MARK_H_target
#define _XT_MARK_H_target #define _XT_MARK_H_target
#include <linux/types.h>
/* Version 0 */ /* Version 0 */
struct xt_mark_target_info { struct xt_mark_target_info {
unsigned long mark; unsigned long mark;
...@@ -15,11 +17,11 @@ enum { ...@@ -15,11 +17,11 @@ enum {
struct xt_mark_target_info_v1 { struct xt_mark_target_info_v1 {
unsigned long mark; unsigned long mark;
u_int8_t mode; __u8 mode;
}; };
struct xt_mark_tginfo2 { struct xt_mark_tginfo2 {
u_int32_t mark, mask; __u32 mark, mask;
}; };
#endif /*_XT_MARK_H_target */ #endif /*_XT_MARK_H_target */
#ifndef _XT_NFLOG_TARGET #ifndef _XT_NFLOG_TARGET
#define _XT_NFLOG_TARGET #define _XT_NFLOG_TARGET
#include <linux/types.h>
#define XT_NFLOG_DEFAULT_GROUP 0x1 #define XT_NFLOG_DEFAULT_GROUP 0x1
#define XT_NFLOG_DEFAULT_THRESHOLD 1 #define XT_NFLOG_DEFAULT_THRESHOLD 1
#define XT_NFLOG_MASK 0x0 #define XT_NFLOG_MASK 0x0
struct xt_nflog_info { struct xt_nflog_info {
u_int32_t len; __u32 len;
u_int16_t group; __u16 group;
u_int16_t threshold; __u16 threshold;
u_int16_t flags; __u16 flags;
u_int16_t pad; __u16 pad;
char prefix[64]; char prefix[64];
}; };
......
...@@ -8,9 +8,11 @@ ...@@ -8,9 +8,11 @@
#ifndef _XT_NFQ_TARGET_H #ifndef _XT_NFQ_TARGET_H
#define _XT_NFQ_TARGET_H #define _XT_NFQ_TARGET_H
#include <linux/types.h>
/* target info */ /* target info */
struct xt_NFQ_info { struct xt_NFQ_info {
u_int16_t queuenum; __u16 queuenum;
}; };
#endif /* _XT_NFQ_TARGET_H */ #endif /* _XT_NFQ_TARGET_H */
#ifndef _XT_RATEEST_TARGET_H #ifndef _XT_RATEEST_TARGET_H
#define _XT_RATEEST_TARGET_H #define _XT_RATEEST_TARGET_H
#include <linux/types.h>
struct xt_rateest_target_info { struct xt_rateest_target_info {
char name[IFNAMSIZ]; char name[IFNAMSIZ];
int8_t interval; __s8 interval;
u_int8_t ewma_log; __u8 ewma_log;
/* Used internally by the kernel */ /* Used internally by the kernel */
struct xt_rateest *est __attribute__((aligned(8))); struct xt_rateest *est __attribute__((aligned(8)));
......
#ifndef _XT_SECMARK_H_target #ifndef _XT_SECMARK_H_target
#define _XT_SECMARK_H_target #define _XT_SECMARK_H_target
#include <linux/types.h>
/* /*
* This is intended for use by various security subsystems (but not * This is intended for use by various security subsystems (but not
* at the same time). * at the same time).
...@@ -12,12 +14,12 @@ ...@@ -12,12 +14,12 @@
#define SECMARK_SELCTX_MAX 256 #define SECMARK_SELCTX_MAX 256
struct xt_secmark_target_selinux_info { struct xt_secmark_target_selinux_info {
u_int32_t selsid; __u32 selsid;
char selctx[SECMARK_SELCTX_MAX]; char selctx[SECMARK_SELCTX_MAX];
}; };
struct xt_secmark_target_info { struct xt_secmark_target_info {
u_int8_t mode; __u8 mode;
union { union {
struct xt_secmark_target_selinux_info sel; struct xt_secmark_target_selinux_info sel;
} u; } u;
......
#ifndef _XT_TCPMSS_H #ifndef _XT_TCPMSS_H
#define _XT_TCPMSS_H #define _XT_TCPMSS_H
#include <linux/types.h>
struct xt_tcpmss_info { struct xt_tcpmss_info {
u_int16_t mss; __u16 mss;
}; };
#define XT_TCPMSS_CLAMP_PMTU 0xffff #define XT_TCPMSS_CLAMP_PMTU 0xffff
......
#ifndef _XT_CONNBYTES_H #ifndef _XT_CONNBYTES_H
#define _XT_CONNBYTES_H #define _XT_CONNBYTES_H
#include <linux/types.h>
enum xt_connbytes_what { enum xt_connbytes_what {
XT_CONNBYTES_PKTS, XT_CONNBYTES_PKTS,
XT_CONNBYTES_BYTES, XT_CONNBYTES_BYTES,
...@@ -19,7 +21,7 @@ struct xt_connbytes_info ...@@ -19,7 +21,7 @@ struct xt_connbytes_info
aligned_u64 from; /* count to be matched */ aligned_u64 from; /* count to be matched */
aligned_u64 to; /* count to be matched */ aligned_u64 to; /* count to be matched */
} count; } count;
u_int8_t what; /* ipt_connbytes_what */ __u8 what; /* ipt_connbytes_what */
u_int8_t direction; /* ipt_connbytes_direction */ __u8 direction; /* ipt_connbytes_direction */
}; };
#endif #endif
#ifndef _XT_CONNMARK_H #ifndef _XT_CONNMARK_H
#define _XT_CONNMARK_H #define _XT_CONNMARK_H
#include <linux/types.h>
/* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com> /* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
* by Henrik Nordstrom <hno@marasystems.com> * by Henrik Nordstrom <hno@marasystems.com>
* *
...@@ -12,12 +14,12 @@ ...@@ -12,12 +14,12 @@
struct xt_connmark_info { struct xt_connmark_info {
unsigned long mark, mask; unsigned long mark, mask;
u_int8_t invert; __u8 invert;
}; };
struct xt_connmark_mtinfo1 { struct xt_connmark_mtinfo1 {
u_int32_t mark, mask; __u32 mark, mask;
u_int8_t invert; __u8 invert;
}; };
#endif /*_XT_CONNMARK_H*/ #endif /*_XT_CONNMARK_H*/
...@@ -63,9 +63,9 @@ struct xt_conntrack_info ...@@ -63,9 +63,9 @@ struct xt_conntrack_info
unsigned long expires_min, expires_max; unsigned long expires_min, expires_max;
/* Flags word */ /* Flags word */
u_int8_t flags; __u8 flags;
/* Inverse flags */ /* Inverse flags */
u_int8_t invflags; __u8 invflags;
}; };
struct xt_conntrack_mtinfo1 { struct xt_conntrack_mtinfo1 {
...@@ -73,12 +73,12 @@ struct xt_conntrack_mtinfo1 { ...@@ -73,12 +73,12 @@ struct xt_conntrack_mtinfo1 {
union nf_inet_addr origdst_addr, origdst_mask; union nf_inet_addr origdst_addr, origdst_mask;
union nf_inet_addr replsrc_addr, replsrc_mask; union nf_inet_addr replsrc_addr, replsrc_mask;
union nf_inet_addr repldst_addr, repldst_mask; union nf_inet_addr repldst_addr, repldst_mask;
u_int32_t expires_min, expires_max; __u32 expires_min, expires_max;
u_int16_t l4proto; __u16 l4proto;
__be16 origsrc_port, origdst_port; __be16 origsrc_port, origdst_port;
__be16 replsrc_port, repldst_port; __be16 replsrc_port, repldst_port;
u_int16_t match_flags, invert_flags; __u16 match_flags, invert_flags;
u_int8_t state_mask, status_mask; __u8 state_mask, status_mask;
}; };
#endif /*_XT_CONNTRACK_H*/ #endif /*_XT_CONNTRACK_H*/
#ifndef _XT_DCCP_H_ #ifndef _XT_DCCP_H_
#define _XT_DCCP_H_ #define _XT_DCCP_H_
#include <linux/types.h>
#define XT_DCCP_SRC_PORTS 0x01 #define XT_DCCP_SRC_PORTS 0x01
#define XT_DCCP_DEST_PORTS 0x02 #define XT_DCCP_DEST_PORTS 0x02
#define XT_DCCP_TYPE 0x04 #define XT_DCCP_TYPE 0x04
...@@ -9,14 +11,14 @@ ...@@ -9,14 +11,14 @@
#define XT_DCCP_VALID_FLAGS 0x0f #define XT_DCCP_VALID_FLAGS 0x0f
struct xt_dccp_info { struct xt_dccp_info {
u_int16_t dpts[2]; /* Min, Max */ __u16 dpts[2]; /* Min, Max */
u_int16_t spts[2]; /* Min, Max */ __u16 spts[2]; /* Min, Max */
u_int16_t flags; __u16 flags;
u_int16_t invflags; __u16 invflags;
u_int16_t typemask; __u16 typemask;
u_int8_t option; __u8 option;
}; };
#endif /* _XT_DCCP_H_ */ #endif /* _XT_DCCP_H_ */
......
...@@ -10,20 +10,22 @@ ...@@ -10,20 +10,22 @@
#ifndef _XT_DSCP_H #ifndef _XT_DSCP_H
#define _XT_DSCP_H #define _XT_DSCP_H
#include <linux/types.h>
#define XT_DSCP_MASK 0xfc /* 11111100 */ #define XT_DSCP_MASK 0xfc /* 11111100 */
#define XT_DSCP_SHIFT 2 #define XT_DSCP_SHIFT 2
#define XT_DSCP_MAX 0x3f /* 00111111 */ #define XT_DSCP_MAX 0x3f /* 00111111 */
/* match info */ /* match info */
struct xt_dscp_info { struct xt_dscp_info {
u_int8_t dscp; __u8 dscp;
u_int8_t invert; __u8 invert;
}; };
struct xt_tos_match_info { struct xt_tos_match_info {
u_int8_t tos_mask; __u8 tos_mask;
u_int8_t tos_value; __u8 tos_value;
u_int8_t invert; __u8 invert;
}; };
#endif /* _XT_DSCP_H */ #endif /* _XT_DSCP_H */
#ifndef _XT_ESP_H #ifndef _XT_ESP_H
#define _XT_ESP_H #define _XT_ESP_H
#include <linux/types.h>
struct xt_esp struct xt_esp
{ {
u_int32_t spis[2]; /* Security Parameter Index */ __u32 spis[2]; /* Security Parameter Index */
u_int8_t invflags; /* Inverse flags */ __u8 invflags; /* Inverse flags */
}; };
/* Values for "invflags" field in struct xt_esp. */ /* Values for "invflags" field in struct xt_esp. */
......
#ifndef _XT_HASHLIMIT_H #ifndef _XT_HASHLIMIT_H
#define _XT_HASHLIMIT_H #define _XT_HASHLIMIT_H
#include <linux/types.h>
/* timings are in milliseconds. */ /* timings are in milliseconds. */
#define XT_HASHLIMIT_SCALE 10000 #define XT_HASHLIMIT_SCALE 10000
/* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
...@@ -18,15 +20,15 @@ enum { ...@@ -18,15 +20,15 @@ enum {
}; };
struct hashlimit_cfg { struct hashlimit_cfg {
u_int32_t mode; /* bitmask of XT_HASHLIMIT_HASH_* */ __u32 mode; /* bitmask of XT_HASHLIMIT_HASH_* */
u_int32_t avg; /* Average secs between packets * scale */ __u32 avg; /* Average secs between packets * scale */
u_int32_t burst; /* Period multiplier for upper limit. */ __u32 burst; /* Period multiplier for upper limit. */
/* user specified */ /* user specified */
u_int32_t size; /* how many buckets */ __u32 size; /* how many buckets */
u_int32_t max; /* max number of entries */ __u32 max; /* max number of entries */
u_int32_t gc_interval; /* gc interval */ __u32 gc_interval; /* gc interval */
u_int32_t expire; /* when do entries expire? */ __u32 expire; /* when do entries expire? */
}; };
struct xt_hashlimit_info { struct xt_hashlimit_info {
...@@ -42,17 +44,17 @@ struct xt_hashlimit_info { ...@@ -42,17 +44,17 @@ struct xt_hashlimit_info {
}; };
struct hashlimit_cfg1 { struct hashlimit_cfg1 {
u_int32_t mode; /* bitmask of XT_HASHLIMIT_HASH_* */ __u32 mode; /* bitmask of XT_HASHLIMIT_HASH_* */
u_int32_t avg; /* Average secs between packets * scale */ __u32 avg; /* Average secs between packets * scale */
u_int32_t burst; /* Period multiplier for upper limit. */ __u32 burst; /* Period multiplier for upper limit. */
/* user specified */ /* user specified */
u_int32_t size; /* how many buckets */ __u32 size; /* how many buckets */
u_int32_t max; /* max number of entries */ __u32 max; /* max number of entries */
u_int32_t gc_interval; /* gc interval */ __u32 gc_interval; /* gc interval */
u_int32_t expire; /* when do entries expire? */ __u32 expire; /* when do entries expire? */
u_int8_t srcmask, dstmask; __u8 srcmask, dstmask;
}; };
struct xt_hashlimit_mtinfo1 { struct xt_hashlimit_mtinfo1 {
......
#ifndef _LINUX_NETFILTER_XT_IPRANGE_H #ifndef _LINUX_NETFILTER_XT_IPRANGE_H
#define _LINUX_NETFILTER_XT_IPRANGE_H 1 #define _LINUX_NETFILTER_XT_IPRANGE_H 1
#include <linux/types.h>
enum { enum {
IPRANGE_SRC = 1 << 0, /* match source IP address */ IPRANGE_SRC = 1 << 0, /* match source IP address */
IPRANGE_DST = 1 << 1, /* match destination IP address */ IPRANGE_DST = 1 << 1, /* match destination IP address */
...@@ -11,7 +13,7 @@ enum { ...@@ -11,7 +13,7 @@ enum {
struct xt_iprange_mtinfo { struct xt_iprange_mtinfo {
union nf_inet_addr src_min, src_max; union nf_inet_addr src_min, src_max;
union nf_inet_addr dst_min, dst_max; union nf_inet_addr dst_min, dst_max;
u_int8_t flags; __u8 flags;
}; };
#endif /* _LINUX_NETFILTER_XT_IPRANGE_H */ #endif /* _LINUX_NETFILTER_XT_IPRANGE_H */
#ifndef _XT_LENGTH_H #ifndef _XT_LENGTH_H
#define _XT_LENGTH_H #define _XT_LENGTH_H
#include <linux/types.h>
struct xt_length_info { struct xt_length_info {
u_int16_t min, max; __u16 min, max;
u_int8_t invert; __u8 invert;
}; };
#endif /*_XT_LENGTH_H*/ #endif /*_XT_LENGTH_H*/
#ifndef _XT_RATE_H #ifndef _XT_RATE_H
#define _XT_RATE_H #define _XT_RATE_H
#include <linux/types.h>
/* timings are in milliseconds. */ /* timings are in milliseconds. */
#define XT_LIMIT_SCALE 10000 #define XT_LIMIT_SCALE 10000
/* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490 /* 1/10,000 sec period => max of 10,000/sec. Min rate is then 429490
seconds, or one every 59 hours. */ seconds, or one every 59 hours. */
struct xt_rateinfo { struct xt_rateinfo {
u_int32_t avg; /* Average secs between packets * scale */ __u32 avg; /* Average secs between packets * scale */
u_int32_t burst; /* Period multiplier for upper limit. */ __u32 burst; /* Period multiplier for upper limit. */
/* Used internally by the kernel */ /* Used internally by the kernel */
unsigned long prev; unsigned long prev;
u_int32_t credit; __u32 credit;
u_int32_t credit_cap, cost; __u32 credit_cap, cost;
/* Ugly, ugly fucker. */ /* Ugly, ugly fucker. */
struct xt_rateinfo *master; struct xt_rateinfo *master;
......
#ifndef _XT_MARK_H #ifndef _XT_MARK_H
#define _XT_MARK_H #define _XT_MARK_H
#include <linux/types.h>
struct xt_mark_info { struct xt_mark_info {
unsigned long mark, mask; unsigned long mark, mask;
u_int8_t invert; __u8 invert;
}; };
struct xt_mark_mtinfo1 { struct xt_mark_mtinfo1 {
u_int32_t mark, mask; __u32 mark, mask;
u_int8_t invert; __u8 invert;
}; };
#endif /*_XT_MARK_H*/ #endif /*_XT_MARK_H*/
#ifndef _XT_MULTIPORT_H #ifndef _XT_MULTIPORT_H
#define _XT_MULTIPORT_H #define _XT_MULTIPORT_H
#include <linux/types.h>
enum xt_multiport_flags enum xt_multiport_flags
{ {
XT_MULTIPORT_SOURCE, XT_MULTIPORT_SOURCE,
...@@ -13,18 +15,18 @@ enum xt_multiport_flags ...@@ -13,18 +15,18 @@ enum xt_multiport_flags
/* Must fit inside union xt_matchinfo: 16 bytes */ /* Must fit inside union xt_matchinfo: 16 bytes */
struct xt_multiport struct xt_multiport
{ {
u_int8_t flags; /* Type of comparison */ __u8 flags; /* Type of comparison */
u_int8_t count; /* Number of ports */ __u8 count; /* Number of ports */
u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ __u16 ports[XT_MULTI_PORTS]; /* Ports */
}; };
struct xt_multiport_v1 struct xt_multiport_v1
{ {
u_int8_t flags; /* Type of comparison */ __u8 flags; /* Type of comparison */
u_int8_t count; /* Number of ports */ __u8 count; /* Number of ports */
u_int16_t ports[XT_MULTI_PORTS]; /* Ports */ __u16 ports[XT_MULTI_PORTS]; /* Ports */
u_int8_t pflags[XT_MULTI_PORTS]; /* Port flags */ __u8 pflags[XT_MULTI_PORTS]; /* Port flags */
u_int8_t invert; /* Invert flag */ __u8 invert; /* Invert flag */
}; };
#endif /*_XT_MULTIPORT_H*/ #endif /*_XT_MULTIPORT_H*/
#ifndef _XT_OWNER_MATCH_H #ifndef _XT_OWNER_MATCH_H
#define _XT_OWNER_MATCH_H #define _XT_OWNER_MATCH_H
#include <linux/types.h>
enum { enum {
XT_OWNER_UID = 1 << 0, XT_OWNER_UID = 1 << 0,
XT_OWNER_GID = 1 << 1, XT_OWNER_GID = 1 << 1,
...@@ -8,9 +10,9 @@ enum { ...@@ -8,9 +10,9 @@ enum {
}; };
struct xt_owner_match_info { struct xt_owner_match_info {
u_int32_t uid_min, uid_max; __u32 uid_min, uid_max;
u_int32_t gid_min, gid_max; __u32 gid_min, gid_max;
u_int8_t match, invert; __u8 match, invert;
}; };
#endif /* _XT_OWNER_MATCH_H */ #endif /* _XT_OWNER_MATCH_H */
#ifndef _XT_PHYSDEV_H #ifndef _XT_PHYSDEV_H
#define _XT_PHYSDEV_H #define _XT_PHYSDEV_H
#include <linux/types.h>
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/if.h> #include <linux/if.h>
#endif #endif
...@@ -17,8 +19,8 @@ struct xt_physdev_info { ...@@ -17,8 +19,8 @@ struct xt_physdev_info {
char in_mask[IFNAMSIZ]; char in_mask[IFNAMSIZ];
char physoutdev[IFNAMSIZ]; char physoutdev[IFNAMSIZ];
char out_mask[IFNAMSIZ]; char out_mask[IFNAMSIZ];
u_int8_t invert; __u8 invert;
u_int8_t bitmask; __u8 bitmask;
}; };
#endif /*_XT_PHYSDEV_H*/ #endif /*_XT_PHYSDEV_H*/
#ifndef _XT_POLICY_H #ifndef _XT_POLICY_H
#define _XT_POLICY_H #define _XT_POLICY_H
#include <linux/types.h>
#define XT_POLICY_MAX_ELEM 4 #define XT_POLICY_MAX_ELEM 4
enum xt_policy_flags enum xt_policy_flags
...@@ -19,7 +21,7 @@ enum xt_policy_modes ...@@ -19,7 +21,7 @@ enum xt_policy_modes
struct xt_policy_spec struct xt_policy_spec
{ {
u_int8_t saddr:1, __u8 saddr:1,
daddr:1, daddr:1,
proto:1, proto:1,
mode:1, mode:1,
...@@ -55,9 +57,9 @@ struct xt_policy_elem ...@@ -55,9 +57,9 @@ struct xt_policy_elem
#endif #endif
}; };
__be32 spi; __be32 spi;
u_int32_t reqid; __u32 reqid;
u_int8_t proto; __u8 proto;
u_int8_t mode; __u8 mode;
struct xt_policy_spec match; struct xt_policy_spec match;
struct xt_policy_spec invert; struct xt_policy_spec invert;
...@@ -66,8 +68,8 @@ struct xt_policy_elem ...@@ -66,8 +68,8 @@ struct xt_policy_elem
struct xt_policy_info struct xt_policy_info
{ {
struct xt_policy_elem pol[XT_POLICY_MAX_ELEM]; struct xt_policy_elem pol[XT_POLICY_MAX_ELEM];
u_int16_t flags; __u16 flags;
u_int16_t len; __u16 len;
}; };
#endif /* _XT_POLICY_H */ #endif /* _XT_POLICY_H */
#ifndef _XT_RATEEST_MATCH_H #ifndef _XT_RATEEST_MATCH_H
#define _XT_RATEEST_MATCH_H #define _XT_RATEEST_MATCH_H
#include <linux/types.h>
enum xt_rateest_match_flags { enum xt_rateest_match_flags {
XT_RATEEST_MATCH_INVERT = 1<<0, XT_RATEEST_MATCH_INVERT = 1<<0,
XT_RATEEST_MATCH_ABS = 1<<1, XT_RATEEST_MATCH_ABS = 1<<1,
...@@ -20,12 +22,12 @@ enum xt_rateest_match_mode { ...@@ -20,12 +22,12 @@ enum xt_rateest_match_mode {
struct xt_rateest_match_info { struct xt_rateest_match_info {
char name1[IFNAMSIZ]; char name1[IFNAMSIZ];
char name2[IFNAMSIZ]; char name2[IFNAMSIZ];
u_int16_t flags; __u16 flags;
u_int16_t mode; __u16 mode;
u_int32_t bps1; __u32 bps1;
u_int32_t pps1; __u32 pps1;
u_int32_t bps2; __u32 bps2;
u_int32_t pps2; __u32 pps2;
/* Used internally by the kernel */ /* Used internally by the kernel */
struct xt_rateest *est1 __attribute__((aligned(8))); struct xt_rateest *est1 __attribute__((aligned(8)));
......
#ifndef _XT_REALM_H #ifndef _XT_REALM_H
#define _XT_REALM_H #define _XT_REALM_H
#include <linux/types.h>
struct xt_realm_info { struct xt_realm_info {
u_int32_t id; __u32 id;
u_int32_t mask; __u32 mask;
u_int8_t invert; __u8 invert;
}; };
#endif /* _XT_REALM_H */ #endif /* _XT_REALM_H */
#ifndef _LINUX_NETFILTER_XT_RECENT_H #ifndef _LINUX_NETFILTER_XT_RECENT_H
#define _LINUX_NETFILTER_XT_RECENT_H 1 #define _LINUX_NETFILTER_XT_RECENT_H 1
#include <linux/types.h>
enum { enum {
XT_RECENT_CHECK = 1 << 0, XT_RECENT_CHECK = 1 << 0,
XT_RECENT_SET = 1 << 1, XT_RECENT_SET = 1 << 1,
...@@ -15,12 +17,12 @@ enum { ...@@ -15,12 +17,12 @@ enum {
}; };
struct xt_recent_mtinfo { struct xt_recent_mtinfo {
u_int32_t seconds; __u32 seconds;
u_int32_t hit_count; __u32 hit_count;
u_int8_t check_set; __u8 check_set;
u_int8_t invert; __u8 invert;
char name[XT_RECENT_NAME_LEN]; char name[XT_RECENT_NAME_LEN];
u_int8_t side; __u8 side;
}; };
#endif /* _LINUX_NETFILTER_XT_RECENT_H */ #endif /* _LINUX_NETFILTER_XT_RECENT_H */
#ifndef _XT_SCTP_H_ #ifndef _XT_SCTP_H_
#define _XT_SCTP_H_ #define _XT_SCTP_H_
#include <linux/types.h>
#define XT_SCTP_SRC_PORTS 0x01 #define XT_SCTP_SRC_PORTS 0x01
#define XT_SCTP_DEST_PORTS 0x02 #define XT_SCTP_DEST_PORTS 0x02
#define XT_SCTP_CHUNK_TYPES 0x04 #define XT_SCTP_CHUNK_TYPES 0x04
...@@ -8,49 +10,49 @@ ...@@ -8,49 +10,49 @@
#define XT_SCTP_VALID_FLAGS 0x07 #define XT_SCTP_VALID_FLAGS 0x07
struct xt_sctp_flag_info { struct xt_sctp_flag_info {
u_int8_t chunktype; __u8 chunktype;
u_int8_t flag; __u8 flag;
u_int8_t flag_mask; __u8 flag_mask;
}; };
#define XT_NUM_SCTP_FLAGS 4 #define XT_NUM_SCTP_FLAGS 4
struct xt_sctp_info { struct xt_sctp_info {
u_int16_t dpts[2]; /* Min, Max */ __u16 dpts[2]; /* Min, Max */
u_int16_t spts[2]; /* Min, Max */ __u16 spts[2]; /* Min, Max */
u_int32_t chunkmap[256 / sizeof (u_int32_t)]; /* Bit mask of chunks to be matched according to RFC 2960 */ __u32 chunkmap[256 / sizeof (__u32)]; /* Bit mask of chunks to be matched according to RFC 2960 */
#define SCTP_CHUNK_MATCH_ANY 0x01 /* Match if any of the chunk types are present */ #define SCTP_CHUNK_MATCH_ANY 0x01 /* Match if any of the chunk types are present */
#define SCTP_CHUNK_MATCH_ALL 0x02 /* Match if all of the chunk types are present */ #define SCTP_CHUNK_MATCH_ALL 0x02 /* Match if all of the chunk types are present */
#define SCTP_CHUNK_MATCH_ONLY 0x04 /* Match if these are the only chunk types present */ #define SCTP_CHUNK_MATCH_ONLY 0x04 /* Match if these are the only chunk types present */
u_int32_t chunk_match_type; __u32 chunk_match_type;
struct xt_sctp_flag_info flag_info[XT_NUM_SCTP_FLAGS]; struct xt_sctp_flag_info flag_info[XT_NUM_SCTP_FLAGS];
int flag_count; int flag_count;
u_int32_t flags; __u32 flags;
u_int32_t invflags; __u32 invflags;
}; };
#define bytes(type) (sizeof(type) * 8) #define bytes(type) (sizeof(type) * 8)
#define SCTP_CHUNKMAP_SET(chunkmap, type) \ #define SCTP_CHUNKMAP_SET(chunkmap, type) \
do { \ do { \
(chunkmap)[type / bytes(u_int32_t)] |= \ (chunkmap)[type / bytes(__u32)] |= \
1 << (type % bytes(u_int32_t)); \ 1 << (type % bytes(__u32)); \
} while (0) } while (0)
#define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \
do { \ do { \
(chunkmap)[type / bytes(u_int32_t)] &= \ (chunkmap)[type / bytes(__u32)] &= \
~(1 << (type % bytes(u_int32_t))); \ ~(1 << (type % bytes(__u32))); \
} while (0) } while (0)
#define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \
({ \ ({ \
((chunkmap)[type / bytes (u_int32_t)] & \ ((chunkmap)[type / bytes (__u32)] & \
(1 << (type % bytes (u_int32_t)))) ? 1: 0; \ (1 << (type % bytes (__u32)))) ? 1: 0; \
}) })
#define SCTP_CHUNKMAP_RESET(chunkmap) \ #define SCTP_CHUNKMAP_RESET(chunkmap) \
...@@ -65,7 +67,7 @@ struct xt_sctp_info { ...@@ -65,7 +67,7 @@ struct xt_sctp_info {
#define SCTP_CHUNKMAP_IS_CLEAR(chunkmap) \ #define SCTP_CHUNKMAP_IS_CLEAR(chunkmap) \
__sctp_chunkmap_is_clear((chunkmap), ARRAY_SIZE(chunkmap)) __sctp_chunkmap_is_clear((chunkmap), ARRAY_SIZE(chunkmap))
static inline bool static inline bool
__sctp_chunkmap_is_clear(const u_int32_t *chunkmap, unsigned int n) __sctp_chunkmap_is_clear(const __u32 *chunkmap, unsigned int n)
{ {
unsigned int i; unsigned int i;
for (i = 0; i < n; ++i) for (i = 0; i < n; ++i)
...@@ -77,7 +79,7 @@ __sctp_chunkmap_is_clear(const u_int32_t *chunkmap, unsigned int n) ...@@ -77,7 +79,7 @@ __sctp_chunkmap_is_clear(const u_int32_t *chunkmap, unsigned int n)
#define SCTP_CHUNKMAP_IS_ALL_SET(chunkmap) \ #define SCTP_CHUNKMAP_IS_ALL_SET(chunkmap) \
__sctp_chunkmap_is_all_set((chunkmap), ARRAY_SIZE(chunkmap)) __sctp_chunkmap_is_all_set((chunkmap), ARRAY_SIZE(chunkmap))
static inline bool static inline bool
__sctp_chunkmap_is_all_set(const u_int32_t *chunkmap, unsigned int n) __sctp_chunkmap_is_all_set(const __u32 *chunkmap, unsigned int n)
{ {
unsigned int i; unsigned int i;
for (i = 0; i < n; ++i) for (i = 0; i < n; ++i)
......
#ifndef _XT_STATISTIC_H #ifndef _XT_STATISTIC_H
#define _XT_STATISTIC_H #define _XT_STATISTIC_H
#include <linux/types.h>
enum xt_statistic_mode { enum xt_statistic_mode {
XT_STATISTIC_MODE_RANDOM, XT_STATISTIC_MODE_RANDOM,
XT_STATISTIC_MODE_NTH, XT_STATISTIC_MODE_NTH,
...@@ -14,17 +16,17 @@ enum xt_statistic_flags { ...@@ -14,17 +16,17 @@ enum xt_statistic_flags {
#define XT_STATISTIC_MASK 0x1 #define XT_STATISTIC_MASK 0x1
struct xt_statistic_info { struct xt_statistic_info {
u_int16_t mode; __u16 mode;
u_int16_t flags; __u16 flags;
union { union {
struct { struct {
u_int32_t probability; __u32 probability;
} random; } random;
struct { struct {
u_int32_t every; __u32 every;
u_int32_t packet; __u32 packet;
/* Used internally by the kernel */ /* Used internally by the kernel */
u_int32_t count; __u32 count;
} nth; } nth;
} u; } u;
struct xt_statistic_info *master __attribute__((aligned(8))); struct xt_statistic_info *master __attribute__((aligned(8)));
......
#ifndef _XT_STRING_H #ifndef _XT_STRING_H
#define _XT_STRING_H #define _XT_STRING_H
#include <linux/types.h>
#define XT_STRING_MAX_PATTERN_SIZE 128 #define XT_STRING_MAX_PATTERN_SIZE 128
#define XT_STRING_MAX_ALGO_NAME_SIZE 16 #define XT_STRING_MAX_ALGO_NAME_SIZE 16
...@@ -11,18 +13,18 @@ enum { ...@@ -11,18 +13,18 @@ enum {
struct xt_string_info struct xt_string_info
{ {
u_int16_t from_offset; __u16 from_offset;
u_int16_t to_offset; __u16 to_offset;
char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; char algo[XT_STRING_MAX_ALGO_NAME_SIZE];
char pattern[XT_STRING_MAX_PATTERN_SIZE]; char pattern[XT_STRING_MAX_PATTERN_SIZE];
u_int8_t patlen; __u8 patlen;
union { union {
struct { struct {
u_int8_t invert; __u8 invert;
} v0; } v0;
struct { struct {
u_int8_t flags; __u8 flags;
} v1; } v1;
} u; } u;
......
#ifndef _XT_TCPMSS_MATCH_H #ifndef _XT_TCPMSS_MATCH_H
#define _XT_TCPMSS_MATCH_H #define _XT_TCPMSS_MATCH_H
#include <linux/types.h>
struct xt_tcpmss_match_info { struct xt_tcpmss_match_info {
u_int16_t mss_min, mss_max; __u16 mss_min, mss_max;
u_int8_t invert; __u8 invert;
}; };
#endif /*_XT_TCPMSS_MATCH_H*/ #endif /*_XT_TCPMSS_MATCH_H*/
#ifndef _XT_TCPUDP_H #ifndef _XT_TCPUDP_H
#define _XT_TCPUDP_H #define _XT_TCPUDP_H
#include <linux/types.h>
/* TCP matching stuff */ /* TCP matching stuff */
struct xt_tcp struct xt_tcp
{ {
u_int16_t spts[2]; /* Source port range. */ __u16 spts[2]; /* Source port range. */
u_int16_t dpts[2]; /* Destination port range. */ __u16 dpts[2]; /* Destination port range. */
u_int8_t option; /* TCP Option iff non-zero*/ __u8 option; /* TCP Option iff non-zero*/
u_int8_t flg_mask; /* TCP flags mask byte */ __u8 flg_mask; /* TCP flags mask byte */
u_int8_t flg_cmp; /* TCP flags compare byte */ __u8 flg_cmp; /* TCP flags compare byte */
u_int8_t invflags; /* Inverse flags */ __u8 invflags; /* Inverse flags */
}; };
/* Values for "inv" field in struct ipt_tcp. */ /* Values for "inv" field in struct ipt_tcp. */
...@@ -22,9 +24,9 @@ struct xt_tcp ...@@ -22,9 +24,9 @@ struct xt_tcp
/* UDP matching stuff */ /* UDP matching stuff */
struct xt_udp struct xt_udp
{ {
u_int16_t spts[2]; /* Source port range. */ __u16 spts[2]; /* Source port range. */
u_int16_t dpts[2]; /* Destination port range. */ __u16 dpts[2]; /* Destination port range. */
u_int8_t invflags; /* Inverse flags */ __u8 invflags; /* Inverse flags */
}; };
/* Values for "invflags" field in struct ipt_udp. */ /* Values for "invflags" field in struct ipt_udp. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment