tcp: fix ipv4 mapped request socks
[linux-block.git] / include / net / netfilter / nf_tables.h
1 #ifndef _NET_NF_TABLES_H
2 #define _NET_NF_TABLES_H
3
4 #include <linux/list.h>
5 #include <linux/netfilter.h>
6 #include <linux/netfilter/nfnetlink.h>
7 #include <linux/netfilter/x_tables.h>
8 #include <linux/netfilter/nf_tables.h>
9 #include <linux/u64_stats_sync.h>
10 #include <net/netlink.h>
11
12 #define NFT_JUMP_STACK_SIZE     16
13
14 struct nft_pktinfo {
15         struct sk_buff                  *skb;
16         const struct net_device         *in;
17         const struct net_device         *out;
18         const struct nf_hook_ops        *ops;
19         u8                              nhoff;
20         u8                              thoff;
21         u8                              tprot;
22         /* for x_tables compatibility */
23         struct xt_action_param          xt;
24 };
25
26 static inline void nft_set_pktinfo(struct nft_pktinfo *pkt,
27                                    const struct nf_hook_ops *ops,
28                                    struct sk_buff *skb,
29                                    const struct net_device *in,
30                                    const struct net_device *out)
31 {
32         pkt->skb = skb;
33         pkt->in = pkt->xt.in = in;
34         pkt->out = pkt->xt.out = out;
35         pkt->ops = ops;
36         pkt->xt.hooknum = ops->hooknum;
37         pkt->xt.family = ops->pf;
38 }
39
40 struct nft_data {
41         union {
42                 u32                             data[4];
43                 struct {
44                         u32                     verdict;
45                         struct nft_chain        *chain;
46                 };
47         };
48 } __attribute__((aligned(__alignof__(u64))));
49
50 static inline int nft_data_cmp(const struct nft_data *d1,
51                                const struct nft_data *d2,
52                                unsigned int len)
53 {
54         return memcmp(d1->data, d2->data, len);
55 }
56
57 static inline void nft_data_copy(struct nft_data *dst,
58                                  const struct nft_data *src)
59 {
60         BUILD_BUG_ON(__alignof__(*dst) != __alignof__(u64));
61         *(u64 *)&dst->data[0] = *(u64 *)&src->data[0];
62         *(u64 *)&dst->data[2] = *(u64 *)&src->data[2];
63 }
64
65 static inline void nft_data_debug(const struct nft_data *data)
66 {
67         pr_debug("data[0]=%x data[1]=%x data[2]=%x data[3]=%x\n",
68                  data->data[0], data->data[1],
69                  data->data[2], data->data[3]);
70 }
71
72 /**
73  *      struct nft_ctx - nf_tables rule/set context
74  *
75  *      @net: net namespace
76  *      @afi: address family info
77  *      @table: the table the chain is contained in
78  *      @chain: the chain the rule is contained in
79  *      @nla: netlink attributes
80  *      @portid: netlink portID of the original message
81  *      @seq: netlink sequence number
82  *      @report: notify via unicast netlink message
83  */
84 struct nft_ctx {
85         struct net                      *net;
86         struct nft_af_info              *afi;
87         struct nft_table                *table;
88         struct nft_chain                *chain;
89         const struct nlattr * const     *nla;
90         u32                             portid;
91         u32                             seq;
92         bool                            report;
93 };
94
95 struct nft_data_desc {
96         enum nft_data_types             type;
97         unsigned int                    len;
98 };
99
100 int nft_data_init(const struct nft_ctx *ctx, struct nft_data *data,
101                   struct nft_data_desc *desc, const struct nlattr *nla);
102 void nft_data_uninit(const struct nft_data *data, enum nft_data_types type);
103 int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
104                   enum nft_data_types type, unsigned int len);
105
106 static inline enum nft_data_types nft_dreg_to_type(enum nft_registers reg)
107 {
108         return reg == NFT_REG_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE;
109 }
110
111 static inline enum nft_registers nft_type_to_reg(enum nft_data_types type)
112 {
113         return type == NFT_DATA_VERDICT ? NFT_REG_VERDICT : NFT_REG_1;
114 }
115
116 int nft_validate_input_register(enum nft_registers reg);
117 int nft_validate_output_register(enum nft_registers reg);
118 int nft_validate_data_load(const struct nft_ctx *ctx, enum nft_registers reg,
119                            const struct nft_data *data,
120                            enum nft_data_types type);
121
122
123 /**
124  *      struct nft_userdata - user defined data associated with an object
125  *
126  *      @len: length of the data
127  *      @data: content
128  *
129  *      The presence of user data is indicated in an object specific fashion,
130  *      so a length of zero can't occur and the value "len" indicates data
131  *      of length len + 1.
132  */
133 struct nft_userdata {
134         u8                      len;
135         unsigned char           data[0];
136 };
137
138 /**
139  *      struct nft_set_elem - generic representation of set elements
140  *
141  *      @cookie: implementation specific element cookie
142  *      @key: element key
143  *      @data: element data (maps only)
144  *      @flags: element flags (end of interval)
145  *
146  *      The cookie can be used to store a handle to the element for subsequent
147  *      removal.
148  */
149 struct nft_set_elem {
150         void                    *cookie;
151         struct nft_data         key;
152         struct nft_data         data;
153         u32                     flags;
154 };
155
156 struct nft_set;
157 struct nft_set_iter {
158         unsigned int    count;
159         unsigned int    skip;
160         int             err;
161         int             (*fn)(const struct nft_ctx *ctx,
162                               const struct nft_set *set,
163                               const struct nft_set_iter *iter,
164                               const struct nft_set_elem *elem);
165 };
166
167 /**
168  *      struct nft_set_desc - description of set elements
169  *
170  *      @klen: key length
171  *      @dlen: data length
172  *      @size: number of set elements
173  */
174 struct nft_set_desc {
175         unsigned int            klen;
176         unsigned int            dlen;
177         unsigned int            size;
178 };
179
180 /**
181  *      enum nft_set_class - performance class
182  *
183  *      @NFT_LOOKUP_O_1: constant, O(1)
184  *      @NFT_LOOKUP_O_LOG_N: logarithmic, O(log N)
185  *      @NFT_LOOKUP_O_N: linear, O(N)
186  */
187 enum nft_set_class {
188         NFT_SET_CLASS_O_1,
189         NFT_SET_CLASS_O_LOG_N,
190         NFT_SET_CLASS_O_N,
191 };
192
193 /**
194  *      struct nft_set_estimate - estimation of memory and performance
195  *                                characteristics
196  *
197  *      @size: required memory
198  *      @class: lookup performance class
199  */
200 struct nft_set_estimate {
201         unsigned int            size;
202         enum nft_set_class      class;
203 };
204
205 /**
206  *      struct nft_set_ops - nf_tables set operations
207  *
208  *      @lookup: look up an element within the set
209  *      @insert: insert new element into set
210  *      @remove: remove element from set
211  *      @walk: iterate over all set elemeennts
212  *      @privsize: function to return size of set private data
213  *      @init: initialize private data of new set instance
214  *      @destroy: destroy private data of set instance
215  *      @list: nf_tables_set_ops list node
216  *      @owner: module reference
217  *      @features: features supported by the implementation
218  */
219 struct nft_set_ops {
220         bool                            (*lookup)(const struct nft_set *set,
221                                                   const struct nft_data *key,
222                                                   struct nft_data *data);
223         int                             (*get)(const struct nft_set *set,
224                                                struct nft_set_elem *elem);
225         int                             (*insert)(const struct nft_set *set,
226                                                   const struct nft_set_elem *elem);
227         void                            (*remove)(const struct nft_set *set,
228                                                   const struct nft_set_elem *elem);
229         void                            (*walk)(const struct nft_ctx *ctx,
230                                                 const struct nft_set *set,
231                                                 struct nft_set_iter *iter);
232
233         unsigned int                    (*privsize)(const struct nlattr * const nla[]);
234         bool                            (*estimate)(const struct nft_set_desc *desc,
235                                                     u32 features,
236                                                     struct nft_set_estimate *est);
237         int                             (*init)(const struct nft_set *set,
238                                                 const struct nft_set_desc *desc,
239                                                 const struct nlattr * const nla[]);
240         void                            (*destroy)(const struct nft_set *set);
241
242         struct list_head                list;
243         struct module                   *owner;
244         u32                             features;
245 };
246
247 int nft_register_set(struct nft_set_ops *ops);
248 void nft_unregister_set(struct nft_set_ops *ops);
249
250 /**
251  *      struct nft_set - nf_tables set instance
252  *
253  *      @list: table set list node
254  *      @bindings: list of set bindings
255  *      @name: name of the set
256  *      @ktype: key type (numeric type defined by userspace, not used in the kernel)
257  *      @dtype: data type (verdict or numeric type defined by userspace)
258  *      @size: maximum set size
259  *      @nelems: number of elements
260  *      @policy: set parameterization (see enum nft_set_policies)
261  *      @ops: set ops
262  *      @flags: set flags
263  *      @klen: key length
264  *      @dlen: data length
265  *      @data: private set data
266  */
267 struct nft_set {
268         struct list_head                list;
269         struct list_head                bindings;
270         char                            name[IFNAMSIZ];
271         u32                             ktype;
272         u32                             dtype;
273         u32                             size;
274         u32                             nelems;
275         u16                             policy;
276         /* runtime data below here */
277         const struct nft_set_ops        *ops ____cacheline_aligned;
278         u16                             flags;
279         u8                              klen;
280         u8                              dlen;
281         unsigned char                   data[]
282                 __attribute__((aligned(__alignof__(u64))));
283 };
284
285 static inline void *nft_set_priv(const struct nft_set *set)
286 {
287         return (void *)set->data;
288 }
289
290 struct nft_set *nf_tables_set_lookup(const struct nft_table *table,
291                                      const struct nlattr *nla);
292 struct nft_set *nf_tables_set_lookup_byid(const struct net *net,
293                                           const struct nlattr *nla);
294
295 /**
296  *      struct nft_set_binding - nf_tables set binding
297  *
298  *      @list: set bindings list node
299  *      @chain: chain containing the rule bound to the set
300  *
301  *      A set binding contains all information necessary for validation
302  *      of new elements added to a bound set.
303  */
304 struct nft_set_binding {
305         struct list_head                list;
306         const struct nft_chain          *chain;
307 };
308
309 int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
310                        struct nft_set_binding *binding);
311 void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
312                           struct nft_set_binding *binding);
313
314
315 /**
316  *      struct nft_expr_type - nf_tables expression type
317  *
318  *      @select_ops: function to select nft_expr_ops
319  *      @ops: default ops, used when no select_ops functions is present
320  *      @list: used internally
321  *      @name: Identifier
322  *      @owner: module reference
323  *      @policy: netlink attribute policy
324  *      @maxattr: highest netlink attribute number
325  *      @family: address family for AF-specific types
326  */
327 struct nft_expr_type {
328         const struct nft_expr_ops       *(*select_ops)(const struct nft_ctx *,
329                                                        const struct nlattr * const tb[]);
330         const struct nft_expr_ops       *ops;
331         struct list_head                list;
332         const char                      *name;
333         struct module                   *owner;
334         const struct nla_policy         *policy;
335         unsigned int                    maxattr;
336         u8                              family;
337 };
338
339 /**
340  *      struct nft_expr_ops - nf_tables expression operations
341  *
342  *      @eval: Expression evaluation function
343  *      @size: full expression size, including private data size
344  *      @init: initialization function
345  *      @destroy: destruction function
346  *      @dump: function to dump parameters
347  *      @type: expression type
348  *      @validate: validate expression, called during loop detection
349  *      @data: extra data to attach to this expression operation
350  */
351 struct nft_expr;
352 struct nft_expr_ops {
353         void                            (*eval)(const struct nft_expr *expr,
354                                                 struct nft_data data[NFT_REG_MAX + 1],
355                                                 const struct nft_pktinfo *pkt);
356         unsigned int                    size;
357
358         int                             (*init)(const struct nft_ctx *ctx,
359                                                 const struct nft_expr *expr,
360                                                 const struct nlattr * const tb[]);
361         void                            (*destroy)(const struct nft_ctx *ctx,
362                                                    const struct nft_expr *expr);
363         int                             (*dump)(struct sk_buff *skb,
364                                                 const struct nft_expr *expr);
365         int                             (*validate)(const struct nft_ctx *ctx,
366                                                     const struct nft_expr *expr,
367                                                     const struct nft_data **data);
368         const struct nft_expr_type      *type;
369         void                            *data;
370 };
371
372 #define NFT_EXPR_MAXATTR                16
373 #define NFT_EXPR_SIZE(size)             (sizeof(struct nft_expr) + \
374                                          ALIGN(size, __alignof__(struct nft_expr)))
375
376 /**
377  *      struct nft_expr - nf_tables expression
378  *
379  *      @ops: expression ops
380  *      @data: expression private data
381  */
382 struct nft_expr {
383         const struct nft_expr_ops       *ops;
384         unsigned char                   data[];
385 };
386
387 static inline void *nft_expr_priv(const struct nft_expr *expr)
388 {
389         return (void *)expr->data;
390 }
391
392 /**
393  *      struct nft_rule - nf_tables rule
394  *
395  *      @list: used internally
396  *      @handle: rule handle
397  *      @genmask: generation mask
398  *      @dlen: length of expression data
399  *      @udata: user data is appended to the rule
400  *      @data: expression data
401  */
402 struct nft_rule {
403         struct list_head                list;
404         u64                             handle:42,
405                                         genmask:2,
406                                         dlen:12,
407                                         udata:1;
408         unsigned char                   data[]
409                 __attribute__((aligned(__alignof__(struct nft_expr))));
410 };
411
412 static inline struct nft_expr *nft_expr_first(const struct nft_rule *rule)
413 {
414         return (struct nft_expr *)&rule->data[0];
415 }
416
417 static inline struct nft_expr *nft_expr_next(const struct nft_expr *expr)
418 {
419         return ((void *)expr) + expr->ops->size;
420 }
421
422 static inline struct nft_expr *nft_expr_last(const struct nft_rule *rule)
423 {
424         return (struct nft_expr *)&rule->data[rule->dlen];
425 }
426
427 static inline struct nft_userdata *nft_userdata(const struct nft_rule *rule)
428 {
429         return (void *)&rule->data[rule->dlen];
430 }
431
432 /*
433  * The last pointer isn't really necessary, but the compiler isn't able to
434  * determine that the result of nft_expr_last() is always the same since it
435  * can't assume that the dlen value wasn't changed within calls in the loop.
436  */
437 #define nft_rule_for_each_expr(expr, last, rule) \
438         for ((expr) = nft_expr_first(rule), (last) = nft_expr_last(rule); \
439              (expr) != (last); \
440              (expr) = nft_expr_next(expr))
441
442 enum nft_chain_flags {
443         NFT_BASE_CHAIN                  = 0x1,
444         NFT_CHAIN_INACTIVE              = 0x2,
445 };
446
447 /**
448  *      struct nft_chain - nf_tables chain
449  *
450  *      @rules: list of rules in the chain
451  *      @list: used internally
452  *      @net: net namespace that this chain belongs to
453  *      @table: table that this chain belongs to
454  *      @handle: chain handle
455  *      @use: number of jump references to this chain
456  *      @level: length of longest path to this chain
457  *      @flags: bitmask of enum nft_chain_flags
458  *      @name: name of the chain
459  */
460 struct nft_chain {
461         struct list_head                rules;
462         struct list_head                list;
463         struct net                      *net;
464         struct nft_table                *table;
465         u64                             handle;
466         u32                             use;
467         u16                             level;
468         u8                              flags;
469         char                            name[NFT_CHAIN_MAXNAMELEN];
470 };
471
472 enum nft_chain_type {
473         NFT_CHAIN_T_DEFAULT = 0,
474         NFT_CHAIN_T_ROUTE,
475         NFT_CHAIN_T_NAT,
476         NFT_CHAIN_T_MAX
477 };
478
479 /**
480  *      struct nf_chain_type - nf_tables chain type info
481  *
482  *      @name: name of the type
483  *      @type: numeric identifier
484  *      @family: address family
485  *      @owner: module owner
486  *      @hook_mask: mask of valid hooks
487  *      @hooks: hookfn overrides
488  */
489 struct nf_chain_type {
490         const char                      *name;
491         enum nft_chain_type             type;
492         int                             family;
493         struct module                   *owner;
494         unsigned int                    hook_mask;
495         nf_hookfn                       *hooks[NF_MAX_HOOKS];
496 };
497
498 int nft_chain_validate_dependency(const struct nft_chain *chain,
499                                   enum nft_chain_type type);
500 int nft_chain_validate_hooks(const struct nft_chain *chain,
501                              unsigned int hook_flags);
502
503 struct nft_stats {
504         u64                     bytes;
505         u64                     pkts;
506         struct u64_stats_sync   syncp;
507 };
508
509 #define NFT_HOOK_OPS_MAX                2
510
511 /**
512  *      struct nft_base_chain - nf_tables base chain
513  *
514  *      @ops: netfilter hook ops
515  *      @type: chain type
516  *      @policy: default policy
517  *      @stats: per-cpu chain stats
518  *      @chain: the chain
519  */
520 struct nft_base_chain {
521         struct nf_hook_ops              ops[NFT_HOOK_OPS_MAX];
522         const struct nf_chain_type      *type;
523         u8                              policy;
524         struct nft_stats __percpu       *stats;
525         struct nft_chain                chain;
526 };
527
528 static inline struct nft_base_chain *nft_base_chain(const struct nft_chain *chain)
529 {
530         return container_of(chain, struct nft_base_chain, chain);
531 }
532
533 unsigned int nft_do_chain(struct nft_pktinfo *pkt,
534                           const struct nf_hook_ops *ops);
535
536 /**
537  *      struct nft_table - nf_tables table
538  *
539  *      @list: used internally
540  *      @chains: chains in the table
541  *      @sets: sets in the table
542  *      @hgenerator: handle generator state
543  *      @use: number of chain references to this table
544  *      @flags: table flag (see enum nft_table_flags)
545  *      @name: name of the table
546  */
547 struct nft_table {
548         struct list_head                list;
549         struct list_head                chains;
550         struct list_head                sets;
551         u64                             hgenerator;
552         u32                             use;
553         u16                             flags;
554         char                            name[NFT_TABLE_MAXNAMELEN];
555 };
556
557 /**
558  *      struct nft_af_info - nf_tables address family info
559  *
560  *      @list: used internally
561  *      @family: address family
562  *      @nhooks: number of hooks in this family
563  *      @owner: module owner
564  *      @tables: used internally
565  *      @nops: number of hook ops in this family
566  *      @hook_ops_init: initialization function for chain hook ops
567  *      @hooks: hookfn overrides for packet validation
568  */
569 struct nft_af_info {
570         struct list_head                list;
571         int                             family;
572         unsigned int                    nhooks;
573         struct module                   *owner;
574         struct list_head                tables;
575         unsigned int                    nops;
576         void                            (*hook_ops_init)(struct nf_hook_ops *,
577                                                          unsigned int);
578         nf_hookfn                       *hooks[NF_MAX_HOOKS];
579 };
580
581 int nft_register_afinfo(struct net *, struct nft_af_info *);
582 void nft_unregister_afinfo(struct nft_af_info *);
583
584 int nft_register_chain_type(const struct nf_chain_type *);
585 void nft_unregister_chain_type(const struct nf_chain_type *);
586
587 int nft_register_expr(struct nft_expr_type *);
588 void nft_unregister_expr(struct nft_expr_type *);
589
590 #define nft_dereference(p)                                      \
591         nfnl_dereference(p, NFNL_SUBSYS_NFTABLES)
592
593 #define MODULE_ALIAS_NFT_FAMILY(family) \
594         MODULE_ALIAS("nft-afinfo-" __stringify(family))
595
596 #define MODULE_ALIAS_NFT_CHAIN(family, name) \
597         MODULE_ALIAS("nft-chain-" __stringify(family) "-" name)
598
599 #define MODULE_ALIAS_NFT_AF_EXPR(family, name) \
600         MODULE_ALIAS("nft-expr-" __stringify(family) "-" name)
601
602 #define MODULE_ALIAS_NFT_EXPR(name) \
603         MODULE_ALIAS("nft-expr-" name)
604
605 #define MODULE_ALIAS_NFT_SET() \
606         MODULE_ALIAS("nft-set")
607
608 /**
609  *      struct nft_trans - nf_tables object update in transaction
610  *
611  *      @list: used internally
612  *      @msg_type: message type
613  *      @ctx: transaction context
614  *      @data: internal information related to the transaction
615  */
616 struct nft_trans {
617         struct list_head                list;
618         int                             msg_type;
619         struct nft_ctx                  ctx;
620         char                            data[0];
621 };
622
623 struct nft_trans_rule {
624         struct nft_rule                 *rule;
625 };
626
627 #define nft_trans_rule(trans)   \
628         (((struct nft_trans_rule *)trans->data)->rule)
629
630 struct nft_trans_set {
631         struct nft_set                  *set;
632         u32                             set_id;
633 };
634
635 #define nft_trans_set(trans)    \
636         (((struct nft_trans_set *)trans->data)->set)
637 #define nft_trans_set_id(trans) \
638         (((struct nft_trans_set *)trans->data)->set_id)
639
640 struct nft_trans_chain {
641         bool                            update;
642         char                            name[NFT_CHAIN_MAXNAMELEN];
643         struct nft_stats __percpu       *stats;
644         u8                              policy;
645 };
646
647 #define nft_trans_chain_update(trans)   \
648         (((struct nft_trans_chain *)trans->data)->update)
649 #define nft_trans_chain_name(trans)     \
650         (((struct nft_trans_chain *)trans->data)->name)
651 #define nft_trans_chain_stats(trans)    \
652         (((struct nft_trans_chain *)trans->data)->stats)
653 #define nft_trans_chain_policy(trans)   \
654         (((struct nft_trans_chain *)trans->data)->policy)
655
656 struct nft_trans_table {
657         bool                            update;
658         bool                            enable;
659 };
660
661 #define nft_trans_table_update(trans)   \
662         (((struct nft_trans_table *)trans->data)->update)
663 #define nft_trans_table_enable(trans)   \
664         (((struct nft_trans_table *)trans->data)->enable)
665
666 struct nft_trans_elem {
667         struct nft_set                  *set;
668         struct nft_set_elem             elem;
669 };
670
671 #define nft_trans_elem_set(trans)       \
672         (((struct nft_trans_elem *)trans->data)->set)
673 #define nft_trans_elem(trans)   \
674         (((struct nft_trans_elem *)trans->data)->elem)
675
676 #endif /* _NET_NF_TABLES_H */