1 #ifndef __NET_PKT_CLS_H
2 #define __NET_PKT_CLS_H
4 #include <linux/pkt_cls.h>
5 #include <net/sch_generic.h>
6 #include <net/act_api.h>
8 /* Basic packet classifier frontend definitions. */
14 int (*fn
)(struct tcf_proto
*, unsigned long node
, struct tcf_walker
*);
17 int register_tcf_proto_ops(struct tcf_proto_ops
*ops
);
18 int unregister_tcf_proto_ops(struct tcf_proto_ops
*ops
);
21 struct tcf_chain
*tcf_chain_get(struct tcf_block
*block
, u32 chain_index
,
23 void tcf_chain_put(struct tcf_chain
*chain
);
24 int tcf_block_get(struct tcf_block
**p_block
,
25 struct tcf_proto __rcu
**p_filter_chain
);
26 void tcf_block_put(struct tcf_block
*block
);
27 int tcf_classify(struct sk_buff
*skb
, const struct tcf_proto
*tp
,
28 struct tcf_result
*res
, bool compat_mode
);
32 int tcf_block_get(struct tcf_block
**p_block
,
33 struct tcf_proto __rcu
**p_filter_chain
)
38 static inline void tcf_block_put(struct tcf_block
*block
)
42 static inline int tcf_classify(struct sk_buff
*skb
, const struct tcf_proto
*tp
,
43 struct tcf_result
*res
, bool compat_mode
)
49 static inline unsigned long
50 __cls_set_class(unsigned long *clp
, unsigned long cl
)
55 static inline unsigned long
56 cls_set_class(struct tcf_proto
*tp
, unsigned long *clp
,
62 old_cl
= __cls_set_class(clp
, cl
);
69 tcf_bind_filter(struct tcf_proto
*tp
, struct tcf_result
*r
, unsigned long base
)
73 cl
= tp
->q
->ops
->cl_ops
->bind_tcf(tp
->q
, base
, r
->classid
);
74 cl
= cls_set_class(tp
, &r
->class, cl
);
76 tp
->q
->ops
->cl_ops
->unbind_tcf(tp
->q
, cl
);
80 tcf_unbind_filter(struct tcf_proto
*tp
, struct tcf_result
*r
)
84 if ((cl
= __cls_set_class(&r
->class, 0)) != 0)
85 tp
->q
->ops
->cl_ops
->unbind_tcf(tp
->q
, cl
);
89 #ifdef CONFIG_NET_CLS_ACT
90 __u32 type
; /* for backward compat(TCA_OLD_COMPAT) */
92 struct tc_action
**actions
;
94 /* Map to export classifier specific extension TLV types to the
95 * generic extensions API. Unsupported extensions must be set to 0.
101 static inline int tcf_exts_init(struct tcf_exts
*exts
, int action
, int police
)
103 #ifdef CONFIG_NET_CLS_ACT
105 exts
->nr_actions
= 0;
106 exts
->actions
= kcalloc(TCA_ACT_MAX_PRIO
, sizeof(struct tc_action
*),
111 exts
->action
= action
;
112 exts
->police
= police
;
117 * tcf_exts_is_predicative - check if a predicative extension is present
118 * @exts: tc filter extensions handle
120 * Returns 1 if a predicative extension is present, i.e. an extension which
121 * might cause further actions and thus overrule the regular tcf_result.
124 tcf_exts_is_predicative(struct tcf_exts
*exts
)
126 #ifdef CONFIG_NET_CLS_ACT
127 return exts
->nr_actions
;
134 * tcf_exts_is_available - check if at least one extension is present
135 * @exts: tc filter extensions handle
137 * Returns 1 if at least one extension is present.
140 tcf_exts_is_available(struct tcf_exts
*exts
)
142 /* All non-predicative extensions must be added here. */
143 return tcf_exts_is_predicative(exts
);
146 static inline void tcf_exts_to_list(const struct tcf_exts
*exts
,
147 struct list_head
*actions
)
149 #ifdef CONFIG_NET_CLS_ACT
152 for (i
= 0; i
< exts
->nr_actions
; i
++) {
153 struct tc_action
*a
= exts
->actions
[i
];
155 list_add_tail(&a
->list
, actions
);
161 tcf_exts_stats_update(const struct tcf_exts
*exts
,
162 u64 bytes
, u64 packets
, u64 lastuse
)
164 #ifdef CONFIG_NET_CLS_ACT
169 for (i
= 0; i
< exts
->nr_actions
; i
++) {
170 struct tc_action
*a
= exts
->actions
[i
];
172 tcf_action_stats_update(a
, bytes
, packets
, lastuse
);
180 * tcf_exts_exec - execute tc filter extensions
181 * @skb: socket buffer
182 * @exts: tc filter extensions handle
183 * @res: desired result
185 * Executes all configured extensions. Returns 0 on a normal execution,
186 * a negative number if the filter must be considered unmatched or
187 * a positive action code (TC_ACT_*) which must be returned to the
191 tcf_exts_exec(struct sk_buff
*skb
, struct tcf_exts
*exts
,
192 struct tcf_result
*res
)
194 #ifdef CONFIG_NET_CLS_ACT
195 if (exts
->nr_actions
)
196 return tcf_action_exec(skb
, exts
->actions
, exts
->nr_actions
,
202 #ifdef CONFIG_NET_CLS_ACT
204 #define tc_no_actions(_exts) ((_exts)->nr_actions == 0)
205 #define tc_single_action(_exts) ((_exts)->nr_actions == 1)
207 #else /* CONFIG_NET_CLS_ACT */
209 #define tc_no_actions(_exts) true
210 #define tc_single_action(_exts) false
212 #endif /* CONFIG_NET_CLS_ACT */
214 int tcf_exts_validate(struct net
*net
, struct tcf_proto
*tp
,
215 struct nlattr
**tb
, struct nlattr
*rate_tlv
,
216 struct tcf_exts
*exts
, bool ovr
);
217 void tcf_exts_destroy(struct tcf_exts
*exts
);
218 void tcf_exts_change(struct tcf_proto
*tp
, struct tcf_exts
*dst
,
219 struct tcf_exts
*src
);
220 int tcf_exts_dump(struct sk_buff
*skb
, struct tcf_exts
*exts
);
221 int tcf_exts_dump_stats(struct sk_buff
*skb
, struct tcf_exts
*exts
);
222 int tcf_exts_get_dev(struct net_device
*dev
, struct tcf_exts
*exts
,
223 struct net_device
**hw_dev
);
226 * struct tcf_pkt_info - packet information
228 struct tcf_pkt_info
{
233 #ifdef CONFIG_NET_EMATCH
235 struct tcf_ematch_ops
;
238 * struct tcf_ematch - extended match (ematch)
240 * @matchid: identifier to allow userspace to reidentify a match
241 * @flags: flags specifying attributes and the relation to other matches
242 * @ops: the operations lookup table of the corresponding ematch module
243 * @datalen: length of the ematch specific configuration data
244 * @data: ematch specific data
247 struct tcf_ematch_ops
* ops
;
249 unsigned int datalen
;
255 static inline int tcf_em_is_container(struct tcf_ematch
*em
)
260 static inline int tcf_em_is_simple(struct tcf_ematch
*em
)
262 return em
->flags
& TCF_EM_SIMPLE
;
265 static inline int tcf_em_is_inverted(struct tcf_ematch
*em
)
267 return em
->flags
& TCF_EM_INVERT
;
270 static inline int tcf_em_last_match(struct tcf_ematch
*em
)
272 return (em
->flags
& TCF_EM_REL_MASK
) == TCF_EM_REL_END
;
275 static inline int tcf_em_early_end(struct tcf_ematch
*em
, int result
)
277 if (tcf_em_last_match(em
))
280 if (result
== 0 && em
->flags
& TCF_EM_REL_AND
)
283 if (result
!= 0 && em
->flags
& TCF_EM_REL_OR
)
290 * struct tcf_ematch_tree - ematch tree handle
292 * @hdr: ematch tree header supplied by userspace
293 * @matches: array of ematches
295 struct tcf_ematch_tree
{
296 struct tcf_ematch_tree_hdr hdr
;
297 struct tcf_ematch
* matches
;
302 * struct tcf_ematch_ops - ematch module operations
304 * @kind: identifier (kind) of this ematch module
305 * @datalen: length of expected configuration data (optional)
306 * @change: called during validation (optional)
307 * @match: called during ematch tree evaluation, must return 1/0
308 * @destroy: called during destroyage (optional)
309 * @dump: called during dumping process (optional)
310 * @owner: owner, must be set to THIS_MODULE
311 * @link: link to previous/next ematch module (internal use)
313 struct tcf_ematch_ops
{
316 int (*change
)(struct net
*net
, void *,
317 int, struct tcf_ematch
*);
318 int (*match
)(struct sk_buff
*, struct tcf_ematch
*,
319 struct tcf_pkt_info
*);
320 void (*destroy
)(struct tcf_ematch
*);
321 int (*dump
)(struct sk_buff
*, struct tcf_ematch
*);
322 struct module
*owner
;
323 struct list_head link
;
326 int tcf_em_register(struct tcf_ematch_ops
*);
327 void tcf_em_unregister(struct tcf_ematch_ops
*);
328 int tcf_em_tree_validate(struct tcf_proto
*, struct nlattr
*,
329 struct tcf_ematch_tree
*);
330 void tcf_em_tree_destroy(struct tcf_ematch_tree
*);
331 int tcf_em_tree_dump(struct sk_buff
*, struct tcf_ematch_tree
*, int);
332 int __tcf_em_tree_match(struct sk_buff
*, struct tcf_ematch_tree
*,
333 struct tcf_pkt_info
*);
336 * tcf_em_tree_change - replace ematch tree of a running classifier
338 * @tp: classifier kind handle
339 * @dst: destination ematch tree variable
340 * @src: source ematch tree (temporary tree from tcf_em_tree_validate)
342 * This functions replaces the ematch tree in @dst with the ematch
343 * tree in @src. The classifier in charge of the ematch tree may be
346 static inline void tcf_em_tree_change(struct tcf_proto
*tp
,
347 struct tcf_ematch_tree
*dst
,
348 struct tcf_ematch_tree
*src
)
351 memcpy(dst
, src
, sizeof(*dst
));
356 * tcf_em_tree_match - evaulate an ematch tree
358 * @skb: socket buffer of the packet in question
359 * @tree: ematch tree to be used for evaluation
360 * @info: packet information examined by classifier
362 * This function matches @skb against the ematch tree in @tree by going
363 * through all ematches respecting their logic relations returning
364 * as soon as the result is obvious.
366 * Returns 1 if the ematch tree as-one matches, no ematches are configured
367 * or ematch is not enabled in the kernel, otherwise 0 is returned.
369 static inline int tcf_em_tree_match(struct sk_buff
*skb
,
370 struct tcf_ematch_tree
*tree
,
371 struct tcf_pkt_info
*info
)
373 if (tree
->hdr
.nmatches
)
374 return __tcf_em_tree_match(skb
, tree
, info
);
379 #define MODULE_ALIAS_TCF_EMATCH(kind) MODULE_ALIAS("ematch-kind-" __stringify(kind))
381 #else /* CONFIG_NET_EMATCH */
383 struct tcf_ematch_tree
{
386 #define tcf_em_tree_validate(tp, tb, t) ((void)(t), 0)
387 #define tcf_em_tree_destroy(t) do { (void)(t); } while(0)
388 #define tcf_em_tree_dump(skb, t, tlv) (0)
389 #define tcf_em_tree_change(tp, dst, src) do { } while(0)
390 #define tcf_em_tree_match(skb, t, info) ((void)(info), 1)
392 #endif /* CONFIG_NET_EMATCH */
394 static inline unsigned char * tcf_get_base_ptr(struct sk_buff
*skb
, int layer
)
399 case TCF_LAYER_NETWORK
:
400 return skb_network_header(skb
);
401 case TCF_LAYER_TRANSPORT
:
402 return skb_transport_header(skb
);
408 static inline int tcf_valid_offset(const struct sk_buff
*skb
,
409 const unsigned char *ptr
, const int len
)
411 return likely((ptr
+ len
) <= skb_tail_pointer(skb
) &&
413 (ptr
<= (ptr
+ len
)));
416 #ifdef CONFIG_NET_CLS_IND
417 #include <net/net_namespace.h>
420 tcf_change_indev(struct net
*net
, struct nlattr
*indev_tlv
)
422 char indev
[IFNAMSIZ
];
423 struct net_device
*dev
;
425 if (nla_strlcpy(indev
, indev_tlv
, IFNAMSIZ
) >= IFNAMSIZ
)
427 dev
= __dev_get_by_name(net
, indev
);
434 tcf_match_indev(struct sk_buff
*skb
, int ifindex
)
440 return ifindex
== skb
->skb_iif
;
442 #endif /* CONFIG_NET_CLS_IND */
444 struct tc_cls_u32_knode
{
445 struct tcf_exts
*exts
;
446 struct tc_u32_sel
*sel
;
454 struct tc_cls_u32_hnode
{
457 unsigned int divisor
;
460 enum tc_clsu32_command
{
462 TC_CLSU32_REPLACE_KNODE
,
463 TC_CLSU32_DELETE_KNODE
,
465 TC_CLSU32_REPLACE_HNODE
,
466 TC_CLSU32_DELETE_HNODE
,
469 struct tc_cls_u32_offload
{
471 enum tc_clsu32_command command
;
473 struct tc_cls_u32_knode knode
;
474 struct tc_cls_u32_hnode hnode
;
478 static inline bool tc_can_offload(const struct net_device
*dev
,
479 const struct tcf_proto
*tp
)
481 const struct Qdisc
*sch
= tp
->q
;
482 const struct Qdisc_class_ops
*cops
= sch
->ops
->cl_ops
;
484 if (!(dev
->features
& NETIF_F_HW_TC
))
486 if (!dev
->netdev_ops
->ndo_setup_tc
)
488 if (cops
&& cops
->tcf_cl_offload
)
489 return cops
->tcf_cl_offload(tp
->classid
);
494 static inline bool tc_skip_hw(u32 flags
)
496 return (flags
& TCA_CLS_FLAGS_SKIP_HW
) ? true : false;
499 static inline bool tc_should_offload(const struct net_device
*dev
,
500 const struct tcf_proto
*tp
, u32 flags
)
502 if (tc_skip_hw(flags
))
504 return tc_can_offload(dev
, tp
);
507 static inline bool tc_skip_sw(u32 flags
)
509 return (flags
& TCA_CLS_FLAGS_SKIP_SW
) ? true : false;
512 /* SKIP_HW and SKIP_SW are mutually exclusive flags. */
513 static inline bool tc_flags_valid(u32 flags
)
515 if (flags
& ~(TCA_CLS_FLAGS_SKIP_HW
| TCA_CLS_FLAGS_SKIP_SW
))
518 if (!(flags
^ (TCA_CLS_FLAGS_SKIP_HW
| TCA_CLS_FLAGS_SKIP_SW
)))
524 static inline bool tc_in_hw(u32 flags
)
526 return (flags
& TCA_CLS_FLAGS_IN_HW
) ? true : false;
530 TC_CLSFLOWER_REPLACE
,
531 TC_CLSFLOWER_DESTROY
,
535 struct tc_cls_flower_offload
{
536 enum tc_fl_command command
;
538 unsigned long cookie
;
539 struct flow_dissector
*dissector
;
540 struct fl_flow_key
*mask
;
541 struct fl_flow_key
*key
;
542 struct tcf_exts
*exts
;
545 enum tc_matchall_command
{
546 TC_CLSMATCHALL_REPLACE
,
547 TC_CLSMATCHALL_DESTROY
,
550 struct tc_cls_matchall_offload
{
551 enum tc_matchall_command command
;
552 struct tcf_exts
*exts
;
553 unsigned long cookie
;
556 enum tc_clsbpf_command
{
563 struct tc_cls_bpf_offload
{
564 enum tc_clsbpf_command command
;
565 struct tcf_exts
*exts
;
566 struct bpf_prog
*prog
;
568 bool exts_integrated
;
573 /* This structure holds cookie structure that is passed from user
574 * to the kernel for actions and classifiers