cgroups: fix a serious bug in cgroupstats
commitb4c5ec8c76ad0ad0c70ee2270639e52222b63474
authorLi Zefan <lizf@cn.fujitsu.com>
Wed, 19 Nov 2008 23:36:48 +0000 (19 15:36 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 5 Dec 2008 18:55:10 +0000 (5 10:55 -0800)
tree38e06c2612d41b970ee0ab4cf19740affcc2443f
parenta677fac636cbd9fdd1520e16514dee91f59f80be
cgroups: fix a serious bug in cgroupstats

commit 33d283bef23132c48195eafc21449f8ba88fce6b upstream.

Try this, and you'll get oops immediately:
 # cd Documentation/accounting/
 # gcc -o getdelays getdelays.c
 # mount -t cgroup -o debug xxx /mnt
 # ./getdelays -C /mnt/tasks

Because a normal file's dentry->d_fsdata is a pointer to struct cftype,
not struct cgroup.

After the patch, it returns EINVAL if we try to get cgroupstats
from a normal file.

Cc: Balbir Singh <balbir@linux.vnet.ibm.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Acked-by: Paul Menage <menage@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
kernel/cgroup.c