blob: 04257a0e35343345fc3082fcedcd9a86c72d34b6 [file] [log] [blame]
Daniel Borkmannfe1217c2013-12-29 18:27:10 +01001/*
2 * net/core/netclassid_cgroup.c Classid Cgroupfs Handling
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>
13#include <linux/slab.h>
14#include <linux/cgroup.h>
15#include <linux/fdtable.h>
16#include <net/cls_cgroup.h>
17#include <net/sock.h>
18
19static inline struct cgroup_cls_state *css_cls_state(struct cgroup_subsys_state *css)
20{
21 return css ? container_of(css, struct cgroup_cls_state, css) : NULL;
22}
23
24struct cgroup_cls_state *task_cls_state(struct task_struct *p)
25{
Konstantin Khlebnikovcc9f4da2015-07-22 12:23:20 +030026 return css_cls_state(task_css_check(p, net_cls_cgrp_id,
27 rcu_read_lock_bh_held()));
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010028}
29EXPORT_SYMBOL_GPL(task_cls_state);
30
31static struct cgroup_subsys_state *
32cgrp_css_alloc(struct cgroup_subsys_state *parent_css)
33{
34 struct cgroup_cls_state *cs;
35
36 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
37 if (!cs)
38 return ERR_PTR(-ENOMEM);
39
40 return &cs->css;
41}
42
43static int cgrp_css_online(struct cgroup_subsys_state *css)
44{
45 struct cgroup_cls_state *cs = css_cls_state(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -040046 struct cgroup_cls_state *parent = css_cls_state(css->parent);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010047
48 if (parent)
49 cs->classid = parent->classid;
50
51 return 0;
52}
53
54static void cgrp_css_free(struct cgroup_subsys_state *css)
55{
56 kfree(css_cls_state(css));
57}
58
Nina Schiff3b137582015-11-20 12:31:39 -080059static int update_classid_sock(const void *v, struct file *file, unsigned n)
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010060{
61 int err;
62 struct socket *sock = sock_from_file(file, &err);
63
Tejun Heobd1060a2015-12-07 17:38:53 -050064 if (sock) {
65 spin_lock(&cgroup_sk_update_lock);
Tejun Heo2a56a1f2015-12-07 17:38:52 -050066 sock_cgroup_set_classid(&sock->sk->sk_cgrp_data,
67 (unsigned long)v);
Tejun Heobd1060a2015-12-07 17:38:53 -050068 spin_unlock(&cgroup_sk_update_lock);
69 }
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010070 return 0;
71}
72
Nina Schiff3b137582015-11-20 12:31:39 -080073static void update_classid(struct cgroup_subsys_state *css, void *v)
74{
75 struct css_task_iter it;
76 struct task_struct *p;
77
78 css_task_iter_start(css, &it);
79 while ((p = css_task_iter_next(&it))) {
80 task_lock(p);
81 iterate_fd(p->files, 0, update_classid_sock, v);
82 task_unlock(p);
83 }
84 css_task_iter_end(&it);
85}
86
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010087static void cgrp_attach(struct cgroup_subsys_state *css,
88 struct cgroup_taskset *tset)
89{
Nina Schiff3b137582015-11-20 12:31:39 -080090 update_classid(css,
91 (void *)(unsigned long)css_cls_state(css)->classid);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010092}
93
94static u64 read_classid(struct cgroup_subsys_state *css, struct cftype *cft)
95{
96 return css_cls_state(css)->classid;
97}
98
99static int write_classid(struct cgroup_subsys_state *css, struct cftype *cft,
100 u64 value)
101{
Nina Schiff3b137582015-11-20 12:31:39 -0800102 struct cgroup_cls_state *cs = css_cls_state(css);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100103
Tejun Heobd1060a2015-12-07 17:38:53 -0500104 cgroup_sk_alloc_disable();
105
Nina Schiff3b137582015-11-20 12:31:39 -0800106 cs->classid = (u32)value;
107
108 update_classid(css, (void *)(unsigned long)cs->classid);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100109 return 0;
110}
111
112static struct cftype ss_files[] = {
113 {
114 .name = "classid",
115 .read_u64 = read_classid,
116 .write_u64 = write_classid,
117 },
118 { } /* terminate */
119};
120
Tejun Heo073219e2014-02-08 10:36:58 -0500121struct cgroup_subsys net_cls_cgrp_subsys = {
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100122 .css_alloc = cgrp_css_alloc,
123 .css_online = cgrp_css_online,
124 .css_free = cgrp_css_free,
125 .attach = cgrp_attach,
Tejun Heo55779642014-07-15 11:05:09 -0400126 .legacy_cftypes = ss_files,
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100127};