blob: 7c7a82138f76bc0f6d04a522ebdebe964432fe90 [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
Daniel Borkmann1c1bc6b2015-01-22 10:58:18 +010065 list_for_each_entry(f, &head->flist, link) {
66 if (f->handle == handle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 l = (unsigned long) f;
Daniel Borkmann1c1bc6b2015-01-22 10:58:18 +010068 break;
69 }
70 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 return l;
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int basic_init(struct tcf_proto *tp)
76{
Patrick McHardyd3fa76e2007-03-24 22:13:06 -070077 struct basic_head *head;
78
79 head = kzalloc(sizeof(*head), GFP_KERNEL);
80 if (head == NULL)
81 return -ENOBUFS;
82 INIT_LIST_HEAD(&head->flist);
John Fastabend9888faef2014-09-12 20:05:59 -070083 rcu_assign_pointer(tp->root, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return 0;
85}
86
John Fastabend9888faef2014-09-12 20:05:59 -070087static void basic_delete_filter(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
John Fastabend9888faef2014-09-12 20:05:59 -070089 struct basic_filter *f = container_of(head, struct basic_filter, rcu);
John Fastabend9888faef2014-09-12 20:05:59 -070090
WANG Cong18d02642014-09-25 10:26:37 -070091 tcf_exts_destroy(&f->exts);
John Fastabend82a470f2014-10-05 21:27:53 -070092 tcf_em_tree_destroy(&f->ematches);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 kfree(f);
94}
95
WANG Cong763dbf62017-04-19 14:21:21 -070096static void basic_destroy(struct tcf_proto *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
John Fastabend9888faef2014-09-12 20:05:59 -070098 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 struct basic_filter *f, *n;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 list_for_each_entry_safe(f, n, &head->flist, link) {
John Fastabend9888faef2014-09-12 20:05:59 -0700102 list_del_rcu(&f->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700103 tcf_unbind_filter(tp, &f->res);
John Fastabend9888faef2014-09-12 20:05:59 -0700104 call_rcu(&f->rcu, basic_delete_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
John Fastabend9888faef2014-09-12 20:05:59 -0700106 kfree_rcu(head, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
WANG Cong763dbf62017-04-19 14:21:21 -0700109static int basic_delete(struct tcf_proto *tp, unsigned long arg, bool *last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
WANG Cong763dbf62017-04-19 14:21:21 -0700111 struct basic_head *head = rtnl_dereference(tp->root);
Jiri Pirkoe4386452014-12-02 18:00:31 +0100112 struct basic_filter *f = (struct basic_filter *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Jiri Pirkoe4386452014-12-02 18:00:31 +0100114 list_del_rcu(&f->link);
115 tcf_unbind_filter(tp, &f->res);
116 call_rcu(&f->rcu, basic_delete_filter);
WANG Cong763dbf62017-04-19 14:21:21 -0700117 *last = list_empty(&head->flist);
Jiri Pirkoe4386452014-12-02 18:00:31 +0100118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800121static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = {
122 [TCA_BASIC_CLASSID] = { .type = NLA_U32 },
123 [TCA_BASIC_EMATCHES] = { .type = NLA_NESTED },
124};
125
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000126static int basic_set_parms(struct net *net, struct tcf_proto *tp,
127 struct basic_filter *f, unsigned long base,
128 struct nlattr **tb,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700129 struct nlattr *est, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
stephen hemminger64590822013-09-26 17:42:16 -0700131 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Jiri Pirkoff1f8ca2017-08-04 14:29:09 +0200133 err = tcf_exts_validate(net, tp, tb, est, &f->exts, ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (err < 0)
135 return err;
136
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200137 err = tcf_em_tree_validate(tp, tb[TCA_BASIC_EMATCHES], &f->ematches);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (err < 0)
Jiri Pirkoff1f8ca2017-08-04 14:29:09 +0200139 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Patrick McHardyadd93b62008-01-22 22:11:33 -0800141 if (tb[TCA_BASIC_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800142 f->res.classid = nla_get_u32(tb[TCA_BASIC_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 tcf_bind_filter(tp, &f->res, base);
144 }
145
John Fastabend9888faef2014-09-12 20:05:59 -0700146 f->tp = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000150static int basic_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600151 struct tcf_proto *tp, unsigned long base, u32 handle,
Cong Wang2f7ef2f2014-04-25 13:54:06 -0700152 struct nlattr **tca, unsigned long *arg, bool ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Patrick McHardycee63722008-01-23 20:33:32 -0800154 int err;
John Fastabend9888faef2014-09-12 20:05:59 -0700155 struct basic_head *head = rtnl_dereference(tp->root);
Patrick McHardyadd93b62008-01-22 22:11:33 -0800156 struct nlattr *tb[TCA_BASIC_MAX + 1];
John Fastabend9888faef2014-09-12 20:05:59 -0700157 struct basic_filter *fold = (struct basic_filter *) *arg;
158 struct basic_filter *fnew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Patrick McHardyadd93b62008-01-22 22:11:33 -0800160 if (tca[TCA_OPTIONS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return -EINVAL;
162
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800163 err = nla_parse_nested(tb, TCA_BASIC_MAX, tca[TCA_OPTIONS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200164 basic_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800165 if (err < 0)
166 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
John Fastabend9888faef2014-09-12 20:05:59 -0700168 if (fold != NULL) {
169 if (handle && fold->handle != handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172
John Fastabend9888faef2014-09-12 20:05:59 -0700173 fnew = kzalloc(sizeof(*fnew), GFP_KERNEL);
Jiri Pirkobd42b782014-12-05 15:50:22 +0100174 if (!fnew)
175 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
WANG Congb9a24bb2016-08-19 12:36:54 -0700177 err = tcf_exts_init(&fnew->exts, TCA_BASIC_ACT, TCA_BASIC_POLICE);
178 if (err < 0)
179 goto errout;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 err = -EINVAL;
John Fastabend9888faef2014-09-12 20:05:59 -0700182 if (handle) {
183 fnew->handle = handle;
184 } else if (fold) {
185 fnew->handle = fold->handle;
186 } else {
Kim Nordlund658270a2006-09-27 16:19:53 -0700187 unsigned int i = 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 do {
189 if (++head->hgenerator == 0x7FFFFFFF)
190 head->hgenerator = 1;
191 } while (--i > 0 && basic_get(tp, head->hgenerator));
192
193 if (i <= 0) {
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000194 pr_err("Insufficient number of handles\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 goto errout;
196 }
197
John Fastabend9888faef2014-09-12 20:05:59 -0700198 fnew->handle = head->hgenerator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
John Fastabend9888faef2014-09-12 20:05:59 -0700201 err = basic_set_parms(net, tp, fnew, base, tb, tca[TCA_RATE], ovr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (err < 0)
203 goto errout;
204
John Fastabend9888faef2014-09-12 20:05:59 -0700205 *arg = (unsigned long)fnew;
206
207 if (fold) {
208 list_replace_rcu(&fold->link, &fnew->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700209 tcf_unbind_filter(tp, &fold->res);
John Fastabend9888faef2014-09-12 20:05:59 -0700210 call_rcu(&fold->rcu, basic_delete_filter);
211 } else {
212 list_add_rcu(&fnew->link, &head->flist);
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 return 0;
216errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700217 tcf_exts_destroy(&fnew->exts);
John Fastabend9888faef2014-09-12 20:05:59 -0700218 kfree(fnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return err;
220}
221
222static void basic_walk(struct tcf_proto *tp, struct tcf_walker *arg)
223{
John Fastabend9888faef2014-09-12 20:05:59 -0700224 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct basic_filter *f;
226
227 list_for_each_entry(f, &head->flist, link) {
228 if (arg->count < arg->skip)
229 goto skip;
230
231 if (arg->fn(tp, (unsigned long) f, arg) < 0) {
232 arg->stop = 1;
233 break;
234 }
235skip:
236 arg->count++;
237 }
238}
239
WANG Cong832d1d52014-01-09 16:14:01 -0800240static int basic_dump(struct net *net, struct tcf_proto *tp, unsigned long fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct sk_buff *skb, struct tcmsg *t)
242{
243 struct basic_filter *f = (struct basic_filter *) fh;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800244 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 if (f == NULL)
247 return skb->len;
248
249 t->tcm_handle = f->handle;
250
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800251 nest = nla_nest_start(skb, TCA_OPTIONS);
252 if (nest == NULL)
253 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
David S. Miller1b34ec42012-03-29 05:11:39 -0400255 if (f->res.classid &&
256 nla_put_u32(skb, TCA_BASIC_CLASSID, f->res.classid))
257 goto nla_put_failure;
Thomas Grafe1e284a2005-06-08 15:11:02 -0700258
WANG Cong5da57f42013-12-15 20:15:07 -0800259 if (tcf_exts_dump(skb, &f->exts) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800261 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800263 nla_nest_end(skb, nest);
stephen hemminger4c46ee52010-11-04 11:47:04 +0000264
WANG Cong5da57f42013-12-15 20:15:07 -0800265 if (tcf_exts_dump_stats(skb, &f->exts) < 0)
stephen hemminger4c46ee52010-11-04 11:47:04 +0000266 goto nla_put_failure;
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return skb->len;
269
Patrick McHardyadd93b62008-01-22 22:11:33 -0800270nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800271 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return -1;
273}
274
Patrick McHardy2eb9d752008-01-22 22:10:42 -0800275static struct tcf_proto_ops cls_basic_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .kind = "basic",
277 .classify = basic_classify,
278 .init = basic_init,
279 .destroy = basic_destroy,
280 .get = basic_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .change = basic_change,
282 .delete = basic_delete,
283 .walk = basic_walk,
284 .dump = basic_dump,
285 .owner = THIS_MODULE,
286};
287
288static int __init init_basic(void)
289{
290 return register_tcf_proto_ops(&cls_basic_ops);
291}
292
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900293static void __exit exit_basic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 unregister_tcf_proto_ops(&cls_basic_ops);
296}
297
298module_init(init_basic)
299module_exit(exit_basic)
300MODULE_LICENSE("GPL");
301