Merge branch 'hns3-ethtool-ksettings'
[linux-block.git] / include / net / pkt_cls.h
CommitLineData
1da177e4
LT
1#ifndef __NET_PKT_CLS_H
2#define __NET_PKT_CLS_H
3
4#include <linux/pkt_cls.h>
7aa0045d 5#include <linux/workqueue.h>
1da177e4
LT
6#include <net/sch_generic.h>
7#include <net/act_api.h>
8
9/* Basic packet classifier frontend definitions. */
10
fd2c3ef7 11struct tcf_walker {
1da177e4
LT
12 int stop;
13 int skip;
14 int count;
8113c095 15 int (*fn)(struct tcf_proto *, void *node, struct tcf_walker *);
1da177e4
LT
16};
17
5c15257f
JP
18int register_tcf_proto_ops(struct tcf_proto_ops *ops);
19int unregister_tcf_proto_ops(struct tcf_proto_ops *ops);
1da177e4 20
8c4083b3
JP
21enum tcf_block_binder_type {
22 TCF_BLOCK_BINDER_TYPE_UNSPEC,
6e40cf2d
JP
23 TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS,
24 TCF_BLOCK_BINDER_TYPE_CLSACT_EGRESS,
8c4083b3
JP
25};
26
27struct tcf_block_ext_info {
28 enum tcf_block_binder_type binder_type;
29};
30
acb67442 31struct tcf_block_cb;
7aa0045d 32bool tcf_queue_work(struct work_struct *work);
acb67442 33
8ae70032 34#ifdef CONFIG_NET_CLS
367a8ce8
WC
35struct tcf_chain *tcf_chain_get(struct tcf_block *block, u32 chain_index,
36 bool create);
5bc17018 37void tcf_chain_put(struct tcf_chain *chain);
6529eaba 38int tcf_block_get(struct tcf_block **p_block,
69d78ef2 39 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q);
8c4083b3
JP
40int tcf_block_get_ext(struct tcf_block **p_block,
41 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
42 struct tcf_block_ext_info *ei);
6529eaba 43void tcf_block_put(struct tcf_block *block);
8c4083b3
JP
44void tcf_block_put_ext(struct tcf_block *block,
45 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
46 struct tcf_block_ext_info *ei);
44186460
JP
47
48static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
49{
50 return block->q;
51}
52
53static inline struct net_device *tcf_block_dev(struct tcf_block *block)
54{
55 return tcf_block_q(block)->dev_queue->dev;
56}
57
acb67442
JP
58void *tcf_block_cb_priv(struct tcf_block_cb *block_cb);
59struct tcf_block_cb *tcf_block_cb_lookup(struct tcf_block *block,
60 tc_setup_cb_t *cb, void *cb_ident);
61void tcf_block_cb_incref(struct tcf_block_cb *block_cb);
62unsigned int tcf_block_cb_decref(struct tcf_block_cb *block_cb);
63struct tcf_block_cb *__tcf_block_cb_register(struct tcf_block *block,
64 tc_setup_cb_t *cb, void *cb_ident,
65 void *cb_priv);
66int tcf_block_cb_register(struct tcf_block *block,
67 tc_setup_cb_t *cb, void *cb_ident,
68 void *cb_priv);
69void __tcf_block_cb_unregister(struct tcf_block_cb *block_cb);
70void tcf_block_cb_unregister(struct tcf_block *block,
71 tc_setup_cb_t *cb, void *cb_ident);
72
87d83093
JP
73int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
74 struct tcf_result *res, bool compat_mode);
75
8ae70032 76#else
6529eaba
JP
77static inline
78int tcf_block_get(struct tcf_block **p_block,
69d78ef2 79 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q)
6529eaba
JP
80{
81 return 0;
82}
83
8c4083b3
JP
84static inline
85int tcf_block_get_ext(struct tcf_block **p_block,
86 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
87 struct tcf_block_ext_info *ei)
88{
89 return 0;
90}
91
6529eaba 92static inline void tcf_block_put(struct tcf_block *block)
8ae70032
JP
93{
94}
87d83093 95
8c4083b3
JP
96static inline
97void tcf_block_put_ext(struct tcf_block *block,
98 struct tcf_proto __rcu **p_filter_chain, struct Qdisc *q,
99 struct tcf_block_ext_info *ei)
100{
101}
102
44186460
JP
103static inline struct Qdisc *tcf_block_q(struct tcf_block *block)
104{
105 return NULL;
106}
107
108static inline struct net_device *tcf_block_dev(struct tcf_block *block)
109{
110 return NULL;
111}
112
acb67442
JP
113static inline
114int tc_setup_cb_block_register(struct tcf_block *block, tc_setup_cb_t *cb,
115 void *cb_priv)
116{
117 return 0;
118}
119
120static inline
121void tc_setup_cb_block_unregister(struct tcf_block *block, tc_setup_cb_t *cb,
122 void *cb_priv)
123{
124}
125
126static inline
127void *tcf_block_cb_priv(struct tcf_block_cb *block_cb)
128{
129 return NULL;
130}
131
132static inline
133struct tcf_block_cb *tcf_block_cb_lookup(struct tcf_block *block,
134 tc_setup_cb_t *cb, void *cb_ident)
135{
136 return NULL;
137}
138
139static inline
140void tcf_block_cb_incref(struct tcf_block_cb *block_cb)
141{
142}
143
144static inline
145unsigned int tcf_block_cb_decref(struct tcf_block_cb *block_cb)
146{
147 return 0;
148}
149
150static inline
151struct tcf_block_cb *__tcf_block_cb_register(struct tcf_block *block,
152 tc_setup_cb_t *cb, void *cb_ident,
153 void *cb_priv)
154{
155 return NULL;
156}
157
158static inline
159int tcf_block_cb_register(struct tcf_block *block,
160 tc_setup_cb_t *cb, void *cb_ident,
161 void *cb_priv)
162{
163 return 0;
164}
165
166static inline
167void __tcf_block_cb_unregister(struct tcf_block_cb *block_cb)
168{
169}
170
171static inline
172void tcf_block_cb_unregister(struct tcf_block *block,
173 tc_setup_cb_t *cb, void *cb_ident)
174{
175}
176
87d83093
JP
177static inline int tcf_classify(struct sk_buff *skb, const struct tcf_proto *tp,
178 struct tcf_result *res, bool compat_mode)
179{
180 return TC_ACT_UNSPEC;
181}
8ae70032 182#endif
cf1facda 183
1da177e4
LT
184static inline unsigned long
185__cls_set_class(unsigned long *clp, unsigned long cl)
186{
a0efb80c 187 return xchg(clp, cl);
1da177e4
LT
188}
189
190static inline unsigned long
34e3759c 191cls_set_class(struct Qdisc *q, unsigned long *clp, unsigned long cl)
1da177e4
LT
192{
193 unsigned long old_cl;
34e3759c
JP
194
195 sch_tree_lock(q);
1da177e4 196 old_cl = __cls_set_class(clp, cl);
34e3759c 197 sch_tree_unlock(q);
1da177e4
LT
198 return old_cl;
199}
200
201static inline void
202tcf_bind_filter(struct tcf_proto *tp, struct tcf_result *r, unsigned long base)
203{
34e3759c 204 struct Qdisc *q = tp->chain->block->q;
1da177e4
LT
205 unsigned long cl;
206
34e3759c
JP
207 /* Check q as it is not set for shared blocks. In that case,
208 * setting class is not supported.
209 */
210 if (!q)
211 return;
212 cl = q->ops->cl_ops->bind_tcf(q, base, r->classid);
213 cl = cls_set_class(q, &r->class, cl);
1da177e4 214 if (cl)
34e3759c 215 q->ops->cl_ops->unbind_tcf(q, cl);
1da177e4
LT
216}
217
218static inline void
219tcf_unbind_filter(struct tcf_proto *tp, struct tcf_result *r)
220{
34e3759c 221 struct Qdisc *q = tp->chain->block->q;
1da177e4
LT
222 unsigned long cl;
223
34e3759c
JP
224 if (!q)
225 return;
1da177e4 226 if ((cl = __cls_set_class(&r->class, 0)) != 0)
34e3759c 227 q->ops->cl_ops->unbind_tcf(q, cl);
1da177e4
LT
228}
229
fd2c3ef7 230struct tcf_exts {
1da177e4 231#ifdef CONFIG_NET_CLS_ACT
33be6271 232 __u32 type; /* for backward compat(TCA_OLD_COMPAT) */
22dc13c8
WC
233 int nr_actions;
234 struct tc_action **actions;
1da177e4 235#endif
5da57f42
WC
236 /* Map to export classifier specific extension TLV types to the
237 * generic extensions API. Unsupported extensions must be set to 0.
238 */
1da177e4
LT
239 int action;
240 int police;
241};
242
b9a24bb7 243static inline int tcf_exts_init(struct tcf_exts *exts, int action, int police)
33be6271
WC
244{
245#ifdef CONFIG_NET_CLS_ACT
5da57f42 246 exts->type = 0;
22dc13c8
WC
247 exts->nr_actions = 0;
248 exts->actions = kcalloc(TCA_ACT_MAX_PRIO, sizeof(struct tc_action *),
249 GFP_KERNEL);
b9a24bb7
WC
250 if (!exts->actions)
251 return -ENOMEM;
33be6271 252#endif
5da57f42
WC
253 exts->action = action;
254 exts->police = police;
b9a24bb7 255 return 0;
33be6271
WC
256}
257
22dc13c8
WC
258static inline void tcf_exts_to_list(const struct tcf_exts *exts,
259 struct list_head *actions)
260{
261#ifdef CONFIG_NET_CLS_ACT
262 int i;
263
264 for (i = 0; i < exts->nr_actions; i++) {
265 struct tc_action *a = exts->actions[i];
266
fa5effe7 267 list_add_tail(&a->list, actions);
22dc13c8
WC
268 }
269#endif
270}
271
d897a638
JK
272static inline void
273tcf_exts_stats_update(const struct tcf_exts *exts,
274 u64 bytes, u64 packets, u64 lastuse)
275{
276#ifdef CONFIG_NET_CLS_ACT
277 int i;
278
279 preempt_disable();
280
281 for (i = 0; i < exts->nr_actions; i++) {
282 struct tc_action *a = exts->actions[i];
283
284 tcf_action_stats_update(a, bytes, packets, lastuse);
285 }
286
287 preempt_enable();
288#endif
289}
290
3bcc0cec
JP
291/**
292 * tcf_exts_has_actions - check if at least one action is present
293 * @exts: tc filter extensions handle
294 *
295 * Returns true if at least one action is present.
296 */
297static inline bool tcf_exts_has_actions(struct tcf_exts *exts)
298{
2734437e 299#ifdef CONFIG_NET_CLS_ACT
3bcc0cec
JP
300 return exts->nr_actions;
301#else
302 return false;
303#endif
304}
2734437e 305
3bcc0cec
JP
306/**
307 * tcf_exts_has_one_action - check if exactly one action is present
308 * @exts: tc filter extensions handle
309 *
310 * Returns true if exactly one action is present.
311 */
312static inline bool tcf_exts_has_one_action(struct tcf_exts *exts)
313{
314#ifdef CONFIG_NET_CLS_ACT
315 return exts->nr_actions == 1;
316#else
317 return false;
318#endif
319}
2734437e 320
af69afc5
JP
321/**
322 * tcf_exts_exec - execute tc filter extensions
323 * @skb: socket buffer
324 * @exts: tc filter extensions handle
325 * @res: desired result
326 *
af089e70 327 * Executes all configured extensions. Returns TC_ACT_OK on a normal execution,
af69afc5
JP
328 * a negative number if the filter must be considered unmatched or
329 * a positive action code (TC_ACT_*) which must be returned to the
330 * underlying layer.
331 */
332static inline int
333tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
334 struct tcf_result *res)
335{
336#ifdef CONFIG_NET_CLS_ACT
ec1a9cca 337 return tcf_action_exec(skb, exts->actions, exts->nr_actions, res);
af69afc5 338#endif
af089e70 339 return TC_ACT_OK;
af69afc5
JP
340}
341
5c15257f
JP
342int tcf_exts_validate(struct net *net, struct tcf_proto *tp,
343 struct nlattr **tb, struct nlattr *rate_tlv,
2f7ef2f8 344 struct tcf_exts *exts, bool ovr);
18d0264f 345void tcf_exts_destroy(struct tcf_exts *exts);
9b0d4446 346void tcf_exts_change(struct tcf_exts *dst, struct tcf_exts *src);
5da57f42
WC
347int tcf_exts_dump(struct sk_buff *skb, struct tcf_exts *exts);
348int tcf_exts_dump_stats(struct sk_buff *skb, struct tcf_exts *exts);
1da177e4
LT
349
350/**
351 * struct tcf_pkt_info - packet information
352 */
fd2c3ef7 353struct tcf_pkt_info {
1da177e4
LT
354 unsigned char * ptr;
355 int nexthdr;
356};
357
358#ifdef CONFIG_NET_EMATCH
359
360struct tcf_ematch_ops;
361
362/**
363 * struct tcf_ematch - extended match (ematch)
364 *
365 * @matchid: identifier to allow userspace to reidentify a match
366 * @flags: flags specifying attributes and the relation to other matches
367 * @ops: the operations lookup table of the corresponding ematch module
368 * @datalen: length of the ematch specific configuration data
369 * @data: ematch specific data
370 */
fd2c3ef7 371struct tcf_ematch {
1da177e4
LT
372 struct tcf_ematch_ops * ops;
373 unsigned long data;
374 unsigned int datalen;
375 u16 matchid;
376 u16 flags;
82a470f1 377 struct net *net;
1da177e4
LT
378};
379
380static inline int tcf_em_is_container(struct tcf_ematch *em)
381{
382 return !em->ops;
383}
384
385static inline int tcf_em_is_simple(struct tcf_ematch *em)
386{
387 return em->flags & TCF_EM_SIMPLE;
388}
389
390static inline int tcf_em_is_inverted(struct tcf_ematch *em)
391{
392 return em->flags & TCF_EM_INVERT;
393}
394
395static inline int tcf_em_last_match(struct tcf_ematch *em)
396{
397 return (em->flags & TCF_EM_REL_MASK) == TCF_EM_REL_END;
398}
399
400static inline int tcf_em_early_end(struct tcf_ematch *em, int result)
401{
402 if (tcf_em_last_match(em))
403 return 1;
404
405 if (result == 0 && em->flags & TCF_EM_REL_AND)
406 return 1;
407
408 if (result != 0 && em->flags & TCF_EM_REL_OR)
409 return 1;
410
411 return 0;
412}
413
414/**
415 * struct tcf_ematch_tree - ematch tree handle
416 *
417 * @hdr: ematch tree header supplied by userspace
418 * @matches: array of ematches
419 */
fd2c3ef7 420struct tcf_ematch_tree {
1da177e4
LT
421 struct tcf_ematch_tree_hdr hdr;
422 struct tcf_ematch * matches;
423
424};
425
426/**
427 * struct tcf_ematch_ops - ematch module operations
428 *
429 * @kind: identifier (kind) of this ematch module
430 * @datalen: length of expected configuration data (optional)
431 * @change: called during validation (optional)
432 * @match: called during ematch tree evaluation, must return 1/0
433 * @destroy: called during destroyage (optional)
434 * @dump: called during dumping process (optional)
435 * @owner: owner, must be set to THIS_MODULE
436 * @link: link to previous/next ematch module (internal use)
437 */
fd2c3ef7 438struct tcf_ematch_ops {
1da177e4
LT
439 int kind;
440 int datalen;
82a470f1 441 int (*change)(struct net *net, void *,
1da177e4
LT
442 int, struct tcf_ematch *);
443 int (*match)(struct sk_buff *, struct tcf_ematch *,
444 struct tcf_pkt_info *);
82a470f1 445 void (*destroy)(struct tcf_ematch *);
1da177e4
LT
446 int (*dump)(struct sk_buff *, struct tcf_ematch *);
447 struct module *owner;
448 struct list_head link;
449};
450
5c15257f
JP
451int tcf_em_register(struct tcf_ematch_ops *);
452void tcf_em_unregister(struct tcf_ematch_ops *);
453int tcf_em_tree_validate(struct tcf_proto *, struct nlattr *,
454 struct tcf_ematch_tree *);
82a470f1 455void tcf_em_tree_destroy(struct tcf_ematch_tree *);
5c15257f
JP
456int tcf_em_tree_dump(struct sk_buff *, struct tcf_ematch_tree *, int);
457int __tcf_em_tree_match(struct sk_buff *, struct tcf_ematch_tree *,
458 struct tcf_pkt_info *);
1da177e4 459
1da177e4
LT
460/**
461 * tcf_em_tree_match - evaulate an ematch tree
462 *
463 * @skb: socket buffer of the packet in question
464 * @tree: ematch tree to be used for evaluation
465 * @info: packet information examined by classifier
466 *
467 * This function matches @skb against the ematch tree in @tree by going
468 * through all ematches respecting their logic relations returning
469 * as soon as the result is obvious.
470 *
471 * Returns 1 if the ematch tree as-one matches, no ematches are configured
472 * or ematch is not enabled in the kernel, otherwise 0 is returned.
473 */
474static inline int tcf_em_tree_match(struct sk_buff *skb,
475 struct tcf_ematch_tree *tree,
476 struct tcf_pkt_info *info)
477{
478 if (tree->hdr.nmatches)
479 return __tcf_em_tree_match(skb, tree, info);
480 else
481 return 1;
482}
483
db3d99c0
PM
484#define MODULE_ALIAS_TCF_EMATCH(kind) MODULE_ALIAS("ematch-kind-" __stringify(kind))
485
1da177e4
LT
486#else /* CONFIG_NET_EMATCH */
487
fd2c3ef7 488struct tcf_ematch_tree {
1da177e4
LT
489};
490
491#define tcf_em_tree_validate(tp, tb, t) ((void)(t), 0)
82a470f1 492#define tcf_em_tree_destroy(t) do { (void)(t); } while(0)
1da177e4 493#define tcf_em_tree_dump(skb, t, tlv) (0)
1da177e4
LT
494#define tcf_em_tree_match(skb, t, info) ((void)(info), 1)
495
496#endif /* CONFIG_NET_EMATCH */
497
498static inline unsigned char * tcf_get_base_ptr(struct sk_buff *skb, int layer)
499{
500 switch (layer) {
501 case TCF_LAYER_LINK:
502 return skb->data;
503 case TCF_LAYER_NETWORK:
d56f90a7 504 return skb_network_header(skb);
1da177e4 505 case TCF_LAYER_TRANSPORT:
9c70220b 506 return skb_transport_header(skb);
1da177e4
LT
507 }
508
509 return NULL;
510}
511
eddc9ec5
ACM
512static inline int tcf_valid_offset(const struct sk_buff *skb,
513 const unsigned char *ptr, const int len)
1da177e4 514{
da521b2c
DM
515 return likely((ptr + len) <= skb_tail_pointer(skb) &&
516 ptr >= skb->head &&
517 (ptr <= (ptr + len)));
1da177e4
LT
518}
519
520#ifdef CONFIG_NET_CLS_IND
0eeb8ffc
DL
521#include <net/net_namespace.h>
522
1da177e4 523static inline int
2519a602 524tcf_change_indev(struct net *net, struct nlattr *indev_tlv)
1da177e4 525{
2519a602
WC
526 char indev[IFNAMSIZ];
527 struct net_device *dev;
528
add93b61 529 if (nla_strlcpy(indev, indev_tlv, IFNAMSIZ) >= IFNAMSIZ)
1da177e4 530 return -EINVAL;
2519a602
WC
531 dev = __dev_get_by_name(net, indev);
532 if (!dev)
533 return -ENODEV;
534 return dev->ifindex;
1da177e4
LT
535}
536
2519a602
WC
537static inline bool
538tcf_match_indev(struct sk_buff *skb, int ifindex)
1da177e4 539{
2519a602
WC
540 if (!ifindex)
541 return true;
542 if (!skb->skb_iif)
543 return false;
544 return ifindex == skb->skb_iif;
1da177e4
LT
545}
546#endif /* CONFIG_NET_CLS_IND */
547
208c0f4b
JP
548int tc_setup_cb_call(struct tcf_block *block, struct tcf_exts *exts,
549 enum tc_setup_type type, void *type_data, bool err_stop);
717503b9 550
8c4083b3
JP
551enum tc_block_command {
552 TC_BLOCK_BIND,
553 TC_BLOCK_UNBIND,
554};
555
556struct tc_block_offload {
557 enum tc_block_command command;
558 enum tcf_block_binder_type binder_type;
559 struct tcf_block *block;
560};
561
5fd9fc4e 562struct tc_cls_common_offload {
5fd9fc4e
JP
563 u32 chain_index;
564 __be16 protocol;
d7c1c8d2 565 u32 prio;
5fd9fc4e
JP
566};
567
568static inline void
569tc_cls_common_offload_init(struct tc_cls_common_offload *cls_common,
570 const struct tcf_proto *tp)
571{
5fd9fc4e
JP
572 cls_common->chain_index = tp->chain->index;
573 cls_common->protocol = tp->protocol;
d7c1c8d2 574 cls_common->prio = tp->prio;
5fd9fc4e
JP
575}
576
a1b7c5fd
JF
577struct tc_cls_u32_knode {
578 struct tcf_exts *exts;
e014860e 579 struct tc_u32_sel *sel;
a1b7c5fd
JF
580 u32 handle;
581 u32 val;
582 u32 mask;
583 u32 link_handle;
e014860e 584 u8 fshift;
a1b7c5fd
JF
585};
586
587struct tc_cls_u32_hnode {
588 u32 handle;
589 u32 prio;
590 unsigned int divisor;
591};
592
593enum tc_clsu32_command {
594 TC_CLSU32_NEW_KNODE,
595 TC_CLSU32_REPLACE_KNODE,
596 TC_CLSU32_DELETE_KNODE,
597 TC_CLSU32_NEW_HNODE,
598 TC_CLSU32_REPLACE_HNODE,
599 TC_CLSU32_DELETE_HNODE,
600};
601
602struct tc_cls_u32_offload {
5fd9fc4e 603 struct tc_cls_common_offload common;
a1b7c5fd
JF
604 /* knode values */
605 enum tc_clsu32_command command;
606 union {
607 struct tc_cls_u32_knode knode;
608 struct tc_cls_u32_hnode hnode;
609 };
610};
611
7b06e8ae 612static inline bool tc_can_offload(const struct net_device *dev)
6843e7a2 613{
70b5aee4 614 return dev->features & NETIF_F_HW_TC;
6843e7a2
JF
615}
616
55330f05
HHZ
617static inline bool tc_skip_hw(u32 flags)
618{
619 return (flags & TCA_CLS_FLAGS_SKIP_HW) ? true : false;
620}
621
d34e3e18
SS
622static inline bool tc_skip_sw(u32 flags)
623{
624 return (flags & TCA_CLS_FLAGS_SKIP_SW) ? true : false;
625}
626
627/* SKIP_HW and SKIP_SW are mutually exclusive flags. */
628static inline bool tc_flags_valid(u32 flags)
629{
630 if (flags & ~(TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW))
631 return false;
632
633 if (!(flags ^ (TCA_CLS_FLAGS_SKIP_HW | TCA_CLS_FLAGS_SKIP_SW)))
634 return false;
635
636 return true;
637}
638
e696028a
OG
639static inline bool tc_in_hw(u32 flags)
640{
641 return (flags & TCA_CLS_FLAGS_IN_HW) ? true : false;
642}
643
5b33f488
AV
644enum tc_fl_command {
645 TC_CLSFLOWER_REPLACE,
646 TC_CLSFLOWER_DESTROY,
10cbc684 647 TC_CLSFLOWER_STATS,
5b33f488
AV
648};
649
650struct tc_cls_flower_offload {
5fd9fc4e 651 struct tc_cls_common_offload common;
5b33f488 652 enum tc_fl_command command;
8208d21b 653 unsigned long cookie;
5b33f488
AV
654 struct flow_dissector *dissector;
655 struct fl_flow_key *mask;
656 struct fl_flow_key *key;
657 struct tcf_exts *exts;
384c181e 658 u32 classid;
5b33f488
AV
659};
660
b87f7936
YG
661enum tc_matchall_command {
662 TC_CLSMATCHALL_REPLACE,
663 TC_CLSMATCHALL_DESTROY,
664};
665
666struct tc_cls_matchall_offload {
5fd9fc4e 667 struct tc_cls_common_offload common;
b87f7936
YG
668 enum tc_matchall_command command;
669 struct tcf_exts *exts;
670 unsigned long cookie;
671};
672
332ae8e2
JK
673enum tc_clsbpf_command {
674 TC_CLSBPF_ADD,
675 TC_CLSBPF_REPLACE,
676 TC_CLSBPF_DESTROY,
68d64063 677 TC_CLSBPF_STATS,
332ae8e2
JK
678};
679
680struct tc_cls_bpf_offload {
5fd9fc4e 681 struct tc_cls_common_offload common;
332ae8e2
JK
682 enum tc_clsbpf_command command;
683 struct tcf_exts *exts;
684 struct bpf_prog *prog;
685 const char *name;
686 bool exts_integrated;
0d01d45f 687 u32 gen_flags;
332ae8e2
JK
688};
689
4e8b86c0
AN
690struct tc_mqprio_qopt_offload {
691 /* struct tc_mqprio_qopt must always be the first element */
692 struct tc_mqprio_qopt qopt;
693 u16 mode;
694 u16 shaper;
695 u32 flags;
696 u64 min_rate[TC_QOPT_MAX_QUEUE];
697 u64 max_rate[TC_QOPT_MAX_QUEUE];
698};
1045ba77
JHS
699
700/* This structure holds cookie structure that is passed from user
701 * to the kernel for actions and classifiers
702 */
703struct tc_cookie {
704 u8 *data;
705 u32 len;
706};
1da177e4 707#endif