netfilter: ebt_stp: Use generic functions for comparisons
[linux-block.git] / include / net / netfilter / nf_tables.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
96518518
PM
2#ifndef _NET_NF_TABLES_H
3#define _NET_NF_TABLES_H
4
0b2d8a7b 5#include <linux/module.h>
96518518
PM
6#include <linux/list.h>
7#include <linux/netfilter.h>
67a8fc27 8#include <linux/netfilter/nfnetlink.h>
0ca743a5 9#include <linux/netfilter/x_tables.h>
96518518 10#include <linux/netfilter/nf_tables.h>
ce355e20 11#include <linux/u64_stats_sync.h>
3b49e2e9 12#include <net/netfilter/nf_flow_table.h>
96518518
PM
13#include <net/netlink.h>
14
20a69341
PM
15#define NFT_JUMP_STACK_SIZE 16
16
96518518
PM
17struct nft_pktinfo {
18 struct sk_buff *skb;
beac5afa 19 bool tprot_set;
4566bf27 20 u8 tprot;
0ca743a5
PNA
21 /* for x_tables compatibility */
22 struct xt_action_param xt;
96518518
PM
23};
24
0e5a1c7e
PNA
25static inline struct net *nft_net(const struct nft_pktinfo *pkt)
26{
27 return pkt->xt.state->net;
28}
29
30static inline unsigned int nft_hook(const struct nft_pktinfo *pkt)
31{
32 return pkt->xt.state->hook;
33}
34
35static inline u8 nft_pf(const struct nft_pktinfo *pkt)
36{
37 return pkt->xt.state->pf;
38}
39
40static inline const struct net_device *nft_in(const struct nft_pktinfo *pkt)
41{
42 return pkt->xt.state->in;
43}
44
45static inline const struct net_device *nft_out(const struct nft_pktinfo *pkt)
46{
47 return pkt->xt.state->out;
48}
49
0ca743a5 50static inline void nft_set_pktinfo(struct nft_pktinfo *pkt,
0ca743a5 51 struct sk_buff *skb,
073bfd56 52 const struct nf_hook_state *state)
0ca743a5
PNA
53{
54 pkt->skb = skb;
613dbd95 55 pkt->xt.state = state;
0ca743a5
PNA
56}
57
7a4473a3
PNA
58static inline void nft_set_pktinfo_unspec(struct nft_pktinfo *pkt,
59 struct sk_buff *skb)
beac5afa
PNA
60{
61 pkt->tprot_set = false;
62 pkt->tprot = 0;
63 pkt->xt.thoff = 0;
64 pkt->xt.fragoff = 0;
65}
66
a55e22e9
PM
67/**
68 * struct nft_verdict - nf_tables verdict
69 *
70 * @code: nf_tables/netfilter verdict code
71 * @chain: destination chain for NFT_JUMP/NFT_GOTO
72 */
73struct nft_verdict {
74 u32 code;
75 struct nft_chain *chain;
76};
77
96518518
PM
78struct nft_data {
79 union {
1ca2e170
PM
80 u32 data[4];
81 struct nft_verdict verdict;
96518518
PM
82 };
83} __attribute__((aligned(__alignof__(u64))));
84
a55e22e9
PM
85/**
86 * struct nft_regs - nf_tables register set
87 *
88 * @data: data registers
89 * @verdict: verdict register
90 *
91 * The first four data registers alias to the verdict register.
92 */
93struct nft_regs {
94 union {
49499c3e 95 u32 data[20];
a55e22e9
PM
96 struct nft_verdict verdict;
97 };
98};
99
10596608
LZ
100/* Store/load an u16 or u8 integer to/from the u32 data register.
101 *
102 * Note, when using concatenations, register allocation happens at 32-bit
103 * level. So for store instruction, pad the rest part with zero to avoid
104 * garbage values.
105 */
106
107static inline void nft_reg_store16(u32 *dreg, u16 val)
108{
109 *dreg = 0;
110 *(u16 *)dreg = val;
111}
112
113static inline void nft_reg_store8(u32 *dreg, u8 val)
114{
115 *dreg = 0;
116 *(u8 *)dreg = val;
117}
118
119static inline u16 nft_reg_load16(u32 *sreg)
120{
121 return *(u16 *)sreg;
122}
123
124static inline u8 nft_reg_load8(u32 *sreg)
125{
126 return *(u8 *)sreg;
127}
128
49499c3e
PM
129static inline void nft_data_copy(u32 *dst, const struct nft_data *src,
130 unsigned int len)
96518518 131{
49499c3e 132 memcpy(dst, src, len);
96518518
PM
133}
134
135static inline void nft_data_debug(const struct nft_data *data)
136{
137 pr_debug("data[0]=%x data[1]=%x data[2]=%x data[3]=%x\n",
138 data->data[0], data->data[1],
139 data->data[2], data->data[3]);
140}
141
142/**
20a69341 143 * struct nft_ctx - nf_tables rule/set context
96518518 144 *
99633ab2 145 * @net: net namespace
96518518
PM
146 * @table: the table the chain is contained in
147 * @chain: the chain the rule is contained in
0ca743a5 148 * @nla: netlink attributes
128ad332
PNA
149 * @portid: netlink portID of the original message
150 * @seq: netlink sequence number
36596dad 151 * @family: protocol family
128ad332 152 * @report: notify via unicast netlink message
96518518
PM
153 */
154struct nft_ctx {
99633ab2 155 struct net *net;
7c95f6d8
PNA
156 struct nft_table *table;
157 struct nft_chain *chain;
0ca743a5 158 const struct nlattr * const *nla;
128ad332
PNA
159 u32 portid;
160 u32 seq;
36596dad 161 u8 family;
128ad332 162 bool report;
96518518
PM
163};
164
96518518
PM
165struct nft_data_desc {
166 enum nft_data_types type;
167 unsigned int len;
168};
169
d0a11fc3
PM
170int nft_data_init(const struct nft_ctx *ctx,
171 struct nft_data *data, unsigned int size,
5eccdfaa 172 struct nft_data_desc *desc, const struct nlattr *nla);
59105446 173void nft_data_release(const struct nft_data *data, enum nft_data_types type);
5eccdfaa
JP
174int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
175 enum nft_data_types type, unsigned int len);
96518518
PM
176
177static inline enum nft_data_types nft_dreg_to_type(enum nft_registers reg)
178{
179 return reg == NFT_REG_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE;
180}
181
20a69341
PM
182static inline enum nft_registers nft_type_to_reg(enum nft_data_types type)
183{
bf798657 184 return type == NFT_DATA_VERDICT ? NFT_REG_VERDICT : NFT_REG_1 * NFT_REG_SIZE / NFT_REG32_SIZE;
20a69341
PM
185}
186
f1d505bb 187int nft_parse_u32_check(const struct nlattr *attr, int max, u32 *dest);
b1c96ed3
PM
188unsigned int nft_parse_register(const struct nlattr *attr);
189int nft_dump_register(struct sk_buff *skb, unsigned int attr, unsigned int reg);
190
d07db988 191int nft_validate_register_load(enum nft_registers reg, unsigned int len);
1ec10212
PM
192int nft_validate_register_store(const struct nft_ctx *ctx,
193 enum nft_registers reg,
194 const struct nft_data *data,
195 enum nft_data_types type, unsigned int len);
96518518 196
86f1ec32
PM
197/**
198 * struct nft_userdata - user defined data associated with an object
199 *
200 * @len: length of the data
201 * @data: content
202 *
203 * The presence of user data is indicated in an object specific fashion,
204 * so a length of zero can't occur and the value "len" indicates data
205 * of length len + 1.
206 */
207struct nft_userdata {
208 u8 len;
209 unsigned char data[0];
210};
211
20a69341
PM
212/**
213 * struct nft_set_elem - generic representation of set elements
214 *
20a69341 215 * @key: element key
fe2811eb 216 * @priv: element private data and extensions
20a69341
PM
217 */
218struct nft_set_elem {
7d740264
PM
219 union {
220 u32 buf[NFT_DATA_VALUE_MAXLEN / sizeof(u32)];
221 struct nft_data val;
222 } key;
fe2811eb 223 void *priv;
20a69341
PM
224};
225
226struct nft_set;
227struct nft_set_iter {
8588ac09 228 u8 genmask;
20a69341
PM
229 unsigned int count;
230 unsigned int skip;
231 int err;
232 int (*fn)(const struct nft_ctx *ctx,
de70185d 233 struct nft_set *set,
20a69341 234 const struct nft_set_iter *iter,
de70185d 235 struct nft_set_elem *elem);
20a69341
PM
236};
237
c50b960c
PM
238/**
239 * struct nft_set_desc - description of set elements
240 *
241 * @klen: key length
242 * @dlen: data length
243 * @size: number of set elements
244 */
245struct nft_set_desc {
246 unsigned int klen;
247 unsigned int dlen;
248 unsigned int size;
249};
250
251/**
252 * enum nft_set_class - performance class
253 *
254 * @NFT_LOOKUP_O_1: constant, O(1)
255 * @NFT_LOOKUP_O_LOG_N: logarithmic, O(log N)
256 * @NFT_LOOKUP_O_N: linear, O(N)
257 */
258enum nft_set_class {
259 NFT_SET_CLASS_O_1,
260 NFT_SET_CLASS_O_LOG_N,
261 NFT_SET_CLASS_O_N,
262};
263
264/**
265 * struct nft_set_estimate - estimation of memory and performance
266 * characteristics
267 *
268 * @size: required memory
55af753c 269 * @lookup: lookup performance class
0b5a7874 270 * @space: memory class
c50b960c
PM
271 */
272struct nft_set_estimate {
273 unsigned int size;
55af753c 274 enum nft_set_class lookup;
0b5a7874 275 enum nft_set_class space;
c50b960c
PM
276};
277
2b664957
PNA
278/**
279 * struct nft_set_type - nf_tables set type
280 *
281 * @select_ops: function to select nft_set_ops
282 * @ops: default ops, used when no select_ops functions is present
283 * @list: used internally
284 * @owner: module reference
285 */
286struct nft_set_type {
287 const struct nft_set_ops *(*select_ops)(const struct nft_ctx *,
288 const struct nft_set_desc *desc,
289 u32 flags);
290 const struct nft_set_ops *ops;
291 struct list_head list;
292 struct module *owner;
293};
294
b2832dd6 295struct nft_set_ext;
22fe54d5 296struct nft_expr;
b2832dd6 297
20a69341
PM
298/**
299 * struct nft_set_ops - nf_tables set operations
300 *
301 * @lookup: look up an element within the set
302 * @insert: insert new element into set
cc02e457 303 * @activate: activate new element in the next generation
8411b644 304 * @deactivate: lookup for element and deactivate it in the next generation
1ba1c414 305 * @flush: deactivate element in the next generation
20a69341
PM
306 * @remove: remove element from set
307 * @walk: iterate over all set elemeennts
ba0e4d99 308 * @get: get set elements
20a69341
PM
309 * @privsize: function to return size of set private data
310 * @init: initialize private data of new set instance
311 * @destroy: destroy private data of set instance
fe2811eb 312 * @elemsize: element private size
20a69341
PM
313 * @features: features supported by the implementation
314 */
315struct nft_set_ops {
42a55769
PNA
316 bool (*lookup)(const struct net *net,
317 const struct nft_set *set,
8cd8937a 318 const u32 *key,
b2832dd6 319 const struct nft_set_ext **ext);
22fe54d5 320 bool (*update)(struct nft_set *set,
8cd8937a 321 const u32 *key,
22fe54d5
PM
322 void *(*new)(struct nft_set *,
323 const struct nft_expr *,
a55e22e9 324 struct nft_regs *),
22fe54d5 325 const struct nft_expr *expr,
a55e22e9 326 struct nft_regs *regs,
22fe54d5
PM
327 const struct nft_set_ext **ext);
328
42a55769
PNA
329 int (*insert)(const struct net *net,
330 const struct nft_set *set,
c016c7e4
PNA
331 const struct nft_set_elem *elem,
332 struct nft_set_ext **ext);
42a55769
PNA
333 void (*activate)(const struct net *net,
334 const struct nft_set *set,
cc02e457 335 const struct nft_set_elem *elem);
42a55769
PNA
336 void * (*deactivate)(const struct net *net,
337 const struct nft_set *set,
cc02e457 338 const struct nft_set_elem *elem);
1ba1c414
PNA
339 bool (*flush)(const struct net *net,
340 const struct nft_set *set,
341 void *priv);
5cb82a38
PNA
342 void (*remove)(const struct net *net,
343 const struct nft_set *set,
20a69341
PM
344 const struct nft_set_elem *elem);
345 void (*walk)(const struct nft_ctx *ctx,
de70185d 346 struct nft_set *set,
20a69341 347 struct nft_set_iter *iter);
ba0e4d99
PNA
348 void * (*get)(const struct net *net,
349 const struct nft_set *set,
350 const struct nft_set_elem *elem,
351 unsigned int flags);
20a69341 352
347b408d
PNA
353 unsigned int (*privsize)(const struct nlattr * const nla[],
354 const struct nft_set_desc *desc);
c50b960c
PM
355 bool (*estimate)(const struct nft_set_desc *desc,
356 u32 features,
357 struct nft_set_estimate *est);
20a69341 358 int (*init)(const struct nft_set *set,
c50b960c 359 const struct nft_set_desc *desc,
20a69341
PM
360 const struct nlattr * const nla[]);
361 void (*destroy)(const struct nft_set *set);
362
fe2811eb 363 unsigned int elemsize;
20a69341 364 u32 features;
2b664957 365 const struct nft_set_type *type;
20a69341
PM
366};
367
2b664957
PNA
368int nft_register_set(struct nft_set_type *type);
369void nft_unregister_set(struct nft_set_type *type);
20a69341
PM
370
371/**
372 * struct nft_set - nf_tables set instance
373 *
374 * @list: table set list node
375 * @bindings: list of set bindings
376 * @name: name of the set
3ecbfd65 377 * @handle: unique handle of the set
20a69341
PM
378 * @ktype: key type (numeric type defined by userspace, not used in the kernel)
379 * @dtype: data type (verdict or numeric type defined by userspace)
8aeff920 380 * @objtype: object type (see NFT_OBJECT_* definitions)
c50b960c
PM
381 * @size: maximum set size
382 * @nelems: number of elements
3dd0673a 383 * @ndeact: number of deactivated elements queued for removal
d3e2a111 384 * @timeout: default timeout value in jiffies
761da293 385 * @gc_int: garbage collection interval in msecs
9363dc4b 386 * @policy: set parameterization (see enum nft_set_policies)
e6d8ecac
CFG
387 * @udlen: user data length
388 * @udata: user data
20a69341
PM
389 * @ops: set ops
390 * @flags: set flags
37a9cc52 391 * @genmask: generation mask
20a69341
PM
392 * @klen: key length
393 * @dlen: data length
394 * @data: private set data
395 */
396struct nft_set {
397 struct list_head list;
398 struct list_head bindings;
38745490 399 char *name;
3ecbfd65 400 u64 handle;
20a69341
PM
401 u32 ktype;
402 u32 dtype;
8aeff920 403 u32 objtype;
c50b960c 404 u32 size;
3dd0673a
PM
405 atomic_t nelems;
406 u32 ndeact;
761da293
PM
407 u64 timeout;
408 u32 gc_int;
9363dc4b 409 u16 policy;
e6d8ecac
CFG
410 u16 udlen;
411 unsigned char *udata;
20a69341
PM
412 /* runtime data below here */
413 const struct nft_set_ops *ops ____cacheline_aligned;
37a9cc52
PNA
414 u16 flags:14,
415 genmask:2;
20a69341
PM
416 u8 klen;
417 u8 dlen;
418 unsigned char data[]
419 __attribute__((aligned(__alignof__(u64))));
420};
421
408070d6
PNA
422static inline bool nft_set_is_anonymous(const struct nft_set *set)
423{
424 return set->flags & NFT_SET_ANONYMOUS;
425}
426
20a69341
PM
427static inline void *nft_set_priv(const struct nft_set *set)
428{
429 return (void *)set->data;
430}
431
9d098292
PM
432static inline struct nft_set *nft_set_container_of(const void *priv)
433{
434 return (void *)priv - offsetof(struct nft_set, data);
435}
436
c7a72e3f
PNA
437struct nft_set *nft_set_lookup(const struct net *net,
438 const struct nft_table *table,
439 const struct nlattr *nla_set_name,
440 const struct nlattr *nla_set_id,
441 u8 genmask);
20a69341 442
761da293
PM
443static inline unsigned long nft_set_gc_interval(const struct nft_set *set)
444{
445 return set->gc_int ? msecs_to_jiffies(set->gc_int) : HZ;
446}
447
20a69341
PM
448/**
449 * struct nft_set_binding - nf_tables set binding
450 *
451 * @list: set bindings list node
452 * @chain: chain containing the rule bound to the set
11113e19 453 * @flags: set action flags
20a69341
PM
454 *
455 * A set binding contains all information necessary for validation
456 * of new elements added to a bound set.
457 */
458struct nft_set_binding {
459 struct list_head list;
460 const struct nft_chain *chain;
11113e19 461 u32 flags;
20a69341
PM
462};
463
5eccdfaa
JP
464int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
465 struct nft_set_binding *binding);
466void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
467 struct nft_set_binding *binding);
20a69341 468
3ac4c07a
PM
469/**
470 * enum nft_set_extensions - set extension type IDs
471 *
472 * @NFT_SET_EXT_KEY: element key
473 * @NFT_SET_EXT_DATA: mapping data
474 * @NFT_SET_EXT_FLAGS: element flags
c3e1b005
PM
475 * @NFT_SET_EXT_TIMEOUT: element timeout
476 * @NFT_SET_EXT_EXPIRATION: element expiration time
68e942e8 477 * @NFT_SET_EXT_USERDATA: user data associated with the element
f25ad2e9 478 * @NFT_SET_EXT_EXPR: expression assiociated with the element
8aeff920 479 * @NFT_SET_EXT_OBJREF: stateful object reference associated with element
3ac4c07a
PM
480 * @NFT_SET_EXT_NUM: number of extension types
481 */
482enum nft_set_extensions {
483 NFT_SET_EXT_KEY,
484 NFT_SET_EXT_DATA,
485 NFT_SET_EXT_FLAGS,
c3e1b005
PM
486 NFT_SET_EXT_TIMEOUT,
487 NFT_SET_EXT_EXPIRATION,
68e942e8 488 NFT_SET_EXT_USERDATA,
f25ad2e9 489 NFT_SET_EXT_EXPR,
8aeff920 490 NFT_SET_EXT_OBJREF,
3ac4c07a
PM
491 NFT_SET_EXT_NUM
492};
493
494/**
495 * struct nft_set_ext_type - set extension type
496 *
497 * @len: fixed part length of the extension
498 * @align: alignment requirements of the extension
499 */
500struct nft_set_ext_type {
501 u8 len;
502 u8 align;
503};
504
505extern const struct nft_set_ext_type nft_set_ext_types[];
506
507/**
508 * struct nft_set_ext_tmpl - set extension template
509 *
510 * @len: length of extension area
511 * @offset: offsets of individual extension types
512 */
513struct nft_set_ext_tmpl {
514 u16 len;
515 u8 offset[NFT_SET_EXT_NUM];
516};
517
518/**
519 * struct nft_set_ext - set extensions
520 *
cc02e457 521 * @genmask: generation mask
3ac4c07a
PM
522 * @offset: offsets of individual extension types
523 * @data: beginning of extension data
524 */
525struct nft_set_ext {
cc02e457 526 u8 genmask;
3ac4c07a
PM
527 u8 offset[NFT_SET_EXT_NUM];
528 char data[0];
529};
530
531static inline void nft_set_ext_prepare(struct nft_set_ext_tmpl *tmpl)
532{
533 memset(tmpl, 0, sizeof(*tmpl));
534 tmpl->len = sizeof(struct nft_set_ext);
535}
536
537static inline void nft_set_ext_add_length(struct nft_set_ext_tmpl *tmpl, u8 id,
538 unsigned int len)
539{
540 tmpl->len = ALIGN(tmpl->len, nft_set_ext_types[id].align);
541 BUG_ON(tmpl->len > U8_MAX);
542 tmpl->offset[id] = tmpl->len;
543 tmpl->len += nft_set_ext_types[id].len + len;
544}
545
546static inline void nft_set_ext_add(struct nft_set_ext_tmpl *tmpl, u8 id)
547{
548 nft_set_ext_add_length(tmpl, id, 0);
549}
550
551static inline void nft_set_ext_init(struct nft_set_ext *ext,
552 const struct nft_set_ext_tmpl *tmpl)
553{
554 memcpy(ext->offset, tmpl->offset, sizeof(ext->offset));
555}
556
557static inline bool __nft_set_ext_exists(const struct nft_set_ext *ext, u8 id)
558{
559 return !!ext->offset[id];
560}
561
562static inline bool nft_set_ext_exists(const struct nft_set_ext *ext, u8 id)
563{
564 return ext && __nft_set_ext_exists(ext, id);
565}
566
567static inline void *nft_set_ext(const struct nft_set_ext *ext, u8 id)
568{
569 return (void *)ext + ext->offset[id];
570}
571
572static inline struct nft_data *nft_set_ext_key(const struct nft_set_ext *ext)
573{
574 return nft_set_ext(ext, NFT_SET_EXT_KEY);
575}
576
577static inline struct nft_data *nft_set_ext_data(const struct nft_set_ext *ext)
578{
579 return nft_set_ext(ext, NFT_SET_EXT_DATA);
580}
581
582static inline u8 *nft_set_ext_flags(const struct nft_set_ext *ext)
583{
584 return nft_set_ext(ext, NFT_SET_EXT_FLAGS);
585}
ef1f7df9 586
c3e1b005
PM
587static inline u64 *nft_set_ext_timeout(const struct nft_set_ext *ext)
588{
589 return nft_set_ext(ext, NFT_SET_EXT_TIMEOUT);
590}
591
592static inline unsigned long *nft_set_ext_expiration(const struct nft_set_ext *ext)
593{
594 return nft_set_ext(ext, NFT_SET_EXT_EXPIRATION);
595}
596
68e942e8
PM
597static inline struct nft_userdata *nft_set_ext_userdata(const struct nft_set_ext *ext)
598{
599 return nft_set_ext(ext, NFT_SET_EXT_USERDATA);
600}
601
f25ad2e9
PM
602static inline struct nft_expr *nft_set_ext_expr(const struct nft_set_ext *ext)
603{
604 return nft_set_ext(ext, NFT_SET_EXT_EXPR);
605}
606
c3e1b005
PM
607static inline bool nft_set_elem_expired(const struct nft_set_ext *ext)
608{
609 return nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION) &&
610 time_is_before_eq_jiffies(*nft_set_ext_expiration(ext));
611}
612
fe2811eb
PM
613static inline struct nft_set_ext *nft_set_elem_ext(const struct nft_set *set,
614 void *elem)
615{
616 return elem + set->ops->elemsize;
617}
618
8aeff920
PNA
619static inline struct nft_object **nft_set_ext_obj(const struct nft_set_ext *ext)
620{
621 return nft_set_ext(ext, NFT_SET_EXT_OBJREF);
622}
623
22fe54d5
PM
624void *nft_set_elem_init(const struct nft_set *set,
625 const struct nft_set_ext_tmpl *tmpl,
49499c3e 626 const u32 *key, const u32 *data,
22fe54d5 627 u64 timeout, gfp_t gfp);
61f9e292
LZ
628void nft_set_elem_destroy(const struct nft_set *set, void *elem,
629 bool destroy_expr);
61edafbb 630
cfed7e1b
PM
631/**
632 * struct nft_set_gc_batch_head - nf_tables set garbage collection batch
633 *
634 * @rcu: rcu head
635 * @set: set the elements belong to
636 * @cnt: count of elements
637 */
638struct nft_set_gc_batch_head {
639 struct rcu_head rcu;
640 const struct nft_set *set;
641 unsigned int cnt;
642};
643
644#define NFT_SET_GC_BATCH_SIZE ((PAGE_SIZE - \
645 sizeof(struct nft_set_gc_batch_head)) / \
646 sizeof(void *))
647
648/**
649 * struct nft_set_gc_batch - nf_tables set garbage collection batch
650 *
651 * @head: GC batch head
652 * @elems: garbage collection elements
653 */
654struct nft_set_gc_batch {
655 struct nft_set_gc_batch_head head;
656 void *elems[NFT_SET_GC_BATCH_SIZE];
657};
658
659struct nft_set_gc_batch *nft_set_gc_batch_alloc(const struct nft_set *set,
660 gfp_t gfp);
661void nft_set_gc_batch_release(struct rcu_head *rcu);
662
663static inline void nft_set_gc_batch_complete(struct nft_set_gc_batch *gcb)
664{
665 if (gcb != NULL)
666 call_rcu(&gcb->head.rcu, nft_set_gc_batch_release);
667}
668
669static inline struct nft_set_gc_batch *
670nft_set_gc_batch_check(const struct nft_set *set, struct nft_set_gc_batch *gcb,
671 gfp_t gfp)
672{
673 if (gcb != NULL) {
674 if (gcb->head.cnt + 1 < ARRAY_SIZE(gcb->elems))
675 return gcb;
676 nft_set_gc_batch_complete(gcb);
677 }
678 return nft_set_gc_batch_alloc(set, gfp);
679}
680
681static inline void nft_set_gc_batch_add(struct nft_set_gc_batch *gcb,
682 void *elem)
683{
684 gcb->elems[gcb->head.cnt++] = elem;
685}
686
96518518 687/**
ef1f7df9 688 * struct nft_expr_type - nf_tables expression type
96518518 689 *
ef1f7df9
PM
690 * @select_ops: function to select nft_expr_ops
691 * @ops: default ops, used when no select_ops functions is present
96518518
PM
692 * @list: used internally
693 * @name: Identifier
694 * @owner: module reference
695 * @policy: netlink attribute policy
696 * @maxattr: highest netlink attribute number
64d46806 697 * @family: address family for AF-specific types
151d799a 698 * @flags: expression type flags
ef1f7df9
PM
699 */
700struct nft_expr_type {
0ca743a5
PNA
701 const struct nft_expr_ops *(*select_ops)(const struct nft_ctx *,
702 const struct nlattr * const tb[]);
ef1f7df9
PM
703 const struct nft_expr_ops *ops;
704 struct list_head list;
705 const char *name;
706 struct module *owner;
707 const struct nla_policy *policy;
708 unsigned int maxattr;
64d46806 709 u8 family;
151d799a 710 u8 flags;
ef1f7df9
PM
711};
712
151d799a
PM
713#define NFT_EXPR_STATEFUL 0x1
714
ef1f7df9
PM
715/**
716 * struct nft_expr_ops - nf_tables expression operations
717 *
718 * @eval: Expression evaluation function
96518518 719 * @size: full expression size, including private data size
ef1f7df9
PM
720 * @init: initialization function
721 * @destroy: destruction function
722 * @dump: function to dump parameters
723 * @type: expression type
0ca743a5
PNA
724 * @validate: validate expression, called during loop detection
725 * @data: extra data to attach to this expression operation
96518518
PM
726 */
727struct nft_expr;
728struct nft_expr_ops {
729 void (*eval)(const struct nft_expr *expr,
a55e22e9 730 struct nft_regs *regs,
96518518 731 const struct nft_pktinfo *pkt);
086f3321
PNA
732 int (*clone)(struct nft_expr *dst,
733 const struct nft_expr *src);
ef1f7df9
PM
734 unsigned int size;
735
96518518
PM
736 int (*init)(const struct nft_ctx *ctx,
737 const struct nft_expr *expr,
738 const struct nlattr * const tb[]);
62472bce
PM
739 void (*destroy)(const struct nft_ctx *ctx,
740 const struct nft_expr *expr);
96518518
PM
741 int (*dump)(struct sk_buff *skb,
742 const struct nft_expr *expr);
0ca743a5
PNA
743 int (*validate)(const struct nft_ctx *ctx,
744 const struct nft_expr *expr,
745 const struct nft_data **data);
ef1f7df9 746 const struct nft_expr_type *type;
0ca743a5 747 void *data;
96518518
PM
748};
749
ef1f7df9 750#define NFT_EXPR_MAXATTR 16
96518518
PM
751#define NFT_EXPR_SIZE(size) (sizeof(struct nft_expr) + \
752 ALIGN(size, __alignof__(struct nft_expr)))
753
754/**
755 * struct nft_expr - nf_tables expression
756 *
757 * @ops: expression ops
758 * @data: expression private data
759 */
760struct nft_expr {
761 const struct nft_expr_ops *ops;
762 unsigned char data[];
763};
764
765static inline void *nft_expr_priv(const struct nft_expr *expr)
766{
767 return (void *)expr->data;
768}
769
0b2d8a7b
PM
770struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
771 const struct nlattr *nla);
772void nft_expr_destroy(const struct nft_ctx *ctx, struct nft_expr *expr);
773int nft_expr_dump(struct sk_buff *skb, unsigned int attr,
774 const struct nft_expr *expr);
775
086f3321 776static inline int nft_expr_clone(struct nft_expr *dst, struct nft_expr *src)
0b2d8a7b 777{
086f3321
PNA
778 int err;
779
086f3321
PNA
780 if (src->ops->clone) {
781 dst->ops = src->ops;
782 err = src->ops->clone(dst, src);
783 if (err < 0)
784 return err;
785 } else {
786 memcpy(dst, src, src->ops->size);
787 }
61f9e292
LZ
788
789 __module_get(src->ops->type->owner);
086f3321 790 return 0;
0b2d8a7b
PM
791}
792
96518518
PM
793/**
794 * struct nft_rule - nf_tables rule
795 *
796 * @list: used internally
96518518 797 * @handle: rule handle
0628b123 798 * @genmask: generation mask
96518518 799 * @dlen: length of expression data
86f1ec32 800 * @udata: user data is appended to the rule
96518518
PM
801 * @data: expression data
802 */
803struct nft_rule {
804 struct list_head list;
0768b3b3 805 u64 handle:42,
0628b123 806 genmask:2,
0768b3b3 807 dlen:12,
86f1ec32 808 udata:1;
96518518
PM
809 unsigned char data[]
810 __attribute__((aligned(__alignof__(struct nft_expr))));
811};
812
813static inline struct nft_expr *nft_expr_first(const struct nft_rule *rule)
814{
815 return (struct nft_expr *)&rule->data[0];
816}
817
818static inline struct nft_expr *nft_expr_next(const struct nft_expr *expr)
819{
820 return ((void *)expr) + expr->ops->size;
821}
822
823static inline struct nft_expr *nft_expr_last(const struct nft_rule *rule)
824{
825 return (struct nft_expr *)&rule->data[rule->dlen];
826}
827
86f1ec32 828static inline struct nft_userdata *nft_userdata(const struct nft_rule *rule)
0768b3b3
PNA
829{
830 return (void *)&rule->data[rule->dlen];
831}
832
96518518
PM
833/*
834 * The last pointer isn't really necessary, but the compiler isn't able to
835 * determine that the result of nft_expr_last() is always the same since it
836 * can't assume that the dlen value wasn't changed within calls in the loop.
837 */
838#define nft_rule_for_each_expr(expr, last, rule) \
839 for ((expr) = nft_expr_first(rule), (last) = nft_expr_last(rule); \
840 (expr) != (last); \
841 (expr) = nft_expr_next(expr))
842
843enum nft_chain_flags {
844 NFT_BASE_CHAIN = 0x1,
96518518
PM
845};
846
847/**
848 * struct nft_chain - nf_tables chain
849 *
850 * @rules: list of rules in the chain
851 * @list: used internally
b5bc89bf 852 * @table: table that this chain belongs to
96518518 853 * @handle: chain handle
96518518
PM
854 * @use: number of jump references to this chain
855 * @level: length of longest path to this chain
a0a7379e 856 * @flags: bitmask of enum nft_chain_flags
96518518
PM
857 * @name: name of the chain
858 */
859struct nft_chain {
860 struct list_head rules;
861 struct list_head list;
b5bc89bf 862 struct nft_table *table;
96518518 863 u64 handle;
a0a7379e 864 u32 use;
96518518 865 u16 level;
664b0f8c
PNA
866 u8 flags:6,
867 genmask:2;
b7263e07 868 char *name;
96518518
PM
869};
870
9370761c
PNA
871enum nft_chain_type {
872 NFT_CHAIN_T_DEFAULT = 0,
873 NFT_CHAIN_T_ROUTE,
874 NFT_CHAIN_T_NAT,
875 NFT_CHAIN_T_MAX
876};
877
1a1e1a12
PM
878/**
879 * struct nf_chain_type - nf_tables chain type info
880 *
881 * @name: name of the type
882 * @type: numeric identifier
883 * @family: address family
884 * @owner: module owner
885 * @hook_mask: mask of valid hooks
c2f9eafe 886 * @hooks: array of hook functions
1a1e1a12
PM
887 */
888struct nf_chain_type {
889 const char *name;
890 enum nft_chain_type type;
891 int family;
892 struct module *owner;
893 unsigned int hook_mask;
894 nf_hookfn *hooks[NF_MAX_HOOKS];
895};
896
7210e4e3
PNA
897int nft_chain_validate_dependency(const struct nft_chain *chain,
898 enum nft_chain_type type);
75e8d06d
PNA
899int nft_chain_validate_hooks(const struct nft_chain *chain,
900 unsigned int hook_flags);
7210e4e3 901
0ca743a5 902struct nft_stats {
ce355e20
ED
903 u64 bytes;
904 u64 pkts;
905 struct u64_stats_sync syncp;
0ca743a5
PNA
906};
907
96518518
PM
908/**
909 * struct nft_base_chain - nf_tables base chain
910 *
911 * @ops: netfilter hook ops
9370761c 912 * @type: chain type
0ca743a5
PNA
913 * @policy: default policy
914 * @stats: per-cpu chain stats
96518518 915 * @chain: the chain
2cbce139 916 * @dev_name: device name that this base chain is attached to (if any)
96518518
PM
917 */
918struct nft_base_chain {
c974a3a3 919 struct nf_hook_ops ops;
2a37d755 920 const struct nf_chain_type *type;
0ca743a5 921 u8 policy;
835b8033 922 u8 flags;
0ca743a5 923 struct nft_stats __percpu *stats;
96518518 924 struct nft_chain chain;
2cbce139 925 char dev_name[IFNAMSIZ];
96518518
PM
926};
927
928static inline struct nft_base_chain *nft_base_chain(const struct nft_chain *chain)
929{
930 return container_of(chain, struct nft_base_chain, chain);
931}
932
f323d954
PNA
933static inline bool nft_is_base_chain(const struct nft_chain *chain)
934{
935 return chain->flags & NFT_BASE_CHAIN;
936}
937
5ebe0b0e 938int __nft_release_basechain(struct nft_ctx *ctx);
835b8033 939
06198b34 940unsigned int nft_do_chain(struct nft_pktinfo *pkt, void *priv);
96518518 941
96518518
PM
942/**
943 * struct nft_table - nf_tables table
944 *
945 * @list: used internally
946 * @chains: chains in the table
947 * @sets: sets in the table
e5009240 948 * @objects: stateful objects in the table
3b49e2e9 949 * @flowtables: flow tables in the table
96518518 950 * @hgenerator: handle generator state
3ecbfd65 951 * @handle: table handle
96518518
PM
952 * @use: number of chain references to this table
953 * @flags: table flag (see enum nft_table_flags)
f2a6d766 954 * @genmask: generation mask
36596dad 955 * @afinfo: address family info
96518518
PM
956 * @name: name of the table
957 */
958struct nft_table {
959 struct list_head list;
960 struct list_head chains;
961 struct list_head sets;
e5009240 962 struct list_head objects;
3b49e2e9 963 struct list_head flowtables;
96518518 964 u64 hgenerator;
3ecbfd65 965 u64 handle;
96518518 966 u32 use;
98319cb9
PNA
967 u16 family:6,
968 flags:8,
f2a6d766 969 genmask:2;
e46abbcc 970 char *name;
ebddf1a8
PNA
971};
972
2a37d755
PM
973int nft_register_chain_type(const struct nf_chain_type *);
974void nft_unregister_chain_type(const struct nf_chain_type *);
96518518 975
5eccdfaa
JP
976int nft_register_expr(struct nft_expr_type *);
977void nft_unregister_expr(struct nft_expr_type *);
96518518 978
33d5a7b1
FW
979int nft_verdict_dump(struct sk_buff *skb, int type,
980 const struct nft_verdict *v);
981
e5009240
PNA
982/**
983 * struct nft_object - nf_tables stateful object
984 *
985 * @list: table stateful object list node
18965317 986 * @table: table this object belongs to
e5009240
PNA
987 * @name: name of this stateful object
988 * @genmask: generation mask
989 * @use: number of references to this stateful object
3ecbfd65 990 * @handle: unique object handle
dfc46034 991 * @ops: object operations
3ecbfd65 992 * @data: object data, layout depends on type
e5009240
PNA
993 */
994struct nft_object {
995 struct list_head list;
61509575 996 char *name;
18965317 997 struct nft_table *table;
e5009240
PNA
998 u32 genmask:2,
999 use:30;
3ecbfd65 1000 u64 handle;
e5009240 1001 /* runtime data below here */
dfc46034 1002 const struct nft_object_ops *ops ____cacheline_aligned;
e5009240
PNA
1003 unsigned char data[]
1004 __attribute__((aligned(__alignof__(u64))));
1005};
1006
1007static inline void *nft_obj_data(const struct nft_object *obj)
1008{
1009 return (void *)obj->data;
1010}
1011
1012#define nft_expr_obj(expr) *((struct nft_object **)nft_expr_priv(expr))
1013
1014struct nft_object *nf_tables_obj_lookup(const struct nft_table *table,
1015 const struct nlattr *nla, u32 objtype,
1016 u8 genmask);
1017
25e94a99
PNA
1018void nft_obj_notify(struct net *net, struct nft_table *table,
1019 struct nft_object *obj, u32 portid, u32 seq,
1020 int event, int family, int report, gfp_t gfp);
2599e989 1021
e5009240
PNA
1022/**
1023 * struct nft_object_type - stateful object type
1024 *
dfc46034
PBG
1025 * @select_ops: function to select nft_object_ops
1026 * @ops: default ops, used when no select_ops functions is present
e5009240
PNA
1027 * @list: list node in list of object types
1028 * @type: stateful object numeric type
e5009240
PNA
1029 * @owner: module owner
1030 * @maxattr: maximum netlink attribute
1031 * @policy: netlink attribute policy
dfc46034
PBG
1032 */
1033struct nft_object_type {
1034 const struct nft_object_ops *(*select_ops)(const struct nft_ctx *,
1035 const struct nlattr * const tb[]);
1036 const struct nft_object_ops *ops;
1037 struct list_head list;
1038 u32 type;
1039 unsigned int maxattr;
1040 struct module *owner;
1041 const struct nla_policy *policy;
1042};
1043
1044/**
1045 * struct nft_object_ops - stateful object operations
1046 *
1047 * @eval: stateful object evaluation function
1048 * @size: stateful object size
e5009240
PNA
1049 * @init: initialize object from netlink attributes
1050 * @destroy: release existing stateful object
1051 * @dump: netlink dump stateful object
1052 */
dfc46034 1053struct nft_object_ops {
e5009240
PNA
1054 void (*eval)(struct nft_object *obj,
1055 struct nft_regs *regs,
1056 const struct nft_pktinfo *pkt);
e5009240 1057 unsigned int size;
84fba055
FW
1058 int (*init)(const struct nft_ctx *ctx,
1059 const struct nlattr *const tb[],
e5009240
PNA
1060 struct nft_object *obj);
1061 void (*destroy)(struct nft_object *obj);
1062 int (*dump)(struct sk_buff *skb,
43da04a5
PNA
1063 struct nft_object *obj,
1064 bool reset);
dfc46034 1065 const struct nft_object_type *type;
e5009240
PNA
1066};
1067
1068int nft_register_obj(struct nft_object_type *obj_type);
1069void nft_unregister_obj(struct nft_object_type *obj_type);
1070
3b49e2e9
PNA
1071/**
1072 * struct nft_flowtable - nf_tables flow table
1073 *
1074 * @list: flow table list node in table list
1075 * @table: the table the flow table is contained in
1076 * @name: name of this flow table
1077 * @hooknum: hook number
1078 * @priority: hook priority
1079 * @ops_len: number of hooks in array
1080 * @genmask: generation mask
1081 * @use: number of references to this flow table
3ecbfd65 1082 * @handle: unique object handle
3b49e2e9
PNA
1083 * @data: rhashtable and garbage collector
1084 * @ops: array of hooks
1085 */
1086struct nft_flowtable {
1087 struct list_head list;
1088 struct nft_table *table;
1089 char *name;
1090 int hooknum;
1091 int priority;
1092 int ops_len;
1093 u32 genmask:2,
1094 use:30;
3ecbfd65 1095 u64 handle;
3b49e2e9
PNA
1096 /* runtime data below here */
1097 struct nf_hook_ops *ops ____cacheline_aligned;
1098 struct nf_flowtable data;
1099};
1100
1101struct nft_flowtable *nf_tables_flowtable_lookup(const struct nft_table *table,
1102 const struct nlattr *nla,
1103 u8 genmask);
1104void nft_flow_table_iterate(struct net *net,
1105 void (*iter)(struct nf_flowtable *flowtable, void *data),
1106 void *data);
1107
1108void nft_register_flowtable_type(struct nf_flowtable_type *type);
1109void nft_unregister_flowtable_type(struct nf_flowtable_type *type);
1110
33d5a7b1
FW
1111/**
1112 * struct nft_traceinfo - nft tracing information and state
1113 *
1114 * @pkt: pktinfo currently processed
1115 * @basechain: base chain currently processed
1116 * @chain: chain currently processed
1117 * @rule: rule that was evaluated
1118 * @verdict: verdict given by rule
1119 * @type: event type (enum nft_trace_types)
1120 * @packet_dumped: packet headers sent in a previous traceinfo message
1121 * @trace: other struct members are initialised
1122 */
1123struct nft_traceinfo {
1124 const struct nft_pktinfo *pkt;
1125 const struct nft_base_chain *basechain;
1126 const struct nft_chain *chain;
1127 const struct nft_rule *rule;
1128 const struct nft_verdict *verdict;
1129 enum nft_trace_types type;
1130 bool packet_dumped;
1131 bool trace;
1132};
1133
1134void nft_trace_init(struct nft_traceinfo *info, const struct nft_pktinfo *pkt,
1135 const struct nft_verdict *verdict,
1136 const struct nft_chain *basechain);
1137
1138void nft_trace_notify(struct nft_traceinfo *info);
1139
9370761c
PNA
1140#define MODULE_ALIAS_NFT_CHAIN(family, name) \
1141 MODULE_ALIAS("nft-chain-" __stringify(family) "-" name)
96518518 1142
64d46806
PM
1143#define MODULE_ALIAS_NFT_AF_EXPR(family, name) \
1144 MODULE_ALIAS("nft-expr-" __stringify(family) "-" name)
1145
96518518
PM
1146#define MODULE_ALIAS_NFT_EXPR(name) \
1147 MODULE_ALIAS("nft-expr-" name)
1148
20a69341
PM
1149#define MODULE_ALIAS_NFT_SET() \
1150 MODULE_ALIAS("nft-set")
1151
e5009240
PNA
1152#define MODULE_ALIAS_NFT_OBJ(type) \
1153 MODULE_ALIAS("nft-obj-" __stringify(type))
1154
ea4bd995
PM
1155/*
1156 * The gencursor defines two generations, the currently active and the
1157 * next one. Objects contain a bitmask of 2 bits specifying the generations
1158 * they're active in. A set bit means they're inactive in the generation
1159 * represented by that bit.
1160 *
1161 * New objects start out as inactive in the current and active in the
1162 * next generation. When committing the ruleset the bitmask is cleared,
1163 * meaning they're active in all generations. When removing an object,
1164 * it is set inactive in the next generation. After committing the ruleset,
1165 * the objects are removed.
1166 */
1167static inline unsigned int nft_gencursor_next(const struct net *net)
1168{
1169 return net->nft.gencursor + 1 == 1 ? 1 : 0;
1170}
1171
1172static inline u8 nft_genmask_next(const struct net *net)
1173{
1174 return 1 << nft_gencursor_next(net);
1175}
1176
1177static inline u8 nft_genmask_cur(const struct net *net)
1178{
14cd5d4a
MR
1179 /* Use READ_ONCE() to prevent refetching the value for atomicity */
1180 return 1 << READ_ONCE(net->nft.gencursor);
ea4bd995
PM
1181}
1182
22fe54d5
PM
1183#define NFT_GENMASK_ANY ((1 << 0) | (1 << 1))
1184
889f7ee7
PNA
1185/*
1186 * Generic transaction helpers
1187 */
1188
1189/* Check if this object is currently active. */
1190#define nft_is_active(__net, __obj) \
1191 (((__obj)->genmask & nft_genmask_cur(__net)) == 0)
1192
1193/* Check if this object is active in the next generation. */
1194#define nft_is_active_next(__net, __obj) \
1195 (((__obj)->genmask & nft_genmask_next(__net)) == 0)
1196
1197/* This object becomes active in the next generation. */
1198#define nft_activate_next(__net, __obj) \
1199 (__obj)->genmask = nft_genmask_cur(__net)
1200
1201/* This object becomes inactive in the next generation. */
1202#define nft_deactivate_next(__net, __obj) \
1203 (__obj)->genmask = nft_genmask_next(__net)
1204
1205/* After committing the ruleset, clear the stale generation bit. */
1206#define nft_clear(__net, __obj) \
1207 (__obj)->genmask &= ~nft_genmask_next(__net)
f2a6d766
PNA
1208#define nft_active_genmask(__obj, __genmask) \
1209 !((__obj)->genmask & __genmask)
889f7ee7 1210
cc02e457
PM
1211/*
1212 * Set element transaction helpers
1213 */
1214
1215static inline bool nft_set_elem_active(const struct nft_set_ext *ext,
1216 u8 genmask)
1217{
1218 return !(ext->genmask & genmask);
1219}
1220
42a55769
PNA
1221static inline void nft_set_elem_change_active(const struct net *net,
1222 const struct nft_set *set,
cc02e457
PM
1223 struct nft_set_ext *ext)
1224{
42a55769 1225 ext->genmask ^= nft_genmask_next(net);
cc02e457
PM
1226}
1227
69086658
PM
1228/*
1229 * We use a free bit in the genmask field to indicate the element
1230 * is busy, meaning it is currently being processed either by
1231 * the netlink API or GC.
1232 *
1233 * Even though the genmask is only a single byte wide, this works
1234 * because the extension structure if fully constant once initialized,
1235 * so there are no non-atomic write accesses unless it is already
1236 * marked busy.
1237 */
1238#define NFT_SET_ELEM_BUSY_MASK (1 << 2)
1239
1240#if defined(__LITTLE_ENDIAN_BITFIELD)
1241#define NFT_SET_ELEM_BUSY_BIT 2
1242#elif defined(__BIG_ENDIAN_BITFIELD)
1243#define NFT_SET_ELEM_BUSY_BIT (BITS_PER_LONG - BITS_PER_BYTE + 2)
1244#else
1245#error
1246#endif
1247
1248static inline int nft_set_elem_mark_busy(struct nft_set_ext *ext)
1249{
1250 unsigned long *word = (unsigned long *)ext;
1251
1252 BUILD_BUG_ON(offsetof(struct nft_set_ext, genmask) != 0);
1253 return test_and_set_bit(NFT_SET_ELEM_BUSY_BIT, word);
1254}
1255
1256static inline void nft_set_elem_clear_busy(struct nft_set_ext *ext)
1257{
1258 unsigned long *word = (unsigned long *)ext;
1259
1260 clear_bit(NFT_SET_ELEM_BUSY_BIT, word);
1261}
1262
1a1e1a12
PM
1263/**
1264 * struct nft_trans - nf_tables object update in transaction
1265 *
1266 * @list: used internally
1267 * @msg_type: message type
1268 * @ctx: transaction context
1269 * @data: internal information related to the transaction
1270 */
1271struct nft_trans {
1272 struct list_head list;
1273 int msg_type;
1274 struct nft_ctx ctx;
1275 char data[0];
1276};
1277
1278struct nft_trans_rule {
1279 struct nft_rule *rule;
1a94e38d 1280 u32 rule_id;
1a1e1a12
PM
1281};
1282
1283#define nft_trans_rule(trans) \
1284 (((struct nft_trans_rule *)trans->data)->rule)
1a94e38d
PNA
1285#define nft_trans_rule_id(trans) \
1286 (((struct nft_trans_rule *)trans->data)->rule_id)
1a1e1a12
PM
1287
1288struct nft_trans_set {
1289 struct nft_set *set;
1290 u32 set_id;
1291};
1292
1293#define nft_trans_set(trans) \
1294 (((struct nft_trans_set *)trans->data)->set)
1295#define nft_trans_set_id(trans) \
1296 (((struct nft_trans_set *)trans->data)->set_id)
1297
1298struct nft_trans_chain {
1299 bool update;
b7263e07 1300 char *name;
1a1e1a12
PM
1301 struct nft_stats __percpu *stats;
1302 u8 policy;
1303};
1304
1305#define nft_trans_chain_update(trans) \
1306 (((struct nft_trans_chain *)trans->data)->update)
1307#define nft_trans_chain_name(trans) \
1308 (((struct nft_trans_chain *)trans->data)->name)
1309#define nft_trans_chain_stats(trans) \
1310 (((struct nft_trans_chain *)trans->data)->stats)
1311#define nft_trans_chain_policy(trans) \
1312 (((struct nft_trans_chain *)trans->data)->policy)
1313
1314struct nft_trans_table {
1315 bool update;
1316 bool enable;
1317};
1318
1319#define nft_trans_table_update(trans) \
1320 (((struct nft_trans_table *)trans->data)->update)
1321#define nft_trans_table_enable(trans) \
1322 (((struct nft_trans_table *)trans->data)->enable)
1323
1324struct nft_trans_elem {
1325 struct nft_set *set;
1326 struct nft_set_elem elem;
1327};
1328
1329#define nft_trans_elem_set(trans) \
1330 (((struct nft_trans_elem *)trans->data)->set)
1331#define nft_trans_elem(trans) \
1332 (((struct nft_trans_elem *)trans->data)->elem)
1333
e5009240
PNA
1334struct nft_trans_obj {
1335 struct nft_object *obj;
1336};
1337
1338#define nft_trans_obj(trans) \
1339 (((struct nft_trans_obj *)trans->data)->obj)
1340
3b49e2e9
PNA
1341struct nft_trans_flowtable {
1342 struct nft_flowtable *flowtable;
1343};
1344
1345#define nft_trans_flowtable(trans) \
1346 (((struct nft_trans_flowtable *)trans->data)->flowtable)
1347
96518518 1348#endif /* _NET_NF_TABLES_H */