blob: 309d5899265f8f7dea731a2a8569867fa5077e09 [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,
WANG Cong8113c092017-08-04 21:31:43 -070094 void **arg, bool ovr)
Thomas Graff4009232008-11-07 22:56:00 -080095{
Eric Dumazetcc7ec452011-01-19 19:26:56 +000096 struct nlattr *tb[TCA_CGROUP_MAX + 1];
John Fastabend952313b2014-09-12 20:06:26 -070097 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
98 struct cls_cgroup_head *new;
Thomas Graff4009232008-11-07 22:56:00 -080099 int err;
100
Minoru Usui52ea3a52009-06-09 04:03:09 -0700101 if (!tca[TCA_OPTIONS])
102 return -EINVAL;
103
John Fastabend952313b2014-09-12 20:06:26 -0700104 if (!head && !handle)
105 return -EINVAL;
Thomas Graff4009232008-11-07 22:56:00 -0800106
John Fastabend952313b2014-09-12 20:06:26 -0700107 if (head && handle != head->handle)
Thomas Graff4009232008-11-07 22:56:00 -0800108 return -ENOENT;
109
John Fastabend952313b2014-09-12 20:06:26 -0700110 new = kzalloc(sizeof(*head), GFP_KERNEL);
111 if (!new)
112 return -ENOBUFS;
113
WANG Congb9a24bb2016-08-19 12:36:54 -0700114 err = tcf_exts_init(&new->exts, TCA_CGROUP_ACT, TCA_CGROUP_POLICE);
115 if (err < 0)
116 goto errout;
Jiri Pirko18b54272014-12-02 18:00:36 +0100117 new->handle = handle;
John Fastabend952313b2014-09-12 20:06:26 -0700118 new->tp = tp;
Thomas Graff4009232008-11-07 22:56:00 -0800119 err = nla_parse_nested(tb, TCA_CGROUP_MAX, tca[TCA_OPTIONS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200120 cgroup_policy, NULL);
Thomas Graff4009232008-11-07 22:56:00 -0800121 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700122 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800123
Jiri Pirko8cc62512017-08-04 14:29:11 +0200124 err = tcf_exts_validate(net, tp, tb, tca[TCA_RATE], &new->exts, ovr);
Thomas Graff4009232008-11-07 22:56:00 -0800125 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700126 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800127
Jiri Pirko4ebc1e32017-08-04 14:28:57 +0200128 err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &new->ematches);
Jiri Pirko8cc62512017-08-04 14:29:11 +0200129 if (err < 0)
John Fastabendd14cbfc82014-09-15 23:31:17 -0700130 goto errout;
Thomas Graff4009232008-11-07 22:56:00 -0800131
John Fastabend952313b2014-09-12 20:06:26 -0700132 rcu_assign_pointer(tp->root, new);
Cong Wanged148162017-11-06 13:47:22 -0800133 if (head) {
134 tcf_exts_get_net(&head->exts);
John Fastabend952313b2014-09-12 20:06:26 -0700135 call_rcu(&head->rcu, cls_cgroup_destroy_rcu);
Cong Wanged148162017-11-06 13:47:22 -0800136 }
Thomas Graff4009232008-11-07 22:56:00 -0800137 return 0;
John Fastabendd14cbfc82014-09-15 23:31:17 -0700138errout:
WANG Congb9a24bb2016-08-19 12:36:54 -0700139 tcf_exts_destroy(&new->exts);
John Fastabendd14cbfc82014-09-15 23:31:17 -0700140 kfree(new);
141 return err;
Thomas Graff4009232008-11-07 22:56:00 -0800142}
143
WANG Cong763dbf62017-04-19 14:21:21 -0700144static void cls_cgroup_destroy(struct tcf_proto *tp)
Thomas Graff4009232008-11-07 22:56:00 -0800145{
John Fastabend952313b2014-09-12 20:06:26 -0700146 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800147
Daniel Borkmannd9363772016-11-27 01:18:01 +0100148 /* Head can still be NULL due to cls_cgroup_init(). */
Cong Wanged148162017-11-06 13:47:22 -0800149 if (head) {
150 if (tcf_exts_get_net(&head->exts))
151 call_rcu(&head->rcu, cls_cgroup_destroy_rcu);
152 else
153 __cls_cgroup_destroy(head);
154 }
Thomas Graff4009232008-11-07 22:56:00 -0800155}
156
WANG Cong8113c092017-08-04 21:31:43 -0700157static int cls_cgroup_delete(struct tcf_proto *tp, void *arg, bool *last)
Thomas Graff4009232008-11-07 22:56:00 -0800158{
159 return -EOPNOTSUPP;
160}
161
162static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg)
163{
John Fastabend952313b2014-09-12 20:06:26 -0700164 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800165
166 if (arg->count < arg->skip)
167 goto skip;
168
WANG Cong8113c092017-08-04 21:31:43 -0700169 if (arg->fn(tp, head, arg) < 0) {
Thomas Graff4009232008-11-07 22:56:00 -0800170 arg->stop = 1;
171 return;
172 }
173skip:
174 arg->count++;
175}
176
WANG Cong8113c092017-08-04 21:31:43 -0700177static int cls_cgroup_dump(struct net *net, struct tcf_proto *tp, void *fh,
Thomas Graff4009232008-11-07 22:56:00 -0800178 struct sk_buff *skb, struct tcmsg *t)
179{
John Fastabend952313b2014-09-12 20:06:26 -0700180 struct cls_cgroup_head *head = rtnl_dereference(tp->root);
Thomas Graff4009232008-11-07 22:56:00 -0800181 struct nlattr *nest;
182
183 t->tcm_handle = head->handle;
184
185 nest = nla_nest_start(skb, TCA_OPTIONS);
186 if (nest == NULL)
187 goto nla_put_failure;
188
WANG Cong5da57f42013-12-15 20:15:07 -0800189 if (tcf_exts_dump(skb, &head->exts) < 0 ||
Thomas Graff4009232008-11-07 22:56:00 -0800190 tcf_em_tree_dump(skb, &head->ematches, TCA_CGROUP_EMATCHES) < 0)
191 goto nla_put_failure;
192
193 nla_nest_end(skb, nest);
194
WANG Cong5da57f42013-12-15 20:15:07 -0800195 if (tcf_exts_dump_stats(skb, &head->exts) < 0)
Thomas Graff4009232008-11-07 22:56:00 -0800196 goto nla_put_failure;
197
198 return skb->len;
199
200nla_put_failure:
Jiri Pirko6ea3b442014-12-09 22:23:29 +0100201 nla_nest_cancel(skb, nest);
Thomas Graff4009232008-11-07 22:56:00 -0800202 return -1;
203}
204
205static struct tcf_proto_ops cls_cgroup_ops __read_mostly = {
206 .kind = "cgroup",
207 .init = cls_cgroup_init,
208 .change = cls_cgroup_change,
209 .classify = cls_cgroup_classify,
210 .destroy = cls_cgroup_destroy,
211 .get = cls_cgroup_get,
Thomas Graff4009232008-11-07 22:56:00 -0800212 .delete = cls_cgroup_delete,
213 .walk = cls_cgroup_walk,
214 .dump = cls_cgroup_dump,
215 .owner = THIS_MODULE,
216};
217
218static int __init init_cgroup_cls(void)
219{
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100220 return register_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800221}
222
223static void __exit exit_cgroup_cls(void)
224{
225 unregister_tcf_proto_ops(&cls_cgroup_ops);
Thomas Graff4009232008-11-07 22:56:00 -0800226}
227
228module_init(init_cgroup_cls);
229module_exit(exit_cgroup_cls);
230MODULE_LICENSE("GPL");