blob: 33e37fb41d5d40df1779860e6a4f17ab6a47ef6f [file] [log] [blame]
Pablo Neirae687ad62015-05-13 18:19:38 +02001#ifndef _NETFILTER_INGRESS_H_
2#define _NETFILTER_INGRESS_H_
3
4#include <linux/netfilter.h>
5#include <linux/netdevice.h>
6
7#ifdef CONFIG_NETFILTER_INGRESS
Florian Westphal61b590b2015-10-23 12:43:18 +02008static inline bool nf_hook_ingress_active(const struct sk_buff *skb)
Pablo Neirae687ad62015-05-13 18:19:38 +02009{
Florian Westphal61b590b2015-10-23 12:43:18 +020010#ifdef HAVE_JUMP_LABEL
11 if (!static_key_false(&nf_hooks_needed[NFPROTO_NETDEV][NF_NETDEV_INGRESS]))
12 return false;
13#endif
Aaron Conolee3b37f12016-09-21 11:35:07 -040014 return rcu_access_pointer(skb->dev->nf_hooks_ingress);
Pablo Neirae687ad62015-05-13 18:19:38 +020015}
16
Florian Westphalfe729262016-09-21 11:35:02 -040017/* caller must hold rcu_read_lock */
Pablo Neirae687ad62015-05-13 18:19:38 +020018static inline int nf_hook_ingress(struct sk_buff *skb)
19{
Aaron Conolee3b37f12016-09-21 11:35:07 -040020 struct nf_hook_entry *e = rcu_dereference(skb->dev->nf_hooks_ingress);
Pablo Neirae687ad62015-05-13 18:19:38 +020021 struct nf_hook_state state;
22
Aaron Conolee3b37f12016-09-21 11:35:07 -040023 /* Must recheck the ingress hook head, in the event it became NULL
24 * after the check in nf_hook_ingress_active evaluated to true.
25 */
26 if (unlikely(!e))
27 return 0;
28
29 nf_hook_state_init(&state, e, NF_NETDEV_INGRESS, INT_MIN,
30 NFPROTO_NETDEV, skb->dev, NULL, NULL,
31 dev_net(skb->dev), NULL);
Pablo Neirae687ad62015-05-13 18:19:38 +020032 return nf_hook_slow(skb, &state);
33}
34
35static inline void nf_hook_ingress_init(struct net_device *dev)
36{
Aaron Conolee3b37f12016-09-21 11:35:07 -040037 RCU_INIT_POINTER(dev->nf_hooks_ingress, NULL);
Pablo Neirae687ad62015-05-13 18:19:38 +020038}
39#else /* CONFIG_NETFILTER_INGRESS */
40static inline int nf_hook_ingress_active(struct sk_buff *skb)
41{
42 return 0;
43}
44
45static inline int nf_hook_ingress(struct sk_buff *skb)
46{
47 return 0;
48}
49
50static inline void nf_hook_ingress_init(struct net_device *dev) {}
51#endif /* CONFIG_NETFILTER_INGRESS */
52#endif /* _NETFILTER_INGRESS_H_ */