2 * net/core/netclassid_cgroup.c Classid Cgroupfs Handling
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.
9 * Authors: Thomas Graf <tgraf@suug.ch>
12 #include <linux/slab.h>
13 #include <linux/cgroup.h>
14 #include <linux/fdtable.h>
15 #include <net/cls_cgroup.h>
18 static inline struct cgroup_cls_state
*css_cls_state(struct cgroup_subsys_state
*css
)
20 return css
? container_of(css
, struct cgroup_cls_state
, css
) : NULL
;
23 struct cgroup_cls_state
*task_cls_state(struct task_struct
*p
)
25 return css_cls_state(task_css_check(p
, net_cls_cgrp_id
,
26 rcu_read_lock_bh_held()));
28 EXPORT_SYMBOL_GPL(task_cls_state
);
30 static struct cgroup_subsys_state
*
31 cgrp_css_alloc(struct cgroup_subsys_state
*parent_css
)
33 struct cgroup_cls_state
*cs
;
35 cs
= kzalloc(sizeof(*cs
), GFP_KERNEL
);
37 return ERR_PTR(-ENOMEM
);
42 static int cgrp_css_online(struct cgroup_subsys_state
*css
)
44 struct cgroup_cls_state
*cs
= css_cls_state(css
);
45 struct cgroup_cls_state
*parent
= css_cls_state(css
->parent
);
48 cs
->classid
= parent
->classid
;
53 static void cgrp_css_free(struct cgroup_subsys_state
*css
)
55 kfree(css_cls_state(css
));
58 static int update_classid_sock(const void *v
, struct file
*file
, unsigned n
)
61 struct socket
*sock
= sock_from_file(file
, &err
);
64 spin_lock(&cgroup_sk_update_lock
);
65 sock_cgroup_set_classid(&sock
->sk
->sk_cgrp_data
,
67 spin_unlock(&cgroup_sk_update_lock
);
72 static void cgrp_attach(struct cgroup_taskset
*tset
)
74 struct cgroup_subsys_state
*css
;
75 struct task_struct
*p
;
77 cgroup_taskset_for_each(p
, css
, tset
) {
79 iterate_fd(p
->files
, 0, update_classid_sock
,
80 (void *)(unsigned long)css_cls_state(css
)->classid
);
85 static u64
read_classid(struct cgroup_subsys_state
*css
, struct cftype
*cft
)
87 return css_cls_state(css
)->classid
;
90 static int write_classid(struct cgroup_subsys_state
*css
, struct cftype
*cft
,
93 struct cgroup_cls_state
*cs
= css_cls_state(css
);
94 struct css_task_iter it
;
95 struct task_struct
*p
;
97 cgroup_sk_alloc_disable();
99 cs
->classid
= (u32
)value
;
101 css_task_iter_start(css
, &it
);
102 while ((p
= css_task_iter_next(&it
))) {
104 iterate_fd(p
->files
, 0, update_classid_sock
,
105 (void *)(unsigned long)cs
->classid
);
108 css_task_iter_end(&it
);
113 static struct cftype ss_files
[] = {
116 .read_u64
= read_classid
,
117 .write_u64
= write_classid
,
122 struct cgroup_subsys net_cls_cgrp_subsys
= {
123 .css_alloc
= cgrp_css_alloc
,
124 .css_online
= cgrp_css_online
,
125 .css_free
= cgrp_css_free
,
126 .attach
= cgrp_attach
,
127 .legacy_cftypes
= ss_files
,