1
2#ifndef _X_TABLES_H
3#define _X_TABLES_H
4#include <linux/const.h>
5#include <linux/types.h>
6
7#define XT_FUNCTION_MAXNAMELEN 30
8#define XT_EXTENSION_MAXNAMELEN 29
9#define XT_TABLE_MAXNAMELEN 32
10
11struct xt_entry_match {
12 union {
13 struct {
14 __u16 match_size;
15
16
17 char name[XT_EXTENSION_MAXNAMELEN];
18 __u8 revision;
19 } user;
20 struct {
21 __u16 match_size;
22
23
24 struct xt_match *match;
25 } kernel;
26
27
28 __u16 match_size;
29 } u;
30
31 unsigned char data[0];
32};
33
34struct xt_entry_target {
35 union {
36 struct {
37 __u16 target_size;
38
39
40 char name[XT_EXTENSION_MAXNAMELEN];
41 __u8 revision;
42 } user;
43 struct {
44 __u16 target_size;
45
46
47 struct xt_target *target;
48 } kernel;
49
50
51 __u16 target_size;
52 } u;
53
54 unsigned char data[0];
55};
56
57#define XT_TARGET_INIT(__name, __size) \
58{ \
59 .target.u.user = { \
60 .target_size = XT_ALIGN(__size), \
61 .name = __name, \
62 }, \
63}
64
65struct xt_standard_target {
66 struct xt_entry_target target;
67 int verdict;
68};
69
70struct xt_error_target {
71 struct xt_entry_target target;
72 char errorname[XT_FUNCTION_MAXNAMELEN];
73};
74
75
76
77struct xt_get_revision {
78 char name[XT_EXTENSION_MAXNAMELEN];
79 __u8 revision;
80};
81
82
83#define XT_CONTINUE 0xFFFFFFFF
84
85
86#define XT_RETURN (-NF_REPEAT - 1)
87
88
89
90
91
92
93struct _xt_align {
94 __u8 u8;
95 __u16 u16;
96 __u32 u32;
97 __u64 u64;
98};
99
100#define XT_ALIGN(s) __ALIGN_KERNEL((s), __alignof__(struct _xt_align))
101
102
103#define XT_STANDARD_TARGET ""
104
105#define XT_ERROR_TARGET "ERROR"
106
107#define SET_COUNTER(c,b,p) do { (c).bcnt = (b); (c).pcnt = (p); } while(0)
108#define ADD_COUNTER(c,b,p) do { (c).bcnt += (b); (c).pcnt += (p); } while(0)
109
110struct xt_counters {
111 __u64 pcnt, bcnt;
112};
113
114
115struct xt_counters_info {
116
117 char name[XT_TABLE_MAXNAMELEN];
118
119 unsigned int num_counters;
120
121
122 struct xt_counters counters[0];
123};
124
125#define XT_INV_PROTO 0x40
126
127
128#define XT_MATCH_ITERATE(type, e, fn, args...) \
129({ \
130 unsigned int __i; \
131 int __ret = 0; \
132 struct xt_entry_match *__m; \
133 \
134 for (__i = sizeof(type); \
135 __i < (e)->target_offset; \
136 __i += __m->u.match_size) { \
137 __m = (void *)e + __i; \
138 \
139 __ret = fn(__m , ## args); \
140 if (__ret != 0) \
141 break; \
142 } \
143 __ret; \
144})
145
146
147#define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
148({ \
149 unsigned int __i, __n; \
150 int __ret = 0; \
151 type *__entry; \
152 \
153 for (__i = 0, __n = 0; __i < (size); \
154 __i += __entry->next_offset, __n++) { \
155 __entry = (void *)(entries) + __i; \
156 if (__n < n) \
157 continue; \
158 \
159 __ret = fn(__entry , ## args); \
160 if (__ret != 0) \
161 break; \
162 } \
163 __ret; \
164})
165
166
167#define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
168 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
169
170
171
172#define xt_entry_foreach(pos, ehead, esize) \
173 for ((pos) = (typeof(pos))(ehead); \
174 (pos) < (typeof(pos))((char *)(ehead) + (esize)); \
175 (pos) = (typeof(pos))((char *)(pos) + (pos)->next_offset))
176
177
178#define xt_ematch_foreach(pos, entry) \
179 for ((pos) = (struct xt_entry_match *)entry->elems; \
180 (pos) < (struct xt_entry_match *)((char *)(entry) + \
181 (entry)->target_offset); \
182 (pos) = (struct xt_entry_match *)((char *)(pos) + \
183 (pos)->u.match_size))
184
185
186#endif
187