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