blob: b74af0b5582089851d7301a9404dd0c31ed10b05 [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 Wangb1b5b042017-10-26 18:24:31 -070026 union {
27 struct work_struct work;
28 struct rcu_head rcu;
29 };
Thomas Graff4009232008-11-07 22:56:00 -080030};
31
Eric Dumazetdc7f9f62011-07-05 23:25:42 +000032static int cls_cgroup_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Thomas Graff4009232008-11-07 22:56:00 -080033 struct tcf_result *res)
34{
John Fastabend952313b2014-09-12 20:06:26 -070035 struct cls_cgroup_head *head = rcu_dereference_bh(tp->root);
Daniel Borkmannb87a1732015-07-15 14:21:41 +020036 u32 classid = task_get_classid(skb);
Thomas Graff4009232008-11-07 22:56:00 -080037
Paul Menagee65fcfd2009-05-26 20:47:02 -070038 if (!classid)
39 return -1;
Paul Menagee65fcfd2009-05-26 20:47:02 -070040 if (!tcf_em_tree_match(skb, &head->ematches, NULL))
41 return -1;
42
43 res->classid = classid;
44 res->class = 0;
Daniel Borkmannb87a1732015-07-15 14:21:41 +020045
Paul Menagee65fcfd2009-05-26 20:47:02 -070046 return tcf_exts_exec(skb, &head->exts, res);
Thomas Graff4009232008-11-07 22:56:00 -080047}
48
WANG Cong8113c092017-08-04 21:31:43 -070049static void *cls_cgroup_get(struct tcf_proto *tp, u32 handle)
Thomas Graff4009232008-11-07 22:56:00 -080050{
WANG Cong8113c092017-08-04 21:31:43 -070051 return NULL;
Thomas Graff4009232008-11-07 22:56:00 -080052}
53
Thomas Graff4009232008-11-07 22:56:00 -080054static int cls_cgroup_init(struct tcf_proto *tp)
55{
56 return 0;
57}
58
Thomas Graff4009232008-11-07 22:56:00 -080059static const struct nla_policy cgroup_policy[TCA_CGROUP_MAX + 1] = {
60 [TCA_CGROUP_EMATCHES] = { .type = NLA_NESTED },
61};
62
Cong Wanged148162017-11-06 13:47:22 -080063static void __cls_cgroup_destroy(struct cls_cgroup_head *head)
64{
65 tcf_exts_destroy(&head->exts);
66 tcf_em_tree_destroy(&head->ematches);
67 tcf_exts_put_net(&head->exts);
68 kfree(head);
69}
70
Cong Wangb1b5b042017-10-26 18:24:31 -070071static void cls_cgroup_destroy_work(struct work_struct *work)
72{
73 struct cls_cgroup_head *head = container_of(work,
74 struct cls_cgroup_head,
75 work);
76 rtnl_lock();
Cong Wanged148162017-11-06 13:47:22 -080077 __cls_cgroup_destroy(head);
Cong Wangb1b5b042017-10-26 18:24:31 -070078 rtnl_unlock();
79}
80
John Fastabend952313b2014-09-12 20:06:26 -070081static void cls_cgroup_destroy_rcu(struct rcu_head *root)
82{
83 struct cls_cgroup_head *head = container_of(root,
84 struct cls_cgroup_head,
85 rcu);
86
Cong Wangb1b5b042017-10-26 18:24:31 -070087 INIT_WORK(&head->work, cls_cgroup_destroy_work);
88 tcf_queue_work(&head->work);
John Fastabend952313b2014-09-12 20:06:26 -070089}
90
Benjamin LaHaisec1b52732013-01-14 05:15:39 +000091static int cls_cgroup_change(struct net *net, struct sk_buff *in_skb,
Eric W. Biedermanaf4c6642012-05-25 13:42:45 -060092 struct tcf_proto *tp, unsigned long base,
Thomas Graff4009232008-11-07 22:56:00 -080093 u32 handle, struct nlattr **tca,
Alexander Aring7306db32018-01-18 11:20:51 -050094 void **arg, bool ovr,
95 struct netlink_ext_ack *extack)
Thomas Graff4009232008-11-07 22:56:00 -080096{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000097 struct nlattr *tb[TCA_CGROUP_MAX + 1];
John Fastabend952313b2014-09-12 20:06:26 -070098 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
99 struct cls_cgroup_head *new;
Thomas Graff4009232008-11-07 22:56:00 -0800100 int err;
101
Minoru Usui52ea3a52009-06-09 04:03:09 -0700102 if (!tca[TCA_OPTIONS])
103 return -EINVAL;
104
John Fastabend952313b2014-09-12 20:06:26 -0700105 if (!head && !handle)
106 return -EINVAL;
Thomas Graff4009232008-11-07 22:56:00 -0800107
John Fastabend952313b2014-09-12 20:06:26 -0700108 if (head && handle != head->handle)
Thomas Graff4009232008-11-07 22:56:00 -0800109 return -ENOENT;
110
John Fastabend952313b2014-09-12 20:06:26 -0700111 new = kzalloc(sizeof(*head), GFP_KERNEL);
112 if (!new)
113 return -ENOBUFS;
114
WANG Congb9a24bb2016-08-19 12:36:54 -0700115 err = tcf_exts_init(&new->exts, TCA_CGROUP_ACT, TCA_CGROUP_POLICE);
116 if (err < 0)
117 goto errout;
Jiri Pirko18b54272014-12-02 18:00:36 +0100118 new->handle = handle;
John Fastabend952313b2014-09-12 20:06:26 -0700119 new->tp = tp;
Thomas Graff4009232008-11-07 22:56:00 -0800120 err = nla_parse_nested(tb, TCA_CGROUP_MAX, tca[TCA_OPTIONS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200121 cgroup_policy, NULL);
Thomas Graff4009232008-11-07 22:56:00 -0800122 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700123 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800124
Jiri Pirko8cc62512017-08-04 14:29:11 +0200125 err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &new->exts, ovr);
Thomas Graff4009232008-11-07 22:56:00 -0800126 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700127 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800128
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200129 err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &new->ematches);
Jiri Pirko8cc62512017-08-04 14:29:11 +0200130 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700131 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800132
John Fastabend952313b2014-09-12 20:06:26 -0700133 rcu_assign_pointer(tp->root, new);
Cong Wanged148162017-11-06 13:47:22 -0800134 if (head) {
135 tcf_exts_get_net(&head->exts);
John Fastabend952313b2014-09-12 20:06:26 -0700136 call_rcu(&head->rcu, cls_cgroup_destroy_rcu);
Cong Wanged148162017-11-06 13:47:22 -0800137 }
Thomas Graff4009232008-11-07 22:56:00 -0800138 return 0;
John Fastabendd14cbfc82014-09-15 23:31:17 -0700139errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700140 tcf_exts_destroy(&new->exts);
John Fastabendd14cbfc82014-09-15 23:31:17 -0700141 kfree(new);
142 return err;
Thomas Graff4009232008-11-07 22:56:00 -0800143}
144
WANG Cong763dbf62017-04-19 14:21:21 -0700145static void cls_cgroup_destroy(struct tcf_proto *tp)
Thomas Graff4009232008-11-07 22:56:00 -0800146{
John Fastabend952313b2014-09-12 20:06:26 -0700147 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800148
Daniel Borkmannd9363772016-11-27 01:18:01 +0100149 /* Head can still be NULL due to cls_cgroup_init(). */
Cong Wanged148162017-11-06 13:47:22 -0800150 if (head) {
151 if (tcf_exts_get_net(&head->exts))
152 call_rcu(&head->rcu, cls_cgroup_destroy_rcu);
153 else
154 __cls_cgroup_destroy(head);
155 }
Thomas Graff4009232008-11-07 22:56:00 -0800156}
157
WANG Cong8113c092017-08-04 21:31:43 -0700158static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last)
Thomas Graff4009232008-11-07 22:56:00 -0800159{
160 return -EOPNOTSUPP;
161}
162
163static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg)
164{
John Fastabend952313b2014-09-12 20:06:26 -0700165 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800166
167 if (arg->count < arg->skip)
168 goto skip;
169
WANG Cong8113c092017-08-04 21:31:43 -0700170 if (arg->fn(tp, head, arg) < 0) {
Thomas Graff4009232008-11-07 22:56:00 -0800171 arg->stop = 1;
172 return;
173 }
174skip:
175 arg->count++;
176}
177
WANG Cong8113c092017-08-04 21:31:43 -0700178static int cls_cgroup_dump(struct net *net, struct tcf_proto *tp, void *fh,
Thomas Graff4009232008-11-07 22:56:00 -0800179 struct sk_buff *skb, struct tcmsg *t)
180{
John Fastabend952313b2014-09-12 20:06:26 -0700181 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800182 struct nlattr *nest;
183
184 t->tcm_handle = head->handle;
185
186 nest = nla_nest_start(skb, TCA_OPTIONS);
187 if (nest == NULL)
188 goto nla_put_failure;
189
WANG Cong5da57f42013-12-15 20:15:07 -0800190 if (tcf_exts_dump(skb, &head->exts) < 0 ||
Thomas Graff4009232008-11-07 22:56:00 -0800191 tcf_em_tree_dump(skb, &head->ematches, TCA_CGROUP_EMATCHES) < 0)
192 goto nla_put_failure;
193
194 nla_nest_end(skb, nest);
195
WANG Cong5da57f42013-12-15 20:15:07 -0800196 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Thomas Graff4009232008-11-07 22:56:00 -0800197 goto nla_put_failure;
198
199 return skb->len;
200
201nla_put_failure:
Jiri Pirko6ea3b442014-12-09 22:23:29 +0100202 nla_nest_cancel(skb, nest);
Thomas Graff4009232008-11-07 22:56:00 -0800203 return -1;
204}
205
206static struct tcf_proto_ops cls_cgroup_ops __read_mostly = {
207 .kind = "cgroup",
208 .init = cls_cgroup_init,
209 .change = cls_cgroup_change,
210 .classify = cls_cgroup_classify,
211 .destroy = cls_cgroup_destroy,
212 .get = cls_cgroup_get,
Thomas Graff4009232008-11-07 22:56:00 -0800213 .delete = cls_cgroup_delete,
214 .walk = cls_cgroup_walk,
215 .dump = cls_cgroup_dump,
216 .owner = THIS_MODULE,
217};
218
219static int __init init_cgroup_cls(void)
220{
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100221 return register_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800222}
223
224static void __exit exit_cgroup_cls(void)
225{
226 unregister_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800227}
228
229module_init(init_cgroup_cls);
230module_exit(exit_cgroup_cls);
231MODULE_LICENSE("GPL");