blob: 255e4f4b521f4095f2ab1e60e3b262366b5ff95f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __NET_PKT_CLS_H
3#define __NET_PKT_CLS_H
4
5#include <linux/pkt_cls.h>
Cong Wang7aa00452017-10-26 18:24:28 -07006#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <net/sch_generic.h>
8#include <net/act_api.h>
Jiri Pirkoa5148622019-06-15 11:03:49 +02009#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Paolo Abenicd11b1642018-07-30 14:30:44 +020011/* TC action not accessible from user space */
John Hurley720f22f2019-06-24 23:13:35 +010012#define TC_ACT_CONSUMED (TC_ACT_VALUE_MAX + 1)
Paolo Abenicd11b1642018-07-30 14:30:44 +020013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/* Basic packet classifier frontend definitions. */
15
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000016struct tcf_walker {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 int stop;
18 int skip;
19 int count;
Vlad Buslov6676d5e2019-02-25 17:38:31 +020020 bool nonempty;
Vlad Buslov01683a12018-07-09 13:29:11 +030021 unsigned long cookie;
WANG Cong8113c092017-08-04 21:31:43 -070022 int (*fn)(struct tcf_proto *, void *node, struct tcf_walker *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
Joe Perches5c152572013-07-30 22:47:13 -070025int register_tcf_proto_ops(struct tcf_proto_ops *ops);
26int unregister_tcf_proto_ops(struct tcf_proto_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Jiri Pirko8c4083b2017-10-19 15:50:29 +020028struct tcf_block_ext_info {
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +020029 enum flow_block_binder_type binder_type;
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +010030 tcf_chain_head_change_t *chain_head_change;
31 void *chain_head_change_priv;
Jiri Pirko48617382018-01-17 11:46:46 +010032 u32 block_index;
Jiri Pirko8c4083b2017-10-19 15:50:29 +020033};
34
Petr Machata36257502020-06-27 01:45:26 +030035struct tcf_qevent {
36 struct tcf_block *block;
37 struct tcf_block_ext_info info;
38 struct tcf_proto __rcu *filter_chain;
39};
40
Jiri Pirkoacb67442017-10-19 15:50:31 +020041struct tcf_block_cb;
Cong Wangaaa908f2018-05-23 15:26:53 -070042bool tcf_queue_work(struct rcu_work *rwork, work_func_t func);
Jiri Pirkoacb67442017-10-19 15:50:31 +020043
Jiri Pirko8ae70032017-02-15 11:57:50 +010044#ifdef CONFIG_NET_CLS
Jiri Pirko1f3ed382018-07-27 09:45:05 +020045struct tcf_chain *tcf_chain_get_by_act(struct tcf_block *block,
46 u32 chain_index);
Jiri Pirko1f3ed382018-07-27 09:45:05 +020047void tcf_chain_put_by_act(struct tcf_chain *chain);
Vlad Buslovbbf73832019-02-11 10:55:36 +020048struct tcf_chain *tcf_get_next_chain(struct tcf_block *block,
49 struct tcf_chain *chain);
Vlad Buslovfe2923a2019-02-11 10:55:40 +020050struct tcf_proto *tcf_get_next_proto(struct tcf_chain *chain,
Vlad Buslov0fca55e2020-11-27 17:12:05 +020051 struct tcf_proto *tp);
Jiri Pirkof36fe1c2018-01-17 11:46:48 +010052void tcf_block_netif_keep_dst(struct tcf_block *block);
Jiri Pirko6529eab2017-05-17 11:07:55 +020053int tcf_block_get(struct tcf_block **p_block,
Alexander Aring8d1a77f2017-12-20 12:35:19 -050054 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
55 struct netlink_ext_ack *extack);
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +010056int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
Alexander Aring8d1a77f2017-12-20 12:35:19 -050057 struct tcf_block_ext_info *ei,
58 struct netlink_ext_ack *extack);
Jiri Pirko6529eab2017-05-17 11:07:55 +020059void tcf_block_put(struct tcf_block *block);
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +010060void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
Jiri Pirko8c4083b2017-10-19 15:50:29 +020061 struct tcf_block_ext_info *ei);
Jiri Pirko44186462017-10-13 14:00:59 +020062
Jiri Pirko48617382018-01-17 11:46:46 +010063static inline bool tcf_block_shared(struct tcf_block *block)
64{
65 return block->index;
66}
67
Vlad Buslovc1a970d2019-07-10 20:12:29 +030068static inline bool tcf_block_non_null_shared(struct tcf_block *block)
69{
70 return block && block->index;
71}
72
Jiri Pirko44186462017-10-13 14:00:59 +020073static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
74{
Jiri Pirko48617382018-01-17 11:46:46 +010075 WARN_ON(tcf_block_shared(block));
Jiri Pirko44186462017-10-13 14:00:59 +020076 return block->q;
77}
78
Jiri Pirko87d83092017-05-17 11:07:54 +020079int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
80 struct tcf_result *res, bool compat_mode);
Paul Blakey7d17c542020-02-16 12:01:22 +020081int tcf_classify_ingress(struct sk_buff *skb,
82 const struct tcf_block *ingress_block,
83 const struct tcf_proto *tp, struct tcf_result *res,
84 bool compat_mode);
Jiri Pirko87d83092017-05-17 11:07:54 +020085
Jiri Pirko8ae70032017-02-15 11:57:50 +010086#else
Pieter Jansen van Vuuren88c44a52019-05-04 04:46:25 -070087static inline bool tcf_block_shared(struct tcf_block *block)
88{
89 return false;
90}
91
Vlad Buslovc1a970d2019-07-10 20:12:29 +030092static inline bool tcf_block_non_null_shared(struct tcf_block *block)
93{
94 return false;
95}
96
Jiri Pirko6529eab2017-05-17 11:07:55 +020097static inline
98int tcf_block_get(struct tcf_block **p_block,
Sudip Mukherjee3c149092017-12-22 15:52:05 +000099 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
100 struct netlink_ext_ack *extack)
Jiri Pirko6529eab2017-05-17 11:07:55 +0200101{
102 return 0;
103}
104
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200105static inline
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +0100106int tcf_block_get_ext(struct tcf_block **p_block, struct Qdisc *q,
Quentin Monnet33c30a82018-01-03 17:30:45 -0800107 struct tcf_block_ext_info *ei,
108 struct netlink_ext_ack *extack)
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200109{
110 return 0;
111}
112
Jiri Pirko6529eab2017-05-17 11:07:55 +0200113static inline void tcf_block_put(struct tcf_block *block)
Jiri Pirko8ae70032017-02-15 11:57:50 +0100114{
115}
Jiri Pirko87d83092017-05-17 11:07:54 +0200116
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200117static inline
Jiri Pirkoc7eb7d72017-11-03 11:46:24 +0100118void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
Jiri Pirko8c4083b2017-10-19 15:50:29 +0200119 struct tcf_block_ext_info *ei)
120{
121}
122
Jiri Pirko44186462017-10-13 14:00:59 +0200123static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
124{
125 return NULL;
126}
127
Jiri Pirkoacb67442017-10-19 15:50:31 +0200128static inline
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +0200129int tc_setup_cb_block_register(struct tcf_block *block, flow_setup_cb_t *cb,
Jiri Pirkoacb67442017-10-19 15:50:31 +0200130 void *cb_priv)
131{
132 return 0;
133}
134
135static inline
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +0200136void tc_setup_cb_block_unregister(struct tcf_block *block, flow_setup_cb_t *cb,
Jiri Pirkoacb67442017-10-19 15:50:31 +0200137 void *cb_priv)
138{
139}
140
Jiri Pirko87d83092017-05-17 11:07:54 +0200141static inline int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
142 struct tcf_result *res, bool compat_mode)
143{
144 return TC_ACT_UNSPEC;
145}
Paul Blakey9410c942020-02-16 12:01:21 +0200146
147static inline int tcf_classify_ingress(struct sk_buff *skb,
Paul Blakey7d17c542020-02-16 12:01:22 +0200148 const struct tcf_block *ingress_block,
Paul Blakey9410c942020-02-16 12:01:21 +0200149 const struct tcf_proto *tp,
150 struct tcf_result *res, bool compat_mode)
151{
152 return TC_ACT_UNSPEC;
153}
154
Jiri Pirko8ae70032017-02-15 11:57:50 +0100155#endif
Jiri Pirkocf1facd2017-02-09 14:38:56 +0100156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static inline unsigned long
158__cls_set_class(unsigned long *clp, unsigned long cl)
159{
WANG Conga0efb802014-09-30 16:07:24 -0700160 return xchg(clp, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Cong Wang2e24cd72020-01-23 16:26:18 -0800163static inline void
164__tcf_bind_filter(struct Qdisc *q, struct tcf_result *r, unsigned long base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Cong Wang2e24cd72020-01-23 16:26:18 -0800166 unsigned long cl;
Jiri Pirko34e37592017-10-13 14:01:00 +0200167
Cong Wang2e24cd72020-01-23 16:26:18 -0800168 cl = q->ops->cl_ops->bind_tcf(q, base, r->classid);
169 cl = __cls_set_class(&r->class, cl);
170 if (cl)
171 q->ops->cl_ops->unbind_tcf(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174static inline void
175tcf_bind_filter(struct tcf_proto *tp, struct tcf_result *r, unsigned long base)
176{
Jiri Pirko34e37592017-10-13 14:01:00 +0200177 struct Qdisc *q = tp->chain->block->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jiri Pirko34e37592017-10-13 14:01:00 +0200179 /* Check q as it is not set for shared blocks. In that case,
180 * setting class is not supported.
181 */
182 if (!q)
183 return;
Cong Wang2e24cd72020-01-23 16:26:18 -0800184 sch_tree_lock(q);
185 __tcf_bind_filter(q, r, base);
186 sch_tree_unlock(q);
187}
188
189static inline void
190__tcf_unbind_filter(struct Qdisc *q, struct tcf_result *r)
191{
192 unsigned long cl;
193
194 if ((cl = __cls_set_class(&r->class, 0)) != 0)
Jiri Pirko34e37592017-10-13 14:01:00 +0200195 q->ops->cl_ops->unbind_tcf(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198static inline void
199tcf_unbind_filter(struct tcf_proto *tp, struct tcf_result *r)
200{
Jiri Pirko34e37592017-10-13 14:01:00 +0200201 struct Qdisc *q = tp->chain->block->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Jiri Pirko34e37592017-10-13 14:01:00 +0200203 if (!q)
204 return;
Cong Wang2e24cd72020-01-23 16:26:18 -0800205 __tcf_unbind_filter(q, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000208struct tcf_exts {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#ifdef CONFIG_NET_CLS_ACT
WANG Cong33be6272013-12-15 20:15:05 -0800210 __u32 type; /* for backward compat(TCA_OLD_COMPAT) */
WANG Cong22dc13c2016-08-13 22:35:00 -0700211 int nr_actions;
212 struct tc_action **actions;
Cong Wange4b95c42017-11-06 13:47:19 -0800213 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif
WANG Cong5da57f42013-12-15 20:15:07 -0800215 /* Map to export classifier specific extension TLV types to the
216 * generic extensions API. Unsupported extensions must be set to 0.
217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int action;
219 int police;
220};
221
Cong Wang14215102019-02-20 21:37:42 -0800222static inline int tcf_exts_init(struct tcf_exts *exts, struct net *net,
223 int action, int police)
WANG Cong33be6272013-12-15 20:15:05 -0800224{
225#ifdef CONFIG_NET_CLS_ACT
WANG Cong5da57f42013-12-15 20:15:07 -0800226 exts->type = 0;
WANG Cong22dc13c2016-08-13 22:35:00 -0700227 exts->nr_actions = 0;
Cong Wang14215102019-02-20 21:37:42 -0800228 exts->net = net;
WANG Cong22dc13c2016-08-13 22:35:00 -0700229 exts->actions = kcalloc(TCA_ACT_MAX_PRIO, sizeof(struct tc_action *),
230 GFP_KERNEL);
WANG Congb9a24bb2016-08-19 12:36:54 -0700231 if (!exts->actions)
232 return -ENOMEM;
WANG Cong33be6272013-12-15 20:15:05 -0800233#endif
WANG Cong5da57f42013-12-15 20:15:07 -0800234 exts->action = action;
235 exts->police = police;
WANG Congb9a24bb2016-08-19 12:36:54 -0700236 return 0;
WANG Cong33be6272013-12-15 20:15:05 -0800237}
238
Cong Wange4b95c42017-11-06 13:47:19 -0800239/* Return false if the netns is being destroyed in cleanup_net(). Callers
240 * need to do cleanup synchronously in this case, otherwise may race with
241 * tc_action_net_exit(). Return true for other cases.
242 */
243static inline bool tcf_exts_get_net(struct tcf_exts *exts)
244{
245#ifdef CONFIG_NET_CLS_ACT
246 exts->net = maybe_get_net(exts->net);
247 return exts->net != NULL;
248#else
249 return true;
250#endif
251}
252
253static inline void tcf_exts_put_net(struct tcf_exts *exts)
254{
255#ifdef CONFIG_NET_CLS_ACT
256 if (exts->net)
257 put_net(exts->net);
258#endif
259}
260
WANG Cong22dc13c2016-08-13 22:35:00 -0700261#ifdef CONFIG_NET_CLS_ACT
Cong Wang244cd962018-08-19 12:22:09 -0700262#define tcf_exts_for_each_action(i, a, exts) \
263 for (i = 0; i < TCA_ACT_MAX_PRIO && ((a) = (exts)->actions[i]); i++)
264#else
265#define tcf_exts_for_each_action(i, a, exts) \
Arnd Bergmann191672c2018-08-22 17:25:44 +0200266 for (; 0; (void)(i), (void)(a), (void)(exts))
WANG Cong22dc13c2016-08-13 22:35:00 -0700267#endif
WANG Cong22dc13c2016-08-13 22:35:00 -0700268
Jakub Kicinskid897a632017-05-31 08:06:43 -0700269static inline void
270tcf_exts_stats_update(const struct tcf_exts *exts,
Po Liu4b61d3e2020-06-19 14:01:07 +0800271 u64 bytes, u64 packets, u64 drops, u64 lastuse,
Jiri Pirko93a129e2020-03-28 16:37:43 +0100272 u8 used_hw_stats, bool used_hw_stats_valid)
Jakub Kicinskid897a632017-05-31 08:06:43 -0700273{
274#ifdef CONFIG_NET_CLS_ACT
275 int i;
276
277 preempt_disable();
278
279 for (i = 0; i < exts->nr_actions; i++) {
280 struct tc_action *a = exts->actions[i];
281
Po Liu4b61d3e2020-06-19 14:01:07 +0800282 tcf_action_stats_update(a, bytes, packets, drops,
283 lastuse, true);
Jiri Pirko93a129e2020-03-28 16:37:43 +0100284 a->used_hw_stats = used_hw_stats;
285 a->used_hw_stats_valid = used_hw_stats_valid;
Jakub Kicinskid897a632017-05-31 08:06:43 -0700286 }
287
288 preempt_enable();
289#endif
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/**
Jiri Pirko3bcc0ce2017-08-04 14:28:58 +0200293 * tcf_exts_has_actions - check if at least one action is present
294 * @exts: tc filter extensions handle
295 *
296 * Returns true if at least one action is present.
297 */
298static inline bool tcf_exts_has_actions(struct tcf_exts *exts)
299{
WANG Cong2734437e2016-08-13 22:34:59 -0700300#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko3bcc0ce2017-08-04 14:28:58 +0200301 return exts->nr_actions;
302#else
303 return false;
304#endif
305}
WANG Cong2734437e2016-08-13 22:34:59 -0700306
Jiri Pirko3bcc0ce2017-08-04 14:28:58 +0200307/**
Jiri Pirkoaf69afc2017-08-04 14:28:59 +0200308 * tcf_exts_exec - execute tc filter extensions
309 * @skb: socket buffer
310 * @exts: tc filter extensions handle
311 * @res: desired result
312 *
Jiri Pirkoaf089e72017-08-04 14:29:01 +0200313 * Executes all configured extensions. Returns TC_ACT_OK on a normal execution,
Jiri Pirkoaf69afc2017-08-04 14:28:59 +0200314 * a negative number if the filter must be considered unmatched or
315 * a positive action code (TC_ACT_*) which must be returned to the
316 * underlying layer.
317 */
318static inline int
319tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
320 struct tcf_result *res)
321{
322#ifdef CONFIG_NET_CLS_ACT
Jiri Pirkoec1a9cc2017-08-04 14:29:02 +0200323 return tcf_action_exec(skb, exts->actions, exts->nr_actions, res);
Jiri Pirkoaf69afc2017-08-04 14:28:59 +0200324#endif
Jiri Pirkoaf089e72017-08-04 14:29:01 +0200325 return TC_ACT_OK;
Jiri Pirkoaf69afc2017-08-04 14:28:59 +0200326}
327
Joe Perches5c152572013-07-30 22:47:13 -0700328int tcf_exts_validate(struct net *net, struct tcf_proto *tp,
329 struct nlattr **tb, struct nlattr *rate_tlv,
Vlad Buslovec6743a2019-02-11 10:55:43 +0200330 struct tcf_exts *exts, bool ovr, bool rtnl_held,
Alexander Aring50a56192018-01-18 11:20:52 -0500331 struct netlink_ext_ack *extack);
WANG Cong18d02642014-09-25 10:26:37 -0700332void tcf_exts_destroy(struct tcf_exts *exts);
Jiri Pirko9b0d4442017-08-04 14:29:15 +0200333void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src);
WANG Cong5da57f42013-12-15 20:15:07 -0800334int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts);
Vlad Buslovca44b732020-05-15 14:40:12 +0300335int tcf_exts_terse_dump(struct sk_buff *skb, struct tcf_exts *exts);
WANG Cong5da57f42013-12-15 20:15:07 -0800336int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/**
339 * struct tcf_pkt_info - packet information
340 */
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000341struct tcf_pkt_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 unsigned char * ptr;
343 int nexthdr;
344};
345
346#ifdef CONFIG_NET_EMATCH
347
348struct tcf_ematch_ops;
349
350/**
351 * struct tcf_ematch - extended match (ematch)
352 *
353 * @matchid: identifier to allow userspace to reidentify a match
354 * @flags: flags specifying attributes and the relation to other matches
355 * @ops: the operations lookup table of the corresponding ematch module
356 * @datalen: length of the ematch specific configuration data
357 * @data: ematch specific data
358 */
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000359struct tcf_ematch {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 struct tcf_ematch_ops * ops;
361 unsigned long data;
362 unsigned int datalen;
363 u16 matchid;
364 u16 flags;
John Fastabend82a470f2014-10-05 21:27:53 -0700365 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
367
368static inline int tcf_em_is_container(struct tcf_ematch *em)
369{
370 return !em->ops;
371}
372
373static inline int tcf_em_is_simple(struct tcf_ematch *em)
374{
375 return em->flags & TCF_EM_SIMPLE;
376}
377
378static inline int tcf_em_is_inverted(struct tcf_ematch *em)
379{
380 return em->flags & TCF_EM_INVERT;
381}
382
383static inline int tcf_em_last_match(struct tcf_ematch *em)
384{
385 return (em->flags & TCF_EM_REL_MASK) == TCF_EM_REL_END;
386}
387
388static inline int tcf_em_early_end(struct tcf_ematch *em, int result)
389{
390 if (tcf_em_last_match(em))
391 return 1;
392
393 if (result == 0 && em->flags & TCF_EM_REL_AND)
394 return 1;
395
396 if (result != 0 && em->flags & TCF_EM_REL_OR)
397 return 1;
398
399 return 0;
400}
401
402/**
403 * struct tcf_ematch_tree - ematch tree handle
404 *
405 * @hdr: ematch tree header supplied by userspace
406 * @matches: array of ematches
407 */
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000408struct tcf_ematch_tree {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 struct tcf_ematch_tree_hdr hdr;
410 struct tcf_ematch * matches;
411
412};
413
414/**
415 * struct tcf_ematch_ops - ematch module operations
416 *
417 * @kind: identifier (kind) of this ematch module
418 * @datalen: length of expected configuration data (optional)
419 * @change: called during validation (optional)
420 * @match: called during ematch tree evaluation, must return 1/0
421 * @destroy: called during destroyage (optional)
422 * @dump: called during dumping process (optional)
423 * @owner: owner, must be set to THIS_MODULE
424 * @link: link to previous/next ematch module (internal use)
425 */
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000426struct tcf_ematch_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 int kind;
428 int datalen;
John Fastabend82a470f2014-10-05 21:27:53 -0700429 int (*change)(struct net *net, void *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int, struct tcf_ematch *);
431 int (*match)(struct sk_buff *, struct tcf_ematch *,
432 struct tcf_pkt_info *);
John Fastabend82a470f2014-10-05 21:27:53 -0700433 void (*destroy)(struct tcf_ematch *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int (*dump)(struct sk_buff *, struct tcf_ematch *);
435 struct module *owner;
436 struct list_head link;
437};
438
Joe Perches5c152572013-07-30 22:47:13 -0700439int tcf_em_register(struct tcf_ematch_ops *);
440void tcf_em_unregister(struct tcf_ematch_ops *);
441int tcf_em_tree_validate(struct tcf_proto *, struct nlattr *,
442 struct tcf_ematch_tree *);
John Fastabend82a470f2014-10-05 21:27:53 -0700443void tcf_em_tree_destroy(struct tcf_ematch_tree *);
Joe Perches5c152572013-07-30 22:47:13 -0700444int tcf_em_tree_dump(struct sk_buff *, struct tcf_ematch_tree *, int);
445int __tcf_em_tree_match(struct sk_buff *, struct tcf_ematch_tree *,
446 struct tcf_pkt_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * tcf_em_tree_match - evaulate an ematch tree
450 *
451 * @skb: socket buffer of the packet in question
452 * @tree: ematch tree to be used for evaluation
453 * @info: packet information examined by classifier
454 *
455 * This function matches @skb against the ematch tree in @tree by going
456 * through all ematches respecting their logic relations returning
457 * as soon as the result is obvious.
458 *
459 * Returns 1 if the ematch tree as-one matches, no ematches are configured
460 * or ematch is not enabled in the kernel, otherwise 0 is returned.
461 */
462static inline int tcf_em_tree_match(struct sk_buff *skb,
463 struct tcf_ematch_tree *tree,
464 struct tcf_pkt_info *info)
465{
466 if (tree->hdr.nmatches)
467 return __tcf_em_tree_match(skb, tree, info);
468 else
469 return 1;
470}
471
Patrick McHardydb3d99c2007-07-11 19:46:26 -0700472#define MODULE_ALIAS_TCF_EMATCH(kind) MODULE_ALIAS("ematch-kind-" __stringify(kind))
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474#else /* CONFIG_NET_EMATCH */
475
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000476struct tcf_ematch_tree {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477};
478
479#define tcf_em_tree_validate(tp, tb, t) ((void)(t), 0)
John Fastabend82a470f2014-10-05 21:27:53 -0700480#define tcf_em_tree_destroy(t) do { (void)(t); } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#define tcf_em_tree_dump(skb, t, tlv) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#define tcf_em_tree_match(skb, t, info) ((void)(info), 1)
483
484#endif /* CONFIG_NET_EMATCH */
485
486static inline unsigned char * tcf_get_base_ptr(struct sk_buff *skb, int layer)
487{
488 switch (layer) {
489 case TCF_LAYER_LINK:
Wolfgang Bumillerd3303a62018-01-18 11:32:36 +0100490 return skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 case TCF_LAYER_NETWORK:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700492 return skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 case TCF_LAYER_TRANSPORT:
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700494 return skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
497 return NULL;
498}
499
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700500static inline int tcf_valid_offset(const struct sk_buff *skb,
501 const unsigned char *ptr, const int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
David S. Millerda521b22010-12-21 12:43:16 -0800503 return likely((ptr + len) <= skb_tail_pointer(skb) &&
504 ptr >= skb->head &&
505 (ptr <= (ptr + len)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508static inline int
Alexander Aring1057c552018-01-18 11:20:54 -0500509tcf_change_indev(struct net *net, struct nlattr *indev_tlv,
510 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
WANG Cong2519a602014-01-09 16:14:02 -0800512 char indev[IFNAMSIZ];
Patrick McHardyc01003c2007-03-29 11:46:52 -0700513 struct net_device *dev;
514
Francis Laniel872f6902020-11-15 18:08:06 +0100515 if (nla_strscpy(indev, indev_tlv, IFNAMSIZ) < 0) {
Guillaume Naulte4a58ef2020-03-23 21:48:47 +0100516 NL_SET_ERR_MSG_ATTR(extack, indev_tlv,
517 "Interface name too long");
WANG Cong2519a602014-01-09 16:14:02 -0800518 return -EINVAL;
Alexander Aring1057c552018-01-18 11:20:54 -0500519 }
WANG Cong2519a602014-01-09 16:14:02 -0800520 dev = __dev_get_by_name(net, indev);
Guillaume Naulte4a58ef2020-03-23 21:48:47 +0100521 if (!dev) {
522 NL_SET_ERR_MSG_ATTR(extack, indev_tlv,
523 "Network device not found");
WANG Cong2519a602014-01-09 16:14:02 -0800524 return -ENODEV;
Guillaume Naulte4a58ef2020-03-23 21:48:47 +0100525 }
WANG Cong2519a602014-01-09 16:14:02 -0800526 return dev->ifindex;
527}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
WANG Cong2519a602014-01-09 16:14:02 -0800529static inline bool
530tcf_match_indev(struct sk_buff *skb, int ifindex)
531{
532 if (!ifindex)
533 return true;
534 if (!skb->skb_iif)
535 return false;
536 return ifindex == skb->skb_iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Pablo Neira Ayuso3a7b6862019-02-02 12:50:46 +0100539int tc_setup_flow_action(struct flow_action *flow_action,
Vlad Buslovb15e7a62020-02-17 12:12:12 +0200540 const struct tcf_exts *exts);
Vlad Buslov5a6ff4b2019-08-26 16:45:04 +0300541void tc_cleanup_flow_action(struct flow_action *flow_action);
542
Cong Wangaeb3fec2018-12-11 11:15:46 -0800543int tc_setup_cb_call(struct tcf_block *block, enum tc_setup_type type,
Vlad Buslov40119212019-08-26 16:44:59 +0300544 void *type_data, bool err_stop, bool rtnl_held);
545int tc_setup_cb_add(struct tcf_block *block, struct tcf_proto *tp,
546 enum tc_setup_type type, void *type_data, bool err_stop,
547 u32 *flags, unsigned int *in_hw_count, bool rtnl_held);
548int tc_setup_cb_replace(struct tcf_block *block, struct tcf_proto *tp,
549 enum tc_setup_type type, void *type_data, bool err_stop,
550 u32 *old_flags, unsigned int *old_in_hw_count,
551 u32 *new_flags, unsigned int *new_in_hw_count,
552 bool rtnl_held);
553int tc_setup_cb_destroy(struct tcf_block *block, struct tcf_proto *tp,
554 enum tc_setup_type type, void *type_data, bool err_stop,
555 u32 *flags, unsigned int *in_hw_count, bool rtnl_held);
556int tc_setup_cb_reoffload(struct tcf_block *block, struct tcf_proto *tp,
557 bool add, flow_setup_cb_t *cb,
558 enum tc_setup_type type, void *type_data,
559 void *cb_priv, u32 *flags, unsigned int *in_hw_count);
Pablo Neira Ayusoe3ab7862019-02-02 12:50:45 +0100560unsigned int tcf_exts_num_actions(struct tcf_exts *exts);
Jiri Pirko717503b2017-10-11 09:41:09 +0200561
Petr Machata36257502020-06-27 01:45:26 +0300562#ifdef CONFIG_NET_CLS_ACT
563int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
564 enum flow_block_binder_type binder_type,
565 struct nlattr *block_index_attr,
566 struct netlink_ext_ack *extack);
567void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch);
568int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
569 struct netlink_ext_ack *extack);
570struct sk_buff *tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
Petr Machata55f656c2020-07-14 20:03:07 +0300571 struct sk_buff **to_free, int *ret);
Petr Machata36257502020-06-27 01:45:26 +0300572int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe);
573#else
574static inline int tcf_qevent_init(struct tcf_qevent *qe, struct Qdisc *sch,
575 enum flow_block_binder_type binder_type,
576 struct nlattr *block_index_attr,
577 struct netlink_ext_ack *extack)
578{
579 return 0;
580}
581
582static inline void tcf_qevent_destroy(struct tcf_qevent *qe, struct Qdisc *sch)
583{
584}
585
586static inline int tcf_qevent_validate_change(struct tcf_qevent *qe, struct nlattr *block_index_attr,
587 struct netlink_ext_ack *extack)
588{
589 return 0;
590}
591
592static inline struct sk_buff *
593tcf_qevent_handle(struct tcf_qevent *qe, struct Qdisc *sch, struct sk_buff *skb,
Petr Machata55f656c2020-07-14 20:03:07 +0300594 struct sk_buff **to_free, int *ret)
Petr Machata36257502020-06-27 01:45:26 +0300595{
596 return skb;
597}
598
599static inline int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe)
600{
601 return 0;
602}
603#endif
604
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800605struct tc_cls_u32_knode {
606 struct tcf_exts *exts;
Jakub Kicinski068ceb32018-11-19 15:21:46 -0800607 struct tcf_result *res;
John Fastabende0148602016-02-17 14:59:30 -0800608 struct tc_u32_sel *sel;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800609 u32 handle;
610 u32 val;
611 u32 mask;
612 u32 link_handle;
John Fastabende0148602016-02-17 14:59:30 -0800613 u8 fshift;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800614};
615
616struct tc_cls_u32_hnode {
617 u32 handle;
618 u32 prio;
619 unsigned int divisor;
620};
621
622enum tc_clsu32_command {
623 TC_CLSU32_NEW_KNODE,
624 TC_CLSU32_REPLACE_KNODE,
625 TC_CLSU32_DELETE_KNODE,
626 TC_CLSU32_NEW_HNODE,
627 TC_CLSU32_REPLACE_HNODE,
628 TC_CLSU32_DELETE_HNODE,
629};
630
631struct tc_cls_u32_offload {
Pablo Neira Ayusof9e30082019-07-09 22:55:49 +0200632 struct flow_cls_common_offload common;
John Fastabenda1b7c5f2016-02-16 21:17:09 -0800633 /* knode values */
634 enum tc_clsu32_command command;
635 union {
636 struct tc_cls_u32_knode knode;
637 struct tc_cls_u32_hnode hnode;
638 };
639};
640
Jiri Pirko7b06e8a2017-08-09 14:30:35 +0200641static inline bool tc_can_offload(const struct net_device *dev)
John Fastabend6843e7a2016-02-26 07:53:49 -0800642{
Jiri Pirko70b5aee2017-11-01 11:47:41 +0100643 return dev->features & NETIF_F_HW_TC;
John Fastabend6843e7a2016-02-26 07:53:49 -0800644}
645
Quentin Monnetf9eda142018-01-19 17:44:48 -0800646static inline bool tc_can_offload_extack(const struct net_device *dev,
647 struct netlink_ext_ack *extack)
648{
649 bool can = tc_can_offload(dev);
650
651 if (!can)
652 NL_SET_ERR_MSG(extack, "TC offload is disabled on net device");
653
654 return can;
655}
656
Jakub Kicinski878db9f2018-01-25 14:00:43 -0800657static inline bool
658tc_cls_can_offload_and_chain0(const struct net_device *dev,
Pablo Neira Ayusof9e30082019-07-09 22:55:49 +0200659 struct flow_cls_common_offload *common)
Jakub Kicinski878db9f2018-01-25 14:00:43 -0800660{
661 if (!tc_can_offload_extack(dev, common->extack))
662 return false;
663 if (common->chain_index) {
664 NL_SET_ERR_MSG(common->extack,
665 "Driver supports only offload of chain 0");
666 return false;
667 }
668 return true;
669}
670
Hadar Hen Zion55330f02016-12-01 14:06:33 +0200671static inline bool tc_skip_hw(u32 flags)
672{
673 return (flags & TCA_CLS_FLAGS_SKIP_HW) ? true : false;
674}
675
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700676static inline bool tc_skip_sw(u32 flags)
677{
678 return (flags & TCA_CLS_FLAGS_SKIP_SW) ? true : false;
679}
680
681/* SKIP_HW and SKIP_SW are mutually exclusive flags. */
682static inline bool tc_flags_valid(u32 flags)
683{
Marcelo Ricardo Leitner81c72882018-05-13 17:44:27 -0300684 if (flags & ~(TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW |
685 TCA_CLS_FLAGS_VERBOSE))
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700686 return false;
687
Marcelo Ricardo Leitner81c72882018-05-13 17:44:27 -0300688 flags &= TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW;
Samudrala, Sridhard34e3e12016-05-12 17:08:23 -0700689 if (!(flags ^ (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)))
690 return false;
691
692 return true;
693}
694
Or Gerlitze6960282017-02-16 10:31:12 +0200695static inline bool tc_in_hw(u32 flags)
696{
697 return (flags & TCA_CLS_FLAGS_IN_HW) ? true : false;
698}
699
Jakub Kicinski34832e12018-01-24 12:54:14 -0800700static inline void
Pablo Neira Ayusof9e30082019-07-09 22:55:49 +0200701tc_cls_common_offload_init(struct flow_cls_common_offload *cls_common,
Jakub Kicinski34832e12018-01-24 12:54:14 -0800702 const struct tcf_proto *tp, u32 flags,
703 struct netlink_ext_ack *extack)
704{
705 cls_common->chain_index = tp->chain->index;
706 cls_common->protocol = tp->protocol;
Pablo Neira Ayusoef01ada2019-08-16 03:24:09 +0200707 cls_common->prio = tp->prio >> 16;
Marcelo Ricardo Leitner81c72882018-05-13 17:44:27 -0300708 if (tc_skip_sw(flags) || flags & TCA_CLS_FLAGS_VERBOSE)
Jakub Kicinski34832e12018-01-24 12:54:14 -0800709 cls_common->extack = extack;
710}
711
Yotam Gigib87f7932016-07-21 12:03:12 +0200712enum tc_matchall_command {
713 TC_CLSMATCHALL_REPLACE,
714 TC_CLSMATCHALL_DESTROY,
Pieter Jansen van Vuurenb7fe4ab2019-05-04 04:46:23 -0700715 TC_CLSMATCHALL_STATS,
Yotam Gigib87f7932016-07-21 12:03:12 +0200716};
717
718struct tc_cls_matchall_offload {
Pablo Neira Ayusof9e30082019-07-09 22:55:49 +0200719 struct flow_cls_common_offload common;
Yotam Gigib87f7932016-07-21 12:03:12 +0200720 enum tc_matchall_command command;
Pieter Jansen van Vuurenf00cbf192019-05-04 04:46:17 -0700721 struct flow_rule *rule;
Pieter Jansen van Vuurenb7fe4ab2019-05-04 04:46:23 -0700722 struct flow_stats stats;
Yotam Gigib87f7932016-07-21 12:03:12 +0200723 unsigned long cookie;
724};
725
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100726enum tc_clsbpf_command {
Jakub Kicinski102740b2017-12-19 13:32:13 -0800727 TC_CLSBPF_OFFLOAD,
Jakub Kicinski68d64062016-09-21 11:44:02 +0100728 TC_CLSBPF_STATS,
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100729};
730
731struct tc_cls_bpf_offload {
Pablo Neira Ayusof9e30082019-07-09 22:55:49 +0200732 struct flow_cls_common_offload common;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100733 enum tc_clsbpf_command command;
734 struct tcf_exts *exts;
735 struct bpf_prog *prog;
Jakub Kicinski102740b2017-12-19 13:32:13 -0800736 struct bpf_prog *oldprog;
Jakub Kicinski332ae8e2016-09-21 11:43:53 +0100737 const char *name;
738 bool exts_integrated;
739};
740
Amritha Nambiar4e8b86c2017-09-07 04:00:06 -0700741struct tc_mqprio_qopt_offload {
742 /* struct tc_mqprio_qopt must always be the first element */
743 struct tc_mqprio_qopt qopt;
744 u16 mode;
745 u16 shaper;
746 u32 flags;
747 u64 min_rate[TC_QOPT_MAX_QUEUE];
748 u64 max_rate[TC_QOPT_MAX_QUEUE];
749};
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500750
751/* This structure holds cookie structure that is passed from user
752 * to the kernel for actions and classifiers
753 */
754struct tc_cookie {
755 u8 *data;
756 u32 len;
Vlad Busloveec94fd2018-07-05 17:24:23 +0300757 struct rcu_head rcu;
Jamal Hadi Salim1045ba72017-01-24 07:02:41 -0500758};
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100759
Nogah Frankelf34b4aa2018-01-10 14:59:58 +0100760struct tc_qopt_offload_stats {
761 struct gnet_stats_basic_packed *bstats;
762 struct gnet_stats_queue *qstats;
763};
764
Jakub Kicinskif971b132018-05-25 21:53:35 -0700765enum tc_mq_command {
766 TC_MQ_CREATE,
767 TC_MQ_DESTROY,
Jakub Kicinski47c669a42018-05-25 21:53:37 -0700768 TC_MQ_STATS,
Jakub Kicinskid577a3d2018-11-12 14:58:14 -0800769 TC_MQ_GRAFT,
770};
771
772struct tc_mq_opt_offload_graft_params {
773 unsigned long queue;
774 u32 child_handle;
Jakub Kicinskif971b132018-05-25 21:53:35 -0700775};
776
777struct tc_mq_qopt_offload {
778 enum tc_mq_command command;
779 u32 handle;
Jakub Kicinskid577a3d2018-11-12 14:58:14 -0800780 union {
781 struct tc_qopt_offload_stats stats;
782 struct tc_mq_opt_offload_graft_params graft_params;
783 };
Jakub Kicinskif971b132018-05-25 21:53:35 -0700784};
785
Maxim Mikityanskiyd03b1952021-01-19 14:08:13 +0200786enum tc_htb_command {
787 /* Root */
788 TC_HTB_CREATE, /* Initialize HTB offload. */
789 TC_HTB_DESTROY, /* Destroy HTB offload. */
790
791 /* Classes */
792 /* Allocate qid and create leaf. */
793 TC_HTB_LEAF_ALLOC_QUEUE,
794 /* Convert leaf to inner, preserve and return qid, create new leaf. */
795 TC_HTB_LEAF_TO_INNER,
796 /* Delete leaf, while siblings remain. */
797 TC_HTB_LEAF_DEL,
798 /* Delete leaf, convert parent to leaf, preserving qid. */
799 TC_HTB_LEAF_DEL_LAST,
800 /* TC_HTB_LEAF_DEL_LAST, but delete driver data on hardware errors. */
801 TC_HTB_LEAF_DEL_LAST_FORCE,
802 /* Modify parameters of a node. */
803 TC_HTB_NODE_MODIFY,
804
805 /* Class qdisc */
806 TC_HTB_LEAF_QUERY_QUEUE, /* Query qid by classid. */
807};
808
809struct tc_htb_qopt_offload {
810 struct netlink_ext_ack *extack;
811 enum tc_htb_command command;
812 u16 classid;
813 u32 parent_classid;
814 u16 qid;
815 u16 moved_qid;
816 u64 rate;
817 u64 ceil;
818};
819
820#define TC_HTB_CLASSID_ROOT U32_MAX
821
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100822enum tc_red_command {
823 TC_RED_REPLACE,
824 TC_RED_DESTROY,
825 TC_RED_STATS,
826 TC_RED_XSTATS,
Jakub Kicinskibf2a7522018-11-12 14:58:13 -0800827 TC_RED_GRAFT,
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100828};
829
830struct tc_red_qopt_offload_params {
831 u32 min;
832 u32 max;
833 u32 probability;
Jakub Kicinskic0b74902018-11-12 14:58:16 -0800834 u32 limit;
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100835 bool is_ecn;
Jakub Kicinski190852a2018-11-08 19:50:38 -0800836 bool is_harddrop;
Petr Machata0a7fad22020-03-13 01:10:57 +0200837 bool is_nodrop;
Jakub Kicinski416ef9b2018-01-14 20:01:26 -0800838 struct gnet_stats_queue *qstats;
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100839};
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100840
841struct tc_red_qopt_offload {
842 enum tc_red_command command;
843 u32 handle;
844 u32 parent;
845 union {
846 struct tc_red_qopt_offload_params set;
Nogah Frankelf34b4aa2018-01-10 14:59:58 +0100847 struct tc_qopt_offload_stats stats;
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100848 struct red_stats *xstats;
Jakub Kicinskibf2a7522018-11-12 14:58:13 -0800849 u32 child_handle;
Nogah Frankel602f3ba2017-11-06 07:23:41 +0100850 };
851};
852
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800853enum tc_gred_command {
854 TC_GRED_REPLACE,
855 TC_GRED_DESTROY,
Jakub Kicinskie49efd52018-11-19 15:21:43 -0800856 TC_GRED_STATS,
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800857};
858
859struct tc_gred_vq_qopt_offload_params {
860 bool present;
861 u32 limit;
862 u32 prio;
863 u32 min;
864 u32 max;
865 bool is_ecn;
866 bool is_harddrop;
867 u32 probability;
868 /* Only need backlog, see struct tc_prio_qopt_offload_params */
869 u32 *backlog;
870};
871
872struct tc_gred_qopt_offload_params {
873 bool grio_on;
874 bool wred_on;
875 unsigned int dp_cnt;
876 unsigned int dp_def;
877 struct gnet_stats_queue *qstats;
878 struct tc_gred_vq_qopt_offload_params tab[MAX_DPs];
879};
880
Jakub Kicinskie49efd52018-11-19 15:21:43 -0800881struct tc_gred_qopt_offload_stats {
882 struct gnet_stats_basic_packed bstats[MAX_DPs];
883 struct gnet_stats_queue qstats[MAX_DPs];
884 struct red_stats *xstats[MAX_DPs];
885};
886
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800887struct tc_gred_qopt_offload {
888 enum tc_gred_command command;
889 u32 handle;
890 u32 parent;
891 union {
892 struct tc_gred_qopt_offload_params set;
Jakub Kicinskie49efd52018-11-19 15:21:43 -0800893 struct tc_gred_qopt_offload_stats stats;
Jakub Kicinski890d8d22018-11-19 15:21:42 -0800894 };
895};
896
Nogah Frankel7fdb61b2018-01-14 12:33:15 +0100897enum tc_prio_command {
898 TC_PRIO_REPLACE,
899 TC_PRIO_DESTROY,
900 TC_PRIO_STATS,
Nogah Frankelb9c7a7a2018-02-28 10:45:06 +0100901 TC_PRIO_GRAFT,
Nogah Frankel7fdb61b2018-01-14 12:33:15 +0100902};
903
904struct tc_prio_qopt_offload_params {
905 int bands;
906 u8 priomap[TC_PRIO_MAX + 1];
Petr Machata9586a992019-12-18 14:55:08 +0000907 /* At the point of un-offloading the Qdisc, the reported backlog and
908 * qlen need to be reduced by the portion that is in HW.
Nogah Frankel7fdb61b2018-01-14 12:33:15 +0100909 */
910 struct gnet_stats_queue *qstats;
911};
912
Nogah Frankelb9c7a7a2018-02-28 10:45:06 +0100913struct tc_prio_qopt_offload_graft_params {
914 u8 band;
915 u32 child_handle;
916};
917
Nogah Frankel7fdb61b2018-01-14 12:33:15 +0100918struct tc_prio_qopt_offload {
919 enum tc_prio_command command;
920 u32 handle;
921 u32 parent;
922 union {
923 struct tc_prio_qopt_offload_params replace_params;
924 struct tc_qopt_offload_stats stats;
Nogah Frankelb9c7a7a2018-02-28 10:45:06 +0100925 struct tc_prio_qopt_offload_graft_params graft_params;
Nogah Frankel7fdb61b2018-01-14 12:33:15 +0100926 };
927};
Nogah Frankelb9c7a7a2018-02-28 10:45:06 +0100928
Jakub Kicinski98b0e5f2018-11-12 14:58:10 -0800929enum tc_root_command {
930 TC_ROOT_GRAFT,
931};
932
933struct tc_root_qopt_offload {
934 enum tc_root_command command;
935 u32 handle;
936 bool ingress;
937};
938
Petr Machatad35eb522019-12-18 14:55:15 +0000939enum tc_ets_command {
940 TC_ETS_REPLACE,
941 TC_ETS_DESTROY,
942 TC_ETS_STATS,
943 TC_ETS_GRAFT,
944};
945
946struct tc_ets_qopt_offload_replace_params {
947 unsigned int bands;
948 u8 priomap[TC_PRIO_MAX + 1];
949 unsigned int quanta[TCQ_ETS_MAX_BANDS]; /* 0 for strict bands. */
950 unsigned int weights[TCQ_ETS_MAX_BANDS];
951 struct gnet_stats_queue *qstats;
952};
953
954struct tc_ets_qopt_offload_graft_params {
955 u8 band;
956 u32 child_handle;
957};
958
959struct tc_ets_qopt_offload {
960 enum tc_ets_command command;
961 u32 handle;
962 u32 parent;
963 union {
964 struct tc_ets_qopt_offload_replace_params replace_params;
965 struct tc_qopt_offload_stats stats;
966 struct tc_ets_qopt_offload_graft_params graft_params;
967 };
968};
969
Petr Machataef6aadc2020-01-24 15:23:06 +0200970enum tc_tbf_command {
971 TC_TBF_REPLACE,
972 TC_TBF_DESTROY,
973 TC_TBF_STATS,
974};
975
976struct tc_tbf_qopt_offload_replace_params {
977 struct psched_ratecfg rate;
978 u32 max_size;
979 struct gnet_stats_queue *qstats;
980};
981
982struct tc_tbf_qopt_offload {
983 enum tc_tbf_command command;
984 u32 handle;
985 u32 parent;
986 union {
987 struct tc_tbf_qopt_offload_replace_params replace_params;
988 struct tc_qopt_offload_stats stats;
989 };
990};
991
Petr Machataaaca9402020-03-05 09:16:40 +0200992enum tc_fifo_command {
993 TC_FIFO_REPLACE,
994 TC_FIFO_DESTROY,
995 TC_FIFO_STATS,
996};
997
998struct tc_fifo_qopt_offload {
999 enum tc_fifo_command command;
1000 u32 handle;
1001 u32 parent;
1002 union {
1003 struct tc_qopt_offload_stats stats;
1004 };
1005};
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007#endif