xref: /openbmc/linux/include/net/pkt_cls.h (revision 695176bf)
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;
2061da177e4SLinus Torvalds #endif
2071da177e4SLinus Torvalds 	/* Map to export classifier specific extension TLV types to the
2081da177e4SLinus Torvalds 	 * generic extensions API. Unsupported extensions must be set to 0.
2091da177e4SLinus Torvalds 	 */
2101da177e4SLinus Torvalds 	int action;
2111da177e4SLinus Torvalds 	int police;
2121da177e4SLinus Torvalds };
2131da177e4SLinus Torvalds 
21414215108SCong Wang static inline int tcf_exts_init(struct tcf_exts *exts, struct net *net,
21514215108SCong Wang 				int action, int police)
21633be6271SWANG Cong {
21733be6271SWANG Cong #ifdef CONFIG_NET_CLS_ACT
2185da57f42SWANG Cong 	exts->type = 0;
21922dc13c8SWANG Cong 	exts->nr_actions = 0;
22014215108SCong Wang 	exts->net = net;
22122dc13c8SWANG Cong 	exts->actions = kcalloc(TCA_ACT_MAX_PRIO, sizeof(struct tc_action *),
22222dc13c8SWANG Cong 				GFP_KERNEL);
223b9a24bb7SWANG Cong 	if (!exts->actions)
224b9a24bb7SWANG Cong 		return -ENOMEM;
22533be6271SWANG Cong #endif
2265da57f42SWANG Cong 	exts->action = action;
2275da57f42SWANG Cong 	exts->police = police;
228b9a24bb7SWANG Cong 	return 0;
22933be6271SWANG Cong }
23033be6271SWANG Cong 
231e4b95c41SCong Wang /* Return false if the netns is being destroyed in cleanup_net(). Callers
232e4b95c41SCong Wang  * need to do cleanup synchronously in this case, otherwise may race with
233e4b95c41SCong Wang  * tc_action_net_exit(). Return true for other cases.
234e4b95c41SCong Wang  */
235e4b95c41SCong Wang static inline bool tcf_exts_get_net(struct tcf_exts *exts)
236e4b95c41SCong Wang {
237e4b95c41SCong Wang #ifdef CONFIG_NET_CLS_ACT
238e4b95c41SCong Wang 	exts->net = maybe_get_net(exts->net);
239e4b95c41SCong Wang 	return exts->net != NULL;
240e4b95c41SCong Wang #else
241e4b95c41SCong Wang 	return true;
242e4b95c41SCong Wang #endif
243e4b95c41SCong Wang }
244e4b95c41SCong Wang 
245e4b95c41SCong Wang static inline void tcf_exts_put_net(struct tcf_exts *exts)
246e4b95c41SCong Wang {
247e4b95c41SCong Wang #ifdef CONFIG_NET_CLS_ACT
248e4b95c41SCong Wang 	if (exts->net)
249e4b95c41SCong Wang 		put_net(exts->net);
250e4b95c41SCong Wang #endif
251e4b95c41SCong Wang }
252e4b95c41SCong Wang 
25322dc13c8SWANG Cong #ifdef CONFIG_NET_CLS_ACT
254244cd96aSCong Wang #define tcf_exts_for_each_action(i, a, exts) \
255244cd96aSCong Wang 	for (i = 0; i < TCA_ACT_MAX_PRIO && ((a) = (exts)->actions[i]); i++)
256244cd96aSCong Wang #else
257244cd96aSCong Wang #define tcf_exts_for_each_action(i, a, exts) \
258191672caSArnd Bergmann 	for (; 0; (void)(i), (void)(a), (void)(exts))
25922dc13c8SWANG Cong #endif
26022dc13c8SWANG Cong 
261d897a638SJakub Kicinski static inline void
262d897a638SJakub Kicinski tcf_exts_stats_update(const struct tcf_exts *exts,
2634b61d3e8SPo Liu 		      u64 bytes, u64 packets, u64 drops, u64 lastuse,
26493a129ebSJiri Pirko 		      u8 used_hw_stats, bool used_hw_stats_valid)
265d897a638SJakub Kicinski {
266d897a638SJakub Kicinski #ifdef CONFIG_NET_CLS_ACT
267d897a638SJakub Kicinski 	int i;
268d897a638SJakub Kicinski 
269d897a638SJakub Kicinski 	preempt_disable();
270d897a638SJakub Kicinski 
271d897a638SJakub Kicinski 	for (i = 0; i < exts->nr_actions; i++) {
272d897a638SJakub Kicinski 		struct tc_action *a = exts->actions[i];
273d897a638SJakub Kicinski 
2744b61d3e8SPo Liu 		tcf_action_stats_update(a, bytes, packets, drops,
2754b61d3e8SPo Liu 					lastuse, true);
27693a129ebSJiri Pirko 		a->used_hw_stats = used_hw_stats;
27793a129ebSJiri Pirko 		a->used_hw_stats_valid = used_hw_stats_valid;
278d897a638SJakub Kicinski 	}
279d897a638SJakub Kicinski 
280d897a638SJakub Kicinski 	preempt_enable();
281d897a638SJakub Kicinski #endif
282d897a638SJakub Kicinski }
283d897a638SJakub Kicinski 
2841da177e4SLinus Torvalds /**
2853bcc0cecSJiri Pirko  * tcf_exts_has_actions - check if at least one action is present
2863bcc0cecSJiri Pirko  * @exts: tc filter extensions handle
2873bcc0cecSJiri Pirko  *
2883bcc0cecSJiri Pirko  * Returns true if at least one action is present.
2893bcc0cecSJiri Pirko  */
2903bcc0cecSJiri Pirko static inline bool tcf_exts_has_actions(struct tcf_exts *exts)
2913bcc0cecSJiri Pirko {
2922734437eSWANG Cong #ifdef CONFIG_NET_CLS_ACT
2933bcc0cecSJiri Pirko 	return exts->nr_actions;
2943bcc0cecSJiri Pirko #else
2953bcc0cecSJiri Pirko 	return false;
2963bcc0cecSJiri Pirko #endif
2973bcc0cecSJiri Pirko }
2982734437eSWANG Cong 
2993bcc0cecSJiri Pirko /**
300af69afc5SJiri Pirko  * tcf_exts_exec - execute tc filter extensions
301af69afc5SJiri Pirko  * @skb: socket buffer
302af69afc5SJiri Pirko  * @exts: tc filter extensions handle
303af69afc5SJiri Pirko  * @res: desired result
304af69afc5SJiri Pirko  *
305af089e70SJiri Pirko  * Executes all configured extensions. Returns TC_ACT_OK on a normal execution,
306af69afc5SJiri Pirko  * a negative number if the filter must be considered unmatched or
307af69afc5SJiri Pirko  * a positive action code (TC_ACT_*) which must be returned to the
308af69afc5SJiri Pirko  * underlying layer.
309af69afc5SJiri Pirko  */
310af69afc5SJiri Pirko static inline int
311af69afc5SJiri Pirko tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
312af69afc5SJiri Pirko 	      struct tcf_result *res)
313af69afc5SJiri Pirko {
314af69afc5SJiri Pirko #ifdef CONFIG_NET_CLS_ACT
315ec1a9ccaSJiri Pirko 	return tcf_action_exec(skb, exts->actions, exts->nr_actions, res);
316af69afc5SJiri Pirko #endif
317af089e70SJiri Pirko 	return TC_ACT_OK;
318af69afc5SJiri Pirko }
319af69afc5SJiri Pirko 
3205c15257fSJoe Perches int tcf_exts_validate(struct net *net, struct tcf_proto *tp,
321c1b52739SBenjamin LaHaise 		      struct nlattr **tb, struct nlattr *rate_tlv,
322*695176bfSCong Wang 		      struct tcf_exts *exts, u32 flags,
32350a56190SAlexander Aring 		      struct netlink_ext_ack *extack);
32418d0264fSWANG Cong void tcf_exts_destroy(struct tcf_exts *exts);
3259b0d4446SJiri Pirko void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src);
3265da57f42SWANG Cong int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts);
327ca44b738SVlad Buslov int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts);
3285da57f42SWANG Cong int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts);
3291da177e4SLinus Torvalds 
3301da177e4SLinus Torvalds /**
3311da177e4SLinus Torvalds  * struct tcf_pkt_info - packet information
3321da177e4SLinus Torvalds  */
333fd2c3ef7SEric Dumazet struct tcf_pkt_info {
3341da177e4SLinus Torvalds 	unsigned char *		ptr;
3351da177e4SLinus Torvalds 	int			nexthdr;
3361da177e4SLinus Torvalds };
3371da177e4SLinus Torvalds 
3381da177e4SLinus Torvalds #ifdef CONFIG_NET_EMATCH
3391da177e4SLinus Torvalds 
3401da177e4SLinus Torvalds struct tcf_ematch_ops;
3411da177e4SLinus Torvalds 
3421da177e4SLinus Torvalds /**
3431da177e4SLinus Torvalds  * struct tcf_ematch - extended match (ematch)
3441da177e4SLinus Torvalds  *
3451da177e4SLinus Torvalds  * @matchid: identifier to allow userspace to reidentify a match
3461da177e4SLinus Torvalds  * @flags: flags specifying attributes and the relation to other matches
3471da177e4SLinus Torvalds  * @ops: the operations lookup table of the corresponding ematch module
3481da177e4SLinus Torvalds  * @datalen: length of the ematch specific configuration data
3491da177e4SLinus Torvalds  * @data: ematch specific data
3501da177e4SLinus Torvalds  */
351fd2c3ef7SEric Dumazet struct tcf_ematch {
3521da177e4SLinus Torvalds 	struct tcf_ematch_ops * ops;
3531da177e4SLinus Torvalds 	unsigned long		data;
3541da177e4SLinus Torvalds 	unsigned int		datalen;
3551da177e4SLinus Torvalds 	u16			matchid;
3561da177e4SLinus Torvalds 	u16			flags;
35782a470f1SJohn Fastabend 	struct net		*net;
3581da177e4SLinus Torvalds };
3591da177e4SLinus Torvalds 
3601da177e4SLinus Torvalds static inline int tcf_em_is_container(struct tcf_ematch *em)
3611da177e4SLinus Torvalds {
3621da177e4SLinus Torvalds 	return !em->ops;
3631da177e4SLinus Torvalds }
3641da177e4SLinus Torvalds 
3651da177e4SLinus Torvalds static inline int tcf_em_is_simple(struct tcf_ematch *em)
3661da177e4SLinus Torvalds {
3671da177e4SLinus Torvalds 	return em->flags & TCF_EM_SIMPLE;
3681da177e4SLinus Torvalds }
3691da177e4SLinus Torvalds 
3701da177e4SLinus Torvalds static inline int tcf_em_is_inverted(struct tcf_ematch *em)
3711da177e4SLinus Torvalds {
3721da177e4SLinus Torvalds 	return em->flags & TCF_EM_INVERT;
3731da177e4SLinus Torvalds }
3741da177e4SLinus Torvalds 
3751da177e4SLinus Torvalds static inline int tcf_em_last_match(struct tcf_ematch *em)
3761da177e4SLinus Torvalds {
3771da177e4SLinus Torvalds 	return (em->flags & TCF_EM_REL_MASK) == TCF_EM_REL_END;
3781da177e4SLinus Torvalds }
3791da177e4SLinus Torvalds 
3801da177e4SLinus Torvalds static inline int tcf_em_early_end(struct tcf_ematch *em, int result)
3811da177e4SLinus Torvalds {
3821da177e4SLinus Torvalds 	if (tcf_em_last_match(em))
3831da177e4SLinus Torvalds 		return 1;
3841da177e4SLinus Torvalds 
3851da177e4SLinus Torvalds 	if (result == 0 && em->flags & TCF_EM_REL_AND)
3861da177e4SLinus Torvalds 		return 1;
3871da177e4SLinus Torvalds 
3881da177e4SLinus Torvalds 	if (result != 0 && em->flags & TCF_EM_REL_OR)
3891da177e4SLinus Torvalds 		return 1;
3901da177e4SLinus Torvalds 
3911da177e4SLinus Torvalds 	return 0;
3921da177e4SLinus Torvalds }
3931da177e4SLinus Torvalds 
3941da177e4SLinus Torvalds /**
3951da177e4SLinus Torvalds  * struct tcf_ematch_tree - ematch tree handle
3961da177e4SLinus Torvalds  *
3971da177e4SLinus Torvalds  * @hdr: ematch tree header supplied by userspace
3981da177e4SLinus Torvalds  * @matches: array of ematches
3991da177e4SLinus Torvalds  */
400fd2c3ef7SEric Dumazet struct tcf_ematch_tree {
4011da177e4SLinus Torvalds 	struct tcf_ematch_tree_hdr hdr;
4021da177e4SLinus Torvalds 	struct tcf_ematch *	matches;
4031da177e4SLinus Torvalds 
4041da177e4SLinus Torvalds };
4051da177e4SLinus Torvalds 
4061da177e4SLinus Torvalds /**
4071da177e4SLinus Torvalds  * struct tcf_ematch_ops - ematch module operations
4081da177e4SLinus Torvalds  *
4091da177e4SLinus Torvalds  * @kind: identifier (kind) of this ematch module
4101da177e4SLinus Torvalds  * @datalen: length of expected configuration data (optional)
4111da177e4SLinus Torvalds  * @change: called during validation (optional)
4121da177e4SLinus Torvalds  * @match: called during ematch tree evaluation, must return 1/0
4131da177e4SLinus Torvalds  * @destroy: called during destroyage (optional)
4141da177e4SLinus Torvalds  * @dump: called during dumping process (optional)
4151da177e4SLinus Torvalds  * @owner: owner, must be set to THIS_MODULE
4161da177e4SLinus Torvalds  * @link: link to previous/next ematch module (internal use)
4171da177e4SLinus Torvalds  */
418fd2c3ef7SEric Dumazet struct tcf_ematch_ops {
4191da177e4SLinus Torvalds 	int			kind;
4201da177e4SLinus Torvalds 	int			datalen;
42182a470f1SJohn Fastabend 	int			(*change)(struct net *net, void *,
4221da177e4SLinus Torvalds 					  int, struct tcf_ematch *);
4231da177e4SLinus Torvalds 	int			(*match)(struct sk_buff *, struct tcf_ematch *,
4241da177e4SLinus Torvalds 					 struct tcf_pkt_info *);
42582a470f1SJohn Fastabend 	void			(*destroy)(struct tcf_ematch *);
4261da177e4SLinus Torvalds 	int			(*dump)(struct sk_buff *, struct tcf_ematch *);
4271da177e4SLinus Torvalds 	struct module		*owner;
4281da177e4SLinus Torvalds 	struct list_head	link;
4291da177e4SLinus Torvalds };
4301da177e4SLinus Torvalds 
4315c15257fSJoe Perches int tcf_em_register(struct tcf_ematch_ops *);
4325c15257fSJoe Perches void tcf_em_unregister(struct tcf_ematch_ops *);
4335c15257fSJoe Perches int tcf_em_tree_validate(struct tcf_proto *, struct nlattr *,
4341da177e4SLinus Torvalds 			 struct tcf_ematch_tree *);
43582a470f1SJohn Fastabend void tcf_em_tree_destroy(struct tcf_ematch_tree *);
4365c15257fSJoe Perches int tcf_em_tree_dump(struct sk_buff *, struct tcf_ematch_tree *, int);
4375c15257fSJoe Perches int __tcf_em_tree_match(struct sk_buff *, struct tcf_ematch_tree *,
4381da177e4SLinus Torvalds 			struct tcf_pkt_info *);
4391da177e4SLinus Torvalds 
4401da177e4SLinus Torvalds /**
4411da177e4SLinus Torvalds  * tcf_em_tree_match - evaulate an ematch tree
4421da177e4SLinus Torvalds  *
4431da177e4SLinus Torvalds  * @skb: socket buffer of the packet in question
4441da177e4SLinus Torvalds  * @tree: ematch tree to be used for evaluation
4451da177e4SLinus Torvalds  * @info: packet information examined by classifier
4461da177e4SLinus Torvalds  *
4471da177e4SLinus Torvalds  * This function matches @skb against the ematch tree in @tree by going
4481da177e4SLinus Torvalds  * through all ematches respecting their logic relations returning
4491da177e4SLinus Torvalds  * as soon as the result is obvious.
4501da177e4SLinus Torvalds  *
4511da177e4SLinus Torvalds  * Returns 1 if the ematch tree as-one matches, no ematches are configured
4521da177e4SLinus Torvalds  * or ematch is not enabled in the kernel, otherwise 0 is returned.
4531da177e4SLinus Torvalds  */
4541da177e4SLinus Torvalds static inline int tcf_em_tree_match(struct sk_buff *skb,
4551da177e4SLinus Torvalds 				    struct tcf_ematch_tree *tree,
4561da177e4SLinus Torvalds 				    struct tcf_pkt_info *info)
4571da177e4SLinus Torvalds {
4581da177e4SLinus Torvalds 	if (tree->hdr.nmatches)
4591da177e4SLinus Torvalds 		return __tcf_em_tree_match(skb, tree, info);
4601da177e4SLinus Torvalds 	else
4611da177e4SLinus Torvalds 		return 1;
4621da177e4SLinus Torvalds }
4631da177e4SLinus Torvalds 
464db3d99c0SPatrick McHardy #define MODULE_ALIAS_TCF_EMATCH(kind)	MODULE_ALIAS("ematch-kind-" __stringify(kind))
465db3d99c0SPatrick McHardy 
4661da177e4SLinus Torvalds #else /* CONFIG_NET_EMATCH */
4671da177e4SLinus Torvalds 
468fd2c3ef7SEric Dumazet struct tcf_ematch_tree {
4691da177e4SLinus Torvalds };
4701da177e4SLinus Torvalds 
4711da177e4SLinus Torvalds #define tcf_em_tree_validate(tp, tb, t) ((void)(t), 0)
47282a470f1SJohn Fastabend #define tcf_em_tree_destroy(t) do { (void)(t); } while(0)
4731da177e4SLinus Torvalds #define tcf_em_tree_dump(skb, t, tlv) (0)
4741da177e4SLinus Torvalds #define tcf_em_tree_match(skb, t, info) ((void)(info), 1)
4751da177e4SLinus Torvalds 
4761da177e4SLinus Torvalds #endif /* CONFIG_NET_EMATCH */
4771da177e4SLinus Torvalds 
4781da177e4SLinus Torvalds static inline unsigned char * tcf_get_base_ptr(struct sk_buff *skb, int layer)
4791da177e4SLinus Torvalds {
4801da177e4SLinus Torvalds 	switch (layer) {
4811da177e4SLinus Torvalds 		case TCF_LAYER_LINK:
482d3303a65SWolfgang Bumiller 			return skb_mac_header(skb);
4831da177e4SLinus Torvalds 		case TCF_LAYER_NETWORK:
484d56f90a7SArnaldo Carvalho de Melo 			return skb_network_header(skb);
4851da177e4SLinus Torvalds 		case TCF_LAYER_TRANSPORT:
4869c70220bSArnaldo Carvalho de Melo 			return skb_transport_header(skb);
4871da177e4SLinus Torvalds 	}
4881da177e4SLinus Torvalds 
4891da177e4SLinus Torvalds 	return NULL;
4901da177e4SLinus Torvalds }
4911da177e4SLinus Torvalds 
492eddc9ec5SArnaldo Carvalho de Melo static inline int tcf_valid_offset(const struct sk_buff *skb,
493eddc9ec5SArnaldo Carvalho de Melo 				   const unsigned char *ptr, const int len)
4941da177e4SLinus Torvalds {
495da521b2cSDavid S. Miller 	return likely((ptr + len) <= skb_tail_pointer(skb) &&
496da521b2cSDavid S. Miller 		      ptr >= skb->head &&
497da521b2cSDavid S. Miller 		      (ptr <= (ptr + len)));
4981da177e4SLinus Torvalds }
4991da177e4SLinus Torvalds 
5001da177e4SLinus Torvalds static inline int
5011057c55fSAlexander Aring tcf_change_indev(struct net *net, struct nlattr *indev_tlv,
5021057c55fSAlexander Aring 		 struct netlink_ext_ack *extack)
5031da177e4SLinus Torvalds {
5042519a602SWANG Cong 	char indev[IFNAMSIZ];
505c01003c2SPatrick McHardy 	struct net_device *dev;
506c01003c2SPatrick McHardy 
507872f6903SFrancis Laniel 	if (nla_strscpy(indev, indev_tlv, IFNAMSIZ) < 0) {
508e4a58ef3SGuillaume Nault 		NL_SET_ERR_MSG_ATTR(extack, indev_tlv,
509e4a58ef3SGuillaume Nault 				    "Interface name too long");
5102519a602SWANG Cong 		return -EINVAL;
5111057c55fSAlexander Aring 	}
5122519a602SWANG Cong 	dev = __dev_get_by_name(net, indev);
513e4a58ef3SGuillaume Nault 	if (!dev) {
514e4a58ef3SGuillaume Nault 		NL_SET_ERR_MSG_ATTR(extack, indev_tlv,
515e4a58ef3SGuillaume Nault 				    "Network device not found");
5162519a602SWANG Cong 		return -ENODEV;
517e4a58ef3SGuillaume Nault 	}
5182519a602SWANG Cong 	return dev->ifindex;
5191da177e4SLinus Torvalds }
5201da177e4SLinus Torvalds 
5212519a602SWANG Cong static inline bool
5222519a602SWANG Cong tcf_match_indev(struct sk_buff *skb, int ifindex)
5232519a602SWANG Cong {
5242519a602SWANG Cong 	if (!ifindex)
5252519a602SWANG Cong 		return true;
5262519a602SWANG Cong 	if  (!skb->skb_iif)
5272519a602SWANG Cong 		return false;
5282519a602SWANG Cong 	return ifindex == skb->skb_iif;
5291da177e4SLinus Torvalds }
5301da177e4SLinus Torvalds 
5313a7b6861SPablo Neira Ayuso int tc_setup_flow_action(struct flow_action *flow_action,
532b15e7a6eSVlad Buslov 			 const struct tcf_exts *exts);
5335a6ff4b1SVlad Buslov void tc_cleanup_flow_action(struct flow_action *flow_action);
5345a6ff4b1SVlad Buslov 
535aeb3fecdSCong Wang int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
53640119211SVlad Buslov 		     void *type_data, bool err_stop, bool rtnl_held);
53740119211SVlad Buslov int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
53840119211SVlad Buslov 		    enum tc_setup_type type, void *type_data, bool err_stop,
53940119211SVlad Buslov 		    u32 *flags, unsigned int *in_hw_count, bool rtnl_held);
54040119211SVlad Buslov int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
54140119211SVlad Buslov 			enum tc_setup_type type, void *type_data, bool err_stop,
54240119211SVlad Buslov 			u32 *old_flags, unsigned int *old_in_hw_count,
54340119211SVlad Buslov 			u32 *new_flags, unsigned int *new_in_hw_count,
54440119211SVlad Buslov 			bool rtnl_held);
54540119211SVlad Buslov int tc_setup_cb_destroy(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_reoffload(struct tcf_block *block, struct tcf_proto *tp,
54940119211SVlad Buslov 			  bool add, flow_setup_cb_t *cb,
55040119211SVlad Buslov 			  enum tc_setup_type type, void *type_data,
55140119211SVlad Buslov 			  void *cb_priv, u32 *flags, unsigned int *in_hw_count);
552e3ab786bSPablo Neira Ayuso unsigned int tcf_exts_num_actions(struct tcf_exts *exts);
553717503b9SJiri Pirko 
5543625750fSPetr Machata #ifdef CONFIG_NET_CLS_ACT
5553625750fSPetr Machata int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
5563625750fSPetr Machata 		    enum flow_block_binder_type binder_type,
5573625750fSPetr Machata 		    struct nlattr *block_index_attr,
5583625750fSPetr Machata 		    struct netlink_ext_ack *extack);
5593625750fSPetr Machata void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch);
5603625750fSPetr Machata int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
5613625750fSPetr Machata 			       struct netlink_ext_ack *extack);
5623625750fSPetr Machata struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
56355f656cdSPetr Machata 				  struct sk_buff **to_free, int *ret);
5643625750fSPetr Machata int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe);
5653625750fSPetr Machata #else
5663625750fSPetr Machata static inline int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
5673625750fSPetr Machata 				  enum flow_block_binder_type binder_type,
5683625750fSPetr Machata 				  struct nlattr *block_index_attr,
5693625750fSPetr Machata 				  struct netlink_ext_ack *extack)
5703625750fSPetr Machata {
5713625750fSPetr Machata 	return 0;
5723625750fSPetr Machata }
5733625750fSPetr Machata 
5743625750fSPetr Machata static inline void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch)
5753625750fSPetr Machata {
5763625750fSPetr Machata }
5773625750fSPetr Machata 
5783625750fSPetr Machata static inline int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
5793625750fSPetr Machata 					     struct netlink_ext_ack *extack)
5803625750fSPetr Machata {
5813625750fSPetr Machata 	return 0;
5823625750fSPetr Machata }
5833625750fSPetr Machata 
5843625750fSPetr Machata static inline struct sk_buff *
5853625750fSPetr Machata tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
58655f656cdSPetr Machata 		  struct sk_buff **to_free, int *ret)
5873625750fSPetr Machata {
5883625750fSPetr Machata 	return skb;
5893625750fSPetr Machata }
5903625750fSPetr Machata 
5913625750fSPetr Machata static inline int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe)
5923625750fSPetr Machata {
5933625750fSPetr Machata 	return 0;
5943625750fSPetr Machata }
5953625750fSPetr Machata #endif
5963625750fSPetr Machata 
597a1b7c5fdSJohn Fastabend struct tc_cls_u32_knode {
598a1b7c5fdSJohn Fastabend 	struct tcf_exts *exts;
599068ceb35SJakub Kicinski 	struct tcf_result *res;
600e014860eSJohn Fastabend 	struct tc_u32_sel *sel;
601a1b7c5fdSJohn Fastabend 	u32 handle;
602a1b7c5fdSJohn Fastabend 	u32 val;
603a1b7c5fdSJohn Fastabend 	u32 mask;
604a1b7c5fdSJohn Fastabend 	u32 link_handle;
605e014860eSJohn Fastabend 	u8 fshift;
606a1b7c5fdSJohn Fastabend };
607a1b7c5fdSJohn Fastabend 
608a1b7c5fdSJohn Fastabend struct tc_cls_u32_hnode {
609a1b7c5fdSJohn Fastabend 	u32 handle;
610a1b7c5fdSJohn Fastabend 	u32 prio;
611a1b7c5fdSJohn Fastabend 	unsigned int divisor;
612a1b7c5fdSJohn Fastabend };
613a1b7c5fdSJohn Fastabend 
614a1b7c5fdSJohn Fastabend enum tc_clsu32_command {
615a1b7c5fdSJohn Fastabend 	TC_CLSU32_NEW_KNODE,
616a1b7c5fdSJohn Fastabend 	TC_CLSU32_REPLACE_KNODE,
617a1b7c5fdSJohn Fastabend 	TC_CLSU32_DELETE_KNODE,
618a1b7c5fdSJohn Fastabend 	TC_CLSU32_NEW_HNODE,
619a1b7c5fdSJohn Fastabend 	TC_CLSU32_REPLACE_HNODE,
620a1b7c5fdSJohn Fastabend 	TC_CLSU32_DELETE_HNODE,
621a1b7c5fdSJohn Fastabend };
622a1b7c5fdSJohn Fastabend 
623a1b7c5fdSJohn Fastabend struct tc_cls_u32_offload {
624f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
625a1b7c5fdSJohn Fastabend 	/* knode values */
626a1b7c5fdSJohn Fastabend 	enum tc_clsu32_command command;
627a1b7c5fdSJohn Fastabend 	union {
628a1b7c5fdSJohn Fastabend 		struct tc_cls_u32_knode knode;
629a1b7c5fdSJohn Fastabend 		struct tc_cls_u32_hnode hnode;
630a1b7c5fdSJohn Fastabend 	};
631a1b7c5fdSJohn Fastabend };
632a1b7c5fdSJohn Fastabend 
6337b06e8aeSJiri Pirko static inline bool tc_can_offload(const struct net_device *dev)
6346843e7a2SJohn Fastabend {
63570b5aee4SJiri Pirko 	return dev->features & NETIF_F_HW_TC;
6366843e7a2SJohn Fastabend }
6376843e7a2SJohn Fastabend 
638f9eda14fSQuentin Monnet static inline bool tc_can_offload_extack(const struct net_device *dev,
639f9eda14fSQuentin Monnet 					 struct netlink_ext_ack *extack)
640f9eda14fSQuentin Monnet {
641f9eda14fSQuentin Monnet 	bool can = tc_can_offload(dev);
642f9eda14fSQuentin Monnet 
643f9eda14fSQuentin Monnet 	if (!can)
644f9eda14fSQuentin Monnet 		NL_SET_ERR_MSG(extack, "TC offload is disabled on net device");
645f9eda14fSQuentin Monnet 
646f9eda14fSQuentin Monnet 	return can;
647f9eda14fSQuentin Monnet }
648f9eda14fSQuentin Monnet 
649878db9f0SJakub Kicinski static inline bool
650878db9f0SJakub Kicinski tc_cls_can_offload_and_chain0(const struct net_device *dev,
651f9e30088SPablo Neira Ayuso 			      struct flow_cls_common_offload *common)
652878db9f0SJakub Kicinski {
653878db9f0SJakub Kicinski 	if (!tc_can_offload_extack(dev, common->extack))
654878db9f0SJakub Kicinski 		return false;
655878db9f0SJakub Kicinski 	if (common->chain_index) {
656878db9f0SJakub Kicinski 		NL_SET_ERR_MSG(common->extack,
657878db9f0SJakub Kicinski 			       "Driver supports only offload of chain 0");
658878db9f0SJakub Kicinski 		return false;
659878db9f0SJakub Kicinski 	}
660878db9f0SJakub Kicinski 	return true;
661878db9f0SJakub Kicinski }
662878db9f0SJakub Kicinski 
66355330f05SHadar Hen Zion static inline bool tc_skip_hw(u32 flags)
66455330f05SHadar Hen Zion {
66555330f05SHadar Hen Zion 	return (flags & TCA_CLS_FLAGS_SKIP_HW) ? true : false;
66655330f05SHadar Hen Zion }
66755330f05SHadar Hen Zion 
668d34e3e18SSamudrala, Sridhar static inline bool tc_skip_sw(u32 flags)
669d34e3e18SSamudrala, Sridhar {
670d34e3e18SSamudrala, Sridhar 	return (flags & TCA_CLS_FLAGS_SKIP_SW) ? true : false;
671d34e3e18SSamudrala, Sridhar }
672d34e3e18SSamudrala, Sridhar 
673d34e3e18SSamudrala, Sridhar /* SKIP_HW and SKIP_SW are mutually exclusive flags. */
674d34e3e18SSamudrala, Sridhar static inline bool tc_flags_valid(u32 flags)
675d34e3e18SSamudrala, Sridhar {
67681c7288bSMarcelo Ricardo Leitner 	if (flags & ~(TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW |
67781c7288bSMarcelo Ricardo Leitner 		      TCA_CLS_FLAGS_VERBOSE))
678d34e3e18SSamudrala, Sridhar 		return false;
679d34e3e18SSamudrala, Sridhar 
68081c7288bSMarcelo Ricardo Leitner 	flags &= TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW;
681d34e3e18SSamudrala, Sridhar 	if (!(flags ^ (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)))
682d34e3e18SSamudrala, Sridhar 		return false;
683d34e3e18SSamudrala, Sridhar 
684d34e3e18SSamudrala, Sridhar 	return true;
685d34e3e18SSamudrala, Sridhar }
686d34e3e18SSamudrala, Sridhar 
687e696028aSOr Gerlitz static inline bool tc_in_hw(u32 flags)
688e696028aSOr Gerlitz {
689e696028aSOr Gerlitz 	return (flags & TCA_CLS_FLAGS_IN_HW) ? true : false;
690e696028aSOr Gerlitz }
691e696028aSOr Gerlitz 
69234832e1cSJakub Kicinski static inline void
693f9e30088SPablo Neira Ayuso tc_cls_common_offload_init(struct flow_cls_common_offload *cls_common,
69434832e1cSJakub Kicinski 			   const struct tcf_proto *tp, u32 flags,
69534832e1cSJakub Kicinski 			   struct netlink_ext_ack *extack)
69634832e1cSJakub Kicinski {
69734832e1cSJakub Kicinski 	cls_common->chain_index = tp->chain->index;
69834832e1cSJakub Kicinski 	cls_common->protocol = tp->protocol;
699ef01adaeSPablo Neira Ayuso 	cls_common->prio = tp->prio >> 16;
70081c7288bSMarcelo Ricardo Leitner 	if (tc_skip_sw(flags) || flags & TCA_CLS_FLAGS_VERBOSE)
70134832e1cSJakub Kicinski 		cls_common->extack = extack;
70234832e1cSJakub Kicinski }
70334832e1cSJakub Kicinski 
7049453d45eSVlad Buslov #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
7059453d45eSVlad Buslov static inline struct tc_skb_ext *tc_skb_ext_alloc(struct sk_buff *skb)
7069453d45eSVlad Buslov {
7079453d45eSVlad Buslov 	struct tc_skb_ext *tc_skb_ext = skb_ext_add(skb, TC_SKB_EXT);
7089453d45eSVlad Buslov 
7099453d45eSVlad Buslov 	if (tc_skb_ext)
7109453d45eSVlad Buslov 		memset(tc_skb_ext, 0, sizeof(*tc_skb_ext));
7119453d45eSVlad Buslov 	return tc_skb_ext;
7129453d45eSVlad Buslov }
7139453d45eSVlad Buslov #endif
7149453d45eSVlad Buslov 
715b87f7936SYotam Gigi enum tc_matchall_command {
716b87f7936SYotam Gigi 	TC_CLSMATCHALL_REPLACE,
717b87f7936SYotam Gigi 	TC_CLSMATCHALL_DESTROY,
718b7fe4ab8SPieter Jansen van Vuuren 	TC_CLSMATCHALL_STATS,
719b87f7936SYotam Gigi };
720b87f7936SYotam Gigi 
721b87f7936SYotam Gigi struct tc_cls_matchall_offload {
722f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
723b87f7936SYotam Gigi 	enum tc_matchall_command command;
724f00cbf19SPieter Jansen van Vuuren 	struct flow_rule *rule;
725b7fe4ab8SPieter Jansen van Vuuren 	struct flow_stats stats;
726b87f7936SYotam Gigi 	unsigned long cookie;
727b87f7936SYotam Gigi };
728b87f7936SYotam Gigi 
729332ae8e2SJakub Kicinski enum tc_clsbpf_command {
730102740bdSJakub Kicinski 	TC_CLSBPF_OFFLOAD,
73168d64063SJakub Kicinski 	TC_CLSBPF_STATS,
732332ae8e2SJakub Kicinski };
733332ae8e2SJakub Kicinski 
734332ae8e2SJakub Kicinski struct tc_cls_bpf_offload {
735f9e30088SPablo Neira Ayuso 	struct flow_cls_common_offload common;
736332ae8e2SJakub Kicinski 	enum tc_clsbpf_command command;
737332ae8e2SJakub Kicinski 	struct tcf_exts *exts;
738332ae8e2SJakub Kicinski 	struct bpf_prog *prog;
739102740bdSJakub Kicinski 	struct bpf_prog *oldprog;
740332ae8e2SJakub Kicinski 	const char *name;
741332ae8e2SJakub Kicinski 	bool exts_integrated;
742332ae8e2SJakub Kicinski };
743332ae8e2SJakub Kicinski 
7444e8b86c0SAmritha Nambiar struct tc_mqprio_qopt_offload {
7454e8b86c0SAmritha Nambiar 	/* struct tc_mqprio_qopt must always be the first element */
7464e8b86c0SAmritha Nambiar 	struct tc_mqprio_qopt qopt;
7474e8b86c0SAmritha Nambiar 	u16 mode;
7484e8b86c0SAmritha Nambiar 	u16 shaper;
7494e8b86c0SAmritha Nambiar 	u32 flags;
7504e8b86c0SAmritha Nambiar 	u64 min_rate[TC_QOPT_MAX_QUEUE];
7514e8b86c0SAmritha Nambiar 	u64 max_rate[TC_QOPT_MAX_QUEUE];
7524e8b86c0SAmritha Nambiar };
7531045ba77SJamal Hadi Salim 
7541045ba77SJamal Hadi Salim /* This structure holds cookie structure that is passed from user
7551045ba77SJamal Hadi Salim  * to the kernel for actions and classifiers
7561045ba77SJamal Hadi Salim  */
7571045ba77SJamal Hadi Salim struct tc_cookie {
7581045ba77SJamal Hadi Salim 	u8  *data;
7591045ba77SJamal Hadi Salim 	u32 len;
760eec94fdbSVlad Buslov 	struct rcu_head rcu;
7611045ba77SJamal Hadi Salim };
762602f3bafSNogah Frankel 
763f34b4aacSNogah Frankel struct tc_qopt_offload_stats {
764f34b4aacSNogah Frankel 	struct gnet_stats_basic_packed *bstats;
765f34b4aacSNogah Frankel 	struct gnet_stats_queue *qstats;
766f34b4aacSNogah Frankel };
767f34b4aacSNogah Frankel 
768f971b132SJakub Kicinski enum tc_mq_command {
769f971b132SJakub Kicinski 	TC_MQ_CREATE,
770f971b132SJakub Kicinski 	TC_MQ_DESTROY,
77147c669a4SJakub Kicinski 	TC_MQ_STATS,
772d577a3d2SJakub Kicinski 	TC_MQ_GRAFT,
773d577a3d2SJakub Kicinski };
774d577a3d2SJakub Kicinski 
775d577a3d2SJakub Kicinski struct tc_mq_opt_offload_graft_params {
776d577a3d2SJakub Kicinski 	unsigned long queue;
777d577a3d2SJakub Kicinski 	u32 child_handle;
778f971b132SJakub Kicinski };
779f971b132SJakub Kicinski 
780f971b132SJakub Kicinski struct tc_mq_qopt_offload {
781f971b132SJakub Kicinski 	enum tc_mq_command command;
782f971b132SJakub Kicinski 	u32 handle;
783d577a3d2SJakub Kicinski 	union {
78447c669a4SJakub Kicinski 		struct tc_qopt_offload_stats stats;
785d577a3d2SJakub Kicinski 		struct tc_mq_opt_offload_graft_params graft_params;
786d577a3d2SJakub Kicinski 	};
787f971b132SJakub Kicinski };
788f971b132SJakub Kicinski 
789d03b195bSMaxim Mikityanskiy enum tc_htb_command {
790d03b195bSMaxim Mikityanskiy 	/* Root */
791d03b195bSMaxim Mikityanskiy 	TC_HTB_CREATE, /* Initialize HTB offload. */
792d03b195bSMaxim Mikityanskiy 	TC_HTB_DESTROY, /* Destroy HTB offload. */
793d03b195bSMaxim Mikityanskiy 
794d03b195bSMaxim Mikityanskiy 	/* Classes */
795d03b195bSMaxim Mikityanskiy 	/* Allocate qid and create leaf. */
796d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_ALLOC_QUEUE,
797d03b195bSMaxim Mikityanskiy 	/* Convert leaf to inner, preserve and return qid, create new leaf. */
798d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_TO_INNER,
799d03b195bSMaxim Mikityanskiy 	/* Delete leaf, while siblings remain. */
800d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_DEL,
801d03b195bSMaxim Mikityanskiy 	/* Delete leaf, convert parent to leaf, preserving qid. */
802d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_DEL_LAST,
803d03b195bSMaxim Mikityanskiy 	/* TC_HTB_LEAF_DEL_LAST, but delete driver data on hardware errors. */
804d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_DEL_LAST_FORCE,
805d03b195bSMaxim Mikityanskiy 	/* Modify parameters of a node. */
806d03b195bSMaxim Mikityanskiy 	TC_HTB_NODE_MODIFY,
807d03b195bSMaxim Mikityanskiy 
808d03b195bSMaxim Mikityanskiy 	/* Class qdisc */
809d03b195bSMaxim Mikityanskiy 	TC_HTB_LEAF_QUERY_QUEUE, /* Query qid by classid. */
810d03b195bSMaxim Mikityanskiy };
811d03b195bSMaxim Mikityanskiy 
812d03b195bSMaxim Mikityanskiy struct tc_htb_qopt_offload {
813d03b195bSMaxim Mikityanskiy 	struct netlink_ext_ack *extack;
814d03b195bSMaxim Mikityanskiy 	enum tc_htb_command command;
815d03b195bSMaxim Mikityanskiy 	u16 classid;
816d03b195bSMaxim Mikityanskiy 	u32 parent_classid;
817d03b195bSMaxim Mikityanskiy 	u16 qid;
818d03b195bSMaxim Mikityanskiy 	u16 moved_qid;
819d03b195bSMaxim Mikityanskiy 	u64 rate;
820d03b195bSMaxim Mikityanskiy 	u64 ceil;
821d03b195bSMaxim Mikityanskiy };
822d03b195bSMaxim Mikityanskiy 
823d03b195bSMaxim Mikityanskiy #define TC_HTB_CLASSID_ROOT U32_MAX
824d03b195bSMaxim Mikityanskiy 
825602f3bafSNogah Frankel enum tc_red_command {
826602f3bafSNogah Frankel 	TC_RED_REPLACE,
827602f3bafSNogah Frankel 	TC_RED_DESTROY,
828602f3bafSNogah Frankel 	TC_RED_STATS,
829602f3bafSNogah Frankel 	TC_RED_XSTATS,
830bf2a752bSJakub Kicinski 	TC_RED_GRAFT,
831602f3bafSNogah Frankel };
832602f3bafSNogah Frankel 
833602f3bafSNogah Frankel struct tc_red_qopt_offload_params {
834602f3bafSNogah Frankel 	u32 min;
835602f3bafSNogah Frankel 	u32 max;
836602f3bafSNogah Frankel 	u32 probability;
837c0b7490bSJakub Kicinski 	u32 limit;
838602f3bafSNogah Frankel 	bool is_ecn;
839190852a5SJakub Kicinski 	bool is_harddrop;
8400a7fad23SPetr Machata 	bool is_nodrop;
841416ef9b1SJakub Kicinski 	struct gnet_stats_queue *qstats;
842602f3bafSNogah Frankel };
843602f3bafSNogah Frankel 
844602f3bafSNogah Frankel struct tc_red_qopt_offload {
845602f3bafSNogah Frankel 	enum tc_red_command command;
846602f3bafSNogah Frankel 	u32 handle;
847602f3bafSNogah Frankel 	u32 parent;
848602f3bafSNogah Frankel 	union {
849602f3bafSNogah Frankel 		struct tc_red_qopt_offload_params set;
850f34b4aacSNogah Frankel 		struct tc_qopt_offload_stats stats;
851602f3bafSNogah Frankel 		struct red_stats *xstats;
852bf2a752bSJakub Kicinski 		u32 child_handle;
853602f3bafSNogah Frankel 	};
854602f3bafSNogah Frankel };
855602f3bafSNogah Frankel 
856890d8d23SJakub Kicinski enum tc_gred_command {
857890d8d23SJakub Kicinski 	TC_GRED_REPLACE,
858890d8d23SJakub Kicinski 	TC_GRED_DESTROY,
859e49efd52SJakub Kicinski 	TC_GRED_STATS,
860890d8d23SJakub Kicinski };
861890d8d23SJakub Kicinski 
862890d8d23SJakub Kicinski struct tc_gred_vq_qopt_offload_params {
863890d8d23SJakub Kicinski 	bool present;
864890d8d23SJakub Kicinski 	u32 limit;
865890d8d23SJakub Kicinski 	u32 prio;
866890d8d23SJakub Kicinski 	u32 min;
867890d8d23SJakub Kicinski 	u32 max;
868890d8d23SJakub Kicinski 	bool is_ecn;
869890d8d23SJakub Kicinski 	bool is_harddrop;
870890d8d23SJakub Kicinski 	u32 probability;
871890d8d23SJakub Kicinski 	/* Only need backlog, see struct tc_prio_qopt_offload_params */
872890d8d23SJakub Kicinski 	u32 *backlog;
873890d8d23SJakub Kicinski };
874890d8d23SJakub Kicinski 
875890d8d23SJakub Kicinski struct tc_gred_qopt_offload_params {
876890d8d23SJakub Kicinski 	bool grio_on;
877890d8d23SJakub Kicinski 	bool wred_on;
878890d8d23SJakub Kicinski 	unsigned int dp_cnt;
879890d8d23SJakub Kicinski 	unsigned int dp_def;
880890d8d23SJakub Kicinski 	struct gnet_stats_queue *qstats;
881890d8d23SJakub Kicinski 	struct tc_gred_vq_qopt_offload_params tab[MAX_DPs];
882890d8d23SJakub Kicinski };
883890d8d23SJakub Kicinski 
884e49efd52SJakub Kicinski struct tc_gred_qopt_offload_stats {
885e49efd52SJakub Kicinski 	struct gnet_stats_basic_packed bstats[MAX_DPs];
886e49efd52SJakub Kicinski 	struct gnet_stats_queue qstats[MAX_DPs];
887e49efd52SJakub Kicinski 	struct red_stats *xstats[MAX_DPs];
888e49efd52SJakub Kicinski };
889e49efd52SJakub Kicinski 
890890d8d23SJakub Kicinski struct tc_gred_qopt_offload {
891890d8d23SJakub Kicinski 	enum tc_gred_command command;
892890d8d23SJakub Kicinski 	u32 handle;
893890d8d23SJakub Kicinski 	u32 parent;
894890d8d23SJakub Kicinski 	union {
895890d8d23SJakub Kicinski 		struct tc_gred_qopt_offload_params set;
896e49efd52SJakub Kicinski 		struct tc_gred_qopt_offload_stats stats;
897890d8d23SJakub Kicinski 	};
898890d8d23SJakub Kicinski };
899890d8d23SJakub Kicinski 
9007fdb61b4SNogah Frankel enum tc_prio_command {
9017fdb61b4SNogah Frankel 	TC_PRIO_REPLACE,
9027fdb61b4SNogah Frankel 	TC_PRIO_DESTROY,
9037fdb61b4SNogah Frankel 	TC_PRIO_STATS,
904b9c7a7acSNogah Frankel 	TC_PRIO_GRAFT,
9057fdb61b4SNogah Frankel };
9067fdb61b4SNogah Frankel 
9077fdb61b4SNogah Frankel struct tc_prio_qopt_offload_params {
9087fdb61b4SNogah Frankel 	int bands;
9097fdb61b4SNogah Frankel 	u8 priomap[TC_PRIO_MAX + 1];
9109586a992SPetr Machata 	/* At the point of un-offloading the Qdisc, the reported backlog and
9119586a992SPetr Machata 	 * qlen need to be reduced by the portion that is in HW.
9127fdb61b4SNogah Frankel 	 */
9137fdb61b4SNogah Frankel 	struct gnet_stats_queue *qstats;
9147fdb61b4SNogah Frankel };
9157fdb61b4SNogah Frankel 
916b9c7a7acSNogah Frankel struct tc_prio_qopt_offload_graft_params {
917b9c7a7acSNogah Frankel 	u8 band;
918b9c7a7acSNogah Frankel 	u32 child_handle;
919b9c7a7acSNogah Frankel };
920b9c7a7acSNogah Frankel 
9217fdb61b4SNogah Frankel struct tc_prio_qopt_offload {
9227fdb61b4SNogah Frankel 	enum tc_prio_command command;
9237fdb61b4SNogah Frankel 	u32 handle;
9247fdb61b4SNogah Frankel 	u32 parent;
9257fdb61b4SNogah Frankel 	union {
9267fdb61b4SNogah Frankel 		struct tc_prio_qopt_offload_params replace_params;
9277fdb61b4SNogah Frankel 		struct tc_qopt_offload_stats stats;
928b9c7a7acSNogah Frankel 		struct tc_prio_qopt_offload_graft_params graft_params;
9297fdb61b4SNogah Frankel 	};
9307fdb61b4SNogah Frankel };
931b9c7a7acSNogah Frankel 
93298b0e5f6SJakub Kicinski enum tc_root_command {
93398b0e5f6SJakub Kicinski 	TC_ROOT_GRAFT,
93498b0e5f6SJakub Kicinski };
93598b0e5f6SJakub Kicinski 
93698b0e5f6SJakub Kicinski struct tc_root_qopt_offload {
93798b0e5f6SJakub Kicinski 	enum tc_root_command command;
93898b0e5f6SJakub Kicinski 	u32 handle;
93998b0e5f6SJakub Kicinski 	bool ingress;
94098b0e5f6SJakub Kicinski };
94198b0e5f6SJakub Kicinski 
942d35eb52bSPetr Machata enum tc_ets_command {
943d35eb52bSPetr Machata 	TC_ETS_REPLACE,
944d35eb52bSPetr Machata 	TC_ETS_DESTROY,
945d35eb52bSPetr Machata 	TC_ETS_STATS,
946d35eb52bSPetr Machata 	TC_ETS_GRAFT,
947d35eb52bSPetr Machata };
948d35eb52bSPetr Machata 
949d35eb52bSPetr Machata struct tc_ets_qopt_offload_replace_params {
950d35eb52bSPetr Machata 	unsigned int bands;
951d35eb52bSPetr Machata 	u8 priomap[TC_PRIO_MAX + 1];
952d35eb52bSPetr Machata 	unsigned int quanta[TCQ_ETS_MAX_BANDS];	/* 0 for strict bands. */
953d35eb52bSPetr Machata 	unsigned int weights[TCQ_ETS_MAX_BANDS];
954d35eb52bSPetr Machata 	struct gnet_stats_queue *qstats;
955d35eb52bSPetr Machata };
956d35eb52bSPetr Machata 
957d35eb52bSPetr Machata struct tc_ets_qopt_offload_graft_params {
958d35eb52bSPetr Machata 	u8 band;
959d35eb52bSPetr Machata 	u32 child_handle;
960d35eb52bSPetr Machata };
961d35eb52bSPetr Machata 
962d35eb52bSPetr Machata struct tc_ets_qopt_offload {
963d35eb52bSPetr Machata 	enum tc_ets_command command;
964d35eb52bSPetr Machata 	u32 handle;
965d35eb52bSPetr Machata 	u32 parent;
966d35eb52bSPetr Machata 	union {
967d35eb52bSPetr Machata 		struct tc_ets_qopt_offload_replace_params replace_params;
968d35eb52bSPetr Machata 		struct tc_qopt_offload_stats stats;
969d35eb52bSPetr Machata 		struct tc_ets_qopt_offload_graft_params graft_params;
970d35eb52bSPetr Machata 	};
971d35eb52bSPetr Machata };
972d35eb52bSPetr Machata 
973ef6aadccSPetr Machata enum tc_tbf_command {
974ef6aadccSPetr Machata 	TC_TBF_REPLACE,
975ef6aadccSPetr Machata 	TC_TBF_DESTROY,
976ef6aadccSPetr Machata 	TC_TBF_STATS,
977ef6aadccSPetr Machata };
978ef6aadccSPetr Machata 
979ef6aadccSPetr Machata struct tc_tbf_qopt_offload_replace_params {
980ef6aadccSPetr Machata 	struct psched_ratecfg rate;
981ef6aadccSPetr Machata 	u32 max_size;
982ef6aadccSPetr Machata 	struct gnet_stats_queue *qstats;
983ef6aadccSPetr Machata };
984ef6aadccSPetr Machata 
985ef6aadccSPetr Machata struct tc_tbf_qopt_offload {
986ef6aadccSPetr Machata 	enum tc_tbf_command command;
987ef6aadccSPetr Machata 	u32 handle;
988ef6aadccSPetr Machata 	u32 parent;
989ef6aadccSPetr Machata 	union {
990ef6aadccSPetr Machata 		struct tc_tbf_qopt_offload_replace_params replace_params;
991ef6aadccSPetr Machata 		struct tc_qopt_offload_stats stats;
992ef6aadccSPetr Machata 	};
993ef6aadccSPetr Machata };
994ef6aadccSPetr Machata 
995aaca9408SPetr Machata enum tc_fifo_command {
996aaca9408SPetr Machata 	TC_FIFO_REPLACE,
997aaca9408SPetr Machata 	TC_FIFO_DESTROY,
998aaca9408SPetr Machata 	TC_FIFO_STATS,
999aaca9408SPetr Machata };
1000aaca9408SPetr Machata 
1001aaca9408SPetr Machata struct tc_fifo_qopt_offload {
1002aaca9408SPetr Machata 	enum tc_fifo_command command;
1003aaca9408SPetr Machata 	u32 handle;
1004aaca9408SPetr Machata 	u32 parent;
1005aaca9408SPetr Machata 	union {
1006aaca9408SPetr Machata 		struct tc_qopt_offload_stats stats;
1007aaca9408SPetr Machata 	};
1008aaca9408SPetr Machata };
1009aaca9408SPetr Machata 
10101da177e4SLinus Torvalds #endif
1011