blob: d333f5c5101d0d083588831f5c2f13f35299c05e [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>
Cong Wang1d8134f2017-09-25 10:13:50 -070020#include <linux/idr.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070021#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/act_api.h>
23#include <net/pkt_cls.h>
24
Eric Dumazetcc7ec452011-01-19 19:26:56 +000025struct basic_head {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 struct list_head flist;
Cong Wang1d8134f2017-09-25 10:13:50 -070027 struct idr handle_idr;
John Fastabend9888faef2014-09-12 20:05:59 -070028 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029};
30
Eric Dumazetcc7ec452011-01-19 19:26:56 +000031struct basic_filter {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 u32 handle;
33 struct tcf_exts exts;
34 struct tcf_ematch_tree ematches;
35 struct tcf_result res;
John Fastabend9888faef2014-09-12 20:05:59 -070036 struct tcf_proto *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct list_head link;
Cong Wangc96a4832017-10-26 18:24:29 -070038 union {
39 struct work_struct work;
40 struct rcu_head rcu;
41 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000044static int basic_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct tcf_result *res)
46{
47 int r;
John Fastabend9888faef2014-09-12 20:05:59 -070048 struct basic_head *head = rcu_dereference_bh(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct basic_filter *f;
50
John Fastabend9888faef2014-09-12 20:05:59 -070051 list_for_each_entry_rcu(f, &head->flist, link) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (!tcf_em_tree_match(skb, &f->ematches, NULL))
53 continue;
54 *res = f->res;
55 r = tcf_exts_exec(skb, &f->exts, res);
56 if (r < 0)
57 continue;
58 return r;
59 }
60 return -1;
61}
62
WANG Cong8113c092017-08-04 21:31:43 -070063static void *basic_get(struct tcf_proto *tp, u32 handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
John Fastabend9888faef2014-09-12 20:05:59 -070065 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct basic_filter *f;
67
Daniel Borkmann1c1bc6b2015-01-22 10:58:18 +010068 list_for_each_entry(f, &head->flist, link) {
69 if (f->handle == handle) {
WANG Cong8113c092017-08-04 21:31:43 -070070 return f;
Daniel Borkmann1c1bc6b2015-01-22 10:58:18 +010071 }
72 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
WANG Cong8113c092017-08-04 21:31:43 -070074 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static int basic_init(struct tcf_proto *tp)
78{
Patrick McHardyd3fa76e2007-03-24 22:13:06 -070079 struct basic_head *head;
80
81 head = kzalloc(sizeof(*head), GFP_KERNEL);
82 if (head == NULL)
83 return -ENOBUFS;
84 INIT_LIST_HEAD(&head->flist);
Cong Wang1d8134f2017-09-25 10:13:50 -070085 idr_init(&head->handle_idr);
John Fastabend9888faef2014-09-12 20:05:59 -070086 rcu_assign_pointer(tp->root, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return 0;
88}
89
Cong Wang0b2a5982017-11-06 13:47:20 -080090static void __basic_delete_filter(struct basic_filter *f)
91{
92 tcf_exts_destroy(&f->exts);
93 tcf_em_tree_destroy(&f->ematches);
94 tcf_exts_put_net(&f->exts);
95 kfree(f);
96}
97
Cong Wangc96a4832017-10-26 18:24:29 -070098static void basic_delete_filter_work(struct work_struct *work)
99{
100 struct basic_filter *f = container_of(work, struct basic_filter, work);
101
102 rtnl_lock();
Cong Wang0b2a5982017-11-06 13:47:20 -0800103 __basic_delete_filter(f);
Cong Wangc96a4832017-10-26 18:24:29 -0700104 rtnl_unlock();
Cong Wangc96a4832017-10-26 18:24:29 -0700105}
106
John Fastabend9888faef2014-09-12 20:05:59 -0700107static void basic_delete_filter(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
John Fastabend9888faef2014-09-12 20:05:59 -0700109 struct basic_filter *f = container_of(head, struct basic_filter, rcu);
John Fastabend9888faef2014-09-12 20:05:59 -0700110
Cong Wangc96a4832017-10-26 18:24:29 -0700111 INIT_WORK(&f->work, basic_delete_filter_work);
112 tcf_queue_work(&f->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Jakub Kicinski715df5e2018-01-24 12:54:13 -0800115static void basic_destroy(struct tcf_proto *tp, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
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 *f, *n;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 list_for_each_entry_safe(f, n, &head->flist, link) {
John Fastabend9888faef2014-09-12 20:05:59 -0700121 list_del_rcu(&f->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700122 tcf_unbind_filter(tp, &f->res);
Cong Wang1d8134f2017-09-25 10:13:50 -0700123 idr_remove_ext(&head->handle_idr, f->handle);
Cong Wang0b2a5982017-11-06 13:47:20 -0800124 if (tcf_exts_get_net(&f->exts))
125 call_rcu(&f->rcu, basic_delete_filter);
126 else
127 __basic_delete_filter(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Cong Wang1d8134f2017-09-25 10:13:50 -0700129 idr_destroy(&head->handle_idr);
John Fastabend9888faef2014-09-12 20:05:59 -0700130 kfree_rcu(head, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Alexander Aring571acf22018-01-18 11:20:53 -0500133static int basic_delete(struct tcf_proto *tp, void *arg, bool *last,
134 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
WANG Cong763dbf62017-04-19 14:21:21 -0700136 struct basic_head *head = rtnl_dereference(tp->root);
WANG Cong8113c092017-08-04 21:31:43 -0700137 struct basic_filter *f = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jiri Pirkoe4386452014-12-02 18:00:31 +0100139 list_del_rcu(&f->link);
140 tcf_unbind_filter(tp, &f->res);
Cong Wang1d8134f2017-09-25 10:13:50 -0700141 idr_remove_ext(&head->handle_idr, f->handle);
Cong Wang0b2a5982017-11-06 13:47:20 -0800142 tcf_exts_get_net(&f->exts);
Jiri Pirkoe4386452014-12-02 18:00:31 +0100143 call_rcu(&f->rcu, basic_delete_filter);
WANG Cong763dbf62017-04-19 14:21:21 -0700144 *last = list_empty(&head->flist);
Jiri Pirkoe4386452014-12-02 18:00:31 +0100145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800148static const struct nla_policy basic_policy[TCA_BASIC_MAX + 1] = {
149 [TCA_BASIC_CLASSID] = { .type = NLA_U32 },
150 [TCA_BASIC_EMATCHES] = { .type = NLA_NESTED },
151};
152
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000153static int basic_set_parms(struct net *net, struct tcf_proto *tp,
154 struct basic_filter *f, unsigned long base,
155 struct nlattr **tb,
Alexander Aring50a56192018-01-18 11:20:52 -0500156 struct nlattr *est, bool ovr,
157 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
stephen hemminger64590822013-09-26 17:42:16 -0700159 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Alexander Aring50a56192018-01-18 11:20:52 -0500161 err = tcf_exts_validate(net, tp, tb, est, &f->exts, ovr, extack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (err < 0)
163 return err;
164
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200165 err = tcf_em_tree_validate(tp, tb[TCA_BASIC_EMATCHES], &f->ematches);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (err < 0)
Jiri Pirkoff1f8ca2017-08-04 14:29:09 +0200167 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Patrick McHardyadd93b62008-01-22 22:11:33 -0800169 if (tb[TCA_BASIC_CLASSID]) {
Patrick McHardy1587bac2008-01-23 20:35:03 -0800170 f->res.classid = nla_get_u32(tb[TCA_BASIC_CLASSID]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 tcf_bind_filter(tp, &f->res, base);
172 }
173
John Fastabend9888faef2014-09-12 20:05:59 -0700174 f->tp = tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000178static int basic_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -0600179 struct tcf_proto *tp, unsigned long base, u32 handle,
Alexander Aring7306db32018-01-18 11:20:51 -0500180 struct nlattr **tca, void **arg, bool ovr,
181 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Patrick McHardycee63722008-01-23 20:33:32 -0800183 int err;
John Fastabend9888faef2014-09-12 20:05:59 -0700184 struct basic_head *head = rtnl_dereference(tp->root);
Patrick McHardyadd93b62008-01-22 22:11:33 -0800185 struct nlattr *tb[TCA_BASIC_MAX + 1];
John Fastabend9888faef2014-09-12 20:05:59 -0700186 struct basic_filter *fold = (struct basic_filter *) *arg;
187 struct basic_filter *fnew;
Cong Wang1d8134f2017-09-25 10:13:50 -0700188 unsigned long idr_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Patrick McHardyadd93b62008-01-22 22:11:33 -0800190 if (tca[TCA_OPTIONS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EINVAL;
192
Patrick McHardy6fa8c012008-01-23 20:36:12 -0800193 err = nla_parse_nested(tb, TCA_BASIC_MAX, tca[TCA_OPTIONS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200194 basic_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800195 if (err < 0)
196 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
John Fastabend9888faef2014-09-12 20:05:59 -0700198 if (fold != NULL) {
199 if (handle && fold->handle != handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
John Fastabend9888faef2014-09-12 20:05:59 -0700203 fnew = kzalloc(sizeof(*fnew), GFP_KERNEL);
Jiri Pirkobd42b782014-12-05 15:50:22 +0100204 if (!fnew)
205 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
WANG Congb9a24bb2016-08-19 12:36:54 -0700207 err = tcf_exts_init(&fnew->exts, TCA_BASIC_ACT, TCA_BASIC_POLICE);
208 if (err < 0)
209 goto errout;
210
John Fastabend9888faef2014-09-12 20:05:59 -0700211 if (handle) {
212 fnew->handle = handle;
Cong Wang1d8134f2017-09-25 10:13:50 -0700213 if (!fold) {
214 err = idr_alloc_ext(&head->handle_idr, fnew, &idr_index,
215 handle, handle + 1, GFP_KERNEL);
216 if (err)
217 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Cong Wang1d8134f2017-09-25 10:13:50 -0700219 } else {
220 err = idr_alloc_ext(&head->handle_idr, fnew, &idr_index,
221 1, 0x7FFFFFFF, GFP_KERNEL);
222 if (err)
223 goto errout;
224 fnew->handle = idr_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226
Alexander Aring50a56192018-01-18 11:20:52 -0500227 err = basic_set_parms(net, tp, fnew, base, tb, tca[TCA_RATE], ovr,
228 extack);
Cong Wang1d8134f2017-09-25 10:13:50 -0700229 if (err < 0) {
230 if (!fold)
231 idr_remove_ext(&head->handle_idr, fnew->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto errout;
Cong Wang1d8134f2017-09-25 10:13:50 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
WANG Cong8113c092017-08-04 21:31:43 -0700235 *arg = fnew;
John Fastabend9888faef2014-09-12 20:05:59 -0700236
237 if (fold) {
Cong Wang1d8134f2017-09-25 10:13:50 -0700238 idr_replace_ext(&head->handle_idr, fnew, fnew->handle);
John Fastabend9888faef2014-09-12 20:05:59 -0700239 list_replace_rcu(&fold->link, &fnew->link);
John Fastabend18cdb372014-10-05 21:28:52 -0700240 tcf_unbind_filter(tp, &fold->res);
Cong Wang0b2a5982017-11-06 13:47:20 -0800241 tcf_exts_get_net(&fold->exts);
John Fastabend9888faef2014-09-12 20:05:59 -0700242 call_rcu(&fold->rcu, basic_delete_filter);
243 } else {
244 list_add_rcu(&fnew->link, &head->flist);
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 return 0;
248errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700249 tcf_exts_destroy(&fnew->exts);
John Fastabend9888faef2014-09-12 20:05:59 -0700250 kfree(fnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return err;
252}
253
254static void basic_walk(struct tcf_proto *tp, struct tcf_walker *arg)
255{
John Fastabend9888faef2014-09-12 20:05:59 -0700256 struct basic_head *head = rtnl_dereference(tp->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct basic_filter *f;
258
259 list_for_each_entry(f, &head->flist, link) {
260 if (arg->count < arg->skip)
261 goto skip;
262
WANG Cong8113c092017-08-04 21:31:43 -0700263 if (arg->fn(tp, f, arg) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 arg->stop = 1;
265 break;
266 }
267skip:
268 arg->count++;
269 }
270}
271
Cong Wang07d79fc2017-08-30 14:30:36 -0700272static void basic_bind_class(void *fh, u32 classid, unsigned long cl)
273{
274 struct basic_filter *f = fh;
275
276 if (f && f->res.classid == classid)
277 f->res.class = cl;
278}
279
WANG Cong8113c092017-08-04 21:31:43 -0700280static int basic_dump(struct net *net, struct tcf_proto *tp, void *fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct sk_buff *skb, struct tcmsg *t)
282{
WANG Cong8113c092017-08-04 21:31:43 -0700283 struct basic_filter *f = fh;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800284 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (f == NULL)
287 return skb->len;
288
289 t->tcm_handle = f->handle;
290
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800291 nest = nla_nest_start(skb, TCA_OPTIONS);
292 if (nest == NULL)
293 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
David S. Miller1b34ec42012-03-29 05:11:39 -0400295 if (f->res.classid &&
296 nla_put_u32(skb, TCA_BASIC_CLASSID, f->res.classid))
297 goto nla_put_failure;
Thomas Grafe1e284a2005-06-08 15:11:02 -0700298
WANG Cong5da57f42013-12-15 20:15:07 -0800299 if (tcf_exts_dump(skb, &f->exts) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 tcf_em_tree_dump(skb, &f->ematches, TCA_BASIC_EMATCHES) < 0)
Patrick McHardyadd93b62008-01-22 22:11:33 -0800301 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800303 nla_nest_end(skb, nest);
stephen hemminger4c46ee52010-11-04 11:47:04 +0000304
WANG Cong5da57f42013-12-15 20:15:07 -0800305 if (tcf_exts_dump_stats(skb, &f->exts) < 0)
stephen hemminger4c46ee52010-11-04 11:47:04 +0000306 goto nla_put_failure;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return skb->len;
309
Patrick McHardyadd93b62008-01-22 22:11:33 -0800310nla_put_failure:
Patrick McHardy4b3550ef2008-01-23 20:34:11 -0800311 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return -1;
313}
314
Patrick McHardy2eb9d752008-01-22 22:10:42 -0800315static struct tcf_proto_ops cls_basic_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 .kind = "basic",
317 .classify = basic_classify,
318 .init = basic_init,
319 .destroy = basic_destroy,
320 .get = basic_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 .change = basic_change,
322 .delete = basic_delete,
323 .walk = basic_walk,
324 .dump = basic_dump,
Cong Wang07d79fc2017-08-30 14:30:36 -0700325 .bind_class = basic_bind_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 .owner = THIS_MODULE,
327};
328
329static int __init init_basic(void)
330{
331 return register_tcf_proto_ops(&cls_basic_ops);
332}
333
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900334static void __exit exit_basic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 unregister_tcf_proto_ops(&cls_basic_ops);
337}
338
339module_init(init_basic)
340module_exit(exit_basic)
341MODULE_LICENSE("GPL");
342