blob: af16f36ed578910824cac069dad85325e3271e0e [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;
John Hurley0efd1b32018-06-25 14:30:07 -070024 unsigned int in_hw_count;
Cong Wangaaa908f2018-05-23 15:26:53 -070025 struct rcu_work rwork;
Jiri Pirkobf3994d2016-07-21 12:03:11 +020026};
27
28static int mall_classify(struct sk_buff *skb, const struct tcf_proto *tp,
29 struct tcf_result *res)
30{
31 struct cls_mall_head *head = rcu_dereference_bh(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020032
Yotam Gigifd62d9f2017-01-31 15:14:29 +020033 if (tc_skip_sw(head->flags))
Yotam Gigib87f7932016-07-21 12:03:12 +020034 return -1;
35
Davide Caratti3ff4cbe2017-09-16 14:02:21 +020036 *res = head->res;
Yotam Gigifd62d9f2017-01-31 15:14:29 +020037 return tcf_exts_exec(skb, &head->exts, res);
Jiri Pirkobf3994d2016-07-21 12:03:11 +020038}
39
40static int mall_init(struct tcf_proto *tp)
41{
Jiri Pirkobf3994d2016-07-21 12:03:11 +020042 return 0;
43}
44
Cong Wang57767e782017-11-06 13:47:26 -080045static void __mall_destroy(struct cls_mall_head *head)
46{
47 tcf_exts_destroy(&head->exts);
48 tcf_exts_put_net(&head->exts);
49 kfree(head);
50}
51
Cong Wangdf2735e2017-10-26 18:24:35 -070052static void mall_destroy_work(struct work_struct *work)
53{
Cong Wangaaa908f2018-05-23 15:26:53 -070054 struct cls_mall_head *head = container_of(to_rcu_work(work),
55 struct cls_mall_head,
56 rwork);
Cong Wangdf2735e2017-10-26 18:24:35 -070057 rtnl_lock();
Cong Wang57767e782017-11-06 13:47:26 -080058 __mall_destroy(head);
Cong Wangdf2735e2017-10-26 18:24:35 -070059 rtnl_unlock();
60}
61
Jiri Pirko2447a962017-10-19 15:50:33 +020062static void mall_destroy_hw_filter(struct tcf_proto *tp,
63 struct cls_mall_head *head,
Jakub Kicinskib505b292018-01-24 12:54:19 -080064 unsigned long cookie,
65 struct netlink_ext_ack *extack)
Jiri Pirko2447a962017-10-19 15:50:33 +020066{
Jiri Pirko2447a962017-10-19 15:50:33 +020067 struct tc_cls_matchall_offload cls_mall = {};
68 struct tcf_block *block = tp->chain->block;
69
Jakub Kicinskib505b292018-01-24 12:54:19 -080070 tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack);
Jiri Pirko2447a962017-10-19 15:50:33 +020071 cls_mall.command = TC_CLSMATCHALL_DESTROY;
72 cls_mall.cookie = cookie;
73
Jiri Pirko2447a962017-10-19 15:50:33 +020074 tc_setup_cb_call(block, NULL, TC_SETUP_CLSMATCHALL, &cls_mall, false);
Jiri Pirkocaa72602018-01-17 11:46:50 +010075 tcf_block_offload_dec(block, &head->flags);
Jiri Pirko2447a962017-10-19 15:50:33 +020076}
77
Yotam Gigib87f7932016-07-21 12:03:12 +020078static int mall_replace_hw_filter(struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +020079 struct cls_mall_head *head,
Quentin Monnet02798142018-01-19 17:44:44 -080080 unsigned long cookie,
81 struct netlink_ext_ack *extack)
Yotam Gigib87f7932016-07-21 12:03:12 +020082{
Jiri Pirkode4784c2017-08-07 10:15:32 +020083 struct tc_cls_matchall_offload cls_mall = {};
Jiri Pirko2447a962017-10-19 15:50:33 +020084 struct tcf_block *block = tp->chain->block;
85 bool skip_sw = tc_skip_sw(head->flags);
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +020086 int err;
Yotam Gigib87f7932016-07-21 12:03:12 +020087
Jakub Kicinski93da52b2018-01-24 12:54:18 -080088 tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack);
Jiri Pirkode4784c2017-08-07 10:15:32 +020089 cls_mall.command = TC_CLSMATCHALL_REPLACE;
90 cls_mall.exts = &head->exts;
91 cls_mall.cookie = cookie;
Yotam Gigib87f7932016-07-21 12:03:12 +020092
Jiri Pirko2447a962017-10-19 15:50:33 +020093 err = tc_setup_cb_call(block, NULL, TC_SETUP_CLSMATCHALL,
94 &cls_mall, skip_sw);
95 if (err < 0) {
Jakub Kicinskib505b292018-01-24 12:54:19 -080096 mall_destroy_hw_filter(tp, head, cookie, NULL);
Jiri Pirko2447a962017-10-19 15:50:33 +020097 return err;
98 } else if (err > 0) {
John Hurley0efd1b32018-06-25 14:30:07 -070099 head->in_hw_count = err;
Jiri Pirkocaa72602018-01-17 11:46:50 +0100100 tcf_block_offload_inc(block, &head->flags);
Jiri Pirko2447a962017-10-19 15:50:33 +0200101 }
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +0200102
Jiri Pirko2447a962017-10-19 15:50:33 +0200103 if (skip_sw && !(head->flags & TCA_CLS_FLAGS_IN_HW))
104 return -EINVAL;
Yotam Gigib87f7932016-07-21 12:03:12 +0200105
Jiri Pirko2447a962017-10-19 15:50:33 +0200106 return 0;
Yotam Gigib87f7932016-07-21 12:03:12 +0200107}
108
Jakub Kicinski715df5e2018-01-24 12:54:13 -0800109static void mall_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200110{
111 struct cls_mall_head *head = rtnl_dereference(tp->root);
112
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200113 if (!head)
WANG Cong763dbf62017-04-19 14:21:21 -0700114 return;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200115
Jiri Pirko2447a962017-10-19 15:50:33 +0200116 if (!tc_skip_hw(head->flags))
Jakub Kicinskib505b292018-01-24 12:54:19 -0800117 mall_destroy_hw_filter(tp, head, (unsigned long) head, extack);
Yotam Gigib87f7932016-07-21 12:03:12 +0200118
Cong Wang57767e782017-11-06 13:47:26 -0800119 if (tcf_exts_get_net(&head->exts))
Cong Wangaaa908f2018-05-23 15:26:53 -0700120 tcf_queue_work(&head->rwork, mall_destroy_work);
Cong Wang57767e782017-11-06 13:47:26 -0800121 else
122 __mall_destroy(head);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200123}
124
WANG Cong8113c092017-08-04 21:31:43 -0700125static void *mall_get(struct tcf_proto *tp, u32 handle)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200126{
WANG Cong8113c092017-08-04 21:31:43 -0700127 return NULL;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200128}
129
130static const struct nla_policy mall_policy[TCA_MATCHALL_MAX + 1] = {
131 [TCA_MATCHALL_UNSPEC] = { .type = NLA_UNSPEC },
132 [TCA_MATCHALL_CLASSID] = { .type = NLA_U32 },
133};
134
135static int mall_set_parms(struct net *net, struct tcf_proto *tp,
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200136 struct cls_mall_head *head,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200137 unsigned long base, struct nlattr **tb,
Alexander Aring50a56192018-01-18 11:20:52 -0500138 struct nlattr *est, bool ovr,
139 struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200140{
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200141 int err;
142
Alexander Aring50a56192018-01-18 11:20:52 -0500143 err = tcf_exts_validate(net, tp, tb, est, &head->exts, ovr, extack);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200144 if (err < 0)
Jiri Pirkoa74cb362017-08-04 14:29:08 +0200145 return err;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200146
147 if (tb[TCA_MATCHALL_CLASSID]) {
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200148 head->res.classid = nla_get_u32(tb[TCA_MATCHALL_CLASSID]);
149 tcf_bind_filter(tp, &head->res, base);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200150 }
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200151 return 0;
152}
153
154static int mall_change(struct net *net, struct sk_buff *in_skb,
155 struct tcf_proto *tp, unsigned long base,
156 u32 handle, struct nlattr **tca,
Alexander Aring7306db32018-01-18 11:20:51 -0500157 void **arg, bool ovr, struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200158{
159 struct cls_mall_head *head = rtnl_dereference(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200160 struct nlattr *tb[TCA_MATCHALL_MAX + 1];
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200161 struct cls_mall_head *new;
Yotam Gigib87f7932016-07-21 12:03:12 +0200162 u32 flags = 0;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200163 int err;
164
165 if (!tca[TCA_OPTIONS])
166 return -EINVAL;
167
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200168 if (head)
169 return -EEXIST;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200170
Johannes Bergfceb6432017-04-12 14:34:07 +0200171 err = nla_parse_nested(tb, TCA_MATCHALL_MAX, tca[TCA_OPTIONS],
172 mall_policy, NULL);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200173 if (err < 0)
174 return err;
175
Yotam Gigib87f7932016-07-21 12:03:12 +0200176 if (tb[TCA_MATCHALL_FLAGS]) {
177 flags = nla_get_u32(tb[TCA_MATCHALL_FLAGS]);
178 if (!tc_flags_valid(flags))
179 return -EINVAL;
180 }
181
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200182 new = kzalloc(sizeof(*new), GFP_KERNEL);
183 if (!new)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200184 return -ENOBUFS;
185
David S. Millere2160152017-02-02 16:54:00 -0500186 err = tcf_exts_init(&new->exts, TCA_MATCHALL_ACT, 0);
Yotam Gigiec2507d2017-01-03 19:20:24 +0200187 if (err)
188 goto err_exts_init;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200189
190 if (!handle)
191 handle = 1;
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200192 new->handle = handle;
193 new->flags = flags;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200194
Alexander Aring50a56192018-01-18 11:20:52 -0500195 err = mall_set_parms(net, tp, new, base, tb, tca[TCA_RATE], ovr,
196 extack);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200197 if (err)
Yotam Gigiec2507d2017-01-03 19:20:24 +0200198 goto err_set_parms;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200199
Jiri Pirko2447a962017-10-19 15:50:33 +0200200 if (!tc_skip_hw(new->flags)) {
Quentin Monnet02798142018-01-19 17:44:44 -0800201 err = mall_replace_hw_filter(tp, new, (unsigned long)new,
202 extack);
Jiri Pirko2447a962017-10-19 15:50:33 +0200203 if (err)
204 goto err_replace_hw_filter;
Yotam Gigib87f7932016-07-21 12:03:12 +0200205 }
206
Or Gerlitzc7d2b2f2017-02-16 10:31:14 +0200207 if (!tc_in_hw(new->flags))
208 new->flags |= TCA_CLS_FLAGS_NOT_IN_HW;
209
WANG Cong8113c092017-08-04 21:31:43 -0700210 *arg = head;
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200211 rcu_assign_pointer(tp->root, new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200212 return 0;
213
Yotam Gigiec2507d2017-01-03 19:20:24 +0200214err_replace_hw_filter:
215err_set_parms:
David S. Millere2160152017-02-02 16:54:00 -0500216 tcf_exts_destroy(&new->exts);
Yotam Gigiec2507d2017-01-03 19:20:24 +0200217err_exts_init:
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200218 kfree(new);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200219 return err;
220}
221
Alexander Aring571acf22018-01-18 11:20:53 -0500222static int mall_delete(struct tcf_proto *tp, void *arg, bool *last,
223 struct netlink_ext_ack *extack)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200224{
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200225 return -EOPNOTSUPP;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200226}
227
228static void mall_walk(struct tcf_proto *tp, struct tcf_walker *arg)
229{
230 struct cls_mall_head *head = rtnl_dereference(tp->root);
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200231
232 if (arg->count < arg->skip)
233 goto skip;
WANG Cong8113c092017-08-04 21:31:43 -0700234 if (arg->fn(tp, head, arg) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200235 arg->stop = 1;
236skip:
237 arg->count++;
238}
239
John Hurley0efd1b32018-06-25 14:30:07 -0700240static int mall_reoffload(struct tcf_proto *tp, bool add, tc_setup_cb_t *cb,
241 void *cb_priv, struct netlink_ext_ack *extack)
242{
243 struct cls_mall_head *head = rtnl_dereference(tp->root);
244 struct tc_cls_matchall_offload cls_mall = {};
245 struct tcf_block *block = tp->chain->block;
246 int err;
247
248 if (tc_skip_hw(head->flags))
249 return 0;
250
251 tc_cls_common_offload_init(&cls_mall.common, tp, head->flags, extack);
252 cls_mall.command = add ?
253 TC_CLSMATCHALL_REPLACE : TC_CLSMATCHALL_DESTROY;
254 cls_mall.exts = &head->exts;
255 cls_mall.cookie = (unsigned long)head;
256
257 err = cb(TC_SETUP_CLSMATCHALL, &cls_mall, cb_priv);
258 if (err) {
259 if (add && tc_skip_sw(head->flags))
260 return err;
261 return 0;
262 }
263
264 tc_cls_offload_cnt_update(block, &head->in_hw_count, &head->flags, add);
265
266 return 0;
267}
268
WANG Cong8113c092017-08-04 21:31:43 -0700269static int mall_dump(struct net *net, struct tcf_proto *tp, void *fh,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200270 struct sk_buff *skb, struct tcmsg *t)
271{
WANG Cong8113c092017-08-04 21:31:43 -0700272 struct cls_mall_head *head = fh;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200273 struct nlattr *nest;
274
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200275 if (!head)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200276 return skb->len;
277
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200278 t->tcm_handle = head->handle;
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200279
280 nest = nla_nest_start(skb, TCA_OPTIONS);
281 if (!nest)
282 goto nla_put_failure;
283
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200284 if (head->res.classid &&
285 nla_put_u32(skb, TCA_MATCHALL_CLASSID, head->res.classid))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200286 goto nla_put_failure;
287
Or Gerlitz7a335ad2017-02-16 10:31:11 +0200288 if (head->flags && nla_put_u32(skb, TCA_MATCHALL_FLAGS, head->flags))
289 goto nla_put_failure;
290
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200291 if (tcf_exts_dump(skb, &head->exts))
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200292 goto nla_put_failure;
293
294 nla_nest_end(skb, nest);
295
Yotam Gigifd62d9f2017-01-31 15:14:29 +0200296 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200297 goto nla_put_failure;
298
299 return skb->len;
300
301nla_put_failure:
302 nla_nest_cancel(skb, nest);
303 return -1;
304}
305
Cong Wang07d79fc2017-08-30 14:30:36 -0700306static void mall_bind_class(void *fh, u32 classid, unsigned long cl)
307{
308 struct cls_mall_head *head = fh;
309
310 if (head && head->res.classid == classid)
311 head->res.class = cl;
312}
313
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200314static struct tcf_proto_ops cls_mall_ops __read_mostly = {
315 .kind = "matchall",
316 .classify = mall_classify,
317 .init = mall_init,
318 .destroy = mall_destroy,
319 .get = mall_get,
320 .change = mall_change,
321 .delete = mall_delete,
322 .walk = mall_walk,
John Hurley0efd1b32018-06-25 14:30:07 -0700323 .reoffload = mall_reoffload,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200324 .dump = mall_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -0700325 .bind_class = mall_bind_class,
Jiri Pirkobf3994d2016-07-21 12:03:11 +0200326 .owner = THIS_MODULE,
327};
328
329static int __init cls_mall_init(void)
330{
331 return register_tcf_proto_ops(&cls_mall_ops);
332}
333
334static void __exit cls_mall_exit(void)
335{
336 unregister_tcf_proto_ops(&cls_mall_ops);
337}
338
339module_init(cls_mall_init);
340module_exit(cls_mall_exit);
341
342MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
343MODULE_DESCRIPTION("Match-all classifier");
344MODULE_LICENSE("GPL v2");