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 int mall_replace_hw_filter(struct tcf_proto
*tp
,
73 struct cls_mall_head
*head
,
76 struct net_device
*dev
= tp
->q
->dev_queue
->dev
;
77 struct tc_cls_matchall_offload cls_mall
= {};
80 tc_cls_common_offload_init(&cls_mall
.common
, tp
);
81 cls_mall
.command
= TC_CLSMATCHALL_REPLACE
;
82 cls_mall
.exts
= &head
->exts
;
83 cls_mall
.cookie
= cookie
;
85 err
= dev
->netdev_ops
->ndo_setup_tc(dev
, TC_SETUP_CLSMATCHALL
,
88 head
->flags
|= TCA_CLS_FLAGS_IN_HW
;
93 static void mall_destroy_hw_filter(struct tcf_proto
*tp
,
94 struct cls_mall_head
*head
,
97 struct net_device
*dev
= tp
->q
->dev_queue
->dev
;
98 struct tc_cls_matchall_offload cls_mall
= {};
100 tc_cls_common_offload_init(&cls_mall
.common
, tp
);
101 cls_mall
.command
= TC_CLSMATCHALL_DESTROY
;
102 cls_mall
.cookie
= cookie
;
104 dev
->netdev_ops
->ndo_setup_tc(dev
, TC_SETUP_CLSMATCHALL
, &cls_mall
);
107 static void mall_destroy(struct tcf_proto
*tp
)
109 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
110 struct net_device
*dev
= tp
->q
->dev_queue
->dev
;
115 tcf_unbind_filter(tp
, &head
->res
);
117 if (tc_should_offload(dev
, head
->flags
))
118 mall_destroy_hw_filter(tp
, head
, (unsigned long) head
);
120 if (tcf_exts_get_net(&head
->exts
))
121 call_rcu(&head
->rcu
, mall_destroy_rcu
);
123 __mall_destroy(head
);
126 static void *mall_get(struct tcf_proto
*tp
, u32 handle
)
128 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
130 if (head
&& head
->handle
== handle
)
136 static const struct nla_policy mall_policy
[TCA_MATCHALL_MAX
+ 1] = {
137 [TCA_MATCHALL_UNSPEC
] = { .type
= NLA_UNSPEC
},
138 [TCA_MATCHALL_CLASSID
] = { .type
= NLA_U32
},
141 static int mall_set_parms(struct net
*net
, struct tcf_proto
*tp
,
142 struct cls_mall_head
*head
,
143 unsigned long base
, struct nlattr
**tb
,
144 struct nlattr
*est
, bool ovr
)
148 err
= tcf_exts_validate(net
, tp
, tb
, est
, &head
->exts
, ovr
);
152 if (tb
[TCA_MATCHALL_CLASSID
]) {
153 head
->res
.classid
= nla_get_u32(tb
[TCA_MATCHALL_CLASSID
]);
154 tcf_bind_filter(tp
, &head
->res
, base
);
159 static int mall_change(struct net
*net
, struct sk_buff
*in_skb
,
160 struct tcf_proto
*tp
, unsigned long base
,
161 u32 handle
, struct nlattr
**tca
,
162 void **arg
, bool ovr
)
164 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
165 struct net_device
*dev
= tp
->q
->dev_queue
->dev
;
166 struct nlattr
*tb
[TCA_MATCHALL_MAX
+ 1];
167 struct cls_mall_head
*new;
171 if (!tca
[TCA_OPTIONS
])
177 err
= nla_parse_nested(tb
, TCA_MATCHALL_MAX
, tca
[TCA_OPTIONS
],
182 if (tb
[TCA_MATCHALL_FLAGS
]) {
183 flags
= nla_get_u32(tb
[TCA_MATCHALL_FLAGS
]);
184 if (!tc_flags_valid(flags
))
188 new = kzalloc(sizeof(*new), GFP_KERNEL
);
192 err
= tcf_exts_init(&new->exts
, TCA_MATCHALL_ACT
, 0);
198 new->handle
= handle
;
201 err
= mall_set_parms(net
, tp
, new, base
, tb
, tca
[TCA_RATE
], ovr
);
205 if (tc_should_offload(dev
, flags
)) {
206 err
= mall_replace_hw_filter(tp
, new, (unsigned long) new);
208 if (tc_skip_sw(flags
))
209 goto err_replace_hw_filter
;
215 if (!tc_in_hw(new->flags
))
216 new->flags
|= TCA_CLS_FLAGS_NOT_IN_HW
;
219 rcu_assign_pointer(tp
->root
, new);
222 err_replace_hw_filter
:
224 tcf_exts_destroy(&new->exts
);
230 static int mall_delete(struct tcf_proto
*tp
, void *arg
, bool *last
)
235 static void mall_walk(struct tcf_proto
*tp
, struct tcf_walker
*arg
)
237 struct cls_mall_head
*head
= rtnl_dereference(tp
->root
);
239 if (arg
->count
< arg
->skip
)
241 if (arg
->fn(tp
, head
, arg
) < 0)
247 static int mall_dump(struct net
*net
, struct tcf_proto
*tp
, void *fh
,
248 struct sk_buff
*skb
, struct tcmsg
*t
)
250 struct cls_mall_head
*head
= fh
;
256 t
->tcm_handle
= head
->handle
;
258 nest
= nla_nest_start(skb
, TCA_OPTIONS
);
260 goto nla_put_failure
;
262 if (head
->res
.classid
&&
263 nla_put_u32(skb
, TCA_MATCHALL_CLASSID
, head
->res
.classid
))
264 goto nla_put_failure
;
266 if (head
->flags
&& nla_put_u32(skb
, TCA_MATCHALL_FLAGS
, head
->flags
))
267 goto nla_put_failure
;
269 if (tcf_exts_dump(skb
, &head
->exts
))
270 goto nla_put_failure
;
272 nla_nest_end(skb
, nest
);
274 if (tcf_exts_dump_stats(skb
, &head
->exts
) < 0)
275 goto nla_put_failure
;
280 nla_nest_cancel(skb
, nest
);
284 static void mall_bind_class(void *fh
, u32 classid
, unsigned long cl
)
286 struct cls_mall_head
*head
= fh
;
288 if (head
&& head
->res
.classid
== classid
)
289 head
->res
.class = cl
;
292 static struct tcf_proto_ops cls_mall_ops __read_mostly
= {
294 .classify
= mall_classify
,
296 .destroy
= mall_destroy
,
298 .change
= mall_change
,
299 .delete = mall_delete
,
302 .bind_class
= mall_bind_class
,
303 .owner
= THIS_MODULE
,
306 static int __init
cls_mall_init(void)
308 return register_tcf_proto_ops(&cls_mall_ops
);
311 static void __exit
cls_mall_exit(void)
313 unregister_tcf_proto_ops(&cls_mall_ops
);
316 module_init(cls_mall_init
);
317 module_exit(cls_mall_exit
);
319 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
320 MODULE_DESCRIPTION("Match-all classifier");
321 MODULE_LICENSE("GPL v2");