blob: 1937298d677557176dbee8a96ecdbfba632c1df0 [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;
John Fastabend9888faef2014-09-12 20:05:59 -070037 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000040static int basic_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 struct tcf_result *res)
42{
43 int r;
John Fastabend9888faef2014-09-12 20:05:59 -070044 struct basic_head *head = rcu_dereference_bh(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct basic_filter *f;
46
John Fastabend9888faef2014-09-12 20:05:59 -070047 list_for_each_entry_rcu(f, &head->flist, link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 if (!tcf_em_tree_match(skb, &f->ematches, NULL))
49 continue;
50 *res = f->res;
51 r = tcf_exts_exec(skb, &f->exts, res);
52 if (r < 0)
53 continue;
54 return r;
55 }
56 return -1;
57}
58
59static unsigned long basic_get(struct tcf_proto *tp, u32 handle)
60{
61 unsigned long l = 0UL;
John Fastabend9888faef2014-09-12 20:05:59 -070062 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 struct basic_filter *f;
64
65 if (head == NULL)
66 return 0UL;
67
68 list_for_each_entry(f, &head->flist, link)
69 if (f->handle == handle)
70 l = (unsigned long) f;
71
72 return l;
73}
74
75static void basic_put(struct tcf_proto *tp, unsigned long f)
76{
77}
78
79static int basic_init(struct tcf_proto *tp)
80{
Patrick McHardyd3fa76e2007-03-24 22:13:06 -070081 struct basic_head *head;
82
83 head = kzalloc(sizeof(*head), GFP_KERNEL);
84 if (head == NULL)
85 return -ENOBUFS;
86 INIT_LIST_HEAD(&head->flist);
John Fastabend9888faef2014-09-12 20:05:59 -070087 rcu_assign_pointer(tp->root, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return 0;
89}
90
John Fastabend9888faef2014-09-12 20:05:59 -070091static void basic_delete_filter(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
John Fastabend9888faef2014-09-12 20:05:59 -070093 struct basic_filter *f = container_of(head, struct basic_filter, rcu);
94 struct tcf_proto *tp = f->tp;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 tcf_unbind_filter(tp, &f->res);
97 tcf_exts_destroy(tp, &f->exts);
98 tcf_em_tree_destroy(tp, &f->ematches);
99 kfree(f);
100}
101
102static void basic_destroy(struct tcf_proto *tp)
103{
John Fastabend9888faef2014-09-12 20:05:59 -0700104 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct basic_filter *f, *n;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 list_for_each_entry_safe(f, n, &head->flist, link) {
John Fastabend9888faef2014-09-12 20:05:59 -0700108 list_del_rcu(&f->link);
109 call_rcu(&f->rcu, basic_delete_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
John Fastabend9888faef2014-09-12 20:05:59 -0700111 RCU_INIT_POINTER(tp->root, NULL);
112 kfree_rcu(head, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static int basic_delete(struct tcf_proto *tp, unsigned long arg)
116{
John Fastabend9888faef2014-09-12 20:05:59 -0700117 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct basic_filter *t, *f = (struct basic_filter *) arg;
119
120 list_for_each_entry(t, &head->flist, link)
121 if (t == f) {
John Fastabend9888faef2014-09-12 20:05:59 -0700122 list_del_rcu(&t->link);
123 call_rcu(&t->rcu, basic_delete_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return 0;
125 }
126
127 return -ENOENT;
128}
129
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800130static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = {
131 [TCA_BASIC_CLASSID] = { .type = NLA_U32 },
132 [TCA_BASIC_EMATCHES] = { .type = NLA_NESTED },
133};
134
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000135static int basic_set_parms(struct net *net, struct tcf_proto *tp,
136 struct basic_filter *f, unsigned long base,
137 struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700138 struct nlattr *est, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
stephen hemminger64590822013-09-26 17:42:16 -0700140 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 struct tcf_exts e;
142 struct tcf_ematch_tree t;
143
WANG Cong5da57f42013-12-15 20:15:07 -0800144 tcf_exts_init(&e, TCA_BASIC_ACT, TCA_BASIC_POLICE);
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700145 err = tcf_exts_validate(net, tp, tb, est, &e, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (err < 0)
147 return err;
148
Patrick McHardyadd93b62008-01-22 22:11:33 -0800149 err = tcf_em_tree_validate(tp, tb[TCA_BASIC_EMATCHES], &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (err < 0)
151 goto errout;
152
Patrick McHardyadd93b62008-01-22 22:11:33 -0800153 if (tb[TCA_BASIC_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800154 f->res.classid = nla_get_u32(tb[TCA_BASIC_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 tcf_bind_filter(tp, &f->res, base);
156 }
157
158 tcf_exts_change(tp, &f->exts, &e);
159 tcf_em_tree_change(tp, &f->ematches, &t);
John Fastabend9888faef2014-09-12 20:05:59 -0700160 f->tp = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 return 0;
163errout:
164 tcf_exts_destroy(tp, &e);
165 return err;
166}
167
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000168static int basic_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600169 struct tcf_proto *tp, unsigned long base, u32 handle,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700170 struct nlattr **tca, unsigned long *arg, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Patrick McHardycee63722008-01-23 20:33:32 -0800172 int err;
John Fastabend9888faef2014-09-12 20:05:59 -0700173 struct basic_head *head = rtnl_dereference(tp->root);
Patrick McHardyadd93b62008-01-22 22:11:33 -0800174 struct nlattr *tb[TCA_BASIC_MAX + 1];
John Fastabend9888faef2014-09-12 20:05:59 -0700175 struct basic_filter *fold = (struct basic_filter *) *arg;
176 struct basic_filter *fnew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Patrick McHardyadd93b62008-01-22 22:11:33 -0800178 if (tca[TCA_OPTIONS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -EINVAL;
180
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800181 err = nla_parse_nested(tb, TCA_BASIC_MAX, tca[TCA_OPTIONS],
182 basic_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800183 if (err < 0)
184 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
John Fastabend9888faef2014-09-12 20:05:59 -0700186 if (fold != NULL) {
187 if (handle && fold->handle != handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 err = -ENOBUFS;
John Fastabend9888faef2014-09-12 20:05:59 -0700192 fnew = kzalloc(sizeof(*fnew), GFP_KERNEL);
193 if (fnew == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
John Fastabend9888faef2014-09-12 20:05:59 -0700196 tcf_exts_init(&fnew->exts, TCA_BASIC_ACT, TCA_BASIC_POLICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 err = -EINVAL;
John Fastabend9888faef2014-09-12 20:05:59 -0700198 if (handle) {
199 fnew->handle = handle;
200 } else if (fold) {
201 fnew->handle = fold->handle;
202 } else {
Kim Nordlund658270a2006-09-27 16:19:53 -0700203 unsigned int i = 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 do {
205 if (++head->hgenerator == 0x7FFFFFFF)
206 head->hgenerator = 1;
207 } while (--i > 0 && basic_get(tp, head->hgenerator));
208
209 if (i <= 0) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000210 pr_err("Insufficient number of handles\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto errout;
212 }
213
John Fastabend9888faef2014-09-12 20:05:59 -0700214 fnew->handle = head->hgenerator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
John Fastabend9888faef2014-09-12 20:05:59 -0700217 err = basic_set_parms(net, tp, fnew, base, tb, tca[TCA_RATE], ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (err < 0)
219 goto errout;
220
John Fastabend9888faef2014-09-12 20:05:59 -0700221 *arg = (unsigned long)fnew;
222
223 if (fold) {
224 list_replace_rcu(&fold->link, &fnew->link);
225 call_rcu(&fold->rcu, basic_delete_filter);
226 } else {
227 list_add_rcu(&fnew->link, &head->flist);
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 return 0;
231errout:
John Fastabend9888faef2014-09-12 20:05:59 -0700232 kfree(fnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return err;
234}
235
236static void basic_walk(struct tcf_proto *tp, struct tcf_walker *arg)
237{
John Fastabend9888faef2014-09-12 20:05:59 -0700238 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct basic_filter *f;
240
241 list_for_each_entry(f, &head->flist, link) {
242 if (arg->count < arg->skip)
243 goto skip;
244
245 if (arg->fn(tp, (unsigned long) f, arg) < 0) {
246 arg->stop = 1;
247 break;
248 }
249skip:
250 arg->count++;
251 }
252}
253
WANG Cong832d1d52014-01-09 16:14:01 -0800254static int basic_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 struct sk_buff *skb, struct tcmsg *t)
256{
257 struct basic_filter *f = (struct basic_filter *) fh;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800258 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 if (f == NULL)
261 return skb->len;
262
263 t->tcm_handle = f->handle;
264
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800265 nest = nla_nest_start(skb, TCA_OPTIONS);
266 if (nest == NULL)
267 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
David S. Miller1b34ec42012-03-29 05:11:39 -0400269 if (f->res.classid &&
270 nla_put_u32(skb, TCA_BASIC_CLASSID, f->res.classid))
271 goto nla_put_failure;
Thomas Grafe1e284a2005-06-08 15:11:02 -0700272
WANG Cong5da57f42013-12-15 20:15:07 -0800273 if (tcf_exts_dump(skb, &f->exts) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800275 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800277 nla_nest_end(skb, nest);
stephen hemminger4c46ee52010-11-04 11:47:04 +0000278
WANG Cong5da57f42013-12-15 20:15:07 -0800279 if (tcf_exts_dump_stats(skb, &f->exts) < 0)
stephen hemminger4c46ee52010-11-04 11:47:04 +0000280 goto nla_put_failure;
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return skb->len;
283
Patrick McHardyadd93b62008-01-22 22:11:33 -0800284nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800285 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return -1;
287}
288
Patrick McHardy2eb9d752008-01-22 22:10:42 -0800289static struct tcf_proto_ops cls_basic_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .kind = "basic",
291 .classify = basic_classify,
292 .init = basic_init,
293 .destroy = basic_destroy,
294 .get = basic_get,
295 .put = basic_put,
296 .change = basic_change,
297 .delete = basic_delete,
298 .walk = basic_walk,
299 .dump = basic_dump,
300 .owner = THIS_MODULE,
301};
302
303static int __init init_basic(void)
304{
305 return register_tcf_proto_ops(&cls_basic_ops);
306}
307
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900308static void __exit exit_basic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 unregister_tcf_proto_ops(&cls_basic_ops);
311}
312
313module_init(init_basic)
314module_exit(exit_basic)
315MODULE_LICENSE("GPL");
316