diff options
| author | David Howells <dhowells@redhat.com> | 2012-10-09 04:49:01 -0400 |
|---|---|---|
| committer | David Howells <dhowells@redhat.com> | 2012-10-09 04:49:01 -0400 |
| commit | ff1e1756c974fc1cb68b6e74cd123ad59cf07a2d (patch) | |
| tree | ff8d33e76c8e2e9dbbd8cf578f71ca7b50f7fc2e /include/uapi/linux | |
| parent | 17c075923da59c217155d0758ee0715641ebc152 (diff) | |
UAPI: (Scripted) Disintegrate include/linux/netfilter_ipv6
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Kerrisk <mtk.manpages@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/Kbuild | 12 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6_tables.h | 267 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_HL.h | 24 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_LOG.h | 21 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_NPT.h | 16 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_REJECT.h | 20 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_ah.h | 22 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_frag.h | 25 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_hl.h | 24 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_ipv6header.h | 28 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_mh.h | 16 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_opts.h | 24 | ||||
| -rw-r--r-- | include/uapi/linux/netfilter_ipv6/ip6t_rt.h | 33 |
13 files changed, 532 insertions, 0 deletions
diff --git a/include/uapi/linux/netfilter_ipv6/Kbuild b/include/uapi/linux/netfilter_ipv6/Kbuild index aafaa5aa54d4..75a668ca2353 100644 --- a/include/uapi/linux/netfilter_ipv6/Kbuild +++ b/include/uapi/linux/netfilter_ipv6/Kbuild | |||
| @@ -1 +1,13 @@ | |||
| 1 | # UAPI Header export list | 1 | # UAPI Header export list |
| 2 | header-y += ip6_tables.h | ||
| 3 | header-y += ip6t_HL.h | ||
| 4 | header-y += ip6t_LOG.h | ||
| 5 | header-y += ip6t_NPT.h | ||
| 6 | header-y += ip6t_REJECT.h | ||
| 7 | header-y += ip6t_ah.h | ||
| 8 | header-y += ip6t_frag.h | ||
| 9 | header-y += ip6t_hl.h | ||
| 10 | header-y += ip6t_ipv6header.h | ||
| 11 | header-y += ip6t_mh.h | ||
| 12 | header-y += ip6t_opts.h | ||
| 13 | header-y += ip6t_rt.h | ||
diff --git a/include/uapi/linux/netfilter_ipv6/ip6_tables.h b/include/uapi/linux/netfilter_ipv6/ip6_tables.h new file mode 100644 index 000000000000..bf1ef65cc582 --- /dev/null +++ b/include/uapi/linux/netfilter_ipv6/ip6_tables.h | |||
| @@ -0,0 +1,267 @@ | |||
| 1 | /* | ||
| 2 | * 25-Jul-1998 Major changes to allow for ip chain table | ||
| 3 | * | ||
| 4 | * 3-Jan-2000 Named tables to allow packet selection for different uses. | ||
| 5 | */ | ||
| 6 | |||
| 7 | /* | ||
| 8 | * Format of an IP6 firewall descriptor | ||
| 9 | * | ||
| 10 | * src, dst, src_mask, dst_mask are always stored in network byte order. | ||
| 11 | * flags are stored in host byte order (of course). | ||
| 12 | * Port numbers are stored in HOST byte order. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifndef _UAPI_IP6_TABLES_H | ||
| 16 | #define _UAPI_IP6_TABLES_H | ||
| 17 | |||
| 18 | #include <linux/types.h> | ||
| 19 | #include <linux/compiler.h> | ||
| 20 | #include <linux/netfilter_ipv6.h> | ||
| 21 | |||
| 22 | #include <linux/netfilter/x_tables.h> | ||
| 23 | |||
| 24 | #ifndef __KERNEL__ | ||
| 25 | #define IP6T_FUNCTION_MAXNAMELEN XT_FUNCTION_MAXNAMELEN | ||
| 26 | #define IP6T_TABLE_MAXNAMELEN XT_TABLE_MAXNAMELEN | ||
| 27 | #define ip6t_match xt_match | ||
| 28 | #define ip6t_target xt_target | ||
| 29 | #define ip6t_table xt_table | ||
| 30 | #define ip6t_get_revision xt_get_revision | ||
| 31 | #define ip6t_entry_match xt_entry_match | ||
| 32 | #define ip6t_entry_target xt_entry_target | ||
| 33 | #define ip6t_standard_target xt_standard_target | ||
| 34 | #define ip6t_error_target xt_error_target | ||
| 35 | #define ip6t_counters xt_counters | ||
| 36 | #define IP6T_CONTINUE XT_CONTINUE | ||
| 37 | #define IP6T_RETURN XT_RETURN | ||
| 38 | |||
| 39 | /* Pre-iptables-1.4.0 */ | ||
| 40 | #include <linux/netfilter/xt_tcpudp.h> | ||
| 41 | #define ip6t_tcp xt_tcp | ||
| 42 | #define ip6t_udp xt_udp | ||
| 43 | #define IP6T_TCP_INV_SRCPT XT_TCP_INV_SRCPT | ||
| 44 | #define IP6T_TCP_INV_DSTPT XT_TCP_INV_DSTPT | ||
| 45 | #define IP6T_TCP_INV_FLAGS XT_TCP_INV_FLAGS | ||
| 46 | #define IP6T_TCP_INV_OPTION XT_TCP_INV_OPTION | ||
| 47 | #define IP6T_TCP_INV_MASK XT_TCP_INV_MASK | ||
| 48 | #define IP6T_UDP_INV_SRCPT XT_UDP_INV_SRCPT | ||
| 49 | #define IP6T_UDP_INV_DSTPT XT_UDP_INV_DSTPT | ||
| 50 | #define IP6T_UDP_INV_MASK XT_UDP_INV_MASK | ||
| 51 | |||
| 52 | #define ip6t_counters_info xt_counters_info | ||
| 53 | #define IP6T_STANDARD_TARGET XT_STANDARD_TARGET | ||
| 54 | #define IP6T_ERROR_TARGET XT_ERROR_TARGET | ||
| 55 | #define IP6T_MATCH_ITERATE(e, fn, args...) \ | ||
| 56 | XT_MATCH_ITERATE(struct ip6t_entry, e, fn, ## args) | ||
| 57 | #define IP6T_ENTRY_ITERATE(entries, size, fn, args...) \ | ||
| 58 | XT_ENTRY_ITERATE(struct ip6t_entry, entries, size, fn, ## args) | ||
| 59 | #endif | ||
| 60 | |||
| 61 | /* Yes, Virginia, you have to zero the padding. */ | ||
| 62 | struct ip6t_ip6 { | ||
| 63 | /* Source and destination IP6 addr */ | ||
| 64 | struct in6_addr src, dst; | ||
| 65 | /* Mask for src and dest IP6 addr */ | ||
| 66 | struct in6_addr smsk, dmsk; | ||
| 67 | char iniface[IFNAMSIZ], outiface[IFNAMSIZ]; | ||
| 68 | unsigned char iniface_mask[IFNAMSIZ], outiface_mask[IFNAMSIZ]; | ||
| 69 | |||
| 70 | /* Upper protocol number | ||
| 71 | * - The allowed value is 0 (any) or protocol number of last parsable | ||
| 72 | * header, which is 50 (ESP), 59 (No Next Header), 135 (MH), or | ||
| 73 | * the non IPv6 extension headers. | ||
| 74 | * - The protocol numbers of IPv6 extension headers except of ESP and | ||
| 75 | * MH do not match any packets. | ||
| 76 | * - You also need to set IP6T_FLAGS_PROTO to "flags" to check protocol. | ||
| 77 | */ | ||
| 78 | __u16 proto; | ||
| 79 | /* TOS to match iff flags & IP6T_F_TOS */ | ||
| 80 | __u8 tos; | ||
| 81 | |||
| 82 | /* Flags word */ | ||
| 83 | __u8 flags; | ||
| 84 | /* Inverse flags */ | ||
| 85 | __u8 invflags; | ||
| 86 | }; | ||
| 87 | |||
| 88 | /* Values for "flag" field in struct ip6t_ip6 (general ip6 structure). */ | ||
| 89 | #define IP6T_F_PROTO 0x01 /* Set if rule cares about upper | ||
| 90 | protocols */ | ||
| 91 | #define IP6T_F_TOS 0x02 /* Match the TOS. */ | ||
| 92 | #define IP6T_F_GOTO 0x04 /* Set if jump is a goto */ | ||
| 93 | #define IP6T_F_MASK 0x07 /* All possible flag bits mask. */ | ||
| 94 | |||
| 95 | /* Values for "inv" field in struct ip6t_ip6. */ | ||
| 96 | #define IP6T_INV_VIA_IN 0x01 /* Invert the sense of IN IFACE. */ | ||
| 97 | #define IP6T_INV_VIA_OUT 0x02 /* Invert the sense of OUT IFACE */ | ||
| 98 | #define IP6T_INV_TOS 0x04 /* Invert the sense of TOS. */ | ||
| 99 | #define IP6T_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */ | ||
| 100 | #define IP6T_INV_DSTIP 0x10 /* Invert the sense of DST OP. */ | ||
| 101 | #define IP6T_INV_FRAG 0x20 /* Invert the sense of FRAG. */ | ||
| 102 | #define IP6T_INV_PROTO XT_INV_PROTO | ||
| 103 | #define IP6T_INV_MASK 0x7F /* All possible flag bits mask. */ | ||
| 104 | |||
| 105 | /* This structure defines each of the firewall rules. Consists of 3 | ||
| 106 | parts which are 1) general IP header stuff 2) match specific | ||
| 107 | stuff 3) the target to perform if the rule matches */ | ||
| 108 | struct ip6t_entry { | ||
| 109 | struct ip6t_ip6 ipv6; | ||
| 110 | |||
| 111 | /* Mark with fields that we care about. */ | ||
| 112 | unsigned int nfcache; | ||
| 113 | |||
| 114 | /* Size of ipt_entry + matches */ | ||
| 115 | __u16 target_offset; | ||
| 116 | /* Size of ipt_entry + matches + target */ | ||
| 117 | __u16 next_offset; | ||
| 118 | |||
| 119 | /* Back pointer */ | ||
| 120 | unsigned int comefrom; | ||
| 121 | |||
| 122 | /* Packet and byte counters. */ | ||
| 123 | struct xt_counters counters; | ||
| 124 | |||
| 125 | /* The matches (if any), then the target. */ | ||
| 126 | unsigned char elems[0]; | ||
| 127 | }; | ||
| 128 | |||
| 129 | /* Standard entry */ | ||
| 130 | struct ip6t_standard { | ||
| 131 | struct ip6t_entry entry; | ||
| 132 | struct xt_standard_target target; | ||
| 133 | }; | ||
| 134 | |||
| 135 | struct ip6t_error { | ||
| 136 | struct ip6t_entry entry; | ||
| 137 | struct xt_error_target target; | ||
| 138 | }; | ||
| 139 | |||
| 140 | #define IP6T_ENTRY_INIT(__size) \ | ||
| 141 | { \ | ||
| 142 | .target_offset = sizeof(struct ip6t_entry), \ | ||
| 143 | .next_offset = (__size), \ | ||
