1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _NET_NF_TABLES_CORE_H
3 #define _NET_NF_TABLES_CORE_H
5 extern struct nft_expr_type nft_imm_type;
6 extern struct nft_expr_type nft_cmp_type;
7 extern struct nft_expr_type nft_lookup_type;
8 extern struct nft_expr_type nft_bitwise_type;
9 extern struct nft_expr_type nft_byteorder_type;
10 extern struct nft_expr_type nft_payload_type;
11 extern struct nft_expr_type nft_dynset_type;
12 extern struct nft_expr_type nft_range_type;
13 extern struct nft_expr_type nft_meta_type;
14 extern struct nft_expr_type nft_rt_type;
15 extern struct nft_expr_type nft_exthdr_type;
17 int nf_tables_core_module_init(void);
18 void nf_tables_core_module_exit(void);
20 struct nft_cmp_fast_expr {
22 enum nft_registers sreg:8;
26 /* Calculate the mask for the nft_cmp_fast expression. On big endian the
27 * mask needs to include the *upper* bytes when interpreting that data as
28 * something smaller than the full u32, therefore a cpu_to_le32 is done.
30 static inline u32 nft_cmp_fast_mask(unsigned int len)
32 return cpu_to_le32(~0U >> (FIELD_SIZEOF(struct nft_cmp_fast_expr,
33 data) * BITS_PER_BYTE - len));
36 extern const struct nft_expr_ops nft_cmp_fast_ops;
39 enum nft_payload_bases base:8;
42 enum nft_registers dreg:8;
45 struct nft_payload_set {
46 enum nft_payload_bases base:8;
49 enum nft_registers sreg:8;
55 extern const struct nft_expr_ops nft_payload_fast_ops;
57 extern struct static_key_false nft_counters_enabled;
58 extern struct static_key_false nft_trace_enabled;
60 #endif /* _NET_NF_TABLES_CORE_H */