1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2023 Isovalent */
7 #include <linux/bpf_mprog.h>
9 #include <net/sch_generic.h>
14 struct mini_Qdisc __rcu *miniq;
15 struct bpf_mprog_bundle bundle;
22 struct net_device *dev;
26 static inline void tcx_set_ingress(struct sk_buff *skb, bool ingress)
28 #ifdef CONFIG_NET_XGRESS
29 skb->tc_at_ingress = ingress;
33 #ifdef CONFIG_NET_XGRESS
34 static inline struct tcx_entry *tcx_entry(struct bpf_mprog_entry *entry)
36 struct bpf_mprog_bundle *bundle = entry->parent;
38 return container_of(bundle, struct tcx_entry, bundle);
41 static inline struct tcx_link *tcx_link(const struct bpf_link *link)
43 return container_of(link, struct tcx_link, link);
49 static inline void tcx_entry_sync(void)
51 /* bpf_mprog_entry got a/b swapped, therefore ensure that
52 * there are no inflight users on the old one anymore.
58 tcx_entry_update(struct net_device *dev, struct bpf_mprog_entry *entry,
63 rcu_assign_pointer(dev->tcx_ingress, entry);
65 rcu_assign_pointer(dev->tcx_egress, entry);
68 static inline struct bpf_mprog_entry *
69 tcx_entry_fetch(struct net_device *dev, bool ingress)
73 return rcu_dereference_rtnl(dev->tcx_ingress);
75 return rcu_dereference_rtnl(dev->tcx_egress);
78 static inline struct bpf_mprog_entry *tcx_entry_create(void)
80 struct tcx_entry *tcx = kzalloc(sizeof(*tcx), GFP_KERNEL);
83 bpf_mprog_bundle_init(&tcx->bundle);
84 return &tcx->bundle.a;
89 static inline void tcx_entry_free(struct bpf_mprog_entry *entry)
91 kfree_rcu(tcx_entry(entry), rcu);
94 static inline struct bpf_mprog_entry *
95 tcx_entry_fetch_or_create(struct net_device *dev, bool ingress, bool *created)
97 struct bpf_mprog_entry *entry = tcx_entry_fetch(dev, ingress);
101 entry = tcx_entry_create();
109 static inline void tcx_skeys_inc(bool ingress)
113 net_inc_ingress_queue();
115 net_inc_egress_queue();
118 static inline void tcx_skeys_dec(bool ingress)
121 net_dec_ingress_queue();
123 net_dec_egress_queue();
127 static inline void tcx_miniq_set_active(struct bpf_mprog_entry *entry,
131 tcx_entry(entry)->miniq_active = active;
134 static inline bool tcx_entry_is_active(struct bpf_mprog_entry *entry)
137 return bpf_mprog_total(entry) || tcx_entry(entry)->miniq_active;
140 static inline enum tcx_action_base tcx_action_code(struct sk_buff *skb,
145 skb->tc_index = qdisc_skb_cb(skb)->tc_classid;
155 #endif /* CONFIG_NET_XGRESS */
157 #if defined(CONFIG_NET_XGRESS) && defined(CONFIG_BPF_SYSCALL)
158 int tcx_prog_attach(const union bpf_attr *attr, struct bpf_prog *prog);
159 int tcx_link_attach(const union bpf_attr *attr, struct bpf_prog *prog);
160 int tcx_prog_detach(const union bpf_attr *attr, struct bpf_prog *prog);
161 void tcx_uninstall(struct net_device *dev, bool ingress);
163 int tcx_prog_query(const union bpf_attr *attr,
164 union bpf_attr __user *uattr);
166 static inline void dev_tcx_uninstall(struct net_device *dev)
169 tcx_uninstall(dev, true);
170 tcx_uninstall(dev, false);
173 static inline int tcx_prog_attach(const union bpf_attr *attr,
174 struct bpf_prog *prog)
179 static inline int tcx_link_attach(const union bpf_attr *attr,
180 struct bpf_prog *prog)
185 static inline int tcx_prog_detach(const union bpf_attr *attr,
186 struct bpf_prog *prog)
191 static inline int tcx_prog_query(const union bpf_attr *attr,
192 union bpf_attr __user *uattr)
197 static inline void dev_tcx_uninstall(struct net_device *dev)
200 #endif /* CONFIG_NET_XGRESS && CONFIG_BPF_SYSCALL */
201 #endif /* __NET_TCX_H */