hc
2024-11-01 7e970c18f85f99acc678d90128b6e01dce1bf273
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
53
54
55
56
57
58
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __NET_TC_MIR_H
#define __NET_TC_MIR_H
 
#include <net/act_api.h>
#include <linux/tc_act/tc_mirred.h>
 
struct tcf_mirred {
   struct tc_action    common;
   int            tcfm_eaction;
   bool            tcfm_mac_header_xmit;
   struct net_device __rcu    *tcfm_dev;
   struct list_head    tcfm_list;
};
#define to_mirred(a) ((struct tcf_mirred *)a)
 
static inline bool is_tcf_mirred_egress_redirect(const struct tc_action *a)
{
#ifdef CONFIG_NET_CLS_ACT
   if (a->ops && a->ops->id == TCA_ID_MIRRED)
       return to_mirred(a)->tcfm_eaction == TCA_EGRESS_REDIR;
#endif
   return false;
}
 
static inline bool is_tcf_mirred_egress_mirror(const struct tc_action *a)
{
#ifdef CONFIG_NET_CLS_ACT
   if (a->ops && a->ops->id == TCA_ID_MIRRED)
       return to_mirred(a)->tcfm_eaction == TCA_EGRESS_MIRROR;
#endif
   return false;
}
 
static inline bool is_tcf_mirred_ingress_redirect(const struct tc_action *a)
{
#ifdef CONFIG_NET_CLS_ACT
   if (a->ops && a->ops->id == TCA_ID_MIRRED)
       return to_mirred(a)->tcfm_eaction == TCA_INGRESS_REDIR;
#endif
   return false;
}
 
static inline bool is_tcf_mirred_ingress_mirror(const struct tc_action *a)
{
#ifdef CONFIG_NET_CLS_ACT
   if (a->ops && a->ops->id == TCA_ID_MIRRED)
       return to_mirred(a)->tcfm_eaction == TCA_INGRESS_MIRROR;
#endif
   return false;
}
 
static inline struct net_device *tcf_mirred_dev(const struct tc_action *a)
{
   return rtnl_dereference(to_mirred(a)->tcfm_dev);
}
 
#endif /* __NET_TC_MIR_H */