blob: b0b8627b53d2661c9de7d55be77540288d30729c [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;
Cong Wangdf2735e2017-10-26 18:24:35 -070024 union {
25 struct work_struct work;
26 struct rcu_head rcu;
27 };
Jiri Pirkobf3994d2016-07-21 12:03:11 +020028};
29
30static int mall_classify(struct sk_buff *skb, const struct tcf_proto *tp,
31 struct tcf_result *res)
32{
33 struct cls_mall_head *head = rcu_dereference_bh(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020034
Yotam Gigifd62d9f2017-01-31 15:14:29 +020035 if (tc_skip_sw(head->flags))
Yotam Gigib87f7932016-07-21 12:03:12 +020036 return -1;
37
Davide Caratti3ff4cbe2017-09-16 14:02:21 +020038 *res = head->res;
Yotam Gigifd62d9f2017-01-31 15:14:29 +020039 return tcf_exts_exec(skb, &head->exts, res);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020040}
41
42static int mall_init(struct tcf_proto *tp)
43{
Jiri Pirkobf3994d2016-07-21 12:03:11 +020044 return 0;
45}
46
Cong Wang57767e782017-11-06 13:47:26 -080047static void __mall_destroy(struct cls_mall_head *head)
48{
49 tcf_exts_destroy(&head->exts);
50 tcf_exts_put_net(&head->exts);
51 kfree(head);
52}
53
Cong Wangdf2735e2017-10-26 18:24:35 -070054static void mall_destroy_work(struct work_struct *work)
55{
56 struct cls_mall_head *head = container_of(work, struct cls_mall_head,
57 work);
58 rtnl_lock();
Cong Wang57767e782017-11-06 13:47:26 -080059 __mall_destroy(head);
Cong Wangdf2735e2017-10-26 18:24:35 -070060 rtnl_unlock();
61}
62
Yotam Gigifd62d9f2017-01-31 15:14:29 +020063static void mall_destroy_rcu(struct rcu_head *rcu)
Jiri Pirkobf3994d2016-07-21 12:03:11 +020064{
Yotam Gigifd62d9f2017-01-31 15:14:29 +020065 struct cls_mall_head *head = container_of(rcu, struct cls_mall_head,
66 rcu);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020067
Cong Wangdf2735e2017-10-26 18:24:35 -070068 INIT_WORK(&head->work, mall_destroy_work);
69 tcf_queue_work(&head->work);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020070}
71
Jiri Pirko2447a962017-10-19 15:50:33 +020072static void mall_destroy_hw_filter(struct tcf_proto *tp,
73 struct cls_mall_head *head,
74 unsigned long cookie)
75{
Jiri Pirko2447a962017-10-19 15:50:33 +020076 struct tc_cls_matchall_offload cls_mall = {};
77 struct tcf_block *block = tp->chain->block;
78
Jakub Kicinski93da52b2018-01-24 12:54:18 -080079 tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, NULL);
Jiri Pirko2447a962017-10-19 15:50:33 +020080 cls_mall.command = TC_CLSMATCHALL_DESTROY;
81 cls_mall.cookie = cookie;
82
Jiri Pirko2447a962017-10-19 15:50:33 +020083 tc_setup_cb_call(block, NULL, TC_SETUP_CLSMATCHALL, &cls_mall, false);
Jiri Pirkocaa72602018-01-17 11:46:50 +010084 tcf_block_offload_dec(block, &head->flags);
Jiri Pirko2447a962017-10-19 15:50:33 +020085}
86
Yotam Gigib87f7932016-07-21 12:03:12 +020087static int mall_replace_hw_filter(struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +020088 struct cls_mall_head *head,
Quentin Monnet02798142018-01-19 17:44:44 -080089 unsigned long cookie,
90 struct netlink_ext_ack *extack)
Yotam Gigib87f7932016-07-21 12:03:12 +020091{
Jiri Pirkode4784c2017-08-07 10:15:32 +020092 struct tc_cls_matchall_offload cls_mall = {};
Jiri Pirko2447a962017-10-19 15:50:33 +020093 struct tcf_block *block = tp->chain->block;
94 bool skip_sw = tc_skip_sw(head->flags);
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +020095 int err;
Yotam Gigib87f7932016-07-21 12:03:12 +020096
Jakub Kicinski93da52b2018-01-24 12:54:18 -080097 tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack);
Jiri Pirkode4784c2017-08-07 10:15:32 +020098 cls_mall.command = TC_CLSMATCHALL_REPLACE;
99 cls_mall.exts = &head->exts;
100 cls_mall.cookie = cookie;
Yotam Gigib87f7932016-07-21 12:03:12 +0200101
Jiri Pirko2447a962017-10-19 15:50:33 +0200102 err = tc_setup_cb_call(block, NULL, TC_SETUP_CLSMATCHALL,
103 &cls_mall, skip_sw);
104 if (err < 0) {
105 mall_destroy_hw_filter(tp, head, cookie);
106 return err;
107 } else if (err > 0) {
Jiri Pirkocaa72602018-01-17 11:46:50 +0100108 tcf_block_offload_inc(block, &head->flags);
Jiri Pirko2447a962017-10-19 15:50:33 +0200109 }
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +0200110
Jiri Pirko2447a962017-10-19 15:50:33 +0200111 if (skip_sw && !(head->flags & TCA_CLS_FLAGS_IN_HW))
112 return -EINVAL;
Yotam Gigib87f7932016-07-21 12:03:12 +0200113
Jiri Pirko2447a962017-10-19 15:50:33 +0200114 return 0;
Yotam Gigib87f7932016-07-21 12:03:12 +0200115}
116
Jakub Kicinski715df5e2018-01-24 12:54:13 -0800117static void mall_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200118{
119 struct cls_mall_head *head = rtnl_dereference(tp->root);
120
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200121 if (!head)
WANG Cong763dbf62017-04-19 14:21:21 -0700122 return;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200123
Jiri Pirko2447a962017-10-19 15:50:33 +0200124 if (!tc_skip_hw(head->flags))
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200125 mall_destroy_hw_filter(tp, head, (unsigned long) head);
Yotam Gigib87f7932016-07-21 12:03:12 +0200126
Cong Wang57767e782017-11-06 13:47:26 -0800127 if (tcf_exts_get_net(&head->exts))
128 call_rcu(&head->rcu, mall_destroy_rcu);
129 else
130 __mall_destroy(head);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200131}
132
WANG Cong8113c092017-08-04 21:31:43 -0700133static void *mall_get(struct tcf_proto *tp, u32 handle)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200134{
WANG Cong8113c092017-08-04 21:31:43 -0700135 return NULL;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200136}
137
138static const struct nla_policy mall_policy[TCA_MATCHALL_MAX + 1] = {
139 [TCA_MATCHALL_UNSPEC] = { .type = NLA_UNSPEC },
140 [TCA_MATCHALL_CLASSID] = { .type = NLA_U32 },
141};
142
143static int mall_set_parms(struct net *net, struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200144 struct cls_mall_head *head,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200145 unsigned long base, struct nlattr **tb,
Alexander Aring50a56192018-01-18 11:20:52 -0500146 struct nlattr *est, bool ovr,
147 struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200148{
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200149 int err;
150
Alexander Aring50a56192018-01-18 11:20:52 -0500151 err = tcf_exts_validate(net, tp, tb, est, &head->exts, ovr, extack);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200152 if (err < 0)
Jiri Pirkoa74cb362017-08-04 14:29:08 +0200153 return err;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200154
155 if (tb[TCA_MATCHALL_CLASSID]) {
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200156 head->res.classid = nla_get_u32(tb[TCA_MATCHALL_CLASSID]);
157 tcf_bind_filter(tp, &head->res, base);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200158 }
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200159 return 0;
160}
161
162static int mall_change(struct net *net, struct sk_buff *in_skb,
163 struct tcf_proto *tp, unsigned long base,
164 u32 handle, struct nlattr **tca,
Alexander Aring7306db32018-01-18 11:20:51 -0500165 void **arg, bool ovr, struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200166{
167 struct cls_mall_head *head = rtnl_dereference(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200168 struct nlattr *tb[TCA_MATCHALL_MAX + 1];
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200169 struct cls_mall_head *new;
Yotam Gigib87f7932016-07-21 12:03:12 +0200170 u32 flags = 0;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200171 int err;
172
173 if (!tca[TCA_OPTIONS])
174 return -EINVAL;
175
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200176 if (head)
177 return -EEXIST;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200178
Johannes Bergfceb6432017-04-12 14:34:07 +0200179 err = nla_parse_nested(tb, TCA_MATCHALL_MAX, tca[TCA_OPTIONS],
180 mall_policy, NULL);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200181 if (err < 0)
182 return err;
183
Yotam Gigib87f7932016-07-21 12:03:12 +0200184 if (tb[TCA_MATCHALL_FLAGS]) {
185 flags = nla_get_u32(tb[TCA_MATCHALL_FLAGS]);
186 if (!tc_flags_valid(flags))
187 return -EINVAL;
188 }
189
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200190 new = kzalloc(sizeof(*new), GFP_KERNEL);
191 if (!new)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200192 return -ENOBUFS;
193
David S. Millere2160152017-02-02 16:54:00 -0500194 err = tcf_exts_init(&new->exts, TCA_MATCHALL_ACT, 0);
Yotam Gigiec2507d2017-01-03 19:20:24 +0200195 if (err)
196 goto err_exts_init;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200197
198 if (!handle)
199 handle = 1;
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200200 new->handle = handle;
201 new->flags = flags;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200202
Alexander Aring50a56192018-01-18 11:20:52 -0500203 err = mall_set_parms(net, tp, new, base, tb, tca[TCA_RATE], ovr,
204 extack);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200205 if (err)
Yotam Gigiec2507d2017-01-03 19:20:24 +0200206 goto err_set_parms;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200207
Jiri Pirko2447a962017-10-19 15:50:33 +0200208 if (!tc_skip_hw(new->flags)) {
Quentin Monnet02798142018-01-19 17:44:44 -0800209 err = mall_replace_hw_filter(tp, new, (unsigned long)new,
210 extack);
Jiri Pirko2447a962017-10-19 15:50:33 +0200211 if (err)
212 goto err_replace_hw_filter;
Yotam Gigib87f7932016-07-21 12:03:12 +0200213 }
214
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +0200215 if (!tc_in_hw(new->flags))
216 new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
217
WANG Cong8113c092017-08-04 21:31:43 -0700218 *arg = head;
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200219 rcu_assign_pointer(tp->root, new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200220 return 0;
221
Yotam Gigiec2507d2017-01-03 19:20:24 +0200222err_replace_hw_filter:
223err_set_parms:
David S. Millere2160152017-02-02 16:54:00 -0500224 tcf_exts_destroy(&new->exts);
Yotam Gigiec2507d2017-01-03 19:20:24 +0200225err_exts_init:
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200226 kfree(new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200227 return err;
228}
229
Alexander Aring571acf22018-01-18 11:20:53 -0500230static int mall_delete(struct tcf_proto *tp, void *arg, bool *last,
231 struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200232{
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200233 return -EOPNOTSUPP;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200234}
235
236static void mall_walk(struct tcf_proto *tp, struct tcf_walker *arg)
237{
238 struct cls_mall_head *head = rtnl_dereference(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200239
240 if (arg->count < arg->skip)
241 goto skip;
WANG Cong8113c092017-08-04 21:31:43 -0700242 if (arg->fn(tp, head, arg) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200243 arg->stop = 1;
244skip:
245 arg->count++;
246}
247
WANG Cong8113c092017-08-04 21:31:43 -0700248static int mall_dump(struct net *net, struct tcf_proto *tp, void *fh,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200249 struct sk_buff *skb, struct tcmsg *t)
250{
WANG Cong8113c092017-08-04 21:31:43 -0700251 struct cls_mall_head *head = fh;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200252 struct nlattr *nest;
253
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200254 if (!head)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200255 return skb->len;
256
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200257 t->tcm_handle = head->handle;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200258
259 nest = nla_nest_start(skb, TCA_OPTIONS);
260 if (!nest)
261 goto nla_put_failure;
262
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200263 if (head->res.classid &&
264 nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200265 goto nla_put_failure;
266
Or Gerlitz7a335ad2017-02-16 10:31:11 +0200267 if (head->flags && nla_put_u32(skb, TCA_MATCHALL_FLAGS, head->flags))
268 goto nla_put_failure;
269
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200270 if (tcf_exts_dump(skb, &head->exts))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200271 goto nla_put_failure;
272
273 nla_nest_end(skb, nest);
274
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200275 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200276 goto nla_put_failure;
277
278 return skb->len;
279
280nla_put_failure:
281 nla_nest_cancel(skb, nest);
282 return -1;
283}
284
Cong Wang07d79fc2017-08-30 14:30:36 -0700285static void mall_bind_class(void *fh, u32 classid, unsigned long cl)
286{
287 struct cls_mall_head *head = fh;
288
289 if (head && head->res.classid == classid)
290 head->res.class = cl;
291}
292
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200293static struct tcf_proto_ops cls_mall_ops __read_mostly = {
294 .kind = "matchall",
295 .classify = mall_classify,
296 .init = mall_init,
297 .destroy = mall_destroy,
298 .get = mall_get,
299 .change = mall_change,
300 .delete = mall_delete,
301 .walk = mall_walk,
302 .dump = mall_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -0700303 .bind_class = mall_bind_class,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200304 .owner = THIS_MODULE,
305};
306
307static int __init cls_mall_init(void)
308{
309 return register_tcf_proto_ops(&cls_mall_ops);
310}
311
312static void __exit cls_mall_exit(void)
313{
314 unregister_tcf_proto_ops(&cls_mall_ops);
315}
316
317module_init(cls_mall_init);
318module_exit(cls_mall_exit);
319
320MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
321MODULE_DESCRIPTION("Match-all classifier");
322MODULE_LICENSE("GPL v2");