cgroup_pids: don't account for the root cgroup
[deliverable/linux.git] / net / core / netclassid_cgroup.c
CommitLineData
fe1217c4
DB
1/*
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{
cc9f4daa
KK
26 return css_cls_state(task_css_check(p, net_cls_cgrp_id,
27 rcu_read_lock_bh_held()));
fe1217c4
DB
28}
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);
5c9d535b 46 struct cgroup_cls_state *parent = css_cls_state(css->parent);
fe1217c4
DB
47
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
59static int update_classid(const void *v, struct file *file, unsigned n)
60{
61 int err;
62 struct socket *sock = sock_from_file(file, &err);
63
64 if (sock)
65 sock->sk->sk_classid = (u32)(unsigned long)v;
66
67 return 0;
68}
69
1f7dd3e5 70static void cgrp_attach(struct cgroup_taskset *tset)
fe1217c4 71{
fe1217c4 72 struct task_struct *p;
1f7dd3e5
TH
73 struct cgroup_subsys_state *css;
74
75 cgroup_taskset_for_each(p, css, tset) {
76 struct cgroup_cls_state *cs = css_cls_state(css);
77 void *v = (void *)(unsigned long)cs->classid;
fe1217c4 78
fe1217c4
DB
79 task_lock(p);
80 iterate_fd(p->files, 0, update_classid, v);
81 task_unlock(p);
82 }
83}
84
85static u64 read_classid(struct cgroup_subsys_state *css, struct cftype *cft)
86{
87 return css_cls_state(css)->classid;
88}
89
90static int write_classid(struct cgroup_subsys_state *css, struct cftype *cft,
91 u64 value)
92{
93 css_cls_state(css)->classid = (u32) value;
94
95 return 0;
96}
97
98static struct cftype ss_files[] = {
99 {
100 .name = "classid",
101 .read_u64 = read_classid,
102 .write_u64 = write_classid,
103 },
104 { } /* terminate */
105};
106
073219e9 107struct cgroup_subsys net_cls_cgrp_subsys = {
fe1217c4
DB
108 .css_alloc = cgrp_css_alloc,
109 .css_online = cgrp_css_online,
110 .css_free = cgrp_css_free,
111 .attach = cgrp_attach,
5577964e 112 .legacy_cftypes = ss_files,
fe1217c4 113};
This page took 0.096724 seconds and 5 git commands to generate.