blob: 21cc45caf8424a2d9ba75558c11fe1dc8170cd48 [file] [log] [blame]
Jiri Pirkobf3994d2016-07-21 12:03:11 +02001/*
2 * net/sched/cls_matchll.c Match-all classifier
3 *
4 * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com>
5 *
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.
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/module.h>
15
16#include <net/sch_generic.h>
17#include <net/pkt_cls.h>
18
Yotam Gigifd62d9f2017-01-31 15:14:29 +020019struct cls_mall_head {
Jiri Pirkobf3994d2016-07-21 12:03:11 +020020 struct tcf_exts exts;
21 struct tcf_result res;
22 u32 handle;
Yotam Gigib87f7932016-07-21 12:03:12 +020023 u32 flags;
Jiri Pirkobf3994d2016-07-21 12:03:11 +020024 struct rcu_head rcu;
25};
26
27static int mall_classify(struct sk_buff *skb, const struct tcf_proto *tp,
28 struct tcf_result *res)
29{
30 struct cls_mall_head *head = rcu_dereference_bh(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020031
Yotam Gigifd62d9f2017-01-31 15:14:29 +020032 if (tc_skip_sw(head->flags))
Yotam Gigib87f7932016-07-21 12:03:12 +020033 return -1;
34
Yotam Gigifd62d9f2017-01-31 15:14:29 +020035 return tcf_exts_exec(skb, &head->exts, res);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020036}
37
38static int mall_init(struct tcf_proto *tp)
39{
Jiri Pirkobf3994d2016-07-21 12:03:11 +020040 return 0;
41}
42
Yotam Gigifd62d9f2017-01-31 15:14:29 +020043static void mall_destroy_rcu(struct rcu_head *rcu)
Jiri Pirkobf3994d2016-07-21 12:03:11 +020044{
Yotam Gigifd62d9f2017-01-31 15:14:29 +020045 struct cls_mall_head *head = container_of(rcu, struct cls_mall_head,
46 rcu);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020047
Yotam Gigifd62d9f2017-01-31 15:14:29 +020048 tcf_exts_destroy(&head->exts);
49 kfree(head);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020050}
51
Yotam Gigib87f7932016-07-21 12:03:12 +020052static int mall_replace_hw_filter(struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +020053 struct cls_mall_head *head,
Yotam Gigib87f7932016-07-21 12:03:12 +020054 unsigned long cookie)
55{
56 struct net_device *dev = tp->q->dev_queue->dev;
Jiri Pirkode4784c2017-08-07 10:15:32 +020057 struct tc_cls_matchall_offload cls_mall = {};
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +020058 int err;
Yotam Gigib87f7932016-07-21 12:03:12 +020059
Jiri Pirkode4784c2017-08-07 10:15:32 +020060 tc_cls_common_offload_init(&cls_mall.common, tp);
61 cls_mall.command = TC_CLSMATCHALL_REPLACE;
62 cls_mall.exts = &head->exts;
63 cls_mall.cookie = cookie;
Yotam Gigib87f7932016-07-21 12:03:12 +020064
Jiri Pirkoade9b652017-08-07 10:15:18 +020065 err = dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_CLSMATCHALL,
Jiri Pirkode4784c2017-08-07 10:15:32 +020066 &cls_mall);
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +020067 if (!err)
68 head->flags |= TCA_CLS_FLAGS_IN_HW;
69
70 return err;
Yotam Gigib87f7932016-07-21 12:03:12 +020071}
72
73static void mall_destroy_hw_filter(struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +020074 struct cls_mall_head *head,
Yotam Gigib87f7932016-07-21 12:03:12 +020075 unsigned long cookie)
76{
77 struct net_device *dev = tp->q->dev_queue->dev;
Jiri Pirkode4784c2017-08-07 10:15:32 +020078 struct tc_cls_matchall_offload cls_mall = {};
Yotam Gigib87f7932016-07-21 12:03:12 +020079
Jiri Pirkode4784c2017-08-07 10:15:32 +020080 tc_cls_common_offload_init(&cls_mall.common, tp);
81 cls_mall.command = TC_CLSMATCHALL_DESTROY;
82 cls_mall.cookie = cookie;
Yotam Gigib87f7932016-07-21 12:03:12 +020083
Jiri Pirkode4784c2017-08-07 10:15:32 +020084 dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_CLSMATCHALL, &cls_mall);
Yotam Gigib87f7932016-07-21 12:03:12 +020085}
86
WANG Cong763dbf62017-04-19 14:21:21 -070087static void mall_destroy(struct tcf_proto *tp)
Jiri Pirkobf3994d2016-07-21 12:03:11 +020088{
89 struct cls_mall_head *head = rtnl_dereference(tp->root);
Yotam Gigib87f7932016-07-21 12:03:12 +020090 struct net_device *dev = tp->q->dev_queue->dev;
Jiri Pirkobf3994d2016-07-21 12:03:11 +020091
Yotam Gigifd62d9f2017-01-31 15:14:29 +020092 if (!head)
WANG Cong763dbf62017-04-19 14:21:21 -070093 return;
Jiri Pirkobf3994d2016-07-21 12:03:11 +020094
Jiri Pirko7b06e8a2017-08-09 14:30:35 +020095 if (tc_should_offload(dev, head->flags))
Yotam Gigifd62d9f2017-01-31 15:14:29 +020096 mall_destroy_hw_filter(tp, head, (unsigned long) head);
Yotam Gigib87f7932016-07-21 12:03:12 +020097
Yotam Gigifd62d9f2017-01-31 15:14:29 +020098 call_rcu(&head->rcu, mall_destroy_rcu);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020099}
100
WANG Cong8113c092017-08-04 21:31:43 -0700101static void *mall_get(struct tcf_proto *tp, u32 handle)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200102{
WANG Cong8113c092017-08-04 21:31:43 -0700103 return NULL;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200104}
105
106static const struct nla_policy mall_policy[TCA_MATCHALL_MAX + 1] = {
107 [TCA_MATCHALL_UNSPEC] = { .type = NLA_UNSPEC },
108 [TCA_MATCHALL_CLASSID] = { .type = NLA_U32 },
109};
110
111static int mall_set_parms(struct net *net, struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200112 struct cls_mall_head *head,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200113 unsigned long base, struct nlattr **tb,
114 struct nlattr *est, bool ovr)
115{
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200116 int err;
117
Jiri Pirkoa74cb362017-08-04 14:29:08 +0200118 err = tcf_exts_validate(net, tp, tb, est, &head->exts, ovr);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200119 if (err < 0)
Jiri Pirkoa74cb362017-08-04 14:29:08 +0200120 return err;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200121
122 if (tb[TCA_MATCHALL_CLASSID]) {
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200123 head->res.classid = nla_get_u32(tb[TCA_MATCHALL_CLASSID]);
124 tcf_bind_filter(tp, &head->res, base);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200125 }
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200126 return 0;
127}
128
129static int mall_change(struct net *net, struct sk_buff *in_skb,
130 struct tcf_proto *tp, unsigned long base,
131 u32 handle, struct nlattr **tca,
WANG Cong8113c092017-08-04 21:31:43 -0700132 void **arg, bool ovr)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200133{
134 struct cls_mall_head *head = rtnl_dereference(tp->root);
Yotam Gigib87f7932016-07-21 12:03:12 +0200135 struct net_device *dev = tp->q->dev_queue->dev;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200136 struct nlattr *tb[TCA_MATCHALL_MAX + 1];
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200137 struct cls_mall_head *new;
Yotam Gigib87f7932016-07-21 12:03:12 +0200138 u32 flags = 0;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200139 int err;
140
141 if (!tca[TCA_OPTIONS])
142 return -EINVAL;
143
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200144 if (head)
145 return -EEXIST;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200146
Johannes Bergfceb6432017-04-12 14:34:07 +0200147 err = nla_parse_nested(tb, TCA_MATCHALL_MAX, tca[TCA_OPTIONS],
148 mall_policy, NULL);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200149 if (err < 0)
150 return err;
151
Yotam Gigib87f7932016-07-21 12:03:12 +0200152 if (tb[TCA_MATCHALL_FLAGS]) {
153 flags = nla_get_u32(tb[TCA_MATCHALL_FLAGS]);
154 if (!tc_flags_valid(flags))
155 return -EINVAL;
156 }
157
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200158 new = kzalloc(sizeof(*new), GFP_KERNEL);
159 if (!new)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200160 return -ENOBUFS;
161
David S. Millere2160152017-02-02 16:54:00 -0500162 err = tcf_exts_init(&new->exts, TCA_MATCHALL_ACT, 0);
Yotam Gigiec2507d2017-01-03 19:20:24 +0200163 if (err)
164 goto err_exts_init;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200165
166 if (!handle)
167 handle = 1;
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200168 new->handle = handle;
169 new->flags = flags;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200170
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200171 err = mall_set_parms(net, tp, new, base, tb, tca[TCA_RATE], ovr);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200172 if (err)
Yotam Gigiec2507d2017-01-03 19:20:24 +0200173 goto err_set_parms;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200174
Jiri Pirko7b06e8a2017-08-09 14:30:35 +0200175 if (tc_should_offload(dev, flags)) {
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200176 err = mall_replace_hw_filter(tp, new, (unsigned long) new);
Yotam Gigib87f7932016-07-21 12:03:12 +0200177 if (err) {
178 if (tc_skip_sw(flags))
Yotam Gigiec2507d2017-01-03 19:20:24 +0200179 goto err_replace_hw_filter;
Yotam Gigib87f7932016-07-21 12:03:12 +0200180 else
181 err = 0;
182 }
183 }
184
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +0200185 if (!tc_in_hw(new->flags))
186 new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
187
WANG Cong8113c092017-08-04 21:31:43 -0700188 *arg = head;
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200189 rcu_assign_pointer(tp->root, new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200190 return 0;
191
Yotam Gigiec2507d2017-01-03 19:20:24 +0200192err_replace_hw_filter:
193err_set_parms:
David S. Millere2160152017-02-02 16:54:00 -0500194 tcf_exts_destroy(&new->exts);
Yotam Gigiec2507d2017-01-03 19:20:24 +0200195err_exts_init:
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200196 kfree(new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200197 return err;
198}
199
WANG Cong8113c092017-08-04 21:31:43 -0700200static int mall_delete(struct tcf_proto *tp, void *arg, bool *last)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200201{
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200202 return -EOPNOTSUPP;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200203}
204
205static void mall_walk(struct tcf_proto *tp, struct tcf_walker *arg)
206{
207 struct cls_mall_head *head = rtnl_dereference(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200208
209 if (arg->count < arg->skip)
210 goto skip;
WANG Cong8113c092017-08-04 21:31:43 -0700211 if (arg->fn(tp, head, arg) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200212 arg->stop = 1;
213skip:
214 arg->count++;
215}
216
WANG Cong8113c092017-08-04 21:31:43 -0700217static int mall_dump(struct net *net, struct tcf_proto *tp, void *fh,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200218 struct sk_buff *skb, struct tcmsg *t)
219{
WANG Cong8113c092017-08-04 21:31:43 -0700220 struct cls_mall_head *head = fh;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200221 struct nlattr *nest;
222
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200223 if (!head)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200224 return skb->len;
225
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200226 t->tcm_handle = head->handle;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200227
228 nest = nla_nest_start(skb, TCA_OPTIONS);
229 if (!nest)
230 goto nla_put_failure;
231
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200232 if (head->res.classid &&
233 nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200234 goto nla_put_failure;
235
Or Gerlitz7a335ad2017-02-16 10:31:11 +0200236 if (head->flags && nla_put_u32(skb, TCA_MATCHALL_FLAGS, head->flags))
237 goto nla_put_failure;
238
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200239 if (tcf_exts_dump(skb, &head->exts))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200240 goto nla_put_failure;
241
242 nla_nest_end(skb, nest);
243
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200244 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200245 goto nla_put_failure;
246
247 return skb->len;
248
249nla_put_failure:
250 nla_nest_cancel(skb, nest);
251 return -1;
252}
253
Cong Wang07d79fc2017-08-30 14:30:36 -0700254static void mall_bind_class(void *fh, u32 classid, unsigned long cl)
255{
256 struct cls_mall_head *head = fh;
257
258 if (head && head->res.classid == classid)
259 head->res.class = cl;
260}
261
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200262static struct tcf_proto_ops cls_mall_ops __read_mostly = {
263 .kind = "matchall",
264 .classify = mall_classify,
265 .init = mall_init,
266 .destroy = mall_destroy,
267 .get = mall_get,
268 .change = mall_change,
269 .delete = mall_delete,
270 .walk = mall_walk,
271 .dump = mall_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -0700272 .bind_class = mall_bind_class,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200273 .owner = THIS_MODULE,
274};
275
276static int __init cls_mall_init(void)
277{
278 return register_tcf_proto_ops(&cls_mall_ops);
279}
280
281static void __exit cls_mall_exit(void)
282{
283 unregister_tcf_proto_ops(&cls_mall_ops);
284}
285
286module_init(cls_mall_init);
287module_exit(cls_mall_exit);
288
289MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
290MODULE_DESCRIPTION("Match-all classifier");
291MODULE_LICENSE("GPL v2");