From: Andrew Morton <akpm@linux-foundation.org>
To: Li Zefan <lizf@cn.fujitsu.com>
Cc: Paul Menage <menage@google.com>,
Balbir Singh <balbir@linux.vnet.ibm.com>,
LKML <linux-kernel@vger.kernel.org>,
Linux Containers <containers@lists.linux-foundation.org>,
stable@kernel.org
Subject: Re: [PATCH] cgroups: fix a serious bug in cgroupstats
Date: Wed, 19 Nov 2008 00:25:52 -0800 [thread overview]
Message-ID: <20081119002552.3840e3d2.akpm@linux-foundation.org> (raw)
In-Reply-To: <4923CAF1.1020404@cn.fujitsu.com>
On Wed, 19 Nov 2008 16:14:41 +0800 Li Zefan <lizf@cn.fujitsu.com> wrote:
> Try this, and you'll get oops immediately:
I guess that's wrong.
> # 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>
> ---
> kernel/cgroup.c | 7 +++++--
> 1 files changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/cgroup.c b/kernel/cgroup.c
> index 358e775..f6f5219 100644
> --- a/kernel/cgroup.c
> +++ b/kernel/cgroup.c
> @@ -2039,10 +2039,13 @@ int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry)
> struct cgroup *cgrp;
> struct cgroup_iter it;
> struct task_struct *tsk;
> +
> /*
> - * Validate dentry by checking the superblock operations
> + * Validate dentry by checking the superblock operations,
> + * and make sure it's a directory.
> */
> - if (dentry->d_sb->s_op != &cgroup_ops)
> + if (dentry->d_sb->s_op != &cgroup_ops ||
> + !S_ISDIR(dentry->d_inode->i_mode))
> goto err;
>
> ret = 0;
The patch applies OK to 2.6.25, 2.6.26 and to 2.6.27. I marked it as
needing backport to those kernel versions. Please let me know if that
was inappropriate.
next prev parent reply other threads:[~2008-11-19 8:26 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-19 8:14 Li Zefan
2008-11-19 8:25 ` Andrew Morton [this message]
2008-11-19 8:29 ` Li Zefan
2008-11-19 8:30 ` Balbir Singh
2008-11-19 22:31 ` Paul Menage
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081119002552.3840e3d2.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=balbir@linux.vnet.ibm.com \
--cc=containers@lists.linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lizf@cn.fujitsu.com \
--cc=menage@google.com \
--cc=stable@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®