[NETFILTER]: Move ip6_masked_addrcmp to include/net/ipv6.h
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / netfilter / x_tables.h
CommitLineData
2e4e6a17
HW
1#ifndef _X_TABLES_H
2#define _X_TABLES_H
3
4#define XT_FUNCTION_MAXNAMELEN 30
5#define XT_TABLE_MAXNAMELEN 32
6
7/* The argument to IPT_SO_GET_REVISION_*. Returns highest revision
8 * kernel supports, if >= revision. */
9struct xt_get_revision
10{
11 char name[XT_FUNCTION_MAXNAMELEN-1];
12
13 u_int8_t revision;
14};
15
16/* CONTINUE verdict for targets */
17#define XT_CONTINUE 0xFFFFFFFF
18
19/* For standard target */
20#define XT_RETURN (-NF_REPEAT - 1)
21
6fbfc968
DM
22/* this is a dummy structure to find out the alignment requirement for a struct
23 * containing all the fundamental data types that are used in ipt_entry,
24 * ip6t_entry and arpt_entry. This sucks, and it is a hack. It will be my
25 * personal pleasure to remove it -HW
26 */
27struct _xt_align
28{
29 u_int8_t u8;
30 u_int16_t u16;
31 u_int32_t u32;
32 u_int64_t u64;
33};
34
35#define XT_ALIGN(s) (((s) + (__alignof__(struct _xt_align)-1)) \
36 & ~(__alignof__(struct _xt_align)-1))
2e4e6a17
HW
37
38/* Standard return verdict, or do jump. */
39#define XT_STANDARD_TARGET ""
40/* Error verdict. */
41#define XT_ERROR_TARGET "ERROR"
42
43/*
44 * New IP firewall options for [gs]etsockopt at the RAW IP level.
45 * Unlike BSD Linux inherits IP options so you don't have to use a raw
46 * socket for this. Instead we check rights in the calls. */
47#define XT_BASE_CTL 64 /* base for firewall socket options */
48
49#define XT_SO_SET_REPLACE (XT_BASE_CTL)
50#define XT_SO_SET_ADD_COUNTERS (XT_BASE_CTL + 1)
51#define XT_SO_SET_MAX XT_SO_SET_ADD_COUNTERS
52
53#define XT_SO_GET_INFO (XT_BASE_CTL)
54#define XT_SO_GET_ENTRIES (XT_BASE_CTL + 1)
55#define XT_SO_GET_REVISION_MATCH (XT_BASE_CTL + 2)
56#define XT_SO_GET_REVISION_TARGET (XT_BASE_CTL + 3)
57#define XT_SO_GET_MAX XT_SO_GET_REVISION_TARGET
58
59#define SET_COUNTER(c,b,p) do { (c).bcnt = (b); (c).pcnt = (p); } while(0)
60#define ADD_COUNTER(c,b,p) do { (c).bcnt += (b); (c).pcnt += (p); } while(0)
61
62struct xt_counters
63{
64 u_int64_t pcnt, bcnt; /* Packet and byte counters */
65};
66
67/* The argument to IPT_SO_ADD_COUNTERS. */
68struct xt_counters_info
69{
70 /* Which table. */
71 char name[XT_TABLE_MAXNAMELEN];
72
73 unsigned int num_counters;
74
75 /* The counters (actually `number' of these). */
76 struct xt_counters counters[0];
77};
78
79#define XT_INV_PROTO 0x40 /* Invert the sense of PROTO. */
80
81#ifdef __KERNEL__
82
83#include <linux/netdevice.h>
84
85#define ASSERT_READ_LOCK(x)
86#define ASSERT_WRITE_LOCK(x)
87#include <linux/netfilter_ipv4/listhelp.h>
88
89struct xt_match
90{
91 struct list_head list;
92
93 const char name[XT_FUNCTION_MAXNAMELEN-1];
94
2e4e6a17
HW
95 /* Return true or false: return FALSE and set *hotdrop = 1 to
96 force immediate packet drop. */
97 /* Arguments changed since 2.6.9, as this must now handle
98 non-linear skb, using skb_header_pointer and
99 skb_ip_make_writable. */
100 int (*match)(const struct sk_buff *skb,
101 const struct net_device *in,
102 const struct net_device *out,
1c524830 103 const struct xt_match *match,
2e4e6a17
HW
104 const void *matchinfo,
105 int offset,
106 unsigned int protoff,
107 int *hotdrop);
108
109 /* Called when user tries to insert an entry of this type. */
110 /* Should return true or false. */
111 int (*checkentry)(const char *tablename,
112 const void *ip,
1c524830 113 const struct xt_match *match,
2e4e6a17
HW
114 void *matchinfo,
115 unsigned int matchinfosize,
116 unsigned int hook_mask);
117
118 /* Called when entry of this type deleted. */
1c524830
PM
119 void (*destroy)(const struct xt_match *match, void *matchinfo,
120 unsigned int matchinfosize);
2e4e6a17
HW
121
122 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
123 struct module *me;
37f9f733
PM
124
125 char *table;
126 unsigned int matchsize;
127 unsigned int hooks;
128 unsigned short proto;
129 u_int8_t revision;
2e4e6a17
HW
130};
131
132/* Registration hooks for targets. */
133struct xt_target
134{
135 struct list_head list;
136
137 const char name[XT_FUNCTION_MAXNAMELEN-1];
138
2e4e6a17
HW
139 /* Returns verdict. Argument order changed since 2.6.9, as this
140 must now handle non-linear skbs, using skb_copy_bits and
141 skb_ip_make_writable. */
142 unsigned int (*target)(struct sk_buff **pskb,
143 const struct net_device *in,
144 const struct net_device *out,
145 unsigned int hooknum,
1c524830 146 const struct xt_target *target,
2e4e6a17
HW
147 const void *targinfo,
148 void *userdata);
149
150 /* Called when user tries to insert an entry of this type:
151 hook_mask is a bitmask of hooks from which it can be
152 called. */
153 /* Should return true or false. */
154 int (*checkentry)(const char *tablename,
155 const void *entry,
1c524830 156 const struct xt_target *target,
2e4e6a17
HW
157 void *targinfo,
158 unsigned int targinfosize,
159 unsigned int hook_mask);
160
161 /* Called when entry of this type deleted. */
1c524830
PM
162 void (*destroy)(const struct xt_target *target, void *targinfo,
163 unsigned int targinfosize);
2e4e6a17
HW
164
165 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
166 struct module *me;
37f9f733
PM
167
168 char *table;
169 unsigned int targetsize;
170 unsigned int hooks;
171 unsigned short proto;
172 u_int8_t revision;
2e4e6a17
HW
173};
174
175/* Furniture shopping... */
176struct xt_table
177{
178 struct list_head list;
179
180 /* A unique name... */
181 char name[XT_TABLE_MAXNAMELEN];
182
183 /* What hooks you will enter on */
184 unsigned int valid_hooks;
185
186 /* Lock for the curtain */
187 rwlock_t lock;
188
189 /* Man behind the curtain... */
190 //struct ip6t_table_info *private;
191 void *private;
192
193 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
194 struct module *me;
195
196 int af; /* address/protocol family */
197};
198
199#include <linux/netfilter_ipv4.h>
200
201/* The table itself */
202struct xt_table_info
203{
204 /* Size per table */
205 unsigned int size;
206 /* Number of entries: FIXME. --RR */
207 unsigned int number;
208 /* Initial number of entries. Needed for module usage count */
209 unsigned int initial_entries;
210
211 /* Entry points and underflows */
212 unsigned int hook_entry[NF_IP_NUMHOOKS];
213 unsigned int underflow[NF_IP_NUMHOOKS];
214
215 /* ipt_entry tables: one per CPU */
216 char *entries[NR_CPUS];
217};
218
219extern int xt_register_target(int af, struct xt_target *target);
220extern void xt_unregister_target(int af, struct xt_target *target);
221extern int xt_register_match(int af, struct xt_match *target);
222extern void xt_unregister_match(int af, struct xt_match *target);
223
37f9f733
PM
224extern int xt_check_match(const struct xt_match *match, unsigned short family,
225 unsigned int size, const char *table, unsigned int hook,
226 unsigned short proto, int inv_proto);
227extern int xt_check_target(const struct xt_target *target, unsigned short family,
228 unsigned int size, const char *table, unsigned int hook,
229 unsigned short proto, int inv_proto);
230
2e4e6a17
HW
231extern int xt_register_table(struct xt_table *table,
232 struct xt_table_info *bootstrap,
233 struct xt_table_info *newinfo);
234extern void *xt_unregister_table(struct xt_table *table);
235
236extern struct xt_table_info *xt_replace_table(struct xt_table *table,
237 unsigned int num_counters,
238 struct xt_table_info *newinfo,
239 int *error);
240
241extern struct xt_match *xt_find_match(int af, const char *name, u8 revision);
242extern struct xt_target *xt_find_target(int af, const char *name, u8 revision);
243extern struct xt_target *xt_request_find_target(int af, const char *name,
244 u8 revision);
245extern int xt_find_revision(int af, const char *name, u8 revision, int target,
246 int *err);
247
248extern struct xt_table *xt_find_table_lock(int af, const char *name);
249extern void xt_table_unlock(struct xt_table *t);
250
251extern int xt_proto_init(int af);
252extern void xt_proto_fini(int af);
253
254extern struct xt_table_info *xt_alloc_table_info(unsigned int size);
255extern void xt_free_table_info(struct xt_table_info *info);
256
257#endif /* __KERNEL__ */
258
259#endif /* _X_TABLES_H */