blob: 6ae56037bb1336d9cb6b6fc36043a203f3978202 [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
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010012#include <linux/slab.h>
13#include <linux/cgroup.h>
14#include <linux/fdtable.h>
Ingo Molnarf719ff92017-02-06 10:57:33 +010015#include <linux/sched/task.h>
16
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010017#include <net/cls_cgroup.h>
18#include <net/sock.h>
19
20static inline struct cgroup_cls_state *css_cls_state(struct cgroup_subsys_state *css)
21{
22 return css ? container_of(css, struct cgroup_cls_state, css) : NULL;
23}
24
25struct cgroup_cls_state *task_cls_state(struct task_struct *p)
26{
Konstantin Khlebnikovcc9f4da2015-07-22 12:23:20 +030027 return css_cls_state(task_css_check(p, net_cls_cgrp_id,
28 rcu_read_lock_bh_held()));
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010029}
30EXPORT_SYMBOL_GPL(task_cls_state);
31
32static struct cgroup_subsys_state *
33cgrp_css_alloc(struct cgroup_subsys_state *parent_css)
34{
35 struct cgroup_cls_state *cs;
36
37 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
38 if (!cs)
39 return ERR_PTR(-ENOMEM);
40
41 return &cs->css;
42}
43
44static int cgrp_css_online(struct cgroup_subsys_state *css)
45{
46 struct cgroup_cls_state *cs = css_cls_state(css);
Tejun Heo5c9d5352014-05-16 13:22:48 -040047 struct cgroup_cls_state *parent = css_cls_state(css->parent);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010048
49 if (parent)
50 cs->classid = parent->classid;
51
52 return 0;
53}
54
55static void cgrp_css_free(struct cgroup_subsys_state *css)
56{
57 kfree(css_cls_state(css));
58}
59
Nina Schiff3b137582015-11-20 12:31:39 -080060static int update_classid_sock(const void *v, struct file *file, unsigned n)
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010061{
62 int err;
63 struct socket *sock = sock_from_file(file, &err);
64
Tejun Heobd1060a2015-12-07 17:38:53 -050065 if (sock) {
66 spin_lock(&cgroup_sk_update_lock);
Tejun Heo2a56a1f2015-12-07 17:38:52 -050067 sock_cgroup_set_classid(&sock->sk->sk_cgrp_data,
68 (unsigned long)v);
Tejun Heobd1060a2015-12-07 17:38:53 -050069 spin_unlock(&cgroup_sk_update_lock);
70 }
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010071 return 0;
72}
73
Nina Schiff3b137582015-11-20 12:31:39 -080074static void update_classid(struct cgroup_subsys_state *css, void *v)
75{
76 struct css_task_iter it;
77 struct task_struct *p;
78
79 css_task_iter_start(css, &it);
80 while ((p = css_task_iter_next(&it))) {
81 task_lock(p);
82 iterate_fd(p->files, 0, update_classid_sock, v);
83 task_unlock(p);
84 }
85 css_task_iter_end(&it);
86}
87
Tejun Heo0b98f0c2015-12-07 10:09:03 -050088static void cgrp_attach(struct cgroup_taskset *tset)
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010089{
Tejun Heo0b98f0c2015-12-07 10:09:03 -050090 struct cgroup_subsys_state *css;
91
92 cgroup_taskset_first(tset, &css);
Nina Schiff3b137582015-11-20 12:31:39 -080093 update_classid(css,
94 (void *)(unsigned long)css_cls_state(css)->classid);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +010095}
96
97static u64 read_classid(struct cgroup_subsys_state *css, struct cftype *cft)
98{
99 return css_cls_state(css)->classid;
100}
101
102static int write_classid(struct cgroup_subsys_state *css, struct cftype *cft,
103 u64 value)
104{
Nina Schiff3b137582015-11-20 12:31:39 -0800105 struct cgroup_cls_state *cs = css_cls_state(css);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100106
Tejun Heobd1060a2015-12-07 17:38:53 -0500107 cgroup_sk_alloc_disable();
108
Nina Schiff3b137582015-11-20 12:31:39 -0800109 cs->classid = (u32)value;
110
111 update_classid(css, (void *)(unsigned long)cs->classid);
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100112 return 0;
113}
114
115static struct cftype ss_files[] = {
116 {
117 .name = "classid",
118 .read_u64 = read_classid,
119 .write_u64 = write_classid,
120 },
121 { } /* terminate */
122};
123
Tejun Heo073219e2014-02-08 10:36:58 -0500124struct cgroup_subsys net_cls_cgrp_subsys = {
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100125 .css_alloc = cgrp_css_alloc,
126 .css_online = cgrp_css_online,
127 .css_free = cgrp_css_free,
128 .attach = cgrp_attach,
Tejun Heo55779642014-07-15 11:05:09 -0400129 .legacy_cftypes = ss_files,
Daniel Borkmannfe1217c2013-12-29 18:27:10 +0100130};