blob: 61ddfbad2aaedea0c6e7a58098641dec3256c06d [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 Gigi6c8556f2017-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 Gigi6c8556f2017-01-31 15:14:29 +020032 if (tc_skip_sw(head->flags))
Yotam Gigib87f7932016-07-21 12:03:12 +020033 return -1;
34
Davide Carattib13bc542017-09-16 14:02:21 +020035 *res = head->res;
Yotam Gigi6c8556f2017-01-31 15:14:29 +020036 return tcf_exts_exec(skb, &head->exts, res);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020037}
38
39static int mall_init(struct tcf_proto *tp)
40{
Jiri Pirkobf3994d2016-07-21 12:03:11 +020041 return 0;
42}
43
Yotam Gigi6c8556f2017-01-31 15:14:29 +020044static void mall_destroy_rcu(struct rcu_head *rcu)
Jiri Pirkobf3994d2016-07-21 12:03:11 +020045{
Yotam Gigi6c8556f2017-01-31 15:14:29 +020046 struct cls_mall_head *head = container_of(rcu, struct cls_mall_head,
47 rcu);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020048
Yotam Gigi6c8556f2017-01-31 15:14:29 +020049 tcf_exts_destroy(&head->exts);
50 kfree(head);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020051}
52
Yotam Gigib87f7932016-07-21 12:03:12 +020053static int mall_replace_hw_filter(struct tcf_proto *tp,
Yotam Gigi6c8556f2017-01-31 15:14:29 +020054 struct cls_mall_head *head,
Yotam Gigib87f7932016-07-21 12:03:12 +020055 unsigned long cookie)
56{
57 struct net_device *dev = tp->q->dev_queue->dev;
58 struct tc_to_netdev offload;
59 struct tc_cls_matchall_offload mall_offload = {0};
60
61 offload.type = TC_SETUP_MATCHALL;
62 offload.cls_mall = &mall_offload;
63 offload.cls_mall->command = TC_CLSMATCHALL_REPLACE;
Yotam Gigi6c8556f2017-01-31 15:14:29 +020064 offload.cls_mall->exts = &head->exts;
Yotam Gigib87f7932016-07-21 12:03:12 +020065 offload.cls_mall->cookie = cookie;
66
67 return dev->netdev_ops->ndo_setup_tc(dev, tp->q->handle, tp->protocol,
68 &offload);
69}
70
71static void mall_destroy_hw_filter(struct tcf_proto *tp,
Yotam Gigi6c8556f2017-01-31 15:14:29 +020072 struct cls_mall_head *head,
Yotam Gigib87f7932016-07-21 12:03:12 +020073 unsigned long cookie)
74{
75 struct net_device *dev = tp->q->dev_queue->dev;
76 struct tc_to_netdev offload;
77 struct tc_cls_matchall_offload mall_offload = {0};
78
79 offload.type = TC_SETUP_MATCHALL;
80 offload.cls_mall = &mall_offload;
81 offload.cls_mall->command = TC_CLSMATCHALL_DESTROY;
82 offload.cls_mall->exts = NULL;
83 offload.cls_mall->cookie = cookie;
84
85 dev->netdev_ops->ndo_setup_tc(dev, tp->q->handle, tp->protocol,
86 &offload);
87}
88
Jiri Pirkobf3994d2016-07-21 12:03:11 +020089static bool mall_destroy(struct tcf_proto *tp, bool force)
90{
91 struct cls_mall_head *head = rtnl_dereference(tp->root);
Yotam Gigib87f7932016-07-21 12:03:12 +020092 struct net_device *dev = tp->q->dev_queue->dev;
Jiri Pirkobf3994d2016-07-21 12:03:11 +020093
Yotam Gigi6c8556f2017-01-31 15:14:29 +020094 if (!head)
95 return true;
Jiri Pirkobf3994d2016-07-21 12:03:11 +020096
Hangbin Liuc4db09a2018-08-14 17:28:26 +080097 tcf_unbind_filter(tp, &head->res);
98
Yotam Gigi6c8556f2017-01-31 15:14:29 +020099 if (tc_should_offload(dev, tp, head->flags))
100 mall_destroy_hw_filter(tp, head, (unsigned long) head);
Yotam Gigib87f7932016-07-21 12:03:12 +0200101
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200102 call_rcu(&head->rcu, mall_destroy_rcu);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200103 return true;
104}
105
106static unsigned long mall_get(struct tcf_proto *tp, u32 handle)
107{
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200108 return 0UL;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200109}
110
111static const struct nla_policy mall_policy[TCA_MATCHALL_MAX + 1] = {
112 [TCA_MATCHALL_UNSPEC] = { .type = NLA_UNSPEC },
113 [TCA_MATCHALL_CLASSID] = { .type = NLA_U32 },
114};
115
116static int mall_set_parms(struct net *net, struct tcf_proto *tp,
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200117 struct cls_mall_head *head,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200118 unsigned long base, struct nlattr **tb,
119 struct nlattr *est, bool ovr)
120{
121 struct tcf_exts e;
122 int err;
123
124 tcf_exts_init(&e, TCA_MATCHALL_ACT, 0);
125 err = tcf_exts_validate(net, tp, tb, est, &e, ovr);
126 if (err < 0)
127 return err;
128
129 if (tb[TCA_MATCHALL_CLASSID]) {
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200130 head->res.classid = nla_get_u32(tb[TCA_MATCHALL_CLASSID]);
131 tcf_bind_filter(tp, &head->res, base);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200132 }
133
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200134 tcf_exts_change(tp, &head->exts, &e);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200135
136 return 0;
137}
138
139static int mall_change(struct net *net, struct sk_buff *in_skb,
140 struct tcf_proto *tp, unsigned long base,
141 u32 handle, struct nlattr **tca,
142 unsigned long *arg, bool ovr)
143{
144 struct cls_mall_head *head = rtnl_dereference(tp->root);
Yotam Gigib87f7932016-07-21 12:03:12 +0200145 struct net_device *dev = tp->q->dev_queue->dev;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200146 struct nlattr *tb[TCA_MATCHALL_MAX + 1];
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200147 struct cls_mall_head *new;
Yotam Gigib87f7932016-07-21 12:03:12 +0200148 u32 flags = 0;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200149 int err;
150
151 if (!tca[TCA_OPTIONS])
152 return -EINVAL;
153
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200154 if (head)
155 return -EEXIST;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200156
157 err = nla_parse_nested(tb, TCA_MATCHALL_MAX,
158 tca[TCA_OPTIONS], mall_policy);
159 if (err < 0)
160 return err;
161
Yotam Gigib87f7932016-07-21 12:03:12 +0200162 if (tb[TCA_MATCHALL_FLAGS]) {
163 flags = nla_get_u32(tb[TCA_MATCHALL_FLAGS]);
164 if (!tc_flags_valid(flags))
165 return -EINVAL;
166 }
167
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200168 new = kzalloc(sizeof(*new), GFP_KERNEL);
169 if (!new)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200170 return -ENOBUFS;
171
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200172 tcf_exts_init(&new->exts, TCA_MATCHALL_ACT, 0);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200173
174 if (!handle)
175 handle = 1;
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200176 new->handle = handle;
177 new->flags = flags;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200178
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200179 err = mall_set_parms(net, tp, new, base, tb, tca[TCA_RATE], ovr);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200180 if (err)
181 goto errout;
182
Yotam Gigib87f7932016-07-21 12:03:12 +0200183 if (tc_should_offload(dev, tp, flags)) {
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200184 err = mall_replace_hw_filter(tp, new, (unsigned long) new);
Yotam Gigib87f7932016-07-21 12:03:12 +0200185 if (err) {
186 if (tc_skip_sw(flags))
187 goto errout;
188 else
189 err = 0;
190 }
191 }
192
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200193 *arg = (unsigned long) head;
194 rcu_assign_pointer(tp->root, new);
195 if (head)
196 call_rcu(&head->rcu, mall_destroy_rcu);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200197 return 0;
198
199errout:
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200200 kfree(new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200201 return err;
202}
203
204static int mall_delete(struct tcf_proto *tp, unsigned long arg)
205{
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200206 return -EOPNOTSUPP;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200207}
208
209static void mall_walk(struct tcf_proto *tp, struct tcf_walker *arg)
210{
211 struct cls_mall_head *head = rtnl_dereference(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200212
213 if (arg->count < arg->skip)
214 goto skip;
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200215 if (arg->fn(tp, (unsigned long) head, arg) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200216 arg->stop = 1;
217skip:
218 arg->count++;
219}
220
221static int mall_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
222 struct sk_buff *skb, struct tcmsg *t)
223{
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200224 struct cls_mall_head *head = (struct cls_mall_head *) fh;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200225 struct nlattr *nest;
226
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200227 if (!head)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200228 return skb->len;
229
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200230 t->tcm_handle = head->handle;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200231
232 nest = nla_nest_start(skb, TCA_OPTIONS);
233 if (!nest)
234 goto nla_put_failure;
235
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200236 if (head->res.classid &&
237 nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200238 goto nla_put_failure;
239
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200240 if (tcf_exts_dump(skb, &head->exts))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200241 goto nla_put_failure;
242
243 nla_nest_end(skb, nest);
244
Yotam Gigi6c8556f2017-01-31 15:14:29 +0200245 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200246 goto nla_put_failure;
247
248 return skb->len;
249
250nla_put_failure:
251 nla_nest_cancel(skb, nest);
252 return -1;
253}
254
255static struct tcf_proto_ops cls_mall_ops __read_mostly = {
256 .kind = "matchall",
257 .classify = mall_classify,
258 .init = mall_init,
259 .destroy = mall_destroy,
260 .get = mall_get,
261 .change = mall_change,
262 .delete = mall_delete,
263 .walk = mall_walk,
264 .dump = mall_dump,
265 .owner = THIS_MODULE,
266};
267
268static int __init cls_mall_init(void)
269{
270 return register_tcf_proto_ops(&cls_mall_ops);
271}
272
273static void __exit cls_mall_exit(void)
274{
275 unregister_tcf_proto_ops(&cls_mall_ops);
276}
277
278module_init(cls_mall_init);
279module_exit(cls_mall_exit);
280
281MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
282MODULE_DESCRIPTION("Match-all classifier");
283MODULE_LICENSE("GPL v2");