2 * net/sched/cls_matchll.c Match-all classifier
4 * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/module.h>
16 #include <net/sch_generic.h>
17 #include <net/pkt_cls.h>
19 struct cls_mall_head
{
21 struct tcf_result res
;
25 struct work_struct work
;
30 static int mall_classify(struct sk_buff
*skb
, const struct tcf_proto
*tp
,
31 struct tcf_result
*res
)
33 struct cls_mall_head
*head
= rcu_dereference_bh(tp
->root
);
35 if (tc_skip_sw(head
->flags
))
39 return tcf_exts_exec(skb
, &head
->exts
, res
);
42 static int mall_init(struct tcf_proto
*tp
)
47 static void __mall_destroy(struct cls_mall_head
*head
)
49 tcf_exts_destroy(&head
->exts
);
50 tcf_exts_put_net(&head
->exts
);
54 static void mall_destroy_work(struct work_struct
*work
)
56 struct cls_mall_head
*head
= container_of(work
, struct cls_mall_head
,
63 static void mall_destroy_rcu(struct rcu_head
*rcu
)
65 struct cls_mall_head
*head
= container_of(rcu
, struct cls_mall_head
,
68 INIT_WORK(&head
->work
, mall_destroy_work
);
69 tcf_queue_work(&head
->work
);
72 static void mall_destroy_hw_filter(struct tcf_proto
*tp
,
73 struct cls_mall_head
*head
,
75 struct netlink_ext_ack
*extack
)
77 struct tc_cls_matchall_offload cls_mall
= {};
78 struct tcf_block
*block
= tp
->chain
->block
;
80 tc_cls_common_offload_init(&cls_mall
.common
, tp
, head
->flags
, extack
);
81 cls_mall
.command
= TC_CLSMATCHALL_DESTROY
;
82 cls_mall
.cookie
= cookie
;
84 tc_setup_cb_call(block
, NULL
, TC_SETUP_CLSMATCHALL
, &cls_mall
, false);
85 tcf_block_offload_dec(block
, &head
->flags
);
88 static int mall_replace_hw_filter(struct tcf_proto
*tp
,
89 struct cls_mall_head
*head
,
91 struct netlink_ext_ack
*extack
)
93 struct tc_cls_matchall_offload cls_mall
= {};
94 struct tcf_block
*block
= tp
->chain
->block
;
95 bool skip_sw
= tc_skip_sw(head
->flags
);
98 tc_cls_common_offload_init(&cls_mall
.common
, tp
, head
->flags
, extack
);
99 cls_mall
.command
= TC_CLSMATCHALL_REPLACE
;
100 cls_mall
.exts
= &head
->exts
;
101 cls_mall
.cookie
= cookie
;
103 err
= tc_setup_cb_call(block
, NULL
, TC_SETUP_CLSMATCHALL
,
106 mall_destroy_hw_filter(tp
, head
, cookie
, NULL
);
108 } else if (err
> 0) {
109 tcf_block_offload_inc(block
, &head
->flags
);
112 if (skip_sw
&& !(head
->flags
& TCA_CLS_FLAGS_IN_HW
))
118 static void mall_destroy(struct tcf_proto
*tp
, struct netlink_ext_ack
*extack
)
120 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
125 if (!tc_skip_hw(head
->flags
))
126 mall_destroy_hw_filter(tp
, head
, (unsigned long) head
, extack
);
128 if (tcf_exts_get_net(&head
->exts
))
129 call_rcu(&head
->rcu
, mall_destroy_rcu
);
131 __mall_destroy(head
);
134 static void *mall_get(struct tcf_proto
*tp
, u32 handle
)
139 static const struct nla_policy mall_policy
[TCA_MATCHALL_MAX
+ 1] = {
140 [TCA_MATCHALL_UNSPEC
] = { .type
= NLA_UNSPEC
},
141 [TCA_MATCHALL_CLASSID
] = { .type
= NLA_U32
},
144 static int mall_set_parms(struct net
*net
, struct tcf_proto
*tp
,
145 struct cls_mall_head
*head
,
146 unsigned long base
, struct nlattr
**tb
,
147 struct nlattr
*est
, bool ovr
,
148 struct netlink_ext_ack
*extack
)
152 err
= tcf_exts_validate(net
, tp
, tb
, est
, &head
->exts
, ovr
, extack
);
156 if (tb
[TCA_MATCHALL_CLASSID
]) {
157 head
->res
.classid
= nla_get_u32(tb
[TCA_MATCHALL_CLASSID
]);
158 tcf_bind_filter(tp
, &head
->res
, base
);
163 static int mall_change(struct net
*net
, struct sk_buff
*in_skb
,
164 struct tcf_proto
*tp
, unsigned long base
,
165 u32 handle
, struct nlattr
**tca
,
166 void **arg
, bool ovr
, struct netlink_ext_ack
*extack
)
168 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
169 struct nlattr
*tb
[TCA_MATCHALL_MAX
+ 1];
170 struct cls_mall_head
*new;
174 if (!tca
[TCA_OPTIONS
])
180 err
= nla_parse_nested(tb
, TCA_MATCHALL_MAX
, tca
[TCA_OPTIONS
],
185 if (tb
[TCA_MATCHALL_FLAGS
]) {
186 flags
= nla_get_u32(tb
[TCA_MATCHALL_FLAGS
]);
187 if (!tc_flags_valid(flags
))
191 new = kzalloc(sizeof(*new), GFP_KERNEL
);
195 err
= tcf_exts_init(&new->exts
, TCA_MATCHALL_ACT
, 0);
201 new->handle
= handle
;
204 err
= mall_set_parms(net
, tp
, new, base
, tb
, tca
[TCA_RATE
], ovr
,
209 if (!tc_skip_hw(new->flags
)) {
210 err
= mall_replace_hw_filter(tp
, new, (unsigned long)new,
213 goto err_replace_hw_filter
;
216 if (!tc_in_hw(new->flags
))
217 new->flags
|= TCA_CLS_FLAGS_NOT_IN_HW
;
220 rcu_assign_pointer(tp
->root
, new);
223 err_replace_hw_filter
:
225 tcf_exts_destroy(&new->exts
);
231 static int mall_delete(struct tcf_proto
*tp
, void *arg
, bool *last
,
232 struct netlink_ext_ack
*extack
)
237 static void mall_walk(struct tcf_proto
*tp
, struct tcf_walker
*arg
)
239 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
241 if (arg
->count
< arg
->skip
)
243 if (arg
->fn(tp
, head
, arg
) < 0)
249 static int mall_dump(struct net
*net
, struct tcf_proto
*tp
, void *fh
,
250 struct sk_buff
*skb
, struct tcmsg
*t
)
252 struct cls_mall_head
*head
= fh
;
258 t
->tcm_handle
= head
->handle
;
260 nest
= nla_nest_start(skb
, TCA_OPTIONS
);
262 goto nla_put_failure
;
264 if (head
->res
.classid
&&
265 nla_put_u32(skb
, TCA_MATCHALL_CLASSID
, head
->res
.classid
))
266 goto nla_put_failure
;
268 if (head
->flags
&& nla_put_u32(skb
, TCA_MATCHALL_FLAGS
, head
->flags
))
269 goto nla_put_failure
;
271 if (tcf_exts_dump(skb
, &head
->exts
))
272 goto nla_put_failure
;
274 nla_nest_end(skb
, nest
);
276 if (tcf_exts_dump_stats(skb
, &head
->exts
) < 0)
277 goto nla_put_failure
;
282 nla_nest_cancel(skb
, nest
);
286 static void mall_bind_class(void *fh
, u32 classid
, unsigned long cl
)
288 struct cls_mall_head
*head
= fh
;
290 if (head
&& head
->res
.classid
== classid
)
291 head
->res
.class = cl
;
294 static struct tcf_proto_ops cls_mall_ops __read_mostly
= {
296 .classify
= mall_classify
,
298 .destroy
= mall_destroy
,
300 .change
= mall_change
,
301 .delete = mall_delete
,
304 .bind_class
= mall_bind_class
,
305 .owner
= THIS_MODULE
,
308 static int __init
cls_mall_init(void)
310 return register_tcf_proto_ops(&cls_mall_ops
);
313 static void __exit
cls_mall_exit(void)
315 unregister_tcf_proto_ops(&cls_mall_ops
);
318 module_init(cls_mall_init
);
319 module_exit(cls_mall_exit
);
321 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
322 MODULE_DESCRIPTION("Match-all classifier");
323 MODULE_LICENSE("GPL v2");