xref: /openbmc/linux/include/net/pkt_cls.h (revision 9c1c0e12)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21da177e4SLinus Torvalds #ifndef __NET_PKT_CLS_H
31da177e4SLinus Torvalds #define __NET_PKT_CLS_H
41da177e4SLinus Torvalds 
51da177e4SLinus Torvalds #include <linux/pkt_cls.h>
67aa0045dSCong Wang #include <linux/workqueue.h>
71da177e4SLinus Torvalds #include <net/sch_generic.h>
81da177e4SLinus Torvalds #include <net/act_api.h>
9a5148626SJiri Pirko #include <net/net_namespace.h>
101da177e4SLinus Torvalds 
11cd11b164SPaolo Abeni /* TC action not accessible from user space */
12720f22feSJohn Hurley #define TC_ACT_CONSUMED		(TC_ACT_VALUE_MAX + 1)
13cd11b164SPaolo Abeni 
141da177e4SLinus Torvalds /* Basic packet classifier frontend definitions. */
151da177e4SLinus Torvalds 
16fd2c3ef7SEric Dumazet struct tcf_walker {
171da177e4SLinus Torvalds 	int	stop;
181da177e4SLinus Torvalds 	int	skip;
191da177e4SLinus Torvalds 	int	count;
206676d5e4SVlad Buslov 	bool	nonempty;
2101683a14SVlad Buslov 	unsigned long cookie;
228113c095SWANG Cong 	int	(*fn)(struct tcf_proto *, void *node, struct tcf_walker *);
231da177e4SLinus Torvalds };
241da177e4SLinus Torvalds 
255c15257fSJoe Perches int register_tcf_proto_ops(struct tcf_proto_ops *ops);
265c15257fSJoe Perches int unregister_tcf_proto_ops(struct tcf_proto_ops *ops);
271da177e4SLinus Torvalds 
288c4083b3SJiri Pirko struct tcf_block_ext_info {
2932f8c409SPablo Neira Ayuso 	enum flow_block_binder_type binder_type;
30c7eb7d72SJiri Pirko 	tcf_chain_head_change_t *chain_head_change;
31c7eb7d72SJiri Pirko 	void *chain_head_change_priv;
3248617387SJiri Pirko 	u32 block_index;
338c4083b3SJiri Pirko };
348c4083b3SJiri Pirko 
353625750fSPetr Machata struct tcf_qevent {
363625750fSPetr Machata 	struct tcf_block	*block;
373625750fSPetr Machata 	struct tcf_block_ext_info info;
383625750fSPetr Machata 	struct tcf_proto __rcu *filter_chain;
393625750fSPetr Machata };
403625750fSPetr Machata 
41acb67442SJiri Pirko struct tcf_block_cb;
42aaa908ffSCong Wang bool tcf_queue_work(struct rcu_work *rwork, work_func_t func);
43acb67442SJiri Pirko 
448ae70032SJiri Pirko #ifdef CONFIG_NET_CLS
451f3ed383SJiri Pirko struct tcf_chain *tcf_chain_get_by_act(struct tcf_block *block,
461f3ed383SJiri Pirko 				       u32 chain_index);
471f3ed383SJiri Pirko void tcf_chain_put_by_act(struct tcf_chain *chain);
48bbf73830SVlad Buslov struct tcf_chain *tcf_get_next_chain(struct tcf_block *block,
49bbf73830SVlad Buslov 				     struct tcf_chain *chain);
50fe2923afSVlad Buslov struct tcf_proto *tcf_get_next_proto(struct tcf_chain *chain,
510fca55edSVlad Buslov 				     struct tcf_proto *tp);
52f36fe1c4SJiri Pirko void tcf_block_netif_keep_dst(struct tcf_block *block);
536529eabaSJiri Pirko int tcf_block_get(struct tcf_block **p_block,
548d1a77f9SAlexander Aring 		  struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
558d1a77f9SAlexander Aring 		  struct netlink_ext_ack *extack);
56c7eb7d72SJiri Pirko int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
578d1a77f9SAlexander Aring 		      struct tcf_block_ext_info *ei,
588d1a77f9SAlexander Aring 		      struct netlink_ext_ack *extack);
596529eabaSJiri Pirko void tcf_block_put(struct tcf_block *block);
60c7eb7d72SJiri Pirko void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
618c4083b3SJiri Pirko 		       struct tcf_block_ext_info *ei);
6244186460SJiri Pirko 
6348617387SJiri Pirko static inline bool tcf_block_shared(struct tcf_block *block)
6448617387SJiri Pirko {
6548617387SJiri Pirko 	return block->index;
6648617387SJiri Pirko }
6748617387SJiri Pirko 
68c1a970d0SVlad Buslov static inline bool tcf_block_non_null_shared(struct tcf_block *block)
69c1a970d0SVlad Buslov {
70c1a970d0SVlad Buslov 	return block && block->index;
71c1a970d0SVlad Buslov }
72c1a970d0SVlad Buslov 
7344186460SJiri Pirko static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
7444186460SJiri Pirko {
7548617387SJiri Pirko 	WARN_ON(tcf_block_shared(block));
7644186460SJiri Pirko 	return block->q;
7744186460SJiri Pirko }
7844186460SJiri Pirko 
793aa26055SDavide Caratti int tcf_classify(struct sk_buff *skb,
803aa26055SDavide Caratti 		 const struct tcf_block *block,
817d17c544SPaul Blakey 		 const struct tcf_proto *tp, struct tcf_result *res,
827d17c544SPaul Blakey 		 bool compat_mode);
8387d83093SJiri Pirko 
848ae70032SJiri Pirko #else
8588c44a52SPieter Jansen van Vuuren static inline bool tcf_block_shared(struct tcf_block *block)
8688c44a52SPieter Jansen van Vuuren {
8788c44a52SPieter Jansen van Vuuren 	return false;
8888c44a52SPieter Jansen van Vuuren }
8988c44a52SPieter Jansen van Vuuren 
90c1a970d0SVlad Buslov static inline bool tcf_block_non_null_shared(struct tcf_block *block)
91c1a970d0SVlad Buslov {
92c1a970d0SVlad Buslov 	return false;
93c1a970d0SVlad Buslov }
94c1a970d0SVlad Buslov 
956529eabaSJiri Pirko static inline
966529eabaSJiri Pirko int tcf_block_get(struct tcf_block **p_block,
973c149091SSudip Mukherjee 		  struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
983c149091SSudip Mukherjee 		  struct netlink_ext_ack *extack)
996529eabaSJiri Pirko {
1006529eabaSJiri Pirko 	return 0;
1016529eabaSJiri Pirko }
1026529eabaSJiri Pirko 
1038c4083b3SJiri Pirko static inline
104c7eb7d72SJiri Pirko int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
10533c30a8bSQuentin Monnet 		      struct tcf_block_ext_info *ei,
10633c30a8bSQuentin Monnet 		      struct netlink_ext_ack *extack)
1078c4083b3SJiri Pirko {
1088c4083b3SJiri Pirko 	return 0;
1098c4083b3SJiri Pirko }
1108c4083b3SJiri Pirko 
1116529eabaSJiri Pirko static inline void tcf_block_put(struct tcf_block *block)
1128ae70032SJiri Pirko {
1138ae70032SJiri Pirko }
11487d83093SJiri Pirko 
1158c4083b3SJiri Pirko static inline
116c7eb7d72SJiri Pirko void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
1178c4083b3SJiri Pirko 		       struct tcf_block_ext_info *ei)
1188c4083b3SJiri Pirko {
1198c4083b3SJiri Pirko }
1208c4083b3SJiri Pirko 
12144186460SJiri Pirko static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
12244186460SJiri Pirko {
12344186460SJiri Pirko 	return NULL;
12444186460SJiri Pirko }
12544186460SJiri Pirko 
126acb67442SJiri Pirko static inline
127a7323311SPablo Neira Ayuso int tc_setup_cb_block_register(struct tcf_block *block, flow_setup_cb_t *cb,
128acb67442SJiri Pirko 			       void *cb_priv)
129acb67442SJiri Pirko {
130acb67442SJiri Pirko 	return 0;
131acb67442SJiri Pirko }
132acb67442SJiri Pirko 
133acb67442SJiri Pirko static inline
134a7323311SPablo Neira Ayuso void tc_setup_cb_block_unregister(struct tcf_block *block, flow_setup_cb_t *cb,
135acb67442SJiri Pirko 				  void *cb_priv)
136acb67442SJiri Pirko {
137acb67442SJiri Pirko }
138acb67442SJiri Pirko 
1393aa26055SDavide Caratti static inline int tcf_classify(struct sk_buff *skb,
1403aa26055SDavide Caratti 			       const struct tcf_block *block,
1419410c940SPaul Blakey 			       const struct tcf_proto *tp,
1429410c940SPaul Blakey 			       struct tcf_result *res, bool compat_mode)
1439410c940SPaul Blakey {
1449410c940SPaul Blakey 	return TC_ACT_UNSPEC;
1459410c940SPaul Blakey }
1469410c940SPaul Blakey 
1478ae70032SJiri Pirko #endif
148cf1facdaSJiri Pirko 
1491da177e4SLinus Torvalds static inline unsigned long
1501da177e4SLinus Torvalds __cls_set_class(unsigned long *clp, unsigned long cl)
1511da177e4SLinus Torvalds {
152a0efb80cSWANG Cong 	return xchg(clp, cl);
1531da177e4SLinus Torvalds }
1541da177e4SLinus Torvalds 
1552e24cd75SCong Wang static inline void
1562e24cd75SCong Wang __tcf_bind_filter(struct Qdisc *q, struct tcf_result *r, unsigned long base)
1571da177e4SLinus Torvalds {
1582e24cd75SCong Wang 	unsigned long cl;
1591da177e4SLinus Torvalds 
1602e24cd75SCong Wang 	cl = q->ops->cl_ops->bind_tcf(q, base, r->classid);
1612e24cd75SCong Wang 	cl = __cls_set_class(&r->class, cl);
1622e24cd75SCong Wang 	if (cl)
1632e24cd75SCong Wang 		q->ops->cl_ops->unbind_tcf(q, cl);
1641da177e4SLinus Torvalds }
1651da177e4SLinus Torvalds 
1661da177e4SLinus Torvalds static inline void
1671da177e4SLinus Torvalds tcf_bind_filter(struct tcf_proto *tp, struct tcf_result *r, unsigned long base)
1681da177e4SLinus Torvalds {
16934e3759cSJiri Pirko 	struct Qdisc *q = tp->chain->block->q;
1701da177e4SLinus Torvalds 
17134e3759cSJiri Pirko 	/* Check q as it is not set for shared blocks. In that case,
17234e3759cSJiri Pirko 	 * setting class is not supported.
17334e3759cSJiri Pirko 	 */
17434e3759cSJiri Pirko 	if (!q)
17534e3759cSJiri Pirko 		return;
1762e24cd75SCong Wang 	sch_tree_lock(q);
1772e24cd75SCong Wang 	__tcf_bind_filter(q, r, base);
1782e24cd75SCong Wang 	sch_tree_unlock(q);
1792e24cd75SCong Wang }
1802e24cd75SCong Wang 
1812e24cd75SCong Wang static inline void
1822e24cd75SCong Wang __tcf_unbind_filter(struct Qdisc *q, struct tcf_result *r)
1832e24cd75SCong Wang {
1842e24cd75SCong Wang 	unsigned long cl;
1852e24cd75SCong Wang 
1862e24cd75SCong Wang 	if ((cl = __cls_set_class(&r->class, 0)) != 0)
18734e3759cSJiri Pirko 		q->ops->cl_ops->unbind_tcf(q, cl);
1881da177e4SLinus Torvalds }
1891da177e4SLinus Torvalds 
1901da177e4SLinus Torvalds static inline void
1911da177e4SLinus Torvalds tcf_unbind_filter(struct tcf_proto *tp, struct tcf_result *r)
1921da177e4SLinus Torvalds {
19334e3759cSJiri Pirko 	struct Qdisc *q = tp->chain->block->q;
1941da177e4SLinus Torvalds 
19534e3759cSJiri Pirko 	if (!q)
19634e3759cSJiri Pirko 		return;
1972e24cd75SCong Wang 	__tcf_unbind_filter(q, r);
1981da177e4SLinus Torvalds }
1991da177e4SLinus Torvalds 
200fd2c3ef7SEric Dumazet struct tcf_exts {
2011da177e4SLinus Torvalds #ifdef CONFIG_NET_CLS_ACT
20233be6271SWANG Cong 	__u32	type; /* for backward compat(TCA_OLD_COMPAT) */
20322dc13c8SWANG Cong 	int nr_actions;
20422dc13c8SWANG Cong 	struct tc_action **actions;
205e4b95c41SCong Wang 	struct net	*net;
206dbdcda63SEric Dumazet 	netns_tracker	ns_tracker;
2071da177e4SLinus Torvalds #endif
2081da177e4SLinus Torvalds 	/* Map to export classifier specific extension TLV types to the
2091da177e4SLinus Torvalds 	 * generic extensions API. Unsupported extensions must be set to 0.
2101da177e4SLinus Torvalds 	 */
2111da177e4SLinus Torvalds 	int action;
2121da177e4SLinus Torvalds 	int police;
2131da177e4SLinus Torvalds };
2141da177e4SLinus Torvalds 
21514215108SCong Wang static inline int tcf_exts_init(struct tcf_exts *exts, struct net *net,
21614215108SCong Wang 				int action, int police)
21733be6271SWANG Cong {
21833be6271SWANG Cong #ifdef CONFIG_NET_CLS_ACT
2195da57f42SWANG Cong 	exts->type = 0;
22022dc13c8SWANG Cong 	exts->nr_actions = 0;
22114215108SCong Wang 	exts->net = net;
222dbdcda63SEric Dumazet 	netns_tracker_alloc(net, &exts->ns_tracker, GFP_KERNEL);
22322dc13c8SWANG Cong 	exts->actions = kcalloc(TCA_ACT_MAX_PRIO, sizeof(struct tc_action *),
22422dc13c8SWANG Cong 				GFP_KERNEL);
225b9a24bb7SWANG Cong 	if (!exts->actions)
226b9a24bb7SWANG Cong 		return -ENOMEM;
22733be6271SWANG Cong #endif
2285da57f42SWANG Cong 	exts->action = action;
2295da57f42SWANG Cong 	exts->police = police;
230b9a24bb7SWANG Cong 	return 0;
23133be6271SWANG Cong }
23233be6271SWANG Cong 
233e4b95c41SCong Wang /* Return false if the netns is being destroyed in cleanup_net(). Callers
234e4b95c41SCong Wang  * need to do cleanup synchronously in this case, otherwise may race with
235e4b95c41SCong Wang  * tc_action_net_exit(). Return true for other cases.
236e4b95c41SCong Wang  */
237e4b95c41SCong Wang static inline bool tcf_exts_get_net(struct tcf_exts *exts)
238e4b95c41SCong Wang {
239e4b95c41SCong Wang #ifdef CONFIG_NET_CLS_ACT
240e4b95c41SCong Wang 	exts->net = maybe_get_net(exts->net);
241dbdcda63SEric Dumazet 	if (exts->net)
242dbdcda63SEric Dumazet 		netns_tracker_alloc(exts->net, &exts->ns_tracker, GFP_KERNEL);
243e4b95c41SCong Wang 	return exts->net != NULL;
244e4b95c41SCong Wang #else
245e4b95c41SCong Wang 	return true;
246e4b95c41SCong Wang #endif
247e4b95c41SCong Wang }
248e4b95c41SCong Wang 
249e4b95c41SCong Wang static inline void tcf_exts_put_net(struct tcf_exts *exts)
250e4b95c41SCong Wang {
251e4b95c41SCong Wang #ifdef CONFIG_NET_CLS_ACT
252e4b95c41SCong Wang 	if (exts->net)
253dbdcda63SEric Dumazet 		put_net_track(exts->net, &exts->ns_tracker);
254e4b95c41SCong Wang #endif
255e4b95c41SCong Wang }
256e4b95c41SCong Wang 
25722dc13c8SWANG Cong #ifdef CONFIG_NET_CLS_ACT
258244cd96aSCong Wang #define tcf_exts_for_each_action(i, a, exts) \
259244cd96aSCong Wang 	for (i = 0; i < TCA_ACT_MAX_PRIO && ((a) = (exts)->actions[i]); i++)
260244cd96aSCong Wang #else
261244cd96aSCong Wang #define tcf_exts_for_each_action(i, a, exts) \
262191672caSArnd Bergmann 	for (; 0; (void)(i), (void)(a), (void)(exts))
26322dc13c8SWANG Cong #endif
26422dc13c8SWANG Cong 
265d897a638SJakub Kicinski static inline void
266d897a638SJakub Kicinski tcf_exts_stats_update(const struct tcf_exts *exts,
2674b61d3e8SPo Liu 		      u64 bytes, u64 packets, u64 drops, u64 lastuse,
26893a129ebSJiri Pirko 		      u8 used_hw_stats, bool used_hw_stats_valid)
269d897a638SJakub Kicinski {
270d897a638SJakub Kicinski #ifdef CONFIG_NET_CLS_ACT
271d897a638SJakub Kicinski 	int i;
272d897a638SJakub Kicinski 
273d897a638SJakub Kicinski 	preempt_disable();
274d897a638SJakub Kicinski 
275d897a638SJakub Kicinski 	for (i = 0; i < exts->nr_actions; i++) {
276d897a638SJakub Kicinski 		struct tc_action *a = exts->actions[i];
277d897a638SJakub Kicinski 
2784b61d3e8SPo Liu 		tcf_action_stats_update(a, bytes, packets, drops,
2794b61d3e8SPo Liu 					lastuse, true);
28093a129ebSJiri Pirko 		a->used_hw_stats = used_hw_stats;
28193a129ebSJiri Pirko 		a->used_hw_stats_valid = used_hw_stats_valid;
282d897a638SJakub Kicinski 	}
283d897a638SJakub Kicinski 
284d897a638SJakub Kicinski 	preempt_enable();
285d897a638SJakub Kicinski #endif
286d897a638SJakub Kicinski }
287d897a638SJakub Kicinski 
2881da177e4SLinus Torvalds /**
2893bcc0cecSJiri Pirko  * tcf_exts_has_actions - check if at least one action is present
2903bcc0cecSJiri Pirko  * @exts: tc filter extensions handle
2913bcc0cecSJiri Pirko  *
2923bcc0cecSJiri Pirko  * Returns true if at least one action is present.
2933bcc0cecSJiri Pirko  */
2943bcc0cecSJiri Pirko static inline bool tcf_exts_has_actions(struct tcf_exts *exts)
2953bcc0cecSJiri Pirko {
2962734437eSWANG Cong #ifdef CONFIG_NET_CLS_ACT
2973bcc0cecSJiri Pirko 	return exts->nr_actions;
2983bcc0cecSJiri Pirko #else
2993bcc0cecSJiri Pirko 	return false;
3003bcc0cecSJiri Pirko #endif
3013bcc0cecSJiri Pirko }
3022734437eSWANG Cong 
3033bcc0cecSJiri Pirko /**
304af69afc5SJiri Pirko  * tcf_exts_exec - execute tc filter extensions
305af69afc5SJiri Pirko  * @skb: socket buffer
306af69afc5SJiri Pirko  * @exts: tc filter extensions handle
307af69afc5SJiri Pirko  * @res: desired result
308af69afc5SJiri Pirko  *
309af089e70SJiri Pirko  * Executes all configured extensions. Returns TC_ACT_OK on a normal execution,
310af69afc5SJiri Pirko  * a negative number if the filter must be considered unmatched or
311af69afc5SJiri Pirko  * a positive action code (TC_ACT_*) which must be returned to the
312af69afc5SJiri Pirko  * underlying layer.
313af69afc5SJiri Pirko  */
314af69afc5SJiri Pirko static inline int
315af69afc5SJiri Pirko tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
316af69afc5SJiri Pirko 	      struct tcf_result *res)
317af69afc5SJiri Pirko {
318af69afc5SJiri Pirko #ifdef CONFIG_NET_CLS_ACT
319ec1a9ccaSJiri Pirko 	return tcf_action_exec(skb, exts->actions, exts->nr_actions, res);
320af69afc5SJiri Pirko #endif
321af089e70SJiri Pirko 	return TC_ACT_OK;
322af69afc5SJiri Pirko }
323af69afc5SJiri Pirko 
3245c15257fSJoe Perches int tcf_exts_validate(struct net *net, struct tcf_proto *tp,
325c1b52739SBenjamin LaHaise 		      struct nlattr **tb, struct nlattr *rate_tlv,
326695176bfSCong Wang 		      struct tcf_exts *exts, u32 flags,
32750a56190SAlexander Aring 		      struct netlink_ext_ack *extack);
32818d0264fSWANG Cong void tcf_exts_destroy(struct tcf_exts *exts);
3299b0d4446SJiri Pirko void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src);
3305da57f42SWANG Cong int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts);
331ca44b738SVlad Buslov int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts);
3325da57f42SWANG Cong int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts);
3331da177e4SLinus Torvalds 
3341da177e4SLinus Torvalds /**
3351da177e4SLinus Torvalds  * struct tcf_pkt_info - packet information
3360161d151SBijie Xu  *
3370161d151SBijie Xu  * @ptr: start of the pkt data
3380161d151SBijie Xu  * @nexthdr: offset of the next header
3391da177e4SLinus Torvalds  */
340fd2c3ef7SEric Dumazet struct tcf_pkt_info {
3411da177e4SLinus Torvalds 	unsigned char *		ptr;
3421da177e4SLinus Torvalds 	int			nexthdr;
3431da177e4SLinus Torvalds };
3441da177e4SLinus Torvalds 
3451da177e4SLinus Torvalds #ifdef CONFIG_NET_EMATCH
3461da177e4SLinus Torvalds 
3471da177e4SLinus Torvalds struct tcf_ematch_ops;
3481da177e4SLinus Torvalds 
3491da177e4SLinus Torvalds /**
3501da177e4SLinus Torvalds  * struct tcf_ematch - extended match (ematch)
3511da177e4SLinus Torvalds  *
3521da177e4SLinus Torvalds  * @matchid: identifier to allow userspace to reidentify a match
3531da177e4SLinus Torvalds  * @flags: flags specifying attributes and the relation to other matches
3541da177e4SLinus Torvalds  * @ops: the operations lookup table of the corresponding ematch module
3551da177e4SLinus Torvalds  * @datalen: length of the ematch specific configuration data
3561da177e4SLinus Torvalds  * @data: ematch specific data
3570161d151SBijie Xu  * @net: the network namespace
3581da177e4SLinus Torvalds  */
359fd2c3ef7SEric Dumazet struct tcf_ematch {
3601da177e4SLinus Torvalds 	struct tcf_ematch_ops * ops;
3611da177e4SLinus Torvalds 	unsigned long		data;
3621da177e4SLinus Torvalds 	unsigned int		datalen;
3631da177e4SLinus Torvalds 	u16			matchid;
3641da177e4SLinus Torvalds 	u16			flags;
36582a470f1SJohn Fastabend 	struct net		*net;
3661da177e4SLinus Torvalds };
3671da177e4SLinus Torvalds 
3681da177e4SLinus Torvalds static inline int tcf_em_is_container(struct tcf_ematch *em)
3691da177e4SLinus Torvalds {
3701da177e4SLinus Torvalds 	return !em->ops;
3711da177e4SLinus Torvalds }
3721da177e4SLinus Torvalds 
3731da177e4SLinus Torvalds static inline int tcf_em_is_simple(struct tcf_ematch *em)
3741da177e4SLinus Torvalds {
3751da177e4SLinus Torvalds 	return em->flags & TCF_EM_SIMPLE;
3761da177e4SLinus Torvalds }
3771da177e4SLinus Torvalds 
3781da177e4SLinus Torvalds static inline int tcf_em_is_inverted(struct tcf_ematch *em)
3791da177e4SLinus Torvalds {
3801da177e4SLinus Torvalds 	return em->flags & TCF_EM_INVERT;
3811da177e4SLinus Torvalds }
3821da177e4SLinus Torvalds 
3831da177e4SLinus Torvalds static inline int tcf_em_last_match(struct tcf_ematch *em)
3841da177e4SLinus Torvalds {
3851da177e4SLinus Torvalds 	return (em->flags & TCF_EM_REL_MASK) == TCF_EM_REL_END;
3861da177e4SLinus Torvalds }
3871da177e4SLinus Torvalds 
3881da177e4SLinus Torvalds static inline int tcf_em_early_end(struct tcf_ematch *em, int result)
3891da177e4SLinus Torvalds {
3901da177e4SLinus Torvalds 	if (tcf_em_last_match(em))
3911da177e4SLinus Torvalds 		return 1;
3921da177e4SLinus Torvalds 
3931da177e4SLinus Torvalds 	if (result == 0 && em->flags & TCF_EM_REL_AND)
3941da177e4SLinus Torvalds 		return 1;
3951da177e4SLinus Torvalds 
3961da177e4SLinus Torvalds 	if (result != 0 && em->flags & TCF_EM_REL_OR)
3971da177e4SLinus Torvalds 		return 1;
3981da177e4SLinus Torvalds 
3991da177e4SLinus Torvalds 	return 0;
4001da177e4SLinus Torvalds }
4011da177e4SLinus Torvalds 
4021da177e4SLinus Torvalds /**
4031da177e4SLinus Torvalds  * struct tcf_ematch_tree - ematch tree handle
4041da177e4SLinus Torvalds  *
4051da177e4SLinus Torvalds  * @hdr: ematch tree header supplied by userspace
4061da177e4SLinus Torvalds  * @matches: array of ematches
4071da177e4SLinus Torvalds  */
408fd2c3ef7SEric Dumazet struct tcf_ematch_tree {
4091da177e4SLinus Torvalds 	struct tcf_ematch_tree_hdr hdr;
4101da177e4SLinus Torvalds 	struct tcf_ematch *	matches;
4111da177e4SLinus Torvalds 
4121da177e4SLinus Torvalds };
4131da177e4SLinus Torvalds 
4141da177e4SLinus Torvalds /**
4151da177e4SLinus Torvalds  * struct tcf_ematch_ops - ematch module operations
4161da177e4SLinus Torvalds  *
4171da177e4SLinus Torvalds  * @kind: identifier (kind) of this ematch module
4181da177e4SLinus Torvalds  * @datalen: length of expected configuration data (optional)
4191da177e4SLinus Torvalds  * @change: called during validation (optional)
4201da177e4SLinus Torvalds  * @match: called during ematch tree evaluation, must return 1/0
4211da177e4SLinus Torvalds  * @destroy: called during destroyage (optional)
4221da177e4SLinus Torvalds  * @dump: called during dumping process (optional)
4231da177e4SLinus Torvalds  * @owner: owner, must be set to THIS_MODULE
4241da177e4SLinus Torvalds  * @link: link to previous/next ematch module (internal use)
4251da177e4SLinus Torvalds  */
426fd2c3ef7SEric Dumazet struct tcf_ematch_ops {
4271da177e4SLinus Torvalds 	int			kind;
4281da177e4SLinus Torvalds 	int			datalen;
42982a470f1SJohn Fastabend 	int			(*change)(struct net *net, void *,
4301da177e4SLinus Torvalds 					  int, struct tcf_ematch *);
4311da177e4SLinus Torvalds 	int			(*match)(struct sk_buff *, struct tcf_ematch *,
4321da177e4SLinus Torvalds 					 struct tcf_pkt_info *);
43382a470f1SJohn Fastabend 	void			(*destroy)(struct tcf_ematch *);
4341da177e4SLinus Torvalds 	int			(*dump)(struct sk_buff *, struct tcf_ematch *);
4351da177e4SLinus Torvalds 	struct module		*owner;
4361da177e4SLinus Torvalds 	struct list_head	link;
4371da177e4SLinus Torvalds };
4381da177e4SLinus Torvalds 
4395c15257fSJoe Perches int tcf_em_register(struct tcf_ematch_ops *);
4405c15257fSJoe Perches void tcf_em_unregister(struct tcf_ematch_ops *);
4415c15257fSJoe Perches int tcf_em_tree_validate(struct tcf_proto *, struct nlattr *,
4421da177e4SLinus Torvalds 			 struct tcf_ematch_tree *);
44382a470f1SJohn Fastabend void tcf_em_tree_destroy(struct tcf_ematch_tree *);
4445c15257fSJoe Perches int tcf_em_tree_dump(struct sk_buff *, struct tcf_ematch_tree *, int);
4455c15257fSJoe Perches int __tcf_em_tree_match(struct sk_buff *, struct tcf_ematch_tree *,
4461da177e4SLinus Torvalds 			struct tcf_pkt_info *);
4471da177e4SLinus Torvalds 
4481da177e4SLinus Torvalds /**
4491da177e4SLinus Torvalds  * tcf_em_tree_match - evaulate an ematch tree
4501da177e4SLinus Torvalds  *
4511da177e4SLinus Torvalds  * @skb: socket buffer of the packet in question
4521da177e4SLinus Torvalds  * @tree: ematch tree to be used for evaluation
4531da177e4SLinus Torvalds  * @info: packet information examined by classifier
4541da177e4SLinus Torvalds  *
4551da177e4SLinus Torvalds  * This function matches @skb against the ematch tree in @tree by going
4561da177e4SLinus Torvalds  * through all ematches respecting their logic relations returning
4571da177e4SLinus Torvalds  * as soon as the result is obvious.
4581da177e4SLinus Torvalds  *
4591da177e4SLinus Torvalds  * Returns 1 if the ematch tree as-one matches, no ematches are configured
4601da177e4SLinus Torvalds  * or ematch is not enabled in the kernel, otherwise 0 is returned.
4611da177e4SLinus Torvalds  */
4621da177e4SLinus Torvalds static inline int tcf_em_tree_match(struct sk_buff *skb,
4631da177e4SLinus Torvalds 				    struct tcf_ematch_tree *tree,
4641da177e4SLinus Torvalds 				    struct tcf_pkt_info *info)
4651da177e4SLinus Torvalds {
4661da177e4SLinus Torvalds 	if (tree->hdr.nmatches)
4671da177e4SLinus Torvalds 		return __tcf_em_tree_match(skb, tree, info);
4681da177e4SLinus Torvalds 	else
4691da177e4SLinus Torvalds 		return 1;
4701da177e4SLinus Torvalds }
4711da177e4SLinus Torvalds 
472db3d99c0SPatrick McHardy #define MODULE_ALIAS_TCF_EMATCH(kind)	MODULE_ALIAS("ematch-kind-" __stringify(kind))
473db3d99c0SPatrick McHardy 
4741da177e4SLinus Torvalds #else /* CONFIG_NET_EMATCH */
4751da177e4SLinus Torvalds 
476fd2c3ef7SEric Dumazet struct tcf_ematch_tree {
4771da177e4SLinus Torvalds };
4781da177e4SLinus Torvalds 
4791da177e4SLinus Torvalds #define tcf_em_tree_validate(tp, tb, t) ((void)(t), 0)
48082a470f1SJohn Fastabend #define tcf_em_tree_destroy(t) do { (void)(t); } while(0)
4811da177e4SLinus Torvalds #define tcf_em_tree_dump(skb, t, tlv) (0)
4821da177e4SLinus Torvalds #define tcf_em_tree_match(skb, t, info) ((void)(info), 1)
4831da177e4SLinus Torvalds 
4841da177e4SLinus Torvalds #endif /* CONFIG_NET_EMATCH */
4851da177e4SLinus Torvalds 
4861da177e4SLinus Torvalds static inline unsigned char * tcf_get_base_ptr(struct sk_buff *skb, int layer)
4871da177e4SLinus Torvalds {
4881da177e4SLinus Torvalds 	switch (layer) {
4891da177e4SLinus Torvalds 		case TCF_LAYER_LINK:
490d3303a65SWolfgang Bumiller 			return skb_mac_header(skb);
4911da177e4SLinus Torvalds 		case TCF_LAYER_NETWORK:
492d56f90a7SArnaldo Carvalho de Melo 			return skb_network_header(skb);
4931da177e4SLinus Torvalds 		case TCF_LAYER_TRANSPORT:
4949c70220bSArnaldo Carvalho de Melo 			return skb_transport_header(skb);
4951da177e4SLinus Torvalds 	}
4961da177e4SLinus Torvalds 
4971da177e4SLinus Torvalds 	return NULL;
4981da177e4SLinus Torvalds }
4991da177e4SLinus Torvalds 
500eddc9ec5SArnaldo Carvalho de Melo static inline int tcf_valid_offset(const struct sk_buff *skb,
501eddc9ec5SArnaldo Carvalho de Melo 				   const unsigned char *ptr, const int len)
5021da177e4SLinus Torvalds {
503da521b2cSDavid S. Miller 	return likely((ptr + len) <= skb_tail_pointer(skb) &&
504da521b2cSDavid S. Miller 		      ptr >= skb->head &&
505da521b2cSDavid S. Miller 		      (ptr <= (ptr + len)));
5061da177e4SLinus Torvalds }
5071da177e4SLinus Torvalds 
5081da177e4SLinus Torvalds static inline int
5091057c55fSAlexander Aring tcf_change_indev(struct net *net, struct nlattr *indev_tlv,
5101057c55fSAlexander Aring 		 struct netlink_ext_ack *extack)
5111da177e4SLinus Torvalds {
5122519a602SWANG Cong 	char indev[IFNAMSIZ];
513c01003c2SPatrick McHardy 	struct net_device *dev;
514c01003c2SPatrick McHardy 
515872f6903SFrancis Laniel 	if (nla_strscpy(indev, indev_tlv, IFNAMSIZ) < 0) {
516e4a58ef3SGuillaume Nault 		NL_SET_ERR_MSG_ATTR(extack, indev_tlv,
517e4a58ef3SGuillaume Nault 				    "Interface name too long");
5182519a602SWANG Cong 		return -EINVAL;
5191057c55fSAlexander Aring 	}
5202519a602SWANG Cong 	dev = __dev_get_by_name(net, indev);
521e4a58ef3SGuillaume Nault 	if (!dev) {
522e4a58ef3SGuillaume Nault 		NL_SET_ERR_MSG_ATTR(extack, indev_tlv,
523e4a58ef3SGuillaume Nault 				    "Network device not found");
5242519a602SWANG Cong 		return -ENODEV;
525e4a58ef3SGuillaume Nault 	}
5262519a602SWANG Cong 	return dev->ifindex;
5271da177e4SLinus Torvalds }
5281da177e4SLinus Torvalds 
5292519a602SWANG Cong static inline bool
5302519a602SWANG Cong tcf_match_indev(struct sk_buff *skb, int ifindex)
5312519a602SWANG Cong {
5322519a602SWANG Cong 	if (!ifindex)
5332519a602SWANG Cong 		return true;
5342519a602SWANG Cong 	if  (!skb->skb_iif)
5352519a602SWANG Cong 		return false;
5362519a602SWANG Cong 	return ifindex == skb->skb_iif;
5371da177e4SLinus Torvalds }
5381da177e4SLinus Torvalds 
539*9c1c0e12SBaowen Zheng int tc_setup_offload_action(struct flow_action *flow_action,
540b15e7a6eSVlad Buslov 			    const struct tcf_exts *exts);
541*9c1c0e12SBaowen Zheng void tc_cleanup_offload_action(struct flow_action *flow_action);
5425a6ff4b1SVlad Buslov 
543aeb3fecdSCong Wang int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
54440119211SVlad Buslov 		     void *type_data, bool err_stop, bool rtnl_held);
54540119211SVlad Buslov int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
54640119211SVlad Buslov 		    enum tc_setup_type type, void *type_data, bool err_stop,
54740119211SVlad Buslov 		    u32 *flags, unsigned int *in_hw_count, bool rtnl_held);
54840119211SVlad Buslov int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
54940119211SVlad Buslov 			enum tc_setup_type type, void *type_data, bool err_stop,
55040119211SVlad Buslov 			u32 *old_flags, unsigned int *old_in_hw_count,
55140119211SVlad Buslov 			u32 *new_flags, unsigned int *new_in_hw_count,
55240119211SVlad Buslov 			bool rtnl_held);
55340119211SVlad Buslov int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp,
55440119211SVlad Buslov 			enum tc_setup_type type, void *type_data, bool err_stop,
55540119211SVlad Buslov 			u32 *flags, unsigned int *in_hw_count, bool rtnl_held);
55640119211SVlad Buslov int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp,
55740119211SVlad Buslov 			  bool add, flow_setup_cb_t *cb,
55840119211SVlad Buslov 			  enum tc_setup_type type, void *type_data,
55940119211SVlad Buslov 			  void *cb_priv, u32 *flags, unsigned int *in_hw_count);
560e3ab786bSPablo Neira Ayuso unsigned int tcf_exts_num_actions(struct tcf_exts *exts);
561717503b9SJiri Pirko 
5623625750fSPetr Machata #ifdef CONFIG_NET_CLS_ACT
5633625750fSPetr Machata int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
5643625750fSPetr Machata 		    enum flow_block_binder_type binder_type,
5653625750fSPetr Machata 		    struct nlattr *block_index_attr,
5663625750fSPetr Machata 		    struct netlink_ext_ack *extack);
5673625750fSPetr Machata void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch);
5683625750fSPetr Machata int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
5693625750fSPetr Machata 			       struct netlink_ext_ack *extack);
5703625750fSPetr Machata struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
57155f656cdSPetr Machata 				  struct sk_buff **to_free, int *ret);
5723625750fSPetr Machata int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe);
5733625750fSPetr Machata #else
5743625750fSPetr Machata static inline int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
5753625750fSPetr Machata 				  enum flow_block_binder_type binder_type,
5763625750fSPetr Machata 				  struct nlattr *block_index_attr,
5773625750fSPetr Machata 				  struct netlink_ext_ack *extack)
5783625750fSPetr Machata {
5793625750fSPetr Machata 	return 0;
5803625750fSPetr Machata }
5813625750fSPetr Machata 
5823625750fSPetr Machata static inline void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch)
5833625750fSPetr Machata {
5843625750fSPetr Machata }
5853625750fSPetr Machata 
5863625750fSPetr Machata static inline int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
5873625750fSPetr Machata 					     struct netlink_ext_ack *extack)
5883625750fSPetr Machata {
5893625750fSPetr Machata 	return 0;
5903625750fSPetr Machata }
5913625750fSPetr Machata 
5923625750fSPetr Machata static inline struct sk_buff *
5933625750fSPetr Machata tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
59455f656cdSPetr Machata 		  struct sk_buff **to_free, int *ret)
5953625750fSPetr Machata {
5963625750fSPetr Machata 	return skb;
5973625750fSPetr Machata }
5983625750fSPetr Machata 
5993625750fSPetr Machata static inline int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe)
6003625750fSPetr Machata {
6013625750fSPetr Machata 	return 0;
6023625750fSPetr Machata }
6033625750fSPetr Machata #endif
6043625750fSPetr Machata 
605a1b7c5fdSJohn Fastabend struct tc_cls_u32_knode {
606a1b7c5fdSJohn Fastabend 	struct tcf_exts *exts;
607068ceb35SJakub Kicinski 	struct tcf_result *res;
608e014860eSJohn Fastabend 	struct tc_u32_sel *sel;
609a1b7c5fdSJohn Fastabend 	u32 handle;
610a1b7c5fdSJohn Fastabend 	u32 val;
611a1b7c5fdSJohn Fastabend 	u32 mask;
612a1b7c5fdSJohn Fastabend 	u32 link_handle;
613e014860eSJohn Fastabend 	u8 fshift;
614a1b7c5fdSJohn Fastabend };
615a1b7c5fdSJohn Fastabend 
616a1b7c5fdSJohn Fastabend struct tc_cls_u32_hnode {
617a1b7c5fdSJohn Fastabend 	u32 handle;
618a1b7c5fdSJohn Fastabend 	u32 prio;
619a1b7c5fdSJohn Fastabend 	unsigned int divisor;
620a1b7c5fdSJohn Fastabend };
621a1b7c5fdSJohn Fastabend 
622a1b7c5fdSJohn Fastabend enum tc_clsu32_command {
623a1b7c5fdSJohn Fastabend 	TC_CLSU32_NEW_KNODE,
624a1b7c5fdSJohn Fastabend 	TC_CLSU32_REPLACE_KNODE,
625a1b7c5fdSJohn Fastabend 	TC_CLSU32_DELETE_KNODE,
626a1b7c5fdSJohn Fastabend 	TC_CLSU32_NEW_HNODE,
627a1b7c5fdSJohn Fastabend 	TC_CLSU32_REPLACE_HNODE,
628a1b7c5fdSJohn Fastabend 	TC_CLSU32_DELETE_HNODE,
629a1b7c5fdSJohn Fastabend };
630a1b7c5fdSJohn Fastabend 
631a1b7c5fdSJohn Fastabend struct tc_cls_u32_offload {
632f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
633a1b7c5fdSJohn Fastabend 	/* knode values */
634a1b7c5fdSJohn Fastabend 	enum tc_clsu32_command command;
635a1b7c5fdSJohn Fastabend 	union {
636a1b7c5fdSJohn Fastabend 		struct tc_cls_u32_knode knode;
637a1b7c5fdSJohn Fastabend 		struct tc_cls_u32_hnode hnode;
638a1b7c5fdSJohn Fastabend 	};
639a1b7c5fdSJohn Fastabend };
640a1b7c5fdSJohn Fastabend 
6417b06e8aeSJiri Pirko static inline bool tc_can_offload(const struct net_device *dev)
6426843e7a2SJohn Fastabend {
64370b5aee4SJiri Pirko 	return dev->features & NETIF_F_HW_TC;
6446843e7a2SJohn Fastabend }
6456843e7a2SJohn Fastabend 
646f9eda14fSQuentin Monnet static inline bool tc_can_offload_extack(const struct net_device *dev,
647f9eda14fSQuentin Monnet 					 struct netlink_ext_ack *extack)
648f9eda14fSQuentin Monnet {
649f9eda14fSQuentin Monnet 	bool can = tc_can_offload(dev);
650f9eda14fSQuentin Monnet 
651f9eda14fSQuentin Monnet 	if (!can)
652f9eda14fSQuentin Monnet 		NL_SET_ERR_MSG(extack, "TC offload is disabled on net device");
653f9eda14fSQuentin Monnet 
654f9eda14fSQuentin Monnet 	return can;
655f9eda14fSQuentin Monnet }
656f9eda14fSQuentin Monnet 
657878db9f0SJakub Kicinski static inline bool
658878db9f0SJakub Kicinski tc_cls_can_offload_and_chain0(const struct net_device *dev,
659f9e30088SPablo Neira Ayuso 			      struct flow_cls_common_offload *common)
660878db9f0SJakub Kicinski {
661878db9f0SJakub Kicinski 	if (!tc_can_offload_extack(dev, common->extack))
662878db9f0SJakub Kicinski 		return false;
663878db9f0SJakub Kicinski 	if (common->chain_index) {
664878db9f0SJakub Kicinski 		NL_SET_ERR_MSG(common->extack,
665878db9f0SJakub Kicinski 			       "Driver supports only offload of chain 0");
666878db9f0SJakub Kicinski 		return false;
667878db9f0SJakub Kicinski 	}
668878db9f0SJakub Kicinski 	return true;
669878db9f0SJakub Kicinski }
670878db9f0SJakub Kicinski 
67155330f05SHadar Hen Zion static inline bool tc_skip_hw(u32 flags)
67255330f05SHadar Hen Zion {
67355330f05SHadar Hen Zion 	return (flags & TCA_CLS_FLAGS_SKIP_HW) ? true : false;
67455330f05SHadar Hen Zion }
67555330f05SHadar Hen Zion 
676d34e3e18SSamudrala, Sridhar static inline bool tc_skip_sw(u32 flags)
677d34e3e18SSamudrala, Sridhar {
678d34e3e18SSamudrala, Sridhar 	return (flags & TCA_CLS_FLAGS_SKIP_SW) ? true : false;
679d34e3e18SSamudrala, Sridhar }
680d34e3e18SSamudrala, Sridhar 
681d34e3e18SSamudrala, Sridhar /* SKIP_HW and SKIP_SW are mutually exclusive flags. */
682d34e3e18SSamudrala, Sridhar static inline bool tc_flags_valid(u32 flags)
683d34e3e18SSamudrala, Sridhar {
68481c7288bSMarcelo Ricardo Leitner 	if (flags & ~(TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW |
68581c7288bSMarcelo Ricardo Leitner 		      TCA_CLS_FLAGS_VERBOSE))
686d34e3e18SSamudrala, Sridhar 		return false;
687d34e3e18SSamudrala, Sridhar 
68881c7288bSMarcelo Ricardo Leitner 	flags &= TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW;
689d34e3e18SSamudrala, Sridhar 	if (!(flags ^ (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)))
690d34e3e18SSamudrala, Sridhar 		return false;
691d34e3e18SSamudrala, Sridhar 
692d34e3e18SSamudrala, Sridhar 	return true;
693d34e3e18SSamudrala, Sridhar }
694d34e3e18SSamudrala, Sridhar 
695e696028aSOr Gerlitz static inline bool tc_in_hw(u32 flags)
696e696028aSOr Gerlitz {
697e696028aSOr Gerlitz 	return (flags & TCA_CLS_FLAGS_IN_HW) ? true : false;
698e696028aSOr Gerlitz }
699e696028aSOr Gerlitz 
70034832e1cSJakub Kicinski static inline void
701f9e30088SPablo Neira Ayuso tc_cls_common_offload_init(struct flow_cls_common_offload *cls_common,
70234832e1cSJakub Kicinski 			   const struct tcf_proto *tp, u32 flags,
70334832e1cSJakub Kicinski 			   struct netlink_ext_ack *extack)
70434832e1cSJakub Kicinski {
70534832e1cSJakub Kicinski 	cls_common->chain_index = tp->chain->index;
70634832e1cSJakub Kicinski 	cls_common->protocol = tp->protocol;
707ef01adaeSPablo Neira Ayuso 	cls_common->prio = tp->prio >> 16;
70881c7288bSMarcelo Ricardo Leitner 	if (tc_skip_sw(flags) || flags & TCA_CLS_FLAGS_VERBOSE)
70934832e1cSJakub Kicinski 		cls_common->extack = extack;
71034832e1cSJakub Kicinski }
71134832e1cSJakub Kicinski 
7129453d45eSVlad Buslov #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
7139453d45eSVlad Buslov static inline struct tc_skb_ext *tc_skb_ext_alloc(struct sk_buff *skb)
7149453d45eSVlad Buslov {
7159453d45eSVlad Buslov 	struct tc_skb_ext *tc_skb_ext = skb_ext_add(skb, TC_SKB_EXT);
7169453d45eSVlad Buslov 
7179453d45eSVlad Buslov 	if (tc_skb_ext)
7189453d45eSVlad Buslov 		memset(tc_skb_ext, 0, sizeof(*tc_skb_ext));
7199453d45eSVlad Buslov 	return tc_skb_ext;
7209453d45eSVlad Buslov }
7219453d45eSVlad Buslov #endif
7229453d45eSVlad Buslov 
723b87f7936SYotam Gigi enum tc_matchall_command {
724b87f7936SYotam Gigi 	TC_CLSMATCHALL_REPLACE,
725b87f7936SYotam Gigi 	TC_CLSMATCHALL_DESTROY,
726b7fe4ab8SPieter Jansen van Vuuren 	TC_CLSMATCHALL_STATS,
727b87f7936SYotam Gigi };
728b87f7936SYotam Gigi 
729b87f7936SYotam Gigi struct tc_cls_matchall_offload {
730f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
731b87f7936SYotam Gigi 	enum tc_matchall_command command;
732f00cbf19SPieter Jansen van Vuuren 	struct flow_rule *rule;
733b7fe4ab8SPieter Jansen van Vuuren 	struct flow_stats stats;
734b87f7936SYotam Gigi 	unsigned long cookie;
735b87f7936SYotam Gigi };
736b87f7936SYotam Gigi 
737332ae8e2SJakub Kicinski enum tc_clsbpf_command {
738102740bdSJakub Kicinski 	TC_CLSBPF_OFFLOAD,
73968d64063SJakub Kicinski 	TC_CLSBPF_STATS,
740332ae8e2SJakub Kicinski };
741332ae8e2SJakub Kicinski 
742332ae8e2SJakub Kicinski struct tc_cls_bpf_offload {
743f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
744332ae8e2SJakub Kicinski 	enum tc_clsbpf_command command;
745332ae8e2SJakub Kicinski 	struct tcf_exts *exts;
746332ae8e2SJakub Kicinski 	struct bpf_prog *prog;
747102740bdSJakub Kicinski 	struct bpf_prog *oldprog;
748332ae8e2SJakub Kicinski 	const char *name;
749332ae8e2SJakub Kicinski 	bool exts_integrated;
750332ae8e2SJakub Kicinski };
751332ae8e2SJakub Kicinski 
7524e8b86c0SAmritha Nambiar struct tc_mqprio_qopt_offload {
7534e8b86c0SAmritha Nambiar 	/* struct tc_mqprio_qopt must always be the first element */
7544e8b86c0SAmritha Nambiar 	struct tc_mqprio_qopt qopt;
7554e8b86c0SAmritha Nambiar 	u16 mode;
7564e8b86c0SAmritha Nambiar 	u16 shaper;
7574e8b86c0SAmritha Nambiar 	u32 flags;
7584e8b86c0SAmritha Nambiar 	u64 min_rate[TC_QOPT_MAX_QUEUE];
7594e8b86c0SAmritha Nambiar 	u64 max_rate[TC_QOPT_MAX_QUEUE];
7604e8b86c0SAmritha Nambiar };
7611045ba77SJamal Hadi Salim 
7621045ba77SJamal Hadi Salim /* This structure holds cookie structure that is passed from user
7631045ba77SJamal Hadi Salim  * to the kernel for actions and classifiers
7641045ba77SJamal Hadi Salim  */
7651045ba77SJamal Hadi Salim struct tc_cookie {
7661045ba77SJamal Hadi Salim 	u8  *data;
7671045ba77SJamal Hadi Salim 	u32 len;
768eec94fdbSVlad Buslov 	struct rcu_head rcu;
7691045ba77SJamal Hadi Salim };
770602f3bafSNogah Frankel 
771f34b4aacSNogah Frankel struct tc_qopt_offload_stats {
77250dc9a85SAhmed S. Darwish 	struct gnet_stats_basic_sync *bstats;
773f34b4aacSNogah Frankel 	struct gnet_stats_queue *qstats;
774f34b4aacSNogah Frankel };
775f34b4aacSNogah Frankel 
776f971b132SJakub Kicinski enum tc_mq_command {
777f971b132SJakub Kicinski 	TC_MQ_CREATE,
778f971b132SJakub Kicinski 	TC_MQ_DESTROY,
77947c669a4SJakub Kicinski 	TC_MQ_STATS,
780d577a3d2SJakub Kicinski 	TC_MQ_GRAFT,
781d577a3d2SJakub Kicinski };
782d577a3d2SJakub Kicinski 
783d577a3d2SJakub Kicinski struct tc_mq_opt_offload_graft_params {
784d577a3d2SJakub Kicinski 	unsigned long queue;
785d577a3d2SJakub Kicinski 	u32 child_handle;
786f971b132SJakub Kicinski };
787f971b132SJakub Kicinski 
788f971b132SJakub Kicinski struct tc_mq_qopt_offload {
789f971b132SJakub Kicinski 	enum tc_mq_command command;
790f971b132SJakub Kicinski 	u32 handle;
791d577a3d2SJakub Kicinski 	union {
79247c669a4SJakub Kicinski 		struct tc_qopt_offload_stats stats;
793d577a3d2SJakub Kicinski 		struct tc_mq_opt_offload_graft_params graft_params;
794d577a3d2SJakub Kicinski 	};
795f971b132SJakub Kicinski };
796f971b132SJakub Kicinski 
797d03b195bSMaxim Mikityanskiy enum tc_htb_command {
798d03b195bSMaxim Mikityanskiy 	/* Root */
799d03b195bSMaxim Mikityanskiy 	TC_HTB_CREATE, /* Initialize HTB offload. */
800d03b195bSMaxim Mikityanskiy 	TC_HTB_DESTROY, /* Destroy HTB offload. */
801d03b195bSMaxim Mikityanskiy 
802d03b195bSMaxim Mikityanskiy 	/* Classes */
803d03b195bSMaxim Mikityanskiy 	/* Allocate qid and create leaf. */
804d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_ALLOC_QUEUE,
805d03b195bSMaxim Mikityanskiy 	/* Convert leaf to inner, preserve and return qid, create new leaf. */
806d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_TO_INNER,
807d03b195bSMaxim Mikityanskiy 	/* Delete leaf, while siblings remain. */
808d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_DEL,
809d03b195bSMaxim Mikityanskiy 	/* Delete leaf, convert parent to leaf, preserving qid. */
810d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_DEL_LAST,
811d03b195bSMaxim Mikityanskiy 	/* TC_HTB_LEAF_DEL_LAST, but delete driver data on hardware errors. */
812d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_DEL_LAST_FORCE,
813d03b195bSMaxim Mikityanskiy 	/* Modify parameters of a node. */
814d03b195bSMaxim Mikityanskiy 	TC_HTB_NODE_MODIFY,
815d03b195bSMaxim Mikityanskiy 
816d03b195bSMaxim Mikityanskiy 	/* Class qdisc */
817d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_QUERY_QUEUE, /* Query qid by classid. */
818d03b195bSMaxim Mikityanskiy };
819d03b195bSMaxim Mikityanskiy 
820d03b195bSMaxim Mikityanskiy struct tc_htb_qopt_offload {
821d03b195bSMaxim Mikityanskiy 	struct netlink_ext_ack *extack;
822d03b195bSMaxim Mikityanskiy 	enum tc_htb_command command;
823d03b195bSMaxim Mikityanskiy 	u32 parent_classid;
824ca49bfd9SMaxim Mikityanskiy 	u16 classid;
825d03b195bSMaxim Mikityanskiy 	u16 qid;
826d03b195bSMaxim Mikityanskiy 	u64 rate;
827d03b195bSMaxim Mikityanskiy 	u64 ceil;
828d03b195bSMaxim Mikityanskiy };
829d03b195bSMaxim Mikityanskiy 
830d03b195bSMaxim Mikityanskiy #define TC_HTB_CLASSID_ROOT U32_MAX
831d03b195bSMaxim Mikityanskiy 
832602f3bafSNogah Frankel enum tc_red_command {
833602f3bafSNogah Frankel 	TC_RED_REPLACE,
834602f3bafSNogah Frankel 	TC_RED_DESTROY,
835602f3bafSNogah Frankel 	TC_RED_STATS,
836602f3bafSNogah Frankel 	TC_RED_XSTATS,
837bf2a752bSJakub Kicinski 	TC_RED_GRAFT,
838602f3bafSNogah Frankel };
839602f3bafSNogah Frankel 
840602f3bafSNogah Frankel struct tc_red_qopt_offload_params {
841602f3bafSNogah Frankel 	u32 min;
842602f3bafSNogah Frankel 	u32 max;
843602f3bafSNogah Frankel 	u32 probability;
844c0b7490bSJakub Kicinski 	u32 limit;
845602f3bafSNogah Frankel 	bool is_ecn;
846190852a5SJakub Kicinski 	bool is_harddrop;
8470a7fad23SPetr Machata 	bool is_nodrop;
848416ef9b1SJakub Kicinski 	struct gnet_stats_queue *qstats;
849602f3bafSNogah Frankel };
850602f3bafSNogah Frankel 
851602f3bafSNogah Frankel struct tc_red_qopt_offload {
852602f3bafSNogah Frankel 	enum tc_red_command command;
853602f3bafSNogah Frankel 	u32 handle;
854602f3bafSNogah Frankel 	u32 parent;
855602f3bafSNogah Frankel 	union {
856602f3bafSNogah Frankel 		struct tc_red_qopt_offload_params set;
857f34b4aacSNogah Frankel 		struct tc_qopt_offload_stats stats;
858602f3bafSNogah Frankel 		struct red_stats *xstats;
859bf2a752bSJakub Kicinski 		u32 child_handle;
860602f3bafSNogah Frankel 	};
861602f3bafSNogah Frankel };
862602f3bafSNogah Frankel 
863890d8d23SJakub Kicinski enum tc_gred_command {
864890d8d23SJakub Kicinski 	TC_GRED_REPLACE,
865890d8d23SJakub Kicinski 	TC_GRED_DESTROY,
866e49efd52SJakub Kicinski 	TC_GRED_STATS,
867890d8d23SJakub Kicinski };
868890d8d23SJakub Kicinski 
869890d8d23SJakub Kicinski struct tc_gred_vq_qopt_offload_params {
870890d8d23SJakub Kicinski 	bool present;
871890d8d23SJakub Kicinski 	u32 limit;
872890d8d23SJakub Kicinski 	u32 prio;
873890d8d23SJakub Kicinski 	u32 min;
874890d8d23SJakub Kicinski 	u32 max;
875890d8d23SJakub Kicinski 	bool is_ecn;
876890d8d23SJakub Kicinski 	bool is_harddrop;
877890d8d23SJakub Kicinski 	u32 probability;
878890d8d23SJakub Kicinski 	/* Only need backlog, see struct tc_prio_qopt_offload_params */
879890d8d23SJakub Kicinski 	u32 *backlog;
880890d8d23SJakub Kicinski };
881890d8d23SJakub Kicinski 
882890d8d23SJakub Kicinski struct tc_gred_qopt_offload_params {
883890d8d23SJakub Kicinski 	bool grio_on;
884890d8d23SJakub Kicinski 	bool wred_on;
885890d8d23SJakub Kicinski 	unsigned int dp_cnt;
886890d8d23SJakub Kicinski 	unsigned int dp_def;
887890d8d23SJakub Kicinski 	struct gnet_stats_queue *qstats;
888890d8d23SJakub Kicinski 	struct tc_gred_vq_qopt_offload_params tab[MAX_DPs];
889890d8d23SJakub Kicinski };
890890d8d23SJakub Kicinski 
891e49efd52SJakub Kicinski struct tc_gred_qopt_offload_stats {
89250dc9a85SAhmed S. Darwish 	struct gnet_stats_basic_sync bstats[MAX_DPs];
893e49efd52SJakub Kicinski 	struct gnet_stats_queue qstats[MAX_DPs];
894e49efd52SJakub Kicinski 	struct red_stats *xstats[MAX_DPs];
895e49efd52SJakub Kicinski };
896e49efd52SJakub Kicinski 
897890d8d23SJakub Kicinski struct tc_gred_qopt_offload {
898890d8d23SJakub Kicinski 	enum tc_gred_command command;
899890d8d23SJakub Kicinski 	u32 handle;
900890d8d23SJakub Kicinski 	u32 parent;
901890d8d23SJakub Kicinski 	union {
902890d8d23SJakub Kicinski 		struct tc_gred_qopt_offload_params set;
903e49efd52SJakub Kicinski 		struct tc_gred_qopt_offload_stats stats;
904890d8d23SJakub Kicinski 	};
905890d8d23SJakub Kicinski };
906890d8d23SJakub Kicinski 
9077fdb61b4SNogah Frankel enum tc_prio_command {
9087fdb61b4SNogah Frankel 	TC_PRIO_REPLACE,
9097fdb61b4SNogah Frankel 	TC_PRIO_DESTROY,
9107fdb61b4SNogah Frankel 	TC_PRIO_STATS,
911b9c7a7acSNogah Frankel 	TC_PRIO_GRAFT,
9127fdb61b4SNogah Frankel };
9137fdb61b4SNogah Frankel 
9147fdb61b4SNogah Frankel struct tc_prio_qopt_offload_params {
9157fdb61b4SNogah Frankel 	int bands;
9167fdb61b4SNogah Frankel 	u8 priomap[TC_PRIO_MAX + 1];
9179586a992SPetr Machata 	/* At the point of un-offloading the Qdisc, the reported backlog and
9189586a992SPetr Machata 	 * qlen need to be reduced by the portion that is in HW.
9197fdb61b4SNogah Frankel 	 */
9207fdb61b4SNogah Frankel 	struct gnet_stats_queue *qstats;
9217fdb61b4SNogah Frankel };
9227fdb61b4SNogah Frankel 
923b9c7a7acSNogah Frankel struct tc_prio_qopt_offload_graft_params {
924b9c7a7acSNogah Frankel 	u8 band;
925b9c7a7acSNogah Frankel 	u32 child_handle;
926b9c7a7acSNogah Frankel };
927b9c7a7acSNogah Frankel 
9287fdb61b4SNogah Frankel struct tc_prio_qopt_offload {
9297fdb61b4SNogah Frankel 	enum tc_prio_command command;
9307fdb61b4SNogah Frankel 	u32 handle;
9317fdb61b4SNogah Frankel 	u32 parent;
9327fdb61b4SNogah Frankel 	union {
9337fdb61b4SNogah Frankel 		struct tc_prio_qopt_offload_params replace_params;
9347fdb61b4SNogah Frankel 		struct tc_qopt_offload_stats stats;
935b9c7a7acSNogah Frankel 		struct tc_prio_qopt_offload_graft_params graft_params;
9367fdb61b4SNogah Frankel 	};
9377fdb61b4SNogah Frankel };
938b9c7a7acSNogah Frankel 
93998b0e5f6SJakub Kicinski enum tc_root_command {
94098b0e5f6SJakub Kicinski 	TC_ROOT_GRAFT,
94198b0e5f6SJakub Kicinski };
94298b0e5f6SJakub Kicinski 
94398b0e5f6SJakub Kicinski struct tc_root_qopt_offload {
94498b0e5f6SJakub Kicinski 	enum tc_root_command command;
94598b0e5f6SJakub Kicinski 	u32 handle;
94698b0e5f6SJakub Kicinski 	bool ingress;
94798b0e5f6SJakub Kicinski };
94898b0e5f6SJakub Kicinski 
949d35eb52bSPetr Machata enum tc_ets_command {
950d35eb52bSPetr Machata 	TC_ETS_REPLACE,
951d35eb52bSPetr Machata 	TC_ETS_DESTROY,
952d35eb52bSPetr Machata 	TC_ETS_STATS,
953d35eb52bSPetr Machata 	TC_ETS_GRAFT,
954d35eb52bSPetr Machata };
955d35eb52bSPetr Machata 
956d35eb52bSPetr Machata struct tc_ets_qopt_offload_replace_params {
957d35eb52bSPetr Machata 	unsigned int bands;
958d35eb52bSPetr Machata 	u8 priomap[TC_PRIO_MAX + 1];
959d35eb52bSPetr Machata 	unsigned int quanta[TCQ_ETS_MAX_BANDS];	/* 0 for strict bands. */
960d35eb52bSPetr Machata 	unsigned int weights[TCQ_ETS_MAX_BANDS];
961d35eb52bSPetr Machata 	struct gnet_stats_queue *qstats;
962d35eb52bSPetr Machata };
963d35eb52bSPetr Machata 
964d35eb52bSPetr Machata struct tc_ets_qopt_offload_graft_params {
965d35eb52bSPetr Machata 	u8 band;
966d35eb52bSPetr Machata 	u32 child_handle;
967d35eb52bSPetr Machata };
968d35eb52bSPetr Machata 
969d35eb52bSPetr Machata struct tc_ets_qopt_offload {
970d35eb52bSPetr Machata 	enum tc_ets_command command;
971d35eb52bSPetr Machata 	u32 handle;
972d35eb52bSPetr Machata 	u32 parent;
973d35eb52bSPetr Machata 	union {
974d35eb52bSPetr Machata 		struct tc_ets_qopt_offload_replace_params replace_params;
975d35eb52bSPetr Machata 		struct tc_qopt_offload_stats stats;
976d35eb52bSPetr Machata 		struct tc_ets_qopt_offload_graft_params graft_params;
977d35eb52bSPetr Machata 	};
978d35eb52bSPetr Machata };
979d35eb52bSPetr Machata 
980ef6aadccSPetr Machata enum tc_tbf_command {
981ef6aadccSPetr Machata 	TC_TBF_REPLACE,
982ef6aadccSPetr Machata 	TC_TBF_DESTROY,
983ef6aadccSPetr Machata 	TC_TBF_STATS,
9846b3efbfaSPetr Machata 	TC_TBF_GRAFT,
985ef6aadccSPetr Machata };
986ef6aadccSPetr Machata 
987ef6aadccSPetr Machata struct tc_tbf_qopt_offload_replace_params {
988ef6aadccSPetr Machata 	struct psched_ratecfg rate;
989ef6aadccSPetr Machata 	u32 max_size;
990ef6aadccSPetr Machata 	struct gnet_stats_queue *qstats;
991ef6aadccSPetr Machata };
992ef6aadccSPetr Machata 
993ef6aadccSPetr Machata struct tc_tbf_qopt_offload {
994ef6aadccSPetr Machata 	enum tc_tbf_command command;
995ef6aadccSPetr Machata 	u32 handle;
996ef6aadccSPetr Machata 	u32 parent;
997ef6aadccSPetr Machata 	union {
998ef6aadccSPetr Machata 		struct tc_tbf_qopt_offload_replace_params replace_params;
999ef6aadccSPetr Machata 		struct tc_qopt_offload_stats stats;
10006b3efbfaSPetr Machata 		u32 child_handle;
1001ef6aadccSPetr Machata 	};
1002ef6aadccSPetr Machata };
1003ef6aadccSPetr Machata 
1004aaca9408SPetr Machata enum tc_fifo_command {
1005aaca9408SPetr Machata 	TC_FIFO_REPLACE,
1006aaca9408SPetr Machata 	TC_FIFO_DESTROY,
1007aaca9408SPetr Machata 	TC_FIFO_STATS,
1008aaca9408SPetr Machata };
1009aaca9408SPetr Machata 
1010aaca9408SPetr Machata struct tc_fifo_qopt_offload {
1011aaca9408SPetr Machata 	enum tc_fifo_command command;
1012aaca9408SPetr Machata 	u32 handle;
1013aaca9408SPetr Machata 	u32 parent;
1014aaca9408SPetr Machata 	union {
1015aaca9408SPetr Machata 		struct tc_qopt_offload_stats stats;
1016aaca9408SPetr Machata 	};
1017aaca9408SPetr Machata };
1018aaca9408SPetr Machata 
10191da177e4SLinus Torvalds #endif
1020