xref: /openbmc/linux/include/net/pkt_cls.h (revision ef01adae)
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 
35acb67442SJiri Pirko struct tcf_block_cb;
36aaa908ffSCong Wang bool tcf_queue_work(struct rcu_work *rwork, work_func_t func);
37acb67442SJiri Pirko 
388ae70032SJiri Pirko #ifdef CONFIG_NET_CLS
391f3ed383SJiri Pirko struct tcf_chain *tcf_chain_get_by_act(struct tcf_block *block,
401f3ed383SJiri Pirko 				       u32 chain_index);
411f3ed383SJiri Pirko void tcf_chain_put_by_act(struct tcf_chain *chain);
42bbf73830SVlad Buslov struct tcf_chain *tcf_get_next_chain(struct tcf_block *block,
43bbf73830SVlad Buslov 				     struct tcf_chain *chain);
44fe2923afSVlad Buslov struct tcf_proto *tcf_get_next_proto(struct tcf_chain *chain,
4512db03b6SVlad Buslov 				     struct tcf_proto *tp, bool rtnl_held);
46f36fe1c4SJiri Pirko void tcf_block_netif_keep_dst(struct tcf_block *block);
476529eabaSJiri Pirko int tcf_block_get(struct tcf_block **p_block,
488d1a77f9SAlexander Aring 		  struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
498d1a77f9SAlexander Aring 		  struct netlink_ext_ack *extack);
50c7eb7d72SJiri Pirko int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
518d1a77f9SAlexander Aring 		      struct tcf_block_ext_info *ei,
528d1a77f9SAlexander Aring 		      struct netlink_ext_ack *extack);
536529eabaSJiri Pirko void tcf_block_put(struct tcf_block *block);
54c7eb7d72SJiri Pirko void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
558c4083b3SJiri Pirko 		       struct tcf_block_ext_info *ei);
5644186460SJiri Pirko 
5748617387SJiri Pirko static inline bool tcf_block_shared(struct tcf_block *block)
5848617387SJiri Pirko {
5948617387SJiri Pirko 	return block->index;
6048617387SJiri Pirko }
6148617387SJiri Pirko 
62c1a970d0SVlad Buslov static inline bool tcf_block_non_null_shared(struct tcf_block *block)
63c1a970d0SVlad Buslov {
64c1a970d0SVlad Buslov 	return block && block->index;
65c1a970d0SVlad Buslov }
66c1a970d0SVlad Buslov 
6744186460SJiri Pirko static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
6844186460SJiri Pirko {
6948617387SJiri Pirko 	WARN_ON(tcf_block_shared(block));
7044186460SJiri Pirko 	return block->q;
7144186460SJiri Pirko }
7244186460SJiri Pirko 
737f76fa36SJohn Hurley int __tc_indr_block_cb_register(struct net_device *dev, void *cb_priv,
747f76fa36SJohn Hurley 				tc_indr_block_bind_cb_t *cb, void *cb_ident);
757f76fa36SJohn Hurley int tc_indr_block_cb_register(struct net_device *dev, void *cb_priv,
767f76fa36SJohn Hurley 			      tc_indr_block_bind_cb_t *cb, void *cb_ident);
777f76fa36SJohn Hurley void __tc_indr_block_cb_unregister(struct net_device *dev,
787f76fa36SJohn Hurley 				   tc_indr_block_bind_cb_t *cb, void *cb_ident);
797f76fa36SJohn Hurley void tc_indr_block_cb_unregister(struct net_device *dev,
807f76fa36SJohn Hurley 				 tc_indr_block_bind_cb_t *cb, void *cb_ident);
81acb67442SJiri Pirko 
8287d83093SJiri Pirko int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
8387d83093SJiri Pirko 		 struct tcf_result *res, bool compat_mode);
8487d83093SJiri Pirko 
858ae70032SJiri Pirko #else
8688c44a52SPieter Jansen van Vuuren static inline bool tcf_block_shared(struct tcf_block *block)
8788c44a52SPieter Jansen van Vuuren {
8888c44a52SPieter Jansen van Vuuren 	return false;
8988c44a52SPieter Jansen van Vuuren }
9088c44a52SPieter Jansen van Vuuren 
91c1a970d0SVlad Buslov static inline bool tcf_block_non_null_shared(struct tcf_block *block)
92c1a970d0SVlad Buslov {
93c1a970d0SVlad Buslov 	return false;
94c1a970d0SVlad Buslov }
95c1a970d0SVlad Buslov 
966529eabaSJiri Pirko static inline
976529eabaSJiri Pirko int tcf_block_get(struct tcf_block **p_block,
983c149091SSudip Mukherjee 		  struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
993c149091SSudip Mukherjee 		  struct netlink_ext_ack *extack)
1006529eabaSJiri Pirko {
1016529eabaSJiri Pirko 	return 0;
1026529eabaSJiri Pirko }
1036529eabaSJiri Pirko 
1048c4083b3SJiri Pirko static inline
105c7eb7d72SJiri Pirko int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
10633c30a8bSQuentin Monnet 		      struct tcf_block_ext_info *ei,
10733c30a8bSQuentin Monnet 		      struct netlink_ext_ack *extack)
1088c4083b3SJiri Pirko {
1098c4083b3SJiri Pirko 	return 0;
1108c4083b3SJiri Pirko }
1118c4083b3SJiri Pirko 
1126529eabaSJiri Pirko static inline void tcf_block_put(struct tcf_block *block)
1138ae70032SJiri Pirko {
1148ae70032SJiri Pirko }
11587d83093SJiri Pirko 
1168c4083b3SJiri Pirko static inline
117c7eb7d72SJiri Pirko void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
1188c4083b3SJiri Pirko 		       struct tcf_block_ext_info *ei)
1198c4083b3SJiri Pirko {
1208c4083b3SJiri Pirko }
1218c4083b3SJiri Pirko 
12244186460SJiri Pirko static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
12344186460SJiri Pirko {
12444186460SJiri Pirko 	return NULL;
12544186460SJiri Pirko }
12644186460SJiri Pirko 
127acb67442SJiri Pirko static inline
128a7323311SPablo Neira Ayuso int tc_setup_cb_block_register(struct tcf_block *block, flow_setup_cb_t *cb,
129acb67442SJiri Pirko 			       void *cb_priv)
130acb67442SJiri Pirko {
131acb67442SJiri Pirko 	return 0;
132acb67442SJiri Pirko }
133acb67442SJiri Pirko 
134acb67442SJiri Pirko static inline
135a7323311SPablo Neira Ayuso void tc_setup_cb_block_unregister(struct tcf_block *block, flow_setup_cb_t *cb,
136acb67442SJiri Pirko 				  void *cb_priv)
137acb67442SJiri Pirko {
138acb67442SJiri Pirko }
139acb67442SJiri Pirko 
140acb67442SJiri Pirko static inline
1417f76fa36SJohn Hurley int __tc_indr_block_cb_register(struct net_device *dev, void *cb_priv,
1427f76fa36SJohn Hurley 				tc_indr_block_bind_cb_t *cb, void *cb_ident)
1437f76fa36SJohn Hurley {
1447f76fa36SJohn Hurley 	return 0;
1457f76fa36SJohn Hurley }
1467f76fa36SJohn Hurley 
1477f76fa36SJohn Hurley static inline
1487f76fa36SJohn Hurley int tc_indr_block_cb_register(struct net_device *dev, void *cb_priv,
1497f76fa36SJohn Hurley 			      tc_indr_block_bind_cb_t *cb, void *cb_ident)
1507f76fa36SJohn Hurley {
1517f76fa36SJohn Hurley 	return 0;
1527f76fa36SJohn Hurley }
1537f76fa36SJohn Hurley 
1547f76fa36SJohn Hurley static inline
1557f76fa36SJohn Hurley void __tc_indr_block_cb_unregister(struct net_device *dev,
1567f76fa36SJohn Hurley 				   tc_indr_block_bind_cb_t *cb, void *cb_ident)
1577f76fa36SJohn Hurley {
1587f76fa36SJohn Hurley }
1597f76fa36SJohn Hurley 
1607f76fa36SJohn Hurley static inline
1617f76fa36SJohn Hurley void tc_indr_block_cb_unregister(struct net_device *dev,
1627f76fa36SJohn Hurley 				 tc_indr_block_bind_cb_t *cb, void *cb_ident)
1637f76fa36SJohn Hurley {
1647f76fa36SJohn Hurley }
1657f76fa36SJohn Hurley 
16687d83093SJiri Pirko static inline int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
16787d83093SJiri Pirko 			       struct tcf_result *res, bool compat_mode)
16887d83093SJiri Pirko {
16987d83093SJiri Pirko 	return TC_ACT_UNSPEC;
17087d83093SJiri Pirko }
1718ae70032SJiri Pirko #endif
172cf1facdaSJiri Pirko 
1731da177e4SLinus Torvalds static inline unsigned long
1741da177e4SLinus Torvalds __cls_set_class(unsigned long *clp, unsigned long cl)
1751da177e4SLinus Torvalds {
176a0efb80cSWANG Cong 	return xchg(clp, cl);
1771da177e4SLinus Torvalds }
1781da177e4SLinus Torvalds 
1791da177e4SLinus Torvalds static inline unsigned long
18034e3759cSJiri Pirko cls_set_class(struct Qdisc *q, unsigned long *clp, unsigned long cl)
1811da177e4SLinus Torvalds {
1821da177e4SLinus Torvalds 	unsigned long old_cl;
1831da177e4SLinus Torvalds 
18434e3759cSJiri Pirko 	sch_tree_lock(q);
1851da177e4SLinus Torvalds 	old_cl = __cls_set_class(clp, cl);
18634e3759cSJiri Pirko 	sch_tree_unlock(q);
1871da177e4SLinus Torvalds 	return old_cl;
1881da177e4SLinus Torvalds }
1891da177e4SLinus Torvalds 
1901da177e4SLinus Torvalds static inline void
1911da177e4SLinus Torvalds tcf_bind_filter(struct tcf_proto *tp, struct tcf_result *r, unsigned long base)
1921da177e4SLinus Torvalds {
19334e3759cSJiri Pirko 	struct Qdisc *q = tp->chain->block->q;
1941da177e4SLinus Torvalds 	unsigned long cl;
1951da177e4SLinus Torvalds 
19634e3759cSJiri Pirko 	/* Check q as it is not set for shared blocks. In that case,
19734e3759cSJiri Pirko 	 * setting class is not supported.
19834e3759cSJiri Pirko 	 */
19934e3759cSJiri Pirko 	if (!q)
20034e3759cSJiri Pirko 		return;
20134e3759cSJiri Pirko 	cl = q->ops->cl_ops->bind_tcf(q, base, r->classid);
20234e3759cSJiri Pirko 	cl = cls_set_class(q, &r->class, cl);
2031da177e4SLinus Torvalds 	if (cl)
20434e3759cSJiri Pirko 		q->ops->cl_ops->unbind_tcf(q, cl);
2051da177e4SLinus Torvalds }
2061da177e4SLinus Torvalds 
2071da177e4SLinus Torvalds static inline void
2081da177e4SLinus Torvalds tcf_unbind_filter(struct tcf_proto *tp, struct tcf_result *r)
2091da177e4SLinus Torvalds {
21034e3759cSJiri Pirko 	struct Qdisc *q = tp->chain->block->q;
2111da177e4SLinus Torvalds 	unsigned long cl;
2121da177e4SLinus Torvalds 
21334e3759cSJiri Pirko 	if (!q)
21434e3759cSJiri Pirko 		return;
2151da177e4SLinus Torvalds 	if ((cl = __cls_set_class(&r->class, 0)) != 0)
21634e3759cSJiri Pirko 		q->ops->cl_ops->unbind_tcf(q, cl);
2171da177e4SLinus Torvalds }
2181da177e4SLinus Torvalds 
219fd2c3ef7SEric Dumazet struct tcf_exts {
2201da177e4SLinus Torvalds #ifdef CONFIG_NET_CLS_ACT
22133be6271SWANG Cong 	__u32	type; /* for backward compat(TCA_OLD_COMPAT) */
22222dc13c8SWANG Cong 	int nr_actions;
22322dc13c8SWANG Cong 	struct tc_action **actions;
224e4b95c41SCong Wang 	struct net *net;
2251da177e4SLinus Torvalds #endif
2261da177e4SLinus Torvalds 	/* Map to export classifier specific extension TLV types to the
2271da177e4SLinus Torvalds 	 * generic extensions API. Unsupported extensions must be set to 0.
2281da177e4SLinus Torvalds 	 */
2291da177e4SLinus Torvalds 	int action;
2301da177e4SLinus Torvalds 	int police;
2311da177e4SLinus Torvalds };
2321da177e4SLinus Torvalds 
23314215108SCong Wang static inline int tcf_exts_init(struct tcf_exts *exts, struct net *net,
23414215108SCong Wang 				int action, int police)
23533be6271SWANG Cong {
23633be6271SWANG Cong #ifdef CONFIG_NET_CLS_ACT
2375da57f42SWANG Cong 	exts->type = 0;
23822dc13c8SWANG Cong 	exts->nr_actions = 0;
23914215108SCong Wang 	exts->net = net;
24022dc13c8SWANG Cong 	exts->actions = kcalloc(TCA_ACT_MAX_PRIO, sizeof(struct tc_action *),
24122dc13c8SWANG Cong 				GFP_KERNEL);
242b9a24bb7SWANG Cong 	if (!exts->actions)
243b9a24bb7SWANG Cong 		return -ENOMEM;
24433be6271SWANG Cong #endif
2455da57f42SWANG Cong 	exts->action = action;
2465da57f42SWANG Cong 	exts->police = police;
247b9a24bb7SWANG Cong 	return 0;
24833be6271SWANG Cong }
24933be6271SWANG Cong 
250e4b95c41SCong Wang /* Return false if the netns is being destroyed in cleanup_net(). Callers
251e4b95c41SCong Wang  * need to do cleanup synchronously in this case, otherwise may race with
252e4b95c41SCong Wang  * tc_action_net_exit(). Return true for other cases.
253e4b95c41SCong Wang  */
254e4b95c41SCong Wang static inline bool tcf_exts_get_net(struct tcf_exts *exts)
255e4b95c41SCong Wang {
256e4b95c41SCong Wang #ifdef CONFIG_NET_CLS_ACT
257e4b95c41SCong Wang 	exts->net = maybe_get_net(exts->net);
258e4b95c41SCong Wang 	return exts->net != NULL;
259e4b95c41SCong Wang #else
260e4b95c41SCong Wang 	return true;
261e4b95c41SCong Wang #endif
262e4b95c41SCong Wang }
263e4b95c41SCong Wang 
264e4b95c41SCong Wang static inline void tcf_exts_put_net(struct tcf_exts *exts)
265e4b95c41SCong Wang {
266e4b95c41SCong Wang #ifdef CONFIG_NET_CLS_ACT
267e4b95c41SCong Wang 	if (exts->net)
268e4b95c41SCong Wang 		put_net(exts->net);
269e4b95c41SCong Wang #endif
270e4b95c41SCong Wang }
271e4b95c41SCong Wang 
27222dc13c8SWANG Cong #ifdef CONFIG_NET_CLS_ACT
273244cd96aSCong Wang #define tcf_exts_for_each_action(i, a, exts) \
274244cd96aSCong Wang 	for (i = 0; i < TCA_ACT_MAX_PRIO && ((a) = (exts)->actions[i]); i++)
275244cd96aSCong Wang #else
276244cd96aSCong Wang #define tcf_exts_for_each_action(i, a, exts) \
277191672caSArnd Bergmann 	for (; 0; (void)(i), (void)(a), (void)(exts))
27822dc13c8SWANG Cong #endif
27922dc13c8SWANG Cong 
280d897a638SJakub Kicinski static inline void
281d897a638SJakub Kicinski tcf_exts_stats_update(const struct tcf_exts *exts,
282d897a638SJakub Kicinski 		      u64 bytes, u64 packets, u64 lastuse)
283d897a638SJakub Kicinski {
284d897a638SJakub Kicinski #ifdef CONFIG_NET_CLS_ACT
285d897a638SJakub Kicinski 	int i;
286d897a638SJakub Kicinski 
287d897a638SJakub Kicinski 	preempt_disable();
288d897a638SJakub Kicinski 
289d897a638SJakub Kicinski 	for (i = 0; i < exts->nr_actions; i++) {
290d897a638SJakub Kicinski 		struct tc_action *a = exts->actions[i];
291d897a638SJakub Kicinski 
29228169abaSEelco Chaudron 		tcf_action_stats_update(a, bytes, packets, lastuse, true);
293d897a638SJakub Kicinski 	}
294d897a638SJakub Kicinski 
295d897a638SJakub Kicinski 	preempt_enable();
296d897a638SJakub Kicinski #endif
297d897a638SJakub Kicinski }
298d897a638SJakub Kicinski 
2991da177e4SLinus Torvalds /**
3003bcc0cecSJiri Pirko  * tcf_exts_has_actions - check if at least one action is present
3013bcc0cecSJiri Pirko  * @exts: tc filter extensions handle
3023bcc0cecSJiri Pirko  *
3033bcc0cecSJiri Pirko  * Returns true if at least one action is present.
3043bcc0cecSJiri Pirko  */
3053bcc0cecSJiri Pirko static inline bool tcf_exts_has_actions(struct tcf_exts *exts)
3063bcc0cecSJiri Pirko {
3072734437eSWANG Cong #ifdef CONFIG_NET_CLS_ACT
3083bcc0cecSJiri Pirko 	return exts->nr_actions;
3093bcc0cecSJiri Pirko #else
3103bcc0cecSJiri Pirko 	return false;
3113bcc0cecSJiri Pirko #endif
3123bcc0cecSJiri Pirko }
3132734437eSWANG Cong 
3143bcc0cecSJiri Pirko /**
315af69afc5SJiri Pirko  * tcf_exts_exec - execute tc filter extensions
316af69afc5SJiri Pirko  * @skb: socket buffer
317af69afc5SJiri Pirko  * @exts: tc filter extensions handle
318af69afc5SJiri Pirko  * @res: desired result
319af69afc5SJiri Pirko  *
320af089e70SJiri Pirko  * Executes all configured extensions. Returns TC_ACT_OK on a normal execution,
321af69afc5SJiri Pirko  * a negative number if the filter must be considered unmatched or
322af69afc5SJiri Pirko  * a positive action code (TC_ACT_*) which must be returned to the
323af69afc5SJiri Pirko  * underlying layer.
324af69afc5SJiri Pirko  */
325af69afc5SJiri Pirko static inline int
326af69afc5SJiri Pirko tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
327af69afc5SJiri Pirko 	      struct tcf_result *res)
328af69afc5SJiri Pirko {
329af69afc5SJiri Pirko #ifdef CONFIG_NET_CLS_ACT
330ec1a9ccaSJiri Pirko 	return tcf_action_exec(skb, exts->actions, exts->nr_actions, res);
331af69afc5SJiri Pirko #endif
332af089e70SJiri Pirko 	return TC_ACT_OK;
333af69afc5SJiri Pirko }
334af69afc5SJiri Pirko 
3355c15257fSJoe Perches int tcf_exts_validate(struct net *net, struct tcf_proto *tp,
336c1b52739SBenjamin LaHaise 		      struct nlattr **tb, struct nlattr *rate_tlv,
337ec6743a1SVlad Buslov 		      struct tcf_exts *exts, bool ovr, bool rtnl_held,
33850a56190SAlexander Aring 		      struct netlink_ext_ack *extack);
33918d0264fSWANG Cong void tcf_exts_destroy(struct tcf_exts *exts);
3409b0d4446SJiri Pirko void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src);
3415da57f42SWANG Cong int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts);
3425da57f42SWANG Cong int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts);
3431da177e4SLinus Torvalds 
3441da177e4SLinus Torvalds /**
3451da177e4SLinus Torvalds  * struct tcf_pkt_info - packet information
3461da177e4SLinus Torvalds  */
347fd2c3ef7SEric Dumazet struct tcf_pkt_info {
3481da177e4SLinus Torvalds 	unsigned char *		ptr;
3491da177e4SLinus Torvalds 	int			nexthdr;
3501da177e4SLinus Torvalds };
3511da177e4SLinus Torvalds 
3521da177e4SLinus Torvalds #ifdef CONFIG_NET_EMATCH
3531da177e4SLinus Torvalds 
3541da177e4SLinus Torvalds struct tcf_ematch_ops;
3551da177e4SLinus Torvalds 
3561da177e4SLinus Torvalds /**
3571da177e4SLinus Torvalds  * struct tcf_ematch - extended match (ematch)
3581da177e4SLinus Torvalds  *
3591da177e4SLinus Torvalds  * @matchid: identifier to allow userspace to reidentify a match
3601da177e4SLinus Torvalds  * @flags: flags specifying attributes and the relation to other matches
3611da177e4SLinus Torvalds  * @ops: the operations lookup table of the corresponding ematch module
3621da177e4SLinus Torvalds  * @datalen: length of the ematch specific configuration data
3631da177e4SLinus Torvalds  * @data: ematch specific data
3641da177e4SLinus Torvalds  */
365fd2c3ef7SEric Dumazet struct tcf_ematch {
3661da177e4SLinus Torvalds 	struct tcf_ematch_ops * ops;
3671da177e4SLinus Torvalds 	unsigned long		data;
3681da177e4SLinus Torvalds 	unsigned int		datalen;
3691da177e4SLinus Torvalds 	u16			matchid;
3701da177e4SLinus Torvalds 	u16			flags;
37182a470f1SJohn Fastabend 	struct net		*net;
3721da177e4SLinus Torvalds };
3731da177e4SLinus Torvalds 
3741da177e4SLinus Torvalds static inline int tcf_em_is_container(struct tcf_ematch *em)
3751da177e4SLinus Torvalds {
3761da177e4SLinus Torvalds 	return !em->ops;
3771da177e4SLinus Torvalds }
3781da177e4SLinus Torvalds 
3791da177e4SLinus Torvalds static inline int tcf_em_is_simple(struct tcf_ematch *em)
3801da177e4SLinus Torvalds {
3811da177e4SLinus Torvalds 	return em->flags & TCF_EM_SIMPLE;
3821da177e4SLinus Torvalds }
3831da177e4SLinus Torvalds 
3841da177e4SLinus Torvalds static inline int tcf_em_is_inverted(struct tcf_ematch *em)
3851da177e4SLinus Torvalds {
3861da177e4SLinus Torvalds 	return em->flags & TCF_EM_INVERT;
3871da177e4SLinus Torvalds }
3881da177e4SLinus Torvalds 
3891da177e4SLinus Torvalds static inline int tcf_em_last_match(struct tcf_ematch *em)
3901da177e4SLinus Torvalds {
3911da177e4SLinus Torvalds 	return (em->flags & TCF_EM_REL_MASK) == TCF_EM_REL_END;
3921da177e4SLinus Torvalds }
3931da177e4SLinus Torvalds 
3941da177e4SLinus Torvalds static inline int tcf_em_early_end(struct tcf_ematch *em, int result)
3951da177e4SLinus Torvalds {
3961da177e4SLinus Torvalds 	if (tcf_em_last_match(em))
3971da177e4SLinus Torvalds 		return 1;
3981da177e4SLinus Torvalds 
3991da177e4SLinus Torvalds 	if (result == 0 && em->flags & TCF_EM_REL_AND)
4001da177e4SLinus Torvalds 		return 1;
4011da177e4SLinus Torvalds 
4021da177e4SLinus Torvalds 	if (result != 0 && em->flags & TCF_EM_REL_OR)
4031da177e4SLinus Torvalds 		return 1;
4041da177e4SLinus Torvalds 
4051da177e4SLinus Torvalds 	return 0;
4061da177e4SLinus Torvalds }
4071da177e4SLinus Torvalds 
4081da177e4SLinus Torvalds /**
4091da177e4SLinus Torvalds  * struct tcf_ematch_tree - ematch tree handle
4101da177e4SLinus Torvalds  *
4111da177e4SLinus Torvalds  * @hdr: ematch tree header supplied by userspace
4121da177e4SLinus Torvalds  * @matches: array of ematches
4131da177e4SLinus Torvalds  */
414fd2c3ef7SEric Dumazet struct tcf_ematch_tree {
4151da177e4SLinus Torvalds 	struct tcf_ematch_tree_hdr hdr;
4161da177e4SLinus Torvalds 	struct tcf_ematch *	matches;
4171da177e4SLinus Torvalds 
4181da177e4SLinus Torvalds };
4191da177e4SLinus Torvalds 
4201da177e4SLinus Torvalds /**
4211da177e4SLinus Torvalds  * struct tcf_ematch_ops - ematch module operations
4221da177e4SLinus Torvalds  *
4231da177e4SLinus Torvalds  * @kind: identifier (kind) of this ematch module
4241da177e4SLinus Torvalds  * @datalen: length of expected configuration data (optional)
4251da177e4SLinus Torvalds  * @change: called during validation (optional)
4261da177e4SLinus Torvalds  * @match: called during ematch tree evaluation, must return 1/0
4271da177e4SLinus Torvalds  * @destroy: called during destroyage (optional)
4281da177e4SLinus Torvalds  * @dump: called during dumping process (optional)
4291da177e4SLinus Torvalds  * @owner: owner, must be set to THIS_MODULE
4301da177e4SLinus Torvalds  * @link: link to previous/next ematch module (internal use)
4311da177e4SLinus Torvalds  */
432fd2c3ef7SEric Dumazet struct tcf_ematch_ops {
4331da177e4SLinus Torvalds 	int			kind;
4341da177e4SLinus Torvalds 	int			datalen;
43582a470f1SJohn Fastabend 	int			(*change)(struct net *net, void *,
4361da177e4SLinus Torvalds 					  int, struct tcf_ematch *);
4371da177e4SLinus Torvalds 	int			(*match)(struct sk_buff *, struct tcf_ematch *,
4381da177e4SLinus Torvalds 					 struct tcf_pkt_info *);
43982a470f1SJohn Fastabend 	void			(*destroy)(struct tcf_ematch *);
4401da177e4SLinus Torvalds 	int			(*dump)(struct sk_buff *, struct tcf_ematch *);
4411da177e4SLinus Torvalds 	struct module		*owner;
4421da177e4SLinus Torvalds 	struct list_head	link;
4431da177e4SLinus Torvalds };
4441da177e4SLinus Torvalds 
4455c15257fSJoe Perches int tcf_em_register(struct tcf_ematch_ops *);
4465c15257fSJoe Perches void tcf_em_unregister(struct tcf_ematch_ops *);
4475c15257fSJoe Perches int tcf_em_tree_validate(struct tcf_proto *, struct nlattr *,
4481da177e4SLinus Torvalds 			 struct tcf_ematch_tree *);
44982a470f1SJohn Fastabend void tcf_em_tree_destroy(struct tcf_ematch_tree *);
4505c15257fSJoe Perches int tcf_em_tree_dump(struct sk_buff *, struct tcf_ematch_tree *, int);
4515c15257fSJoe Perches int __tcf_em_tree_match(struct sk_buff *, struct tcf_ematch_tree *,
4521da177e4SLinus Torvalds 			struct tcf_pkt_info *);
4531da177e4SLinus Torvalds 
4541da177e4SLinus Torvalds /**
4551da177e4SLinus Torvalds  * tcf_em_tree_match - evaulate an ematch tree
4561da177e4SLinus Torvalds  *
4571da177e4SLinus Torvalds  * @skb: socket buffer of the packet in question
4581da177e4SLinus Torvalds  * @tree: ematch tree to be used for evaluation
4591da177e4SLinus Torvalds  * @info: packet information examined by classifier
4601da177e4SLinus Torvalds  *
4611da177e4SLinus Torvalds  * This function matches @skb against the ematch tree in @tree by going
4621da177e4SLinus Torvalds  * through all ematches respecting their logic relations returning
4631da177e4SLinus Torvalds  * as soon as the result is obvious.
4641da177e4SLinus Torvalds  *
4651da177e4SLinus Torvalds  * Returns 1 if the ematch tree as-one matches, no ematches are configured
4661da177e4SLinus Torvalds  * or ematch is not enabled in the kernel, otherwise 0 is returned.
4671da177e4SLinus Torvalds  */
4681da177e4SLinus Torvalds static inline int tcf_em_tree_match(struct sk_buff *skb,
4691da177e4SLinus Torvalds 				    struct tcf_ematch_tree *tree,
4701da177e4SLinus Torvalds 				    struct tcf_pkt_info *info)
4711da177e4SLinus Torvalds {
4721da177e4SLinus Torvalds 	if (tree->hdr.nmatches)
4731da177e4SLinus Torvalds 		return __tcf_em_tree_match(skb, tree, info);
4741da177e4SLinus Torvalds 	else
4751da177e4SLinus Torvalds 		return 1;
4761da177e4SLinus Torvalds }
4771da177e4SLinus Torvalds 
478db3d99c0SPatrick McHardy #define MODULE_ALIAS_TCF_EMATCH(kind)	MODULE_ALIAS("ematch-kind-" __stringify(kind))
479db3d99c0SPatrick McHardy 
4801da177e4SLinus Torvalds #else /* CONFIG_NET_EMATCH */
4811da177e4SLinus Torvalds 
482fd2c3ef7SEric Dumazet struct tcf_ematch_tree {
4831da177e4SLinus Torvalds };
4841da177e4SLinus Torvalds 
4851da177e4SLinus Torvalds #define tcf_em_tree_validate(tp, tb, t) ((void)(t), 0)
48682a470f1SJohn Fastabend #define tcf_em_tree_destroy(t) do { (void)(t); } while(0)
4871da177e4SLinus Torvalds #define tcf_em_tree_dump(skb, t, tlv) (0)
4881da177e4SLinus Torvalds #define tcf_em_tree_match(skb, t, info) ((void)(info), 1)
4891da177e4SLinus Torvalds 
4901da177e4SLinus Torvalds #endif /* CONFIG_NET_EMATCH */
4911da177e4SLinus Torvalds 
4921da177e4SLinus Torvalds static inline unsigned char * tcf_get_base_ptr(struct sk_buff *skb, int layer)
4931da177e4SLinus Torvalds {
4941da177e4SLinus Torvalds 	switch (layer) {
4951da177e4SLinus Torvalds 		case TCF_LAYER_LINK:
496d3303a65SWolfgang Bumiller 			return skb_mac_header(skb);
4971da177e4SLinus Torvalds 		case TCF_LAYER_NETWORK:
498d56f90a7SArnaldo Carvalho de Melo 			return skb_network_header(skb);
4991da177e4SLinus Torvalds 		case TCF_LAYER_TRANSPORT:
5009c70220bSArnaldo Carvalho de Melo 			return skb_transport_header(skb);
5011da177e4SLinus Torvalds 	}
5021da177e4SLinus Torvalds 
5031da177e4SLinus Torvalds 	return NULL;
5041da177e4SLinus Torvalds }
5051da177e4SLinus Torvalds 
506eddc9ec5SArnaldo Carvalho de Melo static inline int tcf_valid_offset(const struct sk_buff *skb,
507eddc9ec5SArnaldo Carvalho de Melo 				   const unsigned char *ptr, const int len)
5081da177e4SLinus Torvalds {
509da521b2cSDavid S. Miller 	return likely((ptr + len) <= skb_tail_pointer(skb) &&
510da521b2cSDavid S. Miller 		      ptr >= skb->head &&
511da521b2cSDavid S. Miller 		      (ptr <= (ptr + len)));
5121da177e4SLinus Torvalds }
5131da177e4SLinus Torvalds 
5141da177e4SLinus Torvalds static inline int
5151057c55fSAlexander Aring tcf_change_indev(struct net *net, struct nlattr *indev_tlv,
5161057c55fSAlexander Aring 		 struct netlink_ext_ack *extack)
5171da177e4SLinus Torvalds {
5182519a602SWANG Cong 	char indev[IFNAMSIZ];
519c01003c2SPatrick McHardy 	struct net_device *dev;
520c01003c2SPatrick McHardy 
5211057c55fSAlexander Aring 	if (nla_strlcpy(indev, indev_tlv, IFNAMSIZ) >= IFNAMSIZ) {
5221057c55fSAlexander Aring 		NL_SET_ERR_MSG(extack, "Interface name too long");
5232519a602SWANG Cong 		return -EINVAL;
5241057c55fSAlexander Aring 	}
5252519a602SWANG Cong 	dev = __dev_get_by_name(net, indev);
5262519a602SWANG Cong 	if (!dev)
5272519a602SWANG Cong 		return -ENODEV;
5282519a602SWANG Cong 	return dev->ifindex;
5291da177e4SLinus Torvalds }
5301da177e4SLinus Torvalds 
5312519a602SWANG Cong static inline bool
5322519a602SWANG Cong tcf_match_indev(struct sk_buff *skb, int ifindex)
5332519a602SWANG Cong {
5342519a602SWANG Cong 	if (!ifindex)
5352519a602SWANG Cong 		return true;
5362519a602SWANG Cong 	if  (!skb->skb_iif)
5372519a602SWANG Cong 		return false;
5382519a602SWANG Cong 	return ifindex == skb->skb_iif;
5391da177e4SLinus Torvalds }
5401da177e4SLinus Torvalds 
5413a7b6861SPablo Neira Ayuso int tc_setup_flow_action(struct flow_action *flow_action,
5423a7b6861SPablo Neira Ayuso 			 const struct tcf_exts *exts);
543aeb3fecdSCong Wang int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
544aeb3fecdSCong Wang 		     void *type_data, bool err_stop);
545e3ab786bSPablo Neira Ayuso unsigned int tcf_exts_num_actions(struct tcf_exts *exts);
546717503b9SJiri Pirko 
547a1b7c5fdSJohn Fastabend struct tc_cls_u32_knode {
548a1b7c5fdSJohn Fastabend 	struct tcf_exts *exts;
549068ceb35SJakub Kicinski 	struct tcf_result *res;
550e014860eSJohn Fastabend 	struct tc_u32_sel *sel;
551a1b7c5fdSJohn Fastabend 	u32 handle;
552a1b7c5fdSJohn Fastabend 	u32 val;
553a1b7c5fdSJohn Fastabend 	u32 mask;
554a1b7c5fdSJohn Fastabend 	u32 link_handle;
555e014860eSJohn Fastabend 	u8 fshift;
556a1b7c5fdSJohn Fastabend };
557a1b7c5fdSJohn Fastabend 
558a1b7c5fdSJohn Fastabend struct tc_cls_u32_hnode {
559a1b7c5fdSJohn Fastabend 	u32 handle;
560a1b7c5fdSJohn Fastabend 	u32 prio;
561a1b7c5fdSJohn Fastabend 	unsigned int divisor;
562a1b7c5fdSJohn Fastabend };
563a1b7c5fdSJohn Fastabend 
564a1b7c5fdSJohn Fastabend enum tc_clsu32_command {
565a1b7c5fdSJohn Fastabend 	TC_CLSU32_NEW_KNODE,
566a1b7c5fdSJohn Fastabend 	TC_CLSU32_REPLACE_KNODE,
567a1b7c5fdSJohn Fastabend 	TC_CLSU32_DELETE_KNODE,
568a1b7c5fdSJohn Fastabend 	TC_CLSU32_NEW_HNODE,
569a1b7c5fdSJohn Fastabend 	TC_CLSU32_REPLACE_HNODE,
570a1b7c5fdSJohn Fastabend 	TC_CLSU32_DELETE_HNODE,
571a1b7c5fdSJohn Fastabend };
572a1b7c5fdSJohn Fastabend 
573a1b7c5fdSJohn Fastabend struct tc_cls_u32_offload {
574f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
575a1b7c5fdSJohn Fastabend 	/* knode values */
576a1b7c5fdSJohn Fastabend 	enum tc_clsu32_command command;
577a1b7c5fdSJohn Fastabend 	union {
578a1b7c5fdSJohn Fastabend 		struct tc_cls_u32_knode knode;
579a1b7c5fdSJohn Fastabend 		struct tc_cls_u32_hnode hnode;
580a1b7c5fdSJohn Fastabend 	};
581a1b7c5fdSJohn Fastabend };
582a1b7c5fdSJohn Fastabend 
5837b06e8aeSJiri Pirko static inline bool tc_can_offload(const struct net_device *dev)
5846843e7a2SJohn Fastabend {
58570b5aee4SJiri Pirko 	return dev->features & NETIF_F_HW_TC;
5866843e7a2SJohn Fastabend }
5876843e7a2SJohn Fastabend 
588f9eda14fSQuentin Monnet static inline bool tc_can_offload_extack(const struct net_device *dev,
589f9eda14fSQuentin Monnet 					 struct netlink_ext_ack *extack)
590f9eda14fSQuentin Monnet {
591f9eda14fSQuentin Monnet 	bool can = tc_can_offload(dev);
592f9eda14fSQuentin Monnet 
593f9eda14fSQuentin Monnet 	if (!can)
594f9eda14fSQuentin Monnet 		NL_SET_ERR_MSG(extack, "TC offload is disabled on net device");
595f9eda14fSQuentin Monnet 
596f9eda14fSQuentin Monnet 	return can;
597f9eda14fSQuentin Monnet }
598f9eda14fSQuentin Monnet 
599878db9f0SJakub Kicinski static inline bool
600878db9f0SJakub Kicinski tc_cls_can_offload_and_chain0(const struct net_device *dev,
601f9e30088SPablo Neira Ayuso 			      struct flow_cls_common_offload *common)
602878db9f0SJakub Kicinski {
603878db9f0SJakub Kicinski 	if (!tc_can_offload_extack(dev, common->extack))
604878db9f0SJakub Kicinski 		return false;
605878db9f0SJakub Kicinski 	if (common->chain_index) {
606878db9f0SJakub Kicinski 		NL_SET_ERR_MSG(common->extack,
607878db9f0SJakub Kicinski 			       "Driver supports only offload of chain 0");
608878db9f0SJakub Kicinski 		return false;
609878db9f0SJakub Kicinski 	}
610878db9f0SJakub Kicinski 	return true;
611878db9f0SJakub Kicinski }
612878db9f0SJakub Kicinski 
61355330f05SHadar Hen Zion static inline bool tc_skip_hw(u32 flags)
61455330f05SHadar Hen Zion {
61555330f05SHadar Hen Zion 	return (flags & TCA_CLS_FLAGS_SKIP_HW) ? true : false;
61655330f05SHadar Hen Zion }
61755330f05SHadar Hen Zion 
618d34e3e18SSamudrala, Sridhar static inline bool tc_skip_sw(u32 flags)
619d34e3e18SSamudrala, Sridhar {
620d34e3e18SSamudrala, Sridhar 	return (flags & TCA_CLS_FLAGS_SKIP_SW) ? true : false;
621d34e3e18SSamudrala, Sridhar }
622d34e3e18SSamudrala, Sridhar 
623d34e3e18SSamudrala, Sridhar /* SKIP_HW and SKIP_SW are mutually exclusive flags. */
624d34e3e18SSamudrala, Sridhar static inline bool tc_flags_valid(u32 flags)
625d34e3e18SSamudrala, Sridhar {
62681c7288bSMarcelo Ricardo Leitner 	if (flags & ~(TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW |
62781c7288bSMarcelo Ricardo Leitner 		      TCA_CLS_FLAGS_VERBOSE))
628d34e3e18SSamudrala, Sridhar 		return false;
629d34e3e18SSamudrala, Sridhar 
63081c7288bSMarcelo Ricardo Leitner 	flags &= TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW;
631d34e3e18SSamudrala, Sridhar 	if (!(flags ^ (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)))
632d34e3e18SSamudrala, Sridhar 		return false;
633d34e3e18SSamudrala, Sridhar 
634d34e3e18SSamudrala, Sridhar 	return true;
635d34e3e18SSamudrala, Sridhar }
636d34e3e18SSamudrala, Sridhar 
637e696028aSOr Gerlitz static inline bool tc_in_hw(u32 flags)
638e696028aSOr Gerlitz {
639e696028aSOr Gerlitz 	return (flags & TCA_CLS_FLAGS_IN_HW) ? true : false;
640e696028aSOr Gerlitz }
641e696028aSOr Gerlitz 
64234832e1cSJakub Kicinski static inline void
643f9e30088SPablo Neira Ayuso tc_cls_common_offload_init(struct flow_cls_common_offload *cls_common,
64434832e1cSJakub Kicinski 			   const struct tcf_proto *tp, u32 flags,
64534832e1cSJakub Kicinski 			   struct netlink_ext_ack *extack)
64634832e1cSJakub Kicinski {
64734832e1cSJakub Kicinski 	cls_common->chain_index = tp->chain->index;
64834832e1cSJakub Kicinski 	cls_common->protocol = tp->protocol;
649ef01adaeSPablo Neira Ayuso 	cls_common->prio = tp->prio >> 16;
65081c7288bSMarcelo Ricardo Leitner 	if (tc_skip_sw(flags) || flags & TCA_CLS_FLAGS_VERBOSE)
65134832e1cSJakub Kicinski 		cls_common->extack = extack;
65234832e1cSJakub Kicinski }
65334832e1cSJakub Kicinski 
654b87f7936SYotam Gigi enum tc_matchall_command {
655b87f7936SYotam Gigi 	TC_CLSMATCHALL_REPLACE,
656b87f7936SYotam Gigi 	TC_CLSMATCHALL_DESTROY,
657b7fe4ab8SPieter Jansen van Vuuren 	TC_CLSMATCHALL_STATS,
658b87f7936SYotam Gigi };
659b87f7936SYotam Gigi 
660b87f7936SYotam Gigi struct tc_cls_matchall_offload {
661f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
662b87f7936SYotam Gigi 	enum tc_matchall_command command;
663f00cbf19SPieter Jansen van Vuuren 	struct flow_rule *rule;
664b7fe4ab8SPieter Jansen van Vuuren 	struct flow_stats stats;
665b87f7936SYotam Gigi 	unsigned long cookie;
666b87f7936SYotam Gigi };
667b87f7936SYotam Gigi 
668332ae8e2SJakub Kicinski enum tc_clsbpf_command {
669102740bdSJakub Kicinski 	TC_CLSBPF_OFFLOAD,
67068d64063SJakub Kicinski 	TC_CLSBPF_STATS,
671332ae8e2SJakub Kicinski };
672332ae8e2SJakub Kicinski 
673332ae8e2SJakub Kicinski struct tc_cls_bpf_offload {
674f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
675332ae8e2SJakub Kicinski 	enum tc_clsbpf_command command;
676332ae8e2SJakub Kicinski 	struct tcf_exts *exts;
677332ae8e2SJakub Kicinski 	struct bpf_prog *prog;
678102740bdSJakub Kicinski 	struct bpf_prog *oldprog;
679332ae8e2SJakub Kicinski 	const char *name;
680332ae8e2SJakub Kicinski 	bool exts_integrated;
681332ae8e2SJakub Kicinski };
682332ae8e2SJakub Kicinski 
6834e8b86c0SAmritha Nambiar struct tc_mqprio_qopt_offload {
6844e8b86c0SAmritha Nambiar 	/* struct tc_mqprio_qopt must always be the first element */
6854e8b86c0SAmritha Nambiar 	struct tc_mqprio_qopt qopt;
6864e8b86c0SAmritha Nambiar 	u16 mode;
6874e8b86c0SAmritha Nambiar 	u16 shaper;
6884e8b86c0SAmritha Nambiar 	u32 flags;
6894e8b86c0SAmritha Nambiar 	u64 min_rate[TC_QOPT_MAX_QUEUE];
6904e8b86c0SAmritha Nambiar 	u64 max_rate[TC_QOPT_MAX_QUEUE];
6914e8b86c0SAmritha Nambiar };
6921045ba77SJamal Hadi Salim 
6931045ba77SJamal Hadi Salim /* This structure holds cookie structure that is passed from user
6941045ba77SJamal Hadi Salim  * to the kernel for actions and classifiers
6951045ba77SJamal Hadi Salim  */
6961045ba77SJamal Hadi Salim struct tc_cookie {
6971045ba77SJamal Hadi Salim 	u8  *data;
6981045ba77SJamal Hadi Salim 	u32 len;
699eec94fdbSVlad Buslov 	struct rcu_head rcu;
7001045ba77SJamal Hadi Salim };
701602f3bafSNogah Frankel 
702f34b4aacSNogah Frankel struct tc_qopt_offload_stats {
703f34b4aacSNogah Frankel 	struct gnet_stats_basic_packed *bstats;
704f34b4aacSNogah Frankel 	struct gnet_stats_queue *qstats;
705f34b4aacSNogah Frankel };
706f34b4aacSNogah Frankel 
707f971b132SJakub Kicinski enum tc_mq_command {
708f971b132SJakub Kicinski 	TC_MQ_CREATE,
709f971b132SJakub Kicinski 	TC_MQ_DESTROY,
71047c669a4SJakub Kicinski 	TC_MQ_STATS,
711d577a3d2SJakub Kicinski 	TC_MQ_GRAFT,
712d577a3d2SJakub Kicinski };
713d577a3d2SJakub Kicinski 
714d577a3d2SJakub Kicinski struct tc_mq_opt_offload_graft_params {
715d577a3d2SJakub Kicinski 	unsigned long queue;
716d577a3d2SJakub Kicinski 	u32 child_handle;
717f971b132SJakub Kicinski };
718f971b132SJakub Kicinski 
719f971b132SJakub Kicinski struct tc_mq_qopt_offload {
720f971b132SJakub Kicinski 	enum tc_mq_command command;
721f971b132SJakub Kicinski 	u32 handle;
722d577a3d2SJakub Kicinski 	union {
72347c669a4SJakub Kicinski 		struct tc_qopt_offload_stats stats;
724d577a3d2SJakub Kicinski 		struct tc_mq_opt_offload_graft_params graft_params;
725d577a3d2SJakub Kicinski 	};
726f971b132SJakub Kicinski };
727f971b132SJakub Kicinski 
728602f3bafSNogah Frankel enum tc_red_command {
729602f3bafSNogah Frankel 	TC_RED_REPLACE,
730602f3bafSNogah Frankel 	TC_RED_DESTROY,
731602f3bafSNogah Frankel 	TC_RED_STATS,
732602f3bafSNogah Frankel 	TC_RED_XSTATS,
733bf2a752bSJakub Kicinski 	TC_RED_GRAFT,
734602f3bafSNogah Frankel };
735602f3bafSNogah Frankel 
736602f3bafSNogah Frankel struct tc_red_qopt_offload_params {
737602f3bafSNogah Frankel 	u32 min;
738602f3bafSNogah Frankel 	u32 max;
739602f3bafSNogah Frankel 	u32 probability;
740c0b7490bSJakub Kicinski 	u32 limit;
741602f3bafSNogah Frankel 	bool is_ecn;
742190852a5SJakub Kicinski 	bool is_harddrop;
743416ef9b1SJakub Kicinski 	struct gnet_stats_queue *qstats;
744602f3bafSNogah Frankel };
745602f3bafSNogah Frankel 
746602f3bafSNogah Frankel struct tc_red_qopt_offload {
747602f3bafSNogah Frankel 	enum tc_red_command command;
748602f3bafSNogah Frankel 	u32 handle;
749602f3bafSNogah Frankel 	u32 parent;
750602f3bafSNogah Frankel 	union {
751602f3bafSNogah Frankel 		struct tc_red_qopt_offload_params set;
752f34b4aacSNogah Frankel 		struct tc_qopt_offload_stats stats;
753602f3bafSNogah Frankel 		struct red_stats *xstats;
754bf2a752bSJakub Kicinski 		u32 child_handle;
755602f3bafSNogah Frankel 	};
756602f3bafSNogah Frankel };
757602f3bafSNogah Frankel 
758890d8d23SJakub Kicinski enum tc_gred_command {
759890d8d23SJakub Kicinski 	TC_GRED_REPLACE,
760890d8d23SJakub Kicinski 	TC_GRED_DESTROY,
761e49efd52SJakub Kicinski 	TC_GRED_STATS,
762890d8d23SJakub Kicinski };
763890d8d23SJakub Kicinski 
764890d8d23SJakub Kicinski struct tc_gred_vq_qopt_offload_params {
765890d8d23SJakub Kicinski 	bool present;
766890d8d23SJakub Kicinski 	u32 limit;
767890d8d23SJakub Kicinski 	u32 prio;
768890d8d23SJakub Kicinski 	u32 min;
769890d8d23SJakub Kicinski 	u32 max;
770890d8d23SJakub Kicinski 	bool is_ecn;
771890d8d23SJakub Kicinski 	bool is_harddrop;
772890d8d23SJakub Kicinski 	u32 probability;
773890d8d23SJakub Kicinski 	/* Only need backlog, see struct tc_prio_qopt_offload_params */
774890d8d23SJakub Kicinski 	u32 *backlog;
775890d8d23SJakub Kicinski };
776890d8d23SJakub Kicinski 
777890d8d23SJakub Kicinski struct tc_gred_qopt_offload_params {
778890d8d23SJakub Kicinski 	bool grio_on;
779890d8d23SJakub Kicinski 	bool wred_on;
780890d8d23SJakub Kicinski 	unsigned int dp_cnt;
781890d8d23SJakub Kicinski 	unsigned int dp_def;
782890d8d23SJakub Kicinski 	struct gnet_stats_queue *qstats;
783890d8d23SJakub Kicinski 	struct tc_gred_vq_qopt_offload_params tab[MAX_DPs];
784890d8d23SJakub Kicinski };
785890d8d23SJakub Kicinski 
786e49efd52SJakub Kicinski struct tc_gred_qopt_offload_stats {
787e49efd52SJakub Kicinski 	struct gnet_stats_basic_packed bstats[MAX_DPs];
788e49efd52SJakub Kicinski 	struct gnet_stats_queue qstats[MAX_DPs];
789e49efd52SJakub Kicinski 	struct red_stats *xstats[MAX_DPs];
790e49efd52SJakub Kicinski };
791e49efd52SJakub Kicinski 
792890d8d23SJakub Kicinski struct tc_gred_qopt_offload {
793890d8d23SJakub Kicinski 	enum tc_gred_command command;
794890d8d23SJakub Kicinski 	u32 handle;
795890d8d23SJakub Kicinski 	u32 parent;
796890d8d23SJakub Kicinski 	union {
797890d8d23SJakub Kicinski 		struct tc_gred_qopt_offload_params set;
798e49efd52SJakub Kicinski 		struct tc_gred_qopt_offload_stats stats;
799890d8d23SJakub Kicinski 	};
800890d8d23SJakub Kicinski };
801890d8d23SJakub Kicinski 
8027fdb61b4SNogah Frankel enum tc_prio_command {
8037fdb61b4SNogah Frankel 	TC_PRIO_REPLACE,
8047fdb61b4SNogah Frankel 	TC_PRIO_DESTROY,
8057fdb61b4SNogah Frankel 	TC_PRIO_STATS,
806b9c7a7acSNogah Frankel 	TC_PRIO_GRAFT,
8077fdb61b4SNogah Frankel };
8087fdb61b4SNogah Frankel 
8097fdb61b4SNogah Frankel struct tc_prio_qopt_offload_params {
8107fdb61b4SNogah Frankel 	int bands;
8117fdb61b4SNogah Frankel 	u8 priomap[TC_PRIO_MAX + 1];
8127fdb61b4SNogah Frankel 	/* In case that a prio qdisc is offloaded and now is changed to a
8137fdb61b4SNogah Frankel 	 * non-offloadedable config, it needs to update the backlog & qlen
8147fdb61b4SNogah Frankel 	 * values to negate the HW backlog & qlen values (and only them).
8157fdb61b4SNogah Frankel 	 */
8167fdb61b4SNogah Frankel 	struct gnet_stats_queue *qstats;
8177fdb61b4SNogah Frankel };
8187fdb61b4SNogah Frankel 
819b9c7a7acSNogah Frankel struct tc_prio_qopt_offload_graft_params {
820b9c7a7acSNogah Frankel 	u8 band;
821b9c7a7acSNogah Frankel 	u32 child_handle;
822b9c7a7acSNogah Frankel };
823b9c7a7acSNogah Frankel 
8247fdb61b4SNogah Frankel struct tc_prio_qopt_offload {
8257fdb61b4SNogah Frankel 	enum tc_prio_command command;
8267fdb61b4SNogah Frankel 	u32 handle;
8277fdb61b4SNogah Frankel 	u32 parent;
8287fdb61b4SNogah Frankel 	union {
8297fdb61b4SNogah Frankel 		struct tc_prio_qopt_offload_params replace_params;
8307fdb61b4SNogah Frankel 		struct tc_qopt_offload_stats stats;
831b9c7a7acSNogah Frankel 		struct tc_prio_qopt_offload_graft_params graft_params;
8327fdb61b4SNogah Frankel 	};
8337fdb61b4SNogah Frankel };
834b9c7a7acSNogah Frankel 
83598b0e5f6SJakub Kicinski enum tc_root_command {
83698b0e5f6SJakub Kicinski 	TC_ROOT_GRAFT,
83798b0e5f6SJakub Kicinski };
83898b0e5f6SJakub Kicinski 
83998b0e5f6SJakub Kicinski struct tc_root_qopt_offload {
84098b0e5f6SJakub Kicinski 	enum tc_root_command command;
84198b0e5f6SJakub Kicinski 	u32 handle;
84298b0e5f6SJakub Kicinski 	bool ingress;
84398b0e5f6SJakub Kicinski };
84498b0e5f6SJakub Kicinski 
8451da177e4SLinus Torvalds #endif
846