huangcm
2025-08-14 5d6606c55520a76d5bb8297d83fd9bbf967e5244
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef _NETFILTER_INGRESS_H_
#define _NETFILTER_INGRESS_H_
 
#include <linux/netfilter.h>
#include <linux/netdevice.h>
 
#ifdef CONFIG_NETFILTER_INGRESS
static inline bool nf_hook_ingress_active(const struct sk_buff *skb)
{
#ifdef HAVE_JUMP_LABEL
   if (!static_key_false(&nf_hooks_needed[NFPROTO_NETDEV][NF_NETDEV_INGRESS]))
       return false;
#endif
   return rcu_access_pointer(skb->dev->nf_hooks_ingress);
}
 
/* caller must hold rcu_read_lock */
static inline int nf_hook_ingress(struct sk_buff *skb)
{
   struct nf_hook_entry *e = rcu_dereference(skb->dev->nf_hooks_ingress);
   struct nf_hook_state state;
 
   /* Must recheck the ingress hook head, in the event it became NULL
    * after the check in nf_hook_ingress_active evaluated to true.
    */
   if (unlikely(!e))
       return 0;
 
   nf_hook_state_init(&state, e, NF_NETDEV_INGRESS, INT_MIN,
              NFPROTO_NETDEV, skb->dev, NULL, NULL,
              dev_net(skb->dev), NULL);
   return nf_hook_slow(skb, &state);
}
 
static inline void nf_hook_ingress_init(struct net_device *dev)
{
   RCU_INIT_POINTER(dev->nf_hooks_ingress, NULL);
}
#else /* CONFIG_NETFILTER_INGRESS */
static inline int nf_hook_ingress_active(struct sk_buff *skb)
{
   return 0;
}
 
static inline int nf_hook_ingress(struct sk_buff *skb)
{
   return 0;
}
 
static inline void nf_hook_ingress_init(struct net_device *dev) {}
#endif /* CONFIG_NETFILTER_INGRESS */
#endif /* _NETFILTER_INGRESS_H_ */