blob: e43c56d5b96a2943d59733185b51b8bafe19f8fa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/cls_basic.c Basic Packet Classifier.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Thomas Graf <tgraf@suug.ch>
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
15#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/rtnetlink.h>
19#include <linux/skbuff.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070020#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/act_api.h>
22#include <net/pkt_cls.h>
23
Eric Dumazetcc7ec452011-01-19 19:26:56 +000024struct basic_head {
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 u32 hgenerator;
26 struct list_head flist;
John Fastabend9888faef2014-09-12 20:05:59 -070027 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
Eric Dumazetcc7ec452011-01-19 19:26:56 +000030struct basic_filter {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 u32 handle;
32 struct tcf_exts exts;
33 struct tcf_ematch_tree ematches;
34 struct tcf_result res;
John Fastabend9888faef2014-09-12 20:05:59 -070035 struct tcf_proto *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct list_head link;
Cong Wangc96a4832017-10-26 18:24:29 -070037 union {
38 struct work_struct work;
39 struct rcu_head rcu;
40 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000043static int basic_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct tcf_result *res)
45{
46 int r;
John Fastabend9888faef2014-09-12 20:05:59 -070047 struct basic_head *head = rcu_dereference_bh(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct basic_filter *f;
49
John Fastabend9888faef2014-09-12 20:05:59 -070050 list_for_each_entry_rcu(f, &head->flist, link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if (!tcf_em_tree_match(skb, &f->ematches, NULL))
52 continue;
53 *res = f->res;
54 r = tcf_exts_exec(skb, &f->exts, res);
55 if (r < 0)
56 continue;
57 return r;
58 }
59 return -1;
60}
61
WANG Cong8113c092017-08-04 21:31:43 -070062static void *basic_get(struct tcf_proto *tp, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
John Fastabend9888faef2014-09-12 20:05:59 -070064 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct basic_filter *f;
66
Daniel Borkmann1c1bc6b2015-01-22 10:58:18 +010067 list_for_each_entry(f, &head->flist, link) {
68 if (f->handle == handle) {
WANG Cong8113c092017-08-04 21:31:43 -070069 return f;
Daniel Borkmann1c1bc6b2015-01-22 10:58:18 +010070 }
71 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
WANG Cong8113c092017-08-04 21:31:43 -070073 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static int basic_init(struct tcf_proto *tp)
77{
Patrick McHardyd3fa76e2007-03-24 22:13:06 -070078 struct basic_head *head;
79
80 head = kzalloc(sizeof(*head), GFP_KERNEL);
81 if (head == NULL)
82 return -ENOBUFS;
83 INIT_LIST_HEAD(&head->flist);
John Fastabend9888faef2014-09-12 20:05:59 -070084 rcu_assign_pointer(tp->root, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return 0;
86}
87
Cong Wang0b2a5982017-11-06 13:47:20 -080088static void __basic_delete_filter(struct basic_filter *f)
89{
90 tcf_exts_destroy(&f->exts);
91 tcf_em_tree_destroy(&f->ematches);
92 tcf_exts_put_net(&f->exts);
93 kfree(f);
94}
95
Cong Wangc96a4832017-10-26 18:24:29 -070096static void basic_delete_filter_work(struct work_struct *work)
97{
98 struct basic_filter *f = container_of(work, struct basic_filter, work);
99
100 rtnl_lock();
Cong Wang0b2a5982017-11-06 13:47:20 -0800101 __basic_delete_filter(f);
Cong Wangc96a4832017-10-26 18:24:29 -0700102 rtnl_unlock();
Cong Wangc96a4832017-10-26 18:24:29 -0700103}
104
John Fastabend9888faef2014-09-12 20:05:59 -0700105static void basic_delete_filter(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
John Fastabend9888faef2014-09-12 20:05:59 -0700107 struct basic_filter *f = container_of(head, struct basic_filter, rcu);
John Fastabend9888faef2014-09-12 20:05:59 -0700108
Cong Wangc96a4832017-10-26 18:24:29 -0700109 INIT_WORK(&f->work, basic_delete_filter_work);
110 tcf_queue_work(&f->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
WANG Cong763dbf62017-04-19 14:21:21 -0700113static void basic_destroy(struct tcf_proto *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
John Fastabend9888faef2014-09-12 20:05:59 -0700115 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct basic_filter *f, *n;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 list_for_each_entry_safe(f, n, &head->flist, link) {
John Fastabend9888faef2014-09-12 20:05:59 -0700119 list_del_rcu(&f->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700120 tcf_unbind_filter(tp, &f->res);
Cong Wang0b2a5982017-11-06 13:47:20 -0800121 if (tcf_exts_get_net(&f->exts))
122 call_rcu(&f->rcu, basic_delete_filter);
123 else
124 __basic_delete_filter(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
John Fastabend9888faef2014-09-12 20:05:59 -0700126 kfree_rcu(head, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
WANG Cong8113c092017-08-04 21:31:43 -0700129static int basic_delete(struct tcf_proto *tp, void *arg, bool *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
WANG Cong763dbf62017-04-19 14:21:21 -0700131 struct basic_head *head = rtnl_dereference(tp->root);
WANG Cong8113c092017-08-04 21:31:43 -0700132 struct basic_filter *f = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Jiri Pirkoe4386452014-12-02 18:00:31 +0100134 list_del_rcu(&f->link);
135 tcf_unbind_filter(tp, &f->res);
Cong Wang0b2a5982017-11-06 13:47:20 -0800136 tcf_exts_get_net(&f->exts);
Jiri Pirkoe4386452014-12-02 18:00:31 +0100137 call_rcu(&f->rcu, basic_delete_filter);
WANG Cong763dbf62017-04-19 14:21:21 -0700138 *last = list_empty(&head->flist);
Jiri Pirkoe4386452014-12-02 18:00:31 +0100139 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800142static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = {
143 [TCA_BASIC_CLASSID] = { .type = NLA_U32 },
144 [TCA_BASIC_EMATCHES] = { .type = NLA_NESTED },
145};
146
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000147static int basic_set_parms(struct net *net, struct tcf_proto *tp,
148 struct basic_filter *f, unsigned long base,
149 struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700150 struct nlattr *est, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
stephen hemminger64590822013-09-26 17:42:16 -0700152 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Jiri Pirkoff1f8ca2017-08-04 14:29:09 +0200154 err = tcf_exts_validate(net, tp, tb, est, &f->exts, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 if (err < 0)
156 return err;
157
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200158 err = tcf_em_tree_validate(tp, tb[TCA_BASIC_EMATCHES], &f->ematches);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (err < 0)
Jiri Pirkoff1f8ca2017-08-04 14:29:09 +0200160 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Patrick McHardyadd93b62008-01-22 22:11:33 -0800162 if (tb[TCA_BASIC_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800163 f->res.classid = nla_get_u32(tb[TCA_BASIC_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 tcf_bind_filter(tp, &f->res, base);
165 }
166
John Fastabend9888faef2014-09-12 20:05:59 -0700167 f->tp = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000171static int basic_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600172 struct tcf_proto *tp, unsigned long base, u32 handle,
WANG Cong8113c092017-08-04 21:31:43 -0700173 struct nlattr **tca, void **arg, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Patrick McHardycee63722008-01-23 20:33:32 -0800175 int err;
John Fastabend9888faef2014-09-12 20:05:59 -0700176 struct basic_head *head = rtnl_dereference(tp->root);
Patrick McHardyadd93b62008-01-22 22:11:33 -0800177 struct nlattr *tb[TCA_BASIC_MAX + 1];
John Fastabend9888faef2014-09-12 20:05:59 -0700178 struct basic_filter *fold = (struct basic_filter *) *arg;
179 struct basic_filter *fnew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Patrick McHardyadd93b62008-01-22 22:11:33 -0800181 if (tca[TCA_OPTIONS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return -EINVAL;
183
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800184 err = nla_parse_nested(tb, TCA_BASIC_MAX, tca[TCA_OPTIONS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200185 basic_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800186 if (err < 0)
187 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
John Fastabend9888faef2014-09-12 20:05:59 -0700189 if (fold != NULL) {
190 if (handle && fold->handle != handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
John Fastabend9888faef2014-09-12 20:05:59 -0700194 fnew = kzalloc(sizeof(*fnew), GFP_KERNEL);
Jiri Pirkobd42b782014-12-05 15:50:22 +0100195 if (!fnew)
196 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
WANG Congb9a24bb2016-08-19 12:36:54 -0700198 err = tcf_exts_init(&fnew->exts, TCA_BASIC_ACT, TCA_BASIC_POLICE);
199 if (err < 0)
200 goto errout;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 err = -EINVAL;
John Fastabend9888faef2014-09-12 20:05:59 -0700203 if (handle) {
204 fnew->handle = handle;
205 } else if (fold) {
206 fnew->handle = fold->handle;
207 } else {
Kim Nordlund658270a2006-09-27 16:19:53 -0700208 unsigned int i = 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 do {
210 if (++head->hgenerator == 0x7FFFFFFF)
211 head->hgenerator = 1;
212 } while (--i > 0 && basic_get(tp, head->hgenerator));
213
214 if (i <= 0) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000215 pr_err("Insufficient number of handles\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto errout;
217 }
218
John Fastabend9888faef2014-09-12 20:05:59 -0700219 fnew->handle = head->hgenerator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
John Fastabend9888faef2014-09-12 20:05:59 -0700222 err = basic_set_parms(net, tp, fnew, base, tb, tca[TCA_RATE], ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (err < 0)
224 goto errout;
225
WANG Cong8113c092017-08-04 21:31:43 -0700226 *arg = fnew;
John Fastabend9888faef2014-09-12 20:05:59 -0700227
228 if (fold) {
229 list_replace_rcu(&fold->link, &fnew->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700230 tcf_unbind_filter(tp, &fold->res);
Cong Wang0b2a5982017-11-06 13:47:20 -0800231 tcf_exts_get_net(&fold->exts);
John Fastabend9888faef2014-09-12 20:05:59 -0700232 call_rcu(&fold->rcu, basic_delete_filter);
233 } else {
234 list_add_rcu(&fnew->link, &head->flist);
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return 0;
238errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700239 tcf_exts_destroy(&fnew->exts);
John Fastabend9888faef2014-09-12 20:05:59 -0700240 kfree(fnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return err;
242}
243
244static void basic_walk(struct tcf_proto *tp, struct tcf_walker *arg)
245{
John Fastabend9888faef2014-09-12 20:05:59 -0700246 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct basic_filter *f;
248
249 list_for_each_entry(f, &head->flist, link) {
250 if (arg->count < arg->skip)
251 goto skip;
252
WANG Cong8113c092017-08-04 21:31:43 -0700253 if (arg->fn(tp, f, arg) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 arg->stop = 1;
255 break;
256 }
257skip:
258 arg->count++;
259 }
260}
261
Cong Wang07d79fc2017-08-30 14:30:36 -0700262static void basic_bind_class(void *fh, u32 classid, unsigned long cl)
263{
264 struct basic_filter *f = fh;
265
266 if (f && f->res.classid == classid)
267 f->res.class = cl;
268}
269
WANG Cong8113c092017-08-04 21:31:43 -0700270static int basic_dump(struct net *net, struct tcf_proto *tp, void *fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct sk_buff *skb, struct tcmsg *t)
272{
WANG Cong8113c092017-08-04 21:31:43 -0700273 struct basic_filter *f = fh;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800274 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (f == NULL)
277 return skb->len;
278
279 t->tcm_handle = f->handle;
280
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800281 nest = nla_nest_start(skb, TCA_OPTIONS);
282 if (nest == NULL)
283 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
David S. Miller1b34ec42012-03-29 05:11:39 -0400285 if (f->res.classid &&
286 nla_put_u32(skb, TCA_BASIC_CLASSID, f->res.classid))
287 goto nla_put_failure;
Thomas Grafe1e284a2005-06-08 15:11:02 -0700288
WANG Cong5da57f42013-12-15 20:15:07 -0800289 if (tcf_exts_dump(skb, &f->exts) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800291 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800293 nla_nest_end(skb, nest);
stephen hemminger4c46ee52010-11-04 11:47:04 +0000294
WANG Cong5da57f42013-12-15 20:15:07 -0800295 if (tcf_exts_dump_stats(skb, &f->exts) < 0)
stephen hemminger4c46ee52010-11-04 11:47:04 +0000296 goto nla_put_failure;
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return skb->len;
299
Patrick McHardyadd93b62008-01-22 22:11:33 -0800300nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800301 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return -1;
303}
304
Patrick McHardy2eb9d752008-01-22 22:10:42 -0800305static struct tcf_proto_ops cls_basic_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .kind = "basic",
307 .classify = basic_classify,
308 .init = basic_init,
309 .destroy = basic_destroy,
310 .get = basic_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .change = basic_change,
312 .delete = basic_delete,
313 .walk = basic_walk,
314 .dump = basic_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -0700315 .bind_class = basic_bind_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 .owner = THIS_MODULE,
317};
318
319static int __init init_basic(void)
320{
321 return register_tcf_proto_ops(&cls_basic_ops);
322}
323
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900324static void __exit exit_basic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 unregister_tcf_proto_ops(&cls_basic_ops);
327}
328
329module_init(init_basic)
330module_exit(exit_basic)
331MODULE_LICENSE("GPL");
332