blob: 1afaa284fcd79e120902fda18454df76819557c8 [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/types.h>
15#include <linux/string.h>
16#include <linux/errno.h>
17#include <linux/skbuff.h>
18#include <linux/cgroup.h>
Herbert Xuf8451722010-05-24 00:12:34 -070019#include <linux/rcupdate.h>
Thomas Graff4009232008-11-07 22:56:00 -080020#include <net/rtnetlink.h>
21#include <net/pkt_cls.h>
Herbert Xuf8451722010-05-24 00:12:34 -070022#include <net/sock.h>
23#include <net/cls_cgroup.h>
Thomas Graff4009232008-11-07 22:56:00 -080024
Li Zefan761b3ef2012-01-31 13:47:36 +080025static struct cgroup_subsys_state *cgrp_create(struct cgroup *cgrp);
26static void cgrp_destroy(struct cgroup *cgrp);
Ben Blum8e039d82010-03-23 05:24:03 +000027static int cgrp_populate(struct cgroup_subsys *ss, struct cgroup *cgrp);
28
29struct cgroup_subsys net_cls_subsys = {
30 .name = "net_cls",
31 .create = cgrp_create,
32 .destroy = cgrp_destroy,
33 .populate = cgrp_populate,
34#ifdef CONFIG_NET_CLS_CGROUP
35 .subsys_id = net_cls_subsys_id,
Ben Blum8e039d82010-03-23 05:24:03 +000036#endif
37 .module = THIS_MODULE,
38};
39
40
Li Zefan8e8ba852008-12-29 19:39:03 -080041static inline struct cgroup_cls_state *cgrp_cls_state(struct cgroup *cgrp)
Thomas Graff4009232008-11-07 22:56:00 -080042{
Li Zefan8e8ba852008-12-29 19:39:03 -080043 return container_of(cgroup_subsys_state(cgrp, net_cls_subsys_id),
44 struct cgroup_cls_state, css);
45}
46
47static inline struct cgroup_cls_state *task_cls_state(struct task_struct *p)
48{
49 return container_of(task_subsys_state(p, net_cls_subsys_id),
50 struct cgroup_cls_state, css);
Thomas Graff4009232008-11-07 22:56:00 -080051}
52
Li Zefan761b3ef2012-01-31 13:47:36 +080053static struct cgroup_subsys_state *cgrp_create(struct cgroup *cgrp)
Thomas Graff4009232008-11-07 22:56:00 -080054{
55 struct cgroup_cls_state *cs;
56
Eric Dumazetcc7ec452011-01-19 19:26:56 +000057 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
58 if (!cs)
Thomas Graff4009232008-11-07 22:56:00 -080059 return ERR_PTR(-ENOMEM);
60
61 if (cgrp->parent)
Li Zefan8e8ba852008-12-29 19:39:03 -080062 cs->classid = cgrp_cls_state(cgrp->parent)->classid;
Thomas Graff4009232008-11-07 22:56:00 -080063
64 return &cs->css;
65}
66
Li Zefan761b3ef2012-01-31 13:47:36 +080067static void cgrp_destroy(struct cgroup *cgrp)
Thomas Graff4009232008-11-07 22:56:00 -080068{
Li Zefan8e8ba852008-12-29 19:39:03 -080069 kfree(cgrp_cls_state(cgrp));
Thomas Graff4009232008-11-07 22:56:00 -080070}
71
72static u64 read_classid(struct cgroup *cgrp, struct cftype *cft)
73{
Li Zefan8e8ba852008-12-29 19:39:03 -080074 return cgrp_cls_state(cgrp)->classid;
Thomas Graff4009232008-11-07 22:56:00 -080075}
76
77static int write_classid(struct cgroup *cgrp, struct cftype *cft, u64 value)
78{
Li Zefan8e8ba852008-12-29 19:39:03 -080079 cgrp_cls_state(cgrp)->classid = (u32) value;
Thomas Graff4009232008-11-07 22:56:00 -080080 return 0;
81}
82
83static struct cftype ss_files[] = {
84 {
85 .name = "classid",
86 .read_u64 = read_classid,
87 .write_u64 = write_classid,
88 },
89};
90
91static int cgrp_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
92{
93 return cgroup_add_files(cgrp, ss, ss_files, ARRAY_SIZE(ss_files));
94}
95
Eric Dumazetcc7ec452011-01-19 19:26:56 +000096struct cls_cgroup_head {
Thomas Graff4009232008-11-07 22:56:00 -080097 u32 handle;
98 struct tcf_exts exts;
99 struct tcf_ematch_tree ematches;
100};
101
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000102static int cls_cgroup_classify(struct sk_buff *skb, const struct tcf_proto *tp,
Thomas Graff4009232008-11-07 22:56:00 -0800103 struct tcf_result *res)
104{
105 struct cls_cgroup_head *head = tp->root;
Paul Menagee65fcfd2009-05-26 20:47:02 -0700106 u32 classid;
Thomas Graff4009232008-11-07 22:56:00 -0800107
Herbert Xuf8451722010-05-24 00:12:34 -0700108 rcu_read_lock();
109 classid = task_cls_state(current)->classid;
110 rcu_read_unlock();
111
Thomas Graff4009232008-11-07 22:56:00 -0800112 /*
113 * Due to the nature of the classifier it is required to ignore all
114 * packets originating from softirq context as accessing `current'
115 * would lead to false results.
116 *
117 * This test assumes that all callers of dev_queue_xmit() explicitely
118 * disable bh. Knowing this, it is possible to detect softirq based
119 * calls by looking at the number of nested bh disable calls because
120 * softirqs always disables bh.
121 */
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -0700122 if (in_serving_softirq()) {
Herbert Xuf8451722010-05-24 00:12:34 -0700123 /* If there is an sk_classid we'll use that. */
124 if (!skb->sk)
125 return -1;
126 classid = skb->sk->sk_classid;
127 }
Thomas Graff4009232008-11-07 22:56:00 -0800128
Paul Menagee65fcfd2009-05-26 20:47:02 -0700129 if (!classid)
130 return -1;
131
132 if (!tcf_em_tree_match(skb, &head->ematches, NULL))
133 return -1;
134
135 res->classid = classid;
136 res->class = 0;
137 return tcf_exts_exec(skb, &head->exts, res);
Thomas Graff4009232008-11-07 22:56:00 -0800138}
139
140static unsigned long cls_cgroup_get(struct tcf_proto *tp, u32 handle)
141{
142 return 0UL;
143}
144
145static void cls_cgroup_put(struct tcf_proto *tp, unsigned long f)
146{
147}
148
149static int cls_cgroup_init(struct tcf_proto *tp)
150{
151 return 0;
152}
153
154static const struct tcf_ext_map cgroup_ext_map = {
155 .action = TCA_CGROUP_ACT,
156 .police = TCA_CGROUP_POLICE,
157};
158
159static const struct nla_policy cgroup_policy[TCA_CGROUP_MAX + 1] = {
160 [TCA_CGROUP_EMATCHES] = { .type = NLA_NESTED },
161};
162
163static int cls_cgroup_change(struct tcf_proto *tp, unsigned long base,
164 u32 handle, struct nlattr **tca,
165 unsigned long *arg)
166{
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000167 struct nlattr *tb[TCA_CGROUP_MAX + 1];
Thomas Graff4009232008-11-07 22:56:00 -0800168 struct cls_cgroup_head *head = tp->root;
169 struct tcf_ematch_tree t;
170 struct tcf_exts e;
171 int err;
172
Minoru Usui52ea3a52009-06-09 04:03:09 -0700173 if (!tca[TCA_OPTIONS])
174 return -EINVAL;
175
Thomas Graff4009232008-11-07 22:56:00 -0800176 if (head == NULL) {
177 if (!handle)
178 return -EINVAL;
179
180 head = kzalloc(sizeof(*head), GFP_KERNEL);
181 if (head == NULL)
182 return -ENOBUFS;
183
184 head->handle = handle;
185
186 tcf_tree_lock(tp);
187 tp->root = head;
188 tcf_tree_unlock(tp);
189 }
190
191 if (handle != head->handle)
192 return -ENOENT;
193
194 err = nla_parse_nested(tb, TCA_CGROUP_MAX, tca[TCA_OPTIONS],
195 cgroup_policy);
196 if (err < 0)
197 return err;
198
199 err = tcf_exts_validate(tp, tb, tca[TCA_RATE], &e, &cgroup_ext_map);
200 if (err < 0)
201 return err;
202
203 err = tcf_em_tree_validate(tp, tb[TCA_CGROUP_EMATCHES], &t);
204 if (err < 0)
205 return err;
206
207 tcf_exts_change(tp, &head->exts, &e);
208 tcf_em_tree_change(tp, &head->ematches, &t);
209
210 return 0;
211}
212
213static void cls_cgroup_destroy(struct tcf_proto *tp)
214{
Patrick McHardy47a1a1d2008-11-19 08:03:09 +0000215 struct cls_cgroup_head *head = tp->root;
Thomas Graff4009232008-11-07 22:56:00 -0800216
217 if (head) {
218 tcf_exts_destroy(tp, &head->exts);
219 tcf_em_tree_destroy(tp, &head->ematches);
220 kfree(head);
221 }
222}
223
224static int cls_cgroup_delete(struct tcf_proto *tp, unsigned long arg)
225{
226 return -EOPNOTSUPP;
227}
228
229static void cls_cgroup_walk(struct tcf_proto *tp, struct tcf_walker *arg)
230{
231 struct cls_cgroup_head *head = tp->root;
232
233 if (arg->count < arg->skip)
234 goto skip;
235
236 if (arg->fn(tp, (unsigned long) head, arg) < 0) {
237 arg->stop = 1;
238 return;
239 }
240skip:
241 arg->count++;
242}
243
244static int cls_cgroup_dump(struct tcf_proto *tp, unsigned long fh,
245 struct sk_buff *skb, struct tcmsg *t)
246{
247 struct cls_cgroup_head *head = tp->root;
248 unsigned char *b = skb_tail_pointer(skb);
249 struct nlattr *nest;
250
251 t->tcm_handle = head->handle;
252
253 nest = nla_nest_start(skb, TCA_OPTIONS);
254 if (nest == NULL)
255 goto nla_put_failure;
256
257 if (tcf_exts_dump(skb, &head->exts, &cgroup_ext_map) < 0 ||
258 tcf_em_tree_dump(skb, &head->ematches, TCA_CGROUP_EMATCHES) < 0)
259 goto nla_put_failure;
260
261 nla_nest_end(skb, nest);
262
263 if (tcf_exts_dump_stats(skb, &head->exts, &cgroup_ext_map) < 0)
264 goto nla_put_failure;
265
266 return skb->len;
267
268nla_put_failure:
269 nlmsg_trim(skb, b);
270 return -1;
271}
272
273static struct tcf_proto_ops cls_cgroup_ops __read_mostly = {
274 .kind = "cgroup",
275 .init = cls_cgroup_init,
276 .change = cls_cgroup_change,
277 .classify = cls_cgroup_classify,
278 .destroy = cls_cgroup_destroy,
279 .get = cls_cgroup_get,
280 .put = cls_cgroup_put,
281 .delete = cls_cgroup_delete,
282 .walk = cls_cgroup_walk,
283 .dump = cls_cgroup_dump,
284 .owner = THIS_MODULE,
285};
286
287static int __init init_cgroup_cls(void)
288{
Herbert Xuf8451722010-05-24 00:12:34 -0700289 int ret;
290
Ben Blum8e039d82010-03-23 05:24:03 +0000291 ret = cgroup_load_subsys(&net_cls_subsys);
292 if (ret)
Herbert Xuf8451722010-05-24 00:12:34 -0700293 goto out;
294
295#ifndef CONFIG_NET_CLS_CGROUP
296 /* We can't use rcu_assign_pointer because this is an int. */
297 smp_wmb();
298 net_cls_subsys_id = net_cls_subsys.subsys_id;
299#endif
300
301 ret = register_tcf_proto_ops(&cls_cgroup_ops);
302 if (ret)
303 cgroup_unload_subsys(&net_cls_subsys);
304
305out:
Ben Blum8e039d82010-03-23 05:24:03 +0000306 return ret;
Thomas Graff4009232008-11-07 22:56:00 -0800307}
308
309static void __exit exit_cgroup_cls(void)
310{
311 unregister_tcf_proto_ops(&cls_cgroup_ops);
Herbert Xuf8451722010-05-24 00:12:34 -0700312
313#ifndef CONFIG_NET_CLS_CGROUP
314 net_cls_subsys_id = -1;
315 synchronize_rcu();
316#endif
317
Ben Blum8e039d82010-03-23 05:24:03 +0000318 cgroup_unload_subsys(&net_cls_subsys);
Thomas Graff4009232008-11-07 22:56:00 -0800319}
320
321module_init(init_cgroup_cls);
322module_exit(exit_cgroup_cls);
323MODULE_LICENSE("GPL");