blob: 3bc01bdde1659bdac6eba560bf8410e8bc3adfff [file] [log] [blame]
Thomas Graff4009232008-11-07 22:56:00 -08001/*
2 * net/sched/cls_cgroup.c Control Group 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
12#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Thomas Graff4009232008-11-07 22:56:00 -080014#include <linux/skbuff.h>
Herbert Xuf8451722010-05-24 00:12:34 -070015#include <linux/rcupdate.h>
Thomas Graff4009232008-11-07 22:56:00 -080016#include <net/rtnetlink.h>
17#include <net/pkt_cls.h>
Herbert Xuf8451722010-05-24 00:12:34 -070018#include <net/sock.h>
19#include <net/cls_cgroup.h>
Thomas Graff4009232008-11-07 22:56:00 -080020
Eric Dumazetcc7ec452011-01-19 19:26:56 +000021struct cls_cgroup_head {
Thomas Graff4009232008-11-07 22:56:00 -080022 u32 handle;
23 struct tcf_exts exts;
24 struct tcf_ematch_tree ematches;
John Fastabend952313b2014-09-12 20:06:26 -070025 struct tcf_proto *tp;
Cong Wangaaa908f2018-05-23 15:26:53 -070026 struct rcu_work rwork;
Thomas Graff4009232008-11-07 22:56:00 -080027};
28
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000029static int cls_cgroup_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Thomas Graff4009232008-11-07 22:56:00 -080030 struct tcf_result *res)
31{
John Fastabend952313b2014-09-12 20:06:26 -070032 struct cls_cgroup_head *head = rcu_dereference_bh(tp->root);
Daniel Borkmannb87a1732015-07-15 14:21:41 +020033 u32 classid = task_get_classid(skb);
Thomas Graff4009232008-11-07 22:56:00 -080034
Paul Menagee65fcfd2009-05-26 20:47:02 -070035 if (!classid)
36 return -1;
Paul Menagee65fcfd2009-05-26 20:47:02 -070037 if (!tcf_em_tree_match(skb, &head->ematches, NULL))
38 return -1;
39
40 res->classid = classid;
41 res->class = 0;
Daniel Borkmannb87a1732015-07-15 14:21:41 +020042
Paul Menagee65fcfd2009-05-26 20:47:02 -070043 return tcf_exts_exec(skb, &head->exts, res);
Thomas Graff4009232008-11-07 22:56:00 -080044}
45
WANG Cong8113c092017-08-04 21:31:43 -070046static void *cls_cgroup_get(struct tcf_proto *tp, u32 handle)
Thomas Graff4009232008-11-07 22:56:00 -080047{
WANG Cong8113c092017-08-04 21:31:43 -070048 return NULL;
Thomas Graff4009232008-11-07 22:56:00 -080049}
50
Thomas Graff4009232008-11-07 22:56:00 -080051static int cls_cgroup_init(struct tcf_proto *tp)
52{
53 return 0;
54}
55
Thomas Graff4009232008-11-07 22:56:00 -080056static const struct nla_policy cgroup_policy[TCA_CGROUP_MAX + 1] = {
57 [TCA_CGROUP_EMATCHES] = { .type = NLA_NESTED },
58};
59
Cong Wanged148162017-11-06 13:47:22 -080060static void __cls_cgroup_destroy(struct cls_cgroup_head *head)
61{
62 tcf_exts_destroy(&head->exts);
63 tcf_em_tree_destroy(&head->ematches);
64 tcf_exts_put_net(&head->exts);
65 kfree(head);
66}
67
Cong Wangb1b5b042017-10-26 18:24:31 -070068static void cls_cgroup_destroy_work(struct work_struct *work)
69{
Cong Wangaaa908f2018-05-23 15:26:53 -070070 struct cls_cgroup_head *head = container_of(to_rcu_work(work),
Cong Wangb1b5b042017-10-26 18:24:31 -070071 struct cls_cgroup_head,
Cong Wangaaa908f2018-05-23 15:26:53 -070072 rwork);
Cong Wangb1b5b042017-10-26 18:24:31 -070073 rtnl_lock();
Cong Wanged148162017-11-06 13:47:22 -080074 __cls_cgroup_destroy(head);
Cong Wangb1b5b042017-10-26 18:24:31 -070075 rtnl_unlock();
76}
77
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000078static int cls_cgroup_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -060079 struct tcf_proto *tp, unsigned long base,
Thomas Graff4009232008-11-07 22:56:00 -080080 u32 handle, struct nlattr **tca,
Alexander Aring7306db32018-01-18 11:20:51 -050081 void **arg, bool ovr,
82 struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -080083{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000084 struct nlattr *tb[TCA_CGROUP_MAX + 1];
John Fastabend952313b2014-09-12 20:06:26 -070085 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
86 struct cls_cgroup_head *new;
Thomas Graff4009232008-11-07 22:56:00 -080087 int err;
88
Minoru Usui52ea3a52009-06-09 04:03:09 -070089 if (!tca[TCA_OPTIONS])
90 return -EINVAL;
91
John Fastabend952313b2014-09-12 20:06:26 -070092 if (!head && !handle)
93 return -EINVAL;
Thomas Graff4009232008-11-07 22:56:00 -080094
John Fastabend952313b2014-09-12 20:06:26 -070095 if (head && handle != head->handle)
Thomas Graff4009232008-11-07 22:56:00 -080096 return -ENOENT;
97
John Fastabend952313b2014-09-12 20:06:26 -070098 new = kzalloc(sizeof(*head), GFP_KERNEL);
99 if (!new)
100 return -ENOBUFS;
101
WANG Congb9a24bb2016-08-19 12:36:54 -0700102 err = tcf_exts_init(&new->exts, TCA_CGROUP_ACT, TCA_CGROUP_POLICE);
103 if (err < 0)
104 goto errout;
Jiri Pirko18b54272014-12-02 18:00:36 +0100105 new->handle = handle;
John Fastabend952313b2014-09-12 20:06:26 -0700106 new->tp = tp;
Thomas Graff4009232008-11-07 22:56:00 -0800107 err = nla_parse_nested(tb, TCA_CGROUP_MAX, tca[TCA_OPTIONS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200108 cgroup_policy, NULL);
Thomas Graff4009232008-11-07 22:56:00 -0800109 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700110 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800111
Alexander Aring50a56192018-01-18 11:20:52 -0500112 err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &new->exts, ovr,
113 extack);
Thomas Graff4009232008-11-07 22:56:00 -0800114 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700115 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800116
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200117 err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &new->ematches);
Jiri Pirko8cc62512017-08-04 14:29:11 +0200118 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700119 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800120
John Fastabend952313b2014-09-12 20:06:26 -0700121 rcu_assign_pointer(tp->root, new);
Cong Wanged148162017-11-06 13:47:22 -0800122 if (head) {
123 tcf_exts_get_net(&head->exts);
Cong Wangaaa908f2018-05-23 15:26:53 -0700124 tcf_queue_work(&head->rwork, cls_cgroup_destroy_work);
Cong Wanged148162017-11-06 13:47:22 -0800125 }
Thomas Graff4009232008-11-07 22:56:00 -0800126 return 0;
John Fastabendd14cbfc82014-09-15 23:31:17 -0700127errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700128 tcf_exts_destroy(&new->exts);
John Fastabendd14cbfc82014-09-15 23:31:17 -0700129 kfree(new);
130 return err;
Thomas Graff4009232008-11-07 22:56:00 -0800131}
132
Jakub Kicinski715df5e2018-01-24 12:54:13 -0800133static void cls_cgroup_destroy(struct tcf_proto *tp,
134 struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -0800135{
John Fastabend952313b2014-09-12 20:06:26 -0700136 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800137
Daniel Borkmannd9363772016-11-27 01:18:01 +0100138 /* Head can still be NULL due to cls_cgroup_init(). */
Cong Wanged148162017-11-06 13:47:22 -0800139 if (head) {
140 if (tcf_exts_get_net(&head->exts))
Cong Wangaaa908f2018-05-23 15:26:53 -0700141 tcf_queue_work(&head->rwork, cls_cgroup_destroy_work);
Cong Wanged148162017-11-06 13:47:22 -0800142 else
143 __cls_cgroup_destroy(head);
144 }
Thomas Graff4009232008-11-07 22:56:00 -0800145}
146
Alexander Aring571acf22018-01-18 11:20:53 -0500147static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last,
148 struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -0800149{
150 return -EOPNOTSUPP;
151}
152
153static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg)
154{
John Fastabend952313b2014-09-12 20:06:26 -0700155 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800156
157 if (arg->count < arg->skip)
158 goto skip;
159
WANG Cong8113c092017-08-04 21:31:43 -0700160 if (arg->fn(tp, head, arg) < 0) {
Thomas Graff4009232008-11-07 22:56:00 -0800161 arg->stop = 1;
162 return;
163 }
164skip:
165 arg->count++;
166}
167
WANG Cong8113c092017-08-04 21:31:43 -0700168static int cls_cgroup_dump(struct net *net, struct tcf_proto *tp, void *fh,
Thomas Graff4009232008-11-07 22:56:00 -0800169 struct sk_buff *skb, struct tcmsg *t)
170{
John Fastabend952313b2014-09-12 20:06:26 -0700171 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800172 struct nlattr *nest;
173
174 t->tcm_handle = head->handle;
175
176 nest = nla_nest_start(skb, TCA_OPTIONS);
177 if (nest == NULL)
178 goto nla_put_failure;
179
WANG Cong5da57f42013-12-15 20:15:07 -0800180 if (tcf_exts_dump(skb, &head->exts) < 0 ||
Thomas Graff4009232008-11-07 22:56:00 -0800181 tcf_em_tree_dump(skb, &head->ematches, TCA_CGROUP_EMATCHES) < 0)
182 goto nla_put_failure;
183
184 nla_nest_end(skb, nest);
185
WANG Cong5da57f42013-12-15 20:15:07 -0800186 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Thomas Graff4009232008-11-07 22:56:00 -0800187 goto nla_put_failure;
188
189 return skb->len;
190
191nla_put_failure:
Jiri Pirko6ea3b442014-12-09 22:23:29 +0100192 nla_nest_cancel(skb, nest);
Thomas Graff4009232008-11-07 22:56:00 -0800193 return -1;
194}
195
196static struct tcf_proto_ops cls_cgroup_ops __read_mostly = {
197 .kind = "cgroup",
198 .init = cls_cgroup_init,
199 .change = cls_cgroup_change,
200 .classify = cls_cgroup_classify,
201 .destroy = cls_cgroup_destroy,
202 .get = cls_cgroup_get,
Thomas Graff4009232008-11-07 22:56:00 -0800203 .delete = cls_cgroup_delete,
204 .walk = cls_cgroup_walk,
205 .dump = cls_cgroup_dump,
206 .owner = THIS_MODULE,
207};
208
209static int __init init_cgroup_cls(void)
210{
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100211 return register_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800212}
213
214static void __exit exit_cgroup_cls(void)
215{
216 unregister_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800217}
218
219module_init(init_cgroup_cls);
220module_exit(exit_cgroup_cls);
221MODULE_LICENSE("GPL");