xref: /openbmc/linux/include/net/netfilter/nft_fib.h (revision 055c4b34)
1 #ifndef _NFT_FIB_H_
2 #define _NFT_FIB_H_
3 
4 struct nft_fib {
5 	enum nft_registers	dreg:8;
6 	u8			result;
7 	u32			flags;
8 };
9 
10 extern const struct nla_policy nft_fib_policy[];
11 
12 static inline bool
13 nft_fib_is_loopback(const struct sk_buff *skb, const struct net_device *in)
14 {
15 	return skb->pkt_type == PACKET_LOOPBACK || in->flags & IFF_LOOPBACK;
16 }
17 
18 int nft_fib_dump(struct sk_buff *skb, const struct nft_expr *expr);
19 int nft_fib_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
20 		 const struct nlattr * const tb[]);
21 int nft_fib_validate(const struct nft_ctx *ctx, const struct nft_expr *expr,
22 		     const struct nft_data **data);
23 
24 
25 void nft_fib4_eval_type(const struct nft_expr *expr, struct nft_regs *regs,
26 			const struct nft_pktinfo *pkt);
27 void nft_fib4_eval(const struct nft_expr *expr, struct nft_regs *regs,
28 		   const struct nft_pktinfo *pkt);
29 
30 void nft_fib6_eval_type(const struct nft_expr *expr, struct nft_regs *regs,
31 			const struct nft_pktinfo *pkt);
32 void nft_fib6_eval(const struct nft_expr *expr, struct nft_regs *regs,
33 		   const struct nft_pktinfo *pkt);
34 
35 void nft_fib_store_result(void *reg, const struct nft_fib *priv,
36 			  const struct nft_pktinfo *pkt, int index);
37 #endif
38