From: Linus Torvalds Date: Tue, 20 Sep 2011 00:04:37 +0000 (-0700) Subject: Make TASKSTATS require root access X-Git-Tag: v2.6.27.60~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52556d4b189c73376320ff502204db73c1ce4455;p=thirdparty%2Fkernel%2Fstable.git Make TASKSTATS require root access commit 1a51410abe7d0ee4b1d112780f46df87d3621043 upstream. Ok, this isn't optimal, since it means that 'iotop' needs admin capabilities, and we may have to work on this some more. But at the same time it is very much not acceptable to let anybody just read anybody elses IO statistics quite at this level. Use of the GENL_ADMIN_PERM suggested by Johannes Berg as an alternative to checking the capabilities by hand. Reported-by: Vasiliy Kulikov Cc: Johannes Berg Acked-by: Balbir Singh Signed-off-by: Linus Torvalds Cc: Moritz Mühlenhoff Signed-off-by: Greg Kroah-Hartman Signed-off-by: Willy Tarreau --- diff --git a/kernel/taskstats.c b/kernel/taskstats.c index bd6be76303cf2..7fdd65b30da0e 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c @@ -574,6 +574,7 @@ static struct genl_ops taskstats_ops = { .cmd = TASKSTATS_CMD_GET, .doit = taskstats_user_cmd, .policy = taskstats_cmd_get_policy, + .flags = GENL_ADMIN_PERM, }; static struct genl_ops cgroupstats_ops = {