blob: 09d6f8df60f0323e02bef33f6497875fbed27219 [file] [log] [blame]
Patrick McHardy96518512013-10-14 11:00:02 +02001#ifndef _NET_NF_TABLES_H
2#define _NET_NF_TABLES_H
3
Patrick McHardy0b2d8a72015-04-11 10:46:38 +01004#include <linux/module.h>
Patrick McHardy96518512013-10-14 11:00:02 +02005#include <linux/list.h>
6#include <linux/netfilter.h>
Patrick McHardy67a8fc22014-02-18 18:06:49 +00007#include <linux/netfilter/nfnetlink.h>
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02008#include <linux/netfilter/x_tables.h>
Patrick McHardy96518512013-10-14 11:00:02 +02009#include <linux/netfilter/nf_tables.h>
Eric Dumazetce355e22014-07-09 15:14:06 +020010#include <linux/u64_stats_sync.h>
Patrick McHardy96518512013-10-14 11:00:02 +020011#include <net/netlink.h>
12
Patrick McHardy20a69342013-10-11 12:06:22 +020013#define NFT_JUMP_STACK_SIZE 16
14
Patrick McHardy96518512013-10-14 11:00:02 +020015struct nft_pktinfo {
16 struct sk_buff *skb;
17 const struct net_device *in;
18 const struct net_device *out;
Patrick McHardyc9484872014-01-03 12:16:14 +000019 const struct nf_hook_ops *ops;
Patrick McHardy96518512013-10-14 11:00:02 +020020 u8 nhoff;
21 u8 thoff;
Patrick McHardy4566bf22014-01-03 12:16:18 +000022 u8 tprot;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020023 /* for x_tables compatibility */
24 struct xt_action_param xt;
Patrick McHardy96518512013-10-14 11:00:02 +020025};
26
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020027static inline void nft_set_pktinfo(struct nft_pktinfo *pkt,
28 const struct nf_hook_ops *ops,
29 struct sk_buff *skb,
David S. Miller073bfd52015-04-03 21:16:25 -040030 const struct nf_hook_state *state)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020031{
32 pkt->skb = skb;
David S. Miller073bfd52015-04-03 21:16:25 -040033 pkt->in = pkt->xt.in = state->in;
34 pkt->out = pkt->xt.out = state->out;
Patrick McHardyc9484872014-01-03 12:16:14 +000035 pkt->ops = ops;
36 pkt->xt.hooknum = ops->hooknum;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020037 pkt->xt.family = ops->pf;
38}
39
Patrick McHardya55e22e2015-04-11 02:27:31 +010040/**
41 * struct nft_verdict - nf_tables verdict
42 *
43 * @code: nf_tables/netfilter verdict code
44 * @chain: destination chain for NFT_JUMP/NFT_GOTO
45 */
46struct nft_verdict {
47 u32 code;
48 struct nft_chain *chain;
49};
50
Patrick McHardy96518512013-10-14 11:00:02 +020051struct nft_data {
52 union {
Patrick McHardy1ca2e172015-04-11 02:27:32 +010053 u32 data[4];
54 struct nft_verdict verdict;
Patrick McHardy96518512013-10-14 11:00:02 +020055 };
56} __attribute__((aligned(__alignof__(u64))));
57
Patrick McHardya55e22e2015-04-11 02:27:31 +010058/**
59 * struct nft_regs - nf_tables register set
60 *
61 * @data: data registers
62 * @verdict: verdict register
63 *
64 * The first four data registers alias to the verdict register.
65 */
66struct nft_regs {
67 union {
Patrick McHardy49499c32015-04-11 02:27:37 +010068 u32 data[20];
Patrick McHardya55e22e2015-04-11 02:27:31 +010069 struct nft_verdict verdict;
70 };
71};
72
Patrick McHardy49499c32015-04-11 02:27:37 +010073static inline void nft_data_copy(u32 *dst, const struct nft_data *src,
74 unsigned int len)
Patrick McHardy96518512013-10-14 11:00:02 +020075{
Patrick McHardy49499c32015-04-11 02:27:37 +010076 memcpy(dst, src, len);
Patrick McHardy96518512013-10-14 11:00:02 +020077}
78
79static inline void nft_data_debug(const struct nft_data *data)
80{
81 pr_debug("data[0]=%x data[1]=%x data[2]=%x data[3]=%x\n",
82 data->data[0], data->data[1],
83 data->data[2], data->data[3]);
84}
85
86/**
Patrick McHardy20a69342013-10-11 12:06:22 +020087 * struct nft_ctx - nf_tables rule/set context
Patrick McHardy96518512013-10-14 11:00:02 +020088 *
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020089 * @net: net namespace
Patrick McHardy96518512013-10-14 11:00:02 +020090 * @afi: address family info
91 * @table: the table the chain is contained in
92 * @chain: the chain the rule is contained in
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020093 * @nla: netlink attributes
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +020094 * @portid: netlink portID of the original message
95 * @seq: netlink sequence number
96 * @report: notify via unicast netlink message
Patrick McHardy96518512013-10-14 11:00:02 +020097 */
98struct nft_ctx {
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020099 struct net *net;
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +0200100 struct nft_af_info *afi;
101 struct nft_table *table;
102 struct nft_chain *chain;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200103 const struct nlattr * const *nla;
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200104 u32 portid;
105 u32 seq;
106 bool report;
Patrick McHardy96518512013-10-14 11:00:02 +0200107};
108
Patrick McHardy96518512013-10-14 11:00:02 +0200109struct nft_data_desc {
110 enum nft_data_types type;
111 unsigned int len;
112};
113
Patrick McHardyd0a11fc2015-04-11 02:27:38 +0100114int nft_data_init(const struct nft_ctx *ctx,
115 struct nft_data *data, unsigned int size,
Joe Perches5eccdfa2013-10-19 22:05:31 -0700116 struct nft_data_desc *desc, const struct nlattr *nla);
117void nft_data_uninit(const struct nft_data *data, enum nft_data_types type);
118int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
119 enum nft_data_types type, unsigned int len);
Patrick McHardy96518512013-10-14 11:00:02 +0200120
121static inline enum nft_data_types nft_dreg_to_type(enum nft_registers reg)
122{
123 return reg == NFT_REG_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE;
124}
125
Patrick McHardy20a69342013-10-11 12:06:22 +0200126static inline enum nft_registers nft_type_to_reg(enum nft_data_types type)
127{
128 return type == NFT_DATA_VERDICT ? NFT_REG_VERDICT : NFT_REG_1;
129}
130
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100131unsigned int nft_parse_register(const struct nlattr *attr);
132int nft_dump_register(struct sk_buff *skb, unsigned int attr, unsigned int reg);
133
Patrick McHardyd07db982015-04-11 02:27:30 +0100134int nft_validate_register_load(enum nft_registers reg, unsigned int len);
Patrick McHardy1ec10212015-04-11 02:27:27 +0100135int nft_validate_register_store(const struct nft_ctx *ctx,
136 enum nft_registers reg,
137 const struct nft_data *data,
138 enum nft_data_types type, unsigned int len);
Patrick McHardy96518512013-10-14 11:00:02 +0200139
Patrick McHardy86f1ec32015-03-03 20:04:20 +0000140/**
141 * struct nft_userdata - user defined data associated with an object
142 *
143 * @len: length of the data
144 * @data: content
145 *
146 * The presence of user data is indicated in an object specific fashion,
147 * so a length of zero can't occur and the value "len" indicates data
148 * of length len + 1.
149 */
150struct nft_userdata {
151 u8 len;
152 unsigned char data[0];
153};
154
Patrick McHardy96518512013-10-14 11:00:02 +0200155/**
Patrick McHardy20a69342013-10-11 12:06:22 +0200156 * struct nft_set_elem - generic representation of set elements
157 *
Patrick McHardy20a69342013-10-11 12:06:22 +0200158 * @key: element key
Patrick McHardyfe2811e2015-03-25 13:07:50 +0000159 * @priv: element private data and extensions
Patrick McHardy20a69342013-10-11 12:06:22 +0200160 */
161struct nft_set_elem {
Patrick McHardy7d740262015-04-11 02:27:39 +0100162 union {
163 u32 buf[NFT_DATA_VALUE_MAXLEN / sizeof(u32)];
164 struct nft_data val;
165 } key;
Patrick McHardyfe2811e2015-03-25 13:07:50 +0000166 void *priv;
Patrick McHardy20a69342013-10-11 12:06:22 +0200167};
168
169struct nft_set;
170struct nft_set_iter {
171 unsigned int count;
172 unsigned int skip;
173 int err;
174 int (*fn)(const struct nft_ctx *ctx,
175 const struct nft_set *set,
176 const struct nft_set_iter *iter,
177 const struct nft_set_elem *elem);
178};
179
180/**
Patrick McHardyc50b9602014-03-28 10:19:47 +0000181 * struct nft_set_desc - description of set elements
182 *
183 * @klen: key length
184 * @dlen: data length
185 * @size: number of set elements
186 */
187struct nft_set_desc {
188 unsigned int klen;
189 unsigned int dlen;
190 unsigned int size;
191};
192
193/**
194 * enum nft_set_class - performance class
195 *
196 * @NFT_LOOKUP_O_1: constant, O(1)
197 * @NFT_LOOKUP_O_LOG_N: logarithmic, O(log N)
198 * @NFT_LOOKUP_O_N: linear, O(N)
199 */
200enum nft_set_class {
201 NFT_SET_CLASS_O_1,
202 NFT_SET_CLASS_O_LOG_N,
203 NFT_SET_CLASS_O_N,
204};
205
206/**
207 * struct nft_set_estimate - estimation of memory and performance
208 * characteristics
209 *
210 * @size: required memory
211 * @class: lookup performance class
212 */
213struct nft_set_estimate {
214 unsigned int size;
215 enum nft_set_class class;
216};
217
Patrick McHardyb2832dd2015-03-25 14:08:48 +0000218struct nft_set_ext;
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200219struct nft_expr;
Patrick McHardyb2832dd2015-03-25 14:08:48 +0000220
Patrick McHardyc50b9602014-03-28 10:19:47 +0000221/**
Patrick McHardy20a69342013-10-11 12:06:22 +0200222 * struct nft_set_ops - nf_tables set operations
223 *
224 * @lookup: look up an element within the set
225 * @insert: insert new element into set
Patrick McHardycc02e452015-03-25 14:08:50 +0000226 * @activate: activate new element in the next generation
227 * @deactivate: deactivate element in the next generation
Patrick McHardy20a69342013-10-11 12:06:22 +0200228 * @remove: remove element from set
229 * @walk: iterate over all set elemeennts
230 * @privsize: function to return size of set private data
231 * @init: initialize private data of new set instance
232 * @destroy: destroy private data of set instance
233 * @list: nf_tables_set_ops list node
234 * @owner: module reference
Patrick McHardyfe2811e2015-03-25 13:07:50 +0000235 * @elemsize: element private size
Patrick McHardy20a69342013-10-11 12:06:22 +0200236 * @features: features supported by the implementation
237 */
238struct nft_set_ops {
239 bool (*lookup)(const struct nft_set *set,
Patrick McHardy8cd89372015-04-11 02:27:35 +0100240 const u32 *key,
Patrick McHardyb2832dd2015-03-25 14:08:48 +0000241 const struct nft_set_ext **ext);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200242 bool (*update)(struct nft_set *set,
Patrick McHardy8cd89372015-04-11 02:27:35 +0100243 const u32 *key,
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200244 void *(*new)(struct nft_set *,
245 const struct nft_expr *,
Patrick McHardya55e22e2015-04-11 02:27:31 +0100246 struct nft_regs *),
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200247 const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +0100248 struct nft_regs *regs,
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200249 const struct nft_set_ext **ext);
250
Patrick McHardy20a69342013-10-11 12:06:22 +0200251 int (*insert)(const struct nft_set *set,
252 const struct nft_set_elem *elem);
Patrick McHardycc02e452015-03-25 14:08:50 +0000253 void (*activate)(const struct nft_set *set,
254 const struct nft_set_elem *elem);
255 void * (*deactivate)(const struct nft_set *set,
256 const struct nft_set_elem *elem);
Patrick McHardy20a69342013-10-11 12:06:22 +0200257 void (*remove)(const struct nft_set *set,
258 const struct nft_set_elem *elem);
259 void (*walk)(const struct nft_ctx *ctx,
260 const struct nft_set *set,
261 struct nft_set_iter *iter);
262
263 unsigned int (*privsize)(const struct nlattr * const nla[]);
Patrick McHardyc50b9602014-03-28 10:19:47 +0000264 bool (*estimate)(const struct nft_set_desc *desc,
265 u32 features,
266 struct nft_set_estimate *est);
Patrick McHardy20a69342013-10-11 12:06:22 +0200267 int (*init)(const struct nft_set *set,
Patrick McHardyc50b9602014-03-28 10:19:47 +0000268 const struct nft_set_desc *desc,
Patrick McHardy20a69342013-10-11 12:06:22 +0200269 const struct nlattr * const nla[]);
270 void (*destroy)(const struct nft_set *set);
271
272 struct list_head list;
273 struct module *owner;
Patrick McHardyfe2811e2015-03-25 13:07:50 +0000274 unsigned int elemsize;
Patrick McHardy20a69342013-10-11 12:06:22 +0200275 u32 features;
276};
277
Joe Perches5eccdfa2013-10-19 22:05:31 -0700278int nft_register_set(struct nft_set_ops *ops);
279void nft_unregister_set(struct nft_set_ops *ops);
Patrick McHardy20a69342013-10-11 12:06:22 +0200280
281/**
282 * struct nft_set - nf_tables set instance
283 *
284 * @list: table set list node
285 * @bindings: list of set bindings
286 * @name: name of the set
287 * @ktype: key type (numeric type defined by userspace, not used in the kernel)
288 * @dtype: data type (verdict or numeric type defined by userspace)
Patrick McHardyc50b9602014-03-28 10:19:47 +0000289 * @size: maximum set size
290 * @nelems: number of elements
Patrick McHardy3dd06732015-04-05 14:41:06 +0200291 * @ndeact: number of deactivated elements queued for removal
Patrick McHardy761da292015-03-26 12:39:36 +0000292 * @timeout: default timeout value in msecs
293 * @gc_int: garbage collection interval in msecs
Arturo Borrero9363dc42014-09-23 13:30:41 +0200294 * @policy: set parameterization (see enum nft_set_policies)
Patrick McHardy20a69342013-10-11 12:06:22 +0200295 * @ops: set ops
Patrick McHardycc02e452015-03-25 14:08:50 +0000296 * @pnet: network namespace
Patrick McHardy20a69342013-10-11 12:06:22 +0200297 * @flags: set flags
298 * @klen: key length
299 * @dlen: data length
300 * @data: private set data
301 */
302struct nft_set {
303 struct list_head list;
304 struct list_head bindings;
305 char name[IFNAMSIZ];
306 u32 ktype;
307 u32 dtype;
Patrick McHardyc50b9602014-03-28 10:19:47 +0000308 u32 size;
Patrick McHardy3dd06732015-04-05 14:41:06 +0200309 atomic_t nelems;
310 u32 ndeact;
Patrick McHardy761da292015-03-26 12:39:36 +0000311 u64 timeout;
312 u32 gc_int;
Arturo Borrero9363dc42014-09-23 13:30:41 +0200313 u16 policy;
Patrick McHardy20a69342013-10-11 12:06:22 +0200314 /* runtime data below here */
315 const struct nft_set_ops *ops ____cacheline_aligned;
Patrick McHardycc02e452015-03-25 14:08:50 +0000316 possible_net_t pnet;
Patrick McHardy20a69342013-10-11 12:06:22 +0200317 u16 flags;
318 u8 klen;
319 u8 dlen;
320 unsigned char data[]
321 __attribute__((aligned(__alignof__(u64))));
322};
323
324static inline void *nft_set_priv(const struct nft_set *set)
325{
326 return (void *)set->data;
327}
328
Patrick McHardy9d098292015-03-26 12:39:40 +0000329static inline struct nft_set *nft_set_container_of(const void *priv)
330{
331 return (void *)priv - offsetof(struct nft_set, data);
332}
333
Joe Perches5eccdfa2013-10-19 22:05:31 -0700334struct nft_set *nf_tables_set_lookup(const struct nft_table *table,
335 const struct nlattr *nla);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +0200336struct nft_set *nf_tables_set_lookup_byid(const struct net *net,
337 const struct nlattr *nla);
Patrick McHardy20a69342013-10-11 12:06:22 +0200338
Patrick McHardy761da292015-03-26 12:39:36 +0000339static inline unsigned long nft_set_gc_interval(const struct nft_set *set)
340{
341 return set->gc_int ? msecs_to_jiffies(set->gc_int) : HZ;
342}
343
Patrick McHardy20a69342013-10-11 12:06:22 +0200344/**
345 * struct nft_set_binding - nf_tables set binding
346 *
347 * @list: set bindings list node
348 * @chain: chain containing the rule bound to the set
Patrick McHardy11113e12015-04-05 14:41:07 +0200349 * @flags: set action flags
Patrick McHardy20a69342013-10-11 12:06:22 +0200350 *
351 * A set binding contains all information necessary for validation
352 * of new elements added to a bound set.
353 */
354struct nft_set_binding {
355 struct list_head list;
356 const struct nft_chain *chain;
Patrick McHardy11113e12015-04-05 14:41:07 +0200357 u32 flags;
Patrick McHardy20a69342013-10-11 12:06:22 +0200358};
359
Joe Perches5eccdfa2013-10-19 22:05:31 -0700360int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
361 struct nft_set_binding *binding);
362void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
363 struct nft_set_binding *binding);
Patrick McHardy20a69342013-10-11 12:06:22 +0200364
Patrick McHardy3ac4c072015-03-25 13:07:49 +0000365/**
366 * enum nft_set_extensions - set extension type IDs
367 *
368 * @NFT_SET_EXT_KEY: element key
369 * @NFT_SET_EXT_DATA: mapping data
370 * @NFT_SET_EXT_FLAGS: element flags
Patrick McHardyc3e1b002015-03-26 12:39:37 +0000371 * @NFT_SET_EXT_TIMEOUT: element timeout
372 * @NFT_SET_EXT_EXPIRATION: element expiration time
Patrick McHardy68e942e2015-04-05 14:43:38 +0200373 * @NFT_SET_EXT_USERDATA: user data associated with the element
Patrick McHardyf25ad2e2015-04-11 10:46:39 +0100374 * @NFT_SET_EXT_EXPR: expression assiociated with the element
Patrick McHardy3ac4c072015-03-25 13:07:49 +0000375 * @NFT_SET_EXT_NUM: number of extension types
376 */
377enum nft_set_extensions {
378 NFT_SET_EXT_KEY,
379 NFT_SET_EXT_DATA,
380 NFT_SET_EXT_FLAGS,
Patrick McHardyc3e1b002015-03-26 12:39:37 +0000381 NFT_SET_EXT_TIMEOUT,
382 NFT_SET_EXT_EXPIRATION,
Patrick McHardy68e942e2015-04-05 14:43:38 +0200383 NFT_SET_EXT_USERDATA,
Patrick McHardyf25ad2e2015-04-11 10:46:39 +0100384 NFT_SET_EXT_EXPR,
Patrick McHardy3ac4c072015-03-25 13:07:49 +0000385 NFT_SET_EXT_NUM
386};
387
388/**
389 * struct nft_set_ext_type - set extension type
390 *
391 * @len: fixed part length of the extension
392 * @align: alignment requirements of the extension
393 */
394struct nft_set_ext_type {
395 u8 len;
396 u8 align;
397};
398
399extern const struct nft_set_ext_type nft_set_ext_types[];
400
401/**
402 * struct nft_set_ext_tmpl - set extension template
403 *
404 * @len: length of extension area
405 * @offset: offsets of individual extension types
406 */
407struct nft_set_ext_tmpl {
408 u16 len;
409 u8 offset[NFT_SET_EXT_NUM];
410};
411
412/**
413 * struct nft_set_ext - set extensions
414 *
Patrick McHardycc02e452015-03-25 14:08:50 +0000415 * @genmask: generation mask
Patrick McHardy3ac4c072015-03-25 13:07:49 +0000416 * @offset: offsets of individual extension types
417 * @data: beginning of extension data
418 */
419struct nft_set_ext {
Patrick McHardycc02e452015-03-25 14:08:50 +0000420 u8 genmask;
Patrick McHardy3ac4c072015-03-25 13:07:49 +0000421 u8 offset[NFT_SET_EXT_NUM];
422 char data[0];
423};
424
425static inline void nft_set_ext_prepare(struct nft_set_ext_tmpl *tmpl)
426{
427 memset(tmpl, 0, sizeof(*tmpl));
428 tmpl->len = sizeof(struct nft_set_ext);
429}
430
431static inline void nft_set_ext_add_length(struct nft_set_ext_tmpl *tmpl, u8 id,
432 unsigned int len)
433{
434 tmpl->len = ALIGN(tmpl->len, nft_set_ext_types[id].align);
435 BUG_ON(tmpl->len > U8_MAX);
436 tmpl->offset[id] = tmpl->len;
437 tmpl->len += nft_set_ext_types[id].len + len;
438}
439
440static inline void nft_set_ext_add(struct nft_set_ext_tmpl *tmpl, u8 id)
441{
442 nft_set_ext_add_length(tmpl, id, 0);
443}
444
445static inline void nft_set_ext_init(struct nft_set_ext *ext,
446 const struct nft_set_ext_tmpl *tmpl)
447{
448 memcpy(ext->offset, tmpl->offset, sizeof(ext->offset));
449}
450
451static inline bool __nft_set_ext_exists(const struct nft_set_ext *ext, u8 id)
452{
453 return !!ext->offset[id];
454}
455
456static inline bool nft_set_ext_exists(const struct nft_set_ext *ext, u8 id)
457{
458 return ext && __nft_set_ext_exists(ext, id);
459}
460
461static inline void *nft_set_ext(const struct nft_set_ext *ext, u8 id)
462{
463 return (void *)ext + ext->offset[id];
464}
465
466static inline struct nft_data *nft_set_ext_key(const struct nft_set_ext *ext)
467{
468 return nft_set_ext(ext, NFT_SET_EXT_KEY);
469}
470
471static inline struct nft_data *nft_set_ext_data(const struct nft_set_ext *ext)
472{
473 return nft_set_ext(ext, NFT_SET_EXT_DATA);
474}
475
476static inline u8 *nft_set_ext_flags(const struct nft_set_ext *ext)
477{
478 return nft_set_ext(ext, NFT_SET_EXT_FLAGS);
479}
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200480
Patrick McHardyc3e1b002015-03-26 12:39:37 +0000481static inline u64 *nft_set_ext_timeout(const struct nft_set_ext *ext)
482{
483 return nft_set_ext(ext, NFT_SET_EXT_TIMEOUT);
484}
485
486static inline unsigned long *nft_set_ext_expiration(const struct nft_set_ext *ext)
487{
488 return nft_set_ext(ext, NFT_SET_EXT_EXPIRATION);
489}
490
Patrick McHardy68e942e2015-04-05 14:43:38 +0200491static inline struct nft_userdata *nft_set_ext_userdata(const struct nft_set_ext *ext)
492{
493 return nft_set_ext(ext, NFT_SET_EXT_USERDATA);
494}
495
Patrick McHardyf25ad2e2015-04-11 10:46:39 +0100496static inline struct nft_expr *nft_set_ext_expr(const struct nft_set_ext *ext)
497{
498 return nft_set_ext(ext, NFT_SET_EXT_EXPR);
499}
500
Patrick McHardyc3e1b002015-03-26 12:39:37 +0000501static inline bool nft_set_elem_expired(const struct nft_set_ext *ext)
502{
503 return nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION) &&
504 time_is_before_eq_jiffies(*nft_set_ext_expiration(ext));
505}
506
Patrick McHardyfe2811e2015-03-25 13:07:50 +0000507static inline struct nft_set_ext *nft_set_elem_ext(const struct nft_set *set,
508 void *elem)
509{
510 return elem + set->ops->elemsize;
511}
512
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200513void *nft_set_elem_init(const struct nft_set *set,
514 const struct nft_set_ext_tmpl *tmpl,
Patrick McHardy49499c32015-04-11 02:27:37 +0100515 const u32 *key, const u32 *data,
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200516 u64 timeout, gfp_t gfp);
Patrick McHardy61edafb2015-03-25 14:08:47 +0000517void nft_set_elem_destroy(const struct nft_set *set, void *elem);
518
Patrick McHardy20a69342013-10-11 12:06:22 +0200519/**
Patrick McHardycfed7e12015-03-26 12:39:38 +0000520 * struct nft_set_gc_batch_head - nf_tables set garbage collection batch
521 *
522 * @rcu: rcu head
523 * @set: set the elements belong to
524 * @cnt: count of elements
525 */
526struct nft_set_gc_batch_head {
527 struct rcu_head rcu;
528 const struct nft_set *set;
529 unsigned int cnt;
530};
531
532#define NFT_SET_GC_BATCH_SIZE ((PAGE_SIZE - \
533 sizeof(struct nft_set_gc_batch_head)) / \
534 sizeof(void *))
535
536/**
537 * struct nft_set_gc_batch - nf_tables set garbage collection batch
538 *
539 * @head: GC batch head
540 * @elems: garbage collection elements
541 */
542struct nft_set_gc_batch {
543 struct nft_set_gc_batch_head head;
544 void *elems[NFT_SET_GC_BATCH_SIZE];
545};
546
547struct nft_set_gc_batch *nft_set_gc_batch_alloc(const struct nft_set *set,
548 gfp_t gfp);
549void nft_set_gc_batch_release(struct rcu_head *rcu);
550
551static inline void nft_set_gc_batch_complete(struct nft_set_gc_batch *gcb)
552{
553 if (gcb != NULL)
554 call_rcu(&gcb->head.rcu, nft_set_gc_batch_release);
555}
556
557static inline struct nft_set_gc_batch *
558nft_set_gc_batch_check(const struct nft_set *set, struct nft_set_gc_batch *gcb,
559 gfp_t gfp)
560{
561 if (gcb != NULL) {
562 if (gcb->head.cnt + 1 < ARRAY_SIZE(gcb->elems))
563 return gcb;
564 nft_set_gc_batch_complete(gcb);
565 }
566 return nft_set_gc_batch_alloc(set, gfp);
567}
568
569static inline void nft_set_gc_batch_add(struct nft_set_gc_batch *gcb,
570 void *elem)
571{
572 gcb->elems[gcb->head.cnt++] = elem;
573}
574
575/**
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200576 * struct nft_expr_type - nf_tables expression type
Patrick McHardy96518512013-10-14 11:00:02 +0200577 *
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200578 * @select_ops: function to select nft_expr_ops
579 * @ops: default ops, used when no select_ops functions is present
Patrick McHardy96518512013-10-14 11:00:02 +0200580 * @list: used internally
581 * @name: Identifier
582 * @owner: module reference
583 * @policy: netlink attribute policy
584 * @maxattr: highest netlink attribute number
Patrick McHardy64d46802014-02-05 15:03:37 +0000585 * @family: address family for AF-specific types
Patrick McHardy151d7992015-04-11 10:46:40 +0100586 * @flags: expression type flags
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200587 */
588struct nft_expr_type {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200589 const struct nft_expr_ops *(*select_ops)(const struct nft_ctx *,
590 const struct nlattr * const tb[]);
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200591 const struct nft_expr_ops *ops;
592 struct list_head list;
593 const char *name;
594 struct module *owner;
595 const struct nla_policy *policy;
596 unsigned int maxattr;
Patrick McHardy64d46802014-02-05 15:03:37 +0000597 u8 family;
Patrick McHardy151d7992015-04-11 10:46:40 +0100598 u8 flags;
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200599};
600
Patrick McHardy151d7992015-04-11 10:46:40 +0100601#define NFT_EXPR_STATEFUL 0x1
602
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200603/**
604 * struct nft_expr_ops - nf_tables expression operations
605 *
606 * @eval: Expression evaluation function
Patrick McHardy96518512013-10-14 11:00:02 +0200607 * @size: full expression size, including private data size
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200608 * @init: initialization function
609 * @destroy: destruction function
610 * @dump: function to dump parameters
611 * @type: expression type
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200612 * @validate: validate expression, called during loop detection
613 * @data: extra data to attach to this expression operation
Patrick McHardy96518512013-10-14 11:00:02 +0200614 */
615struct nft_expr;
616struct nft_expr_ops {
617 void (*eval)(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +0100618 struct nft_regs *regs,
Patrick McHardy96518512013-10-14 11:00:02 +0200619 const struct nft_pktinfo *pkt);
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200620 unsigned int size;
621
Patrick McHardy96518512013-10-14 11:00:02 +0200622 int (*init)(const struct nft_ctx *ctx,
623 const struct nft_expr *expr,
624 const struct nlattr * const tb[]);
Patrick McHardy62472bc2014-03-07 19:08:30 +0100625 void (*destroy)(const struct nft_ctx *ctx,
626 const struct nft_expr *expr);
Patrick McHardy96518512013-10-14 11:00:02 +0200627 int (*dump)(struct sk_buff *skb,
628 const struct nft_expr *expr);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200629 int (*validate)(const struct nft_ctx *ctx,
630 const struct nft_expr *expr,
631 const struct nft_data **data);
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200632 const struct nft_expr_type *type;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200633 void *data;
Patrick McHardy96518512013-10-14 11:00:02 +0200634};
635
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200636#define NFT_EXPR_MAXATTR 16
Patrick McHardy96518512013-10-14 11:00:02 +0200637#define NFT_EXPR_SIZE(size) (sizeof(struct nft_expr) + \
638 ALIGN(size, __alignof__(struct nft_expr)))
639
640/**
641 * struct nft_expr - nf_tables expression
642 *
643 * @ops: expression ops
644 * @data: expression private data
645 */
646struct nft_expr {
647 const struct nft_expr_ops *ops;
648 unsigned char data[];
649};
650
651static inline void *nft_expr_priv(const struct nft_expr *expr)
652{
653 return (void *)expr->data;
654}
655
Patrick McHardy0b2d8a72015-04-11 10:46:38 +0100656struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
657 const struct nlattr *nla);
658void nft_expr_destroy(const struct nft_ctx *ctx, struct nft_expr *expr);
659int nft_expr_dump(struct sk_buff *skb, unsigned int attr,
660 const struct nft_expr *expr);
661
662static inline void nft_expr_clone(struct nft_expr *dst, struct nft_expr *src)
663{
664 __module_get(src->ops->type->owner);
665 memcpy(dst, src, src->ops->size);
666}
667
Patrick McHardy96518512013-10-14 11:00:02 +0200668/**
669 * struct nft_rule - nf_tables rule
670 *
671 * @list: used internally
Patrick McHardy96518512013-10-14 11:00:02 +0200672 * @handle: rule handle
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200673 * @genmask: generation mask
Patrick McHardy96518512013-10-14 11:00:02 +0200674 * @dlen: length of expression data
Patrick McHardy86f1ec32015-03-03 20:04:20 +0000675 * @udata: user data is appended to the rule
Patrick McHardy96518512013-10-14 11:00:02 +0200676 * @data: expression data
677 */
678struct nft_rule {
679 struct list_head list;
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +0100680 u64 handle:42,
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +0200681 genmask:2,
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +0100682 dlen:12,
Patrick McHardy86f1ec32015-03-03 20:04:20 +0000683 udata:1;
Patrick McHardy96518512013-10-14 11:00:02 +0200684 unsigned char data[]
685 __attribute__((aligned(__alignof__(struct nft_expr))));
686};
687
688static inline struct nft_expr *nft_expr_first(const struct nft_rule *rule)
689{
690 return (struct nft_expr *)&rule->data[0];
691}
692
693static inline struct nft_expr *nft_expr_next(const struct nft_expr *expr)
694{
695 return ((void *)expr) + expr->ops->size;
696}
697
698static inline struct nft_expr *nft_expr_last(const struct nft_rule *rule)
699{
700 return (struct nft_expr *)&rule->data[rule->dlen];
701}
702
Patrick McHardy86f1ec32015-03-03 20:04:20 +0000703static inline struct nft_userdata *nft_userdata(const struct nft_rule *rule)
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +0100704{
705 return (void *)&rule->data[rule->dlen];
706}
707
Patrick McHardy96518512013-10-14 11:00:02 +0200708/*
709 * The last pointer isn't really necessary, but the compiler isn't able to
710 * determine that the result of nft_expr_last() is always the same since it
711 * can't assume that the dlen value wasn't changed within calls in the loop.
712 */
713#define nft_rule_for_each_expr(expr, last, rule) \
714 for ((expr) = nft_expr_first(rule), (last) = nft_expr_last(rule); \
715 (expr) != (last); \
716 (expr) = nft_expr_next(expr))
717
718enum nft_chain_flags {
719 NFT_BASE_CHAIN = 0x1,
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +0200720 NFT_CHAIN_INACTIVE = 0x2,
Patrick McHardy96518512013-10-14 11:00:02 +0200721};
722
723/**
724 * struct nft_chain - nf_tables chain
725 *
726 * @rules: list of rules in the chain
727 * @list: used internally
Pablo Neira Ayusob5bc89b2013-10-10 16:49:19 +0200728 * @table: table that this chain belongs to
Patrick McHardy96518512013-10-14 11:00:02 +0200729 * @handle: chain handle
Patrick McHardy96518512013-10-14 11:00:02 +0200730 * @use: number of jump references to this chain
731 * @level: length of longest path to this chain
Pablo Neira Ayusoa0a73792014-06-10 10:53:01 +0200732 * @flags: bitmask of enum nft_chain_flags
Patrick McHardy96518512013-10-14 11:00:02 +0200733 * @name: name of the chain
734 */
735struct nft_chain {
736 struct list_head rules;
737 struct list_head list;
Pablo Neira Ayusob5bc89b2013-10-10 16:49:19 +0200738 struct nft_table *table;
Patrick McHardy96518512013-10-14 11:00:02 +0200739 u64 handle;
Pablo Neira Ayusoa0a73792014-06-10 10:53:01 +0200740 u32 use;
Patrick McHardy96518512013-10-14 11:00:02 +0200741 u16 level;
Pablo Neira Ayusoa0a73792014-06-10 10:53:01 +0200742 u8 flags;
Patrick McHardy96518512013-10-14 11:00:02 +0200743 char name[NFT_CHAIN_MAXNAMELEN];
744};
745
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200746enum nft_chain_type {
747 NFT_CHAIN_T_DEFAULT = 0,
748 NFT_CHAIN_T_ROUTE,
749 NFT_CHAIN_T_NAT,
750 NFT_CHAIN_T_MAX
751};
752
Patrick McHardy1a1e1a12015-03-03 20:10:06 +0000753/**
754 * struct nf_chain_type - nf_tables chain type info
755 *
756 * @name: name of the type
757 * @type: numeric identifier
758 * @family: address family
759 * @owner: module owner
760 * @hook_mask: mask of valid hooks
761 * @hooks: hookfn overrides
762 */
763struct nf_chain_type {
764 const char *name;
765 enum nft_chain_type type;
766 int family;
767 struct module *owner;
768 unsigned int hook_mask;
769 nf_hookfn *hooks[NF_MAX_HOOKS];
770};
771
Pablo Neira Ayuso7210e4e2014-10-13 19:50:22 +0200772int nft_chain_validate_dependency(const struct nft_chain *chain,
773 enum nft_chain_type type);
Pablo Neira Ayuso75e8d062015-01-14 15:33:57 +0100774int nft_chain_validate_hooks(const struct nft_chain *chain,
775 unsigned int hook_flags);
Pablo Neira Ayuso7210e4e2014-10-13 19:50:22 +0200776
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200777struct nft_stats {
Eric Dumazetce355e22014-07-09 15:14:06 +0200778 u64 bytes;
779 u64 pkts;
780 struct u64_stats_sync syncp;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200781};
782
Patrick McHardy115a60b12014-01-03 12:16:15 +0000783#define NFT_HOOK_OPS_MAX 2
784
Patrick McHardy96518512013-10-14 11:00:02 +0200785/**
786 * struct nft_base_chain - nf_tables base chain
787 *
788 * @ops: netfilter hook ops
Patrick McHardy5ebb3352015-03-21 15:19:15 +0000789 * @pnet: net namespace that this chain belongs to
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200790 * @type: chain type
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200791 * @policy: default policy
792 * @stats: per-cpu chain stats
Patrick McHardy96518512013-10-14 11:00:02 +0200793 * @chain: the chain
Pablo Neira Ayuso2cbce132015-06-12 13:55:41 +0200794 * @dev_name: device name that this base chain is attached to (if any)
Patrick McHardy96518512013-10-14 11:00:02 +0200795 */
796struct nft_base_chain {
Patrick McHardy115a60b12014-01-03 12:16:15 +0000797 struct nf_hook_ops ops[NFT_HOOK_OPS_MAX];
Patrick McHardy5ebb3352015-03-21 15:19:15 +0000798 possible_net_t pnet;
Patrick McHardy2a37d752014-01-09 18:42:37 +0000799 const struct nf_chain_type *type;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200800 u8 policy;
801 struct nft_stats __percpu *stats;
Patrick McHardy96518512013-10-14 11:00:02 +0200802 struct nft_chain chain;
Pablo Neira Ayuso2cbce132015-06-12 13:55:41 +0200803 char dev_name[IFNAMSIZ];
Patrick McHardy96518512013-10-14 11:00:02 +0200804};
805
806static inline struct nft_base_chain *nft_base_chain(const struct nft_chain *chain)
807{
808 return container_of(chain, struct nft_base_chain, chain);
809}
810
Patrick McHardy3876d222014-01-09 18:42:43 +0000811unsigned int nft_do_chain(struct nft_pktinfo *pkt,
812 const struct nf_hook_ops *ops);
Patrick McHardy96518512013-10-14 11:00:02 +0200813
Patrick McHardy96518512013-10-14 11:00:02 +0200814/**
815 * struct nft_table - nf_tables table
816 *
817 * @list: used internally
818 * @chains: chains in the table
819 * @sets: sets in the table
820 * @hgenerator: handle generator state
821 * @use: number of chain references to this table
822 * @flags: table flag (see enum nft_table_flags)
823 * @name: name of the table
824 */
825struct nft_table {
826 struct list_head list;
827 struct list_head chains;
828 struct list_head sets;
829 u64 hgenerator;
830 u32 use;
831 u16 flags;
Pablo Neira Ayuso1cae5652015-03-05 15:05:36 +0100832 char name[NFT_TABLE_MAXNAMELEN];
Pablo Neira Ayusoebddf1a2015-05-26 18:41:20 +0200833};
834
835enum nft_af_flags {
836 NFT_AF_NEEDS_DEV = (1 << 0),
Patrick McHardy96518512013-10-14 11:00:02 +0200837};
838
839/**
840 * struct nft_af_info - nf_tables address family info
841 *
842 * @list: used internally
843 * @family: address family
844 * @nhooks: number of hooks in this family
845 * @owner: module owner
846 * @tables: used internally
Pablo Neira Ayusoebddf1a2015-05-26 18:41:20 +0200847 * @flags: family flags
Patrick McHardy115a60b12014-01-03 12:16:15 +0000848 * @nops: number of hook ops in this family
849 * @hook_ops_init: initialization function for chain hook ops
Patrick McHardy96518512013-10-14 11:00:02 +0200850 * @hooks: hookfn overrides for packet validation
851 */
852struct nft_af_info {
853 struct list_head list;
854 int family;
855 unsigned int nhooks;
856 struct module *owner;
857 struct list_head tables;
Pablo Neira Ayusoebddf1a2015-05-26 18:41:20 +0200858 u32 flags;
Patrick McHardy115a60b12014-01-03 12:16:15 +0000859 unsigned int nops;
860 void (*hook_ops_init)(struct nf_hook_ops *,
861 unsigned int);
Patrick McHardy96518512013-10-14 11:00:02 +0200862 nf_hookfn *hooks[NF_MAX_HOOKS];
863};
864
Joe Perches5eccdfa2013-10-19 22:05:31 -0700865int nft_register_afinfo(struct net *, struct nft_af_info *);
866void nft_unregister_afinfo(struct nft_af_info *);
Patrick McHardy96518512013-10-14 11:00:02 +0200867
Patrick McHardy2a37d752014-01-09 18:42:37 +0000868int nft_register_chain_type(const struct nf_chain_type *);
869void nft_unregister_chain_type(const struct nf_chain_type *);
Patrick McHardy96518512013-10-14 11:00:02 +0200870
Joe Perches5eccdfa2013-10-19 22:05:31 -0700871int nft_register_expr(struct nft_expr_type *);
872void nft_unregister_expr(struct nft_expr_type *);
Patrick McHardy96518512013-10-14 11:00:02 +0200873
Patrick McHardy67a8fc22014-02-18 18:06:49 +0000874#define nft_dereference(p) \
875 nfnl_dereference(p, NFNL_SUBSYS_NFTABLES)
876
Patrick McHardy96518512013-10-14 11:00:02 +0200877#define MODULE_ALIAS_NFT_FAMILY(family) \
878 MODULE_ALIAS("nft-afinfo-" __stringify(family))
879
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200880#define MODULE_ALIAS_NFT_CHAIN(family, name) \
881 MODULE_ALIAS("nft-chain-" __stringify(family) "-" name)
Patrick McHardy96518512013-10-14 11:00:02 +0200882
Patrick McHardy64d46802014-02-05 15:03:37 +0000883#define MODULE_ALIAS_NFT_AF_EXPR(family, name) \
884 MODULE_ALIAS("nft-expr-" __stringify(family) "-" name)
885
Patrick McHardy96518512013-10-14 11:00:02 +0200886#define MODULE_ALIAS_NFT_EXPR(name) \
887 MODULE_ALIAS("nft-expr-" name)
888
Patrick McHardy20a69342013-10-11 12:06:22 +0200889#define MODULE_ALIAS_NFT_SET() \
890 MODULE_ALIAS("nft-set")
891
Patrick McHardyea4bd992015-03-25 14:08:49 +0000892/*
893 * The gencursor defines two generations, the currently active and the
894 * next one. Objects contain a bitmask of 2 bits specifying the generations
895 * they're active in. A set bit means they're inactive in the generation
896 * represented by that bit.
897 *
898 * New objects start out as inactive in the current and active in the
899 * next generation. When committing the ruleset the bitmask is cleared,
900 * meaning they're active in all generations. When removing an object,
901 * it is set inactive in the next generation. After committing the ruleset,
902 * the objects are removed.
903 */
904static inline unsigned int nft_gencursor_next(const struct net *net)
905{
906 return net->nft.gencursor + 1 == 1 ? 1 : 0;
907}
908
909static inline u8 nft_genmask_next(const struct net *net)
910{
911 return 1 << nft_gencursor_next(net);
912}
913
914static inline u8 nft_genmask_cur(const struct net *net)
915{
916 /* Use ACCESS_ONCE() to prevent refetching the value for atomicity */
917 return 1 << ACCESS_ONCE(net->nft.gencursor);
918}
919
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200920#define NFT_GENMASK_ANY ((1 << 0) | (1 << 1))
921
Patrick McHardycc02e452015-03-25 14:08:50 +0000922/*
923 * Set element transaction helpers
924 */
925
926static inline bool nft_set_elem_active(const struct nft_set_ext *ext,
927 u8 genmask)
928{
929 return !(ext->genmask & genmask);
930}
931
932static inline void nft_set_elem_change_active(const struct nft_set *set,
933 struct nft_set_ext *ext)
934{
935 ext->genmask ^= nft_genmask_next(read_pnet(&set->pnet));
936}
937
Patrick McHardy69086652015-03-26 12:39:39 +0000938/*
939 * We use a free bit in the genmask field to indicate the element
940 * is busy, meaning it is currently being processed either by
941 * the netlink API or GC.
942 *
943 * Even though the genmask is only a single byte wide, this works
944 * because the extension structure if fully constant once initialized,
945 * so there are no non-atomic write accesses unless it is already
946 * marked busy.
947 */
948#define NFT_SET_ELEM_BUSY_MASK (1 << 2)
949
950#if defined(__LITTLE_ENDIAN_BITFIELD)
951#define NFT_SET_ELEM_BUSY_BIT 2
952#elif defined(__BIG_ENDIAN_BITFIELD)
953#define NFT_SET_ELEM_BUSY_BIT (BITS_PER_LONG - BITS_PER_BYTE + 2)
954#else
955#error
956#endif
957
958static inline int nft_set_elem_mark_busy(struct nft_set_ext *ext)
959{
960 unsigned long *word = (unsigned long *)ext;
961
962 BUILD_BUG_ON(offsetof(struct nft_set_ext, genmask) != 0);
963 return test_and_set_bit(NFT_SET_ELEM_BUSY_BIT, word);
964}
965
966static inline void nft_set_elem_clear_busy(struct nft_set_ext *ext)
967{
968 unsigned long *word = (unsigned long *)ext;
969
970 clear_bit(NFT_SET_ELEM_BUSY_BIT, word);
971}
972
Patrick McHardy1a1e1a12015-03-03 20:10:06 +0000973/**
974 * struct nft_trans - nf_tables object update in transaction
975 *
976 * @list: used internally
977 * @msg_type: message type
978 * @ctx: transaction context
979 * @data: internal information related to the transaction
980 */
981struct nft_trans {
982 struct list_head list;
983 int msg_type;
984 struct nft_ctx ctx;
985 char data[0];
986};
987
988struct nft_trans_rule {
989 struct nft_rule *rule;
990};
991
992#define nft_trans_rule(trans) \
993 (((struct nft_trans_rule *)trans->data)->rule)
994
995struct nft_trans_set {
996 struct nft_set *set;
997 u32 set_id;
998};
999
1000#define nft_trans_set(trans) \
1001 (((struct nft_trans_set *)trans->data)->set)
1002#define nft_trans_set_id(trans) \
1003 (((struct nft_trans_set *)trans->data)->set_id)
1004
1005struct nft_trans_chain {
1006 bool update;
1007 char name[NFT_CHAIN_MAXNAMELEN];
1008 struct nft_stats __percpu *stats;
1009 u8 policy;
1010};
1011
1012#define nft_trans_chain_update(trans) \
1013 (((struct nft_trans_chain *)trans->data)->update)
1014#define nft_trans_chain_name(trans) \
1015 (((struct nft_trans_chain *)trans->data)->name)
1016#define nft_trans_chain_stats(trans) \
1017 (((struct nft_trans_chain *)trans->data)->stats)
1018#define nft_trans_chain_policy(trans) \
1019 (((struct nft_trans_chain *)trans->data)->policy)
1020
1021struct nft_trans_table {
1022 bool update;
1023 bool enable;
1024};
1025
1026#define nft_trans_table_update(trans) \
1027 (((struct nft_trans_table *)trans->data)->update)
1028#define nft_trans_table_enable(trans) \
1029 (((struct nft_trans_table *)trans->data)->enable)
1030
1031struct nft_trans_elem {
1032 struct nft_set *set;
1033 struct nft_set_elem elem;
1034};
1035
1036#define nft_trans_elem_set(trans) \
1037 (((struct nft_trans_elem *)trans->data)->set)
1038#define nft_trans_elem(trans) \
1039 (((struct nft_trans_elem *)trans->data)->elem)
1040
Patrick McHardy96518512013-10-14 11:00:02 +02001041#endif /* _NET_NF_TABLES_H */