kprobes: Show blacklist entries via debugfs
[linux-2.6/btrfs-unstable.git] / net / core / netclassid_cgroup.c
blob22931e1b99b4e92a23222e30862b621ea3f9e43c
1 /*
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/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>
19 static inline struct cgroup_cls_state *css_cls_state(struct cgroup_subsys_state *css)
21 return css ? container_of(css, struct cgroup_cls_state, css) : NULL;
24 struct cgroup_cls_state *task_cls_state(struct task_struct *p)
26 return css_cls_state(task_css(p, net_cls_cgrp_id));
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);
36 if (!cs)
37 return ERR_PTR(-ENOMEM);
39 return &cs->css;
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(css));
47 if (parent)
48 cs->classid = parent->classid;
50 return 0;
53 static void cgrp_css_free(struct cgroup_subsys_state *css)
55 kfree(css_cls_state(css));
58 static int update_classid(const void *v, struct file *file, unsigned n)
60 int err;
61 struct socket *sock = sock_from_file(file, &err);
63 if (sock)
64 sock->sk->sk_classid = (u32)(unsigned long)v;
66 return 0;
69 static void cgrp_attach(struct cgroup_subsys_state *css,
70 struct cgroup_taskset *tset)
72 struct cgroup_cls_state *cs = css_cls_state(css);
73 void *v = (void *)(unsigned long)cs->classid;
74 struct task_struct *p;
76 cgroup_taskset_for_each(p, tset) {
77 task_lock(p);
78 iterate_fd(p->files, 0, update_classid, v);
79 task_unlock(p);
83 static u64 read_classid(struct cgroup_subsys_state *css, struct cftype *cft)
85 return css_cls_state(css)->classid;
88 static int write_classid(struct cgroup_subsys_state *css, struct cftype *cft,
89 u64 value)
91 css_cls_state(css)->classid = (u32) value;
93 return 0;
96 static struct cftype ss_files[] = {
98 .name = "classid",
99 .read_u64 = read_classid,
100 .write_u64 = write_classid,
102 { } /* terminate */
105 struct cgroup_subsys net_cls_cgrp_subsys = {
106 .css_alloc = cgrp_css_alloc,
107 .css_online = cgrp_css_online,
108 .css_free = cgrp_css_free,
109 .attach = cgrp_attach,
110 .base_cftypes = ss_files,