All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Sandeen <sandeen@sandeen.net>
To: "Darrick J. Wong" <darrick.wong@oracle.com>, linux-xfs@vger.kernel.org
Cc: Dan Carpenter <dan.carpenter@oracle.com>,
	Eric Sandeen <sandeen@redhat.com>
Subject: Re: [PATCH v2] xfs: fix stack contents leakage in the v1 inumber ioctls
Date: Thu, 25 Jul 2019 13:16:58 -0500	[thread overview]
Message-ID: <49a64f95-7bf1-7434-8fdb-a5463b995149@sandeen.net> (raw)
In-Reply-To: <20190725175346.GF1561054@magnolia>

On 7/25/19 12:53 PM, Darrick J. Wong wrote:
> Explicitly initialize the onstack structures to zero so we don't leak
> kernel memory into userspace when converting the in-core inumbers
> structure to the v1 inogrp ioctl structure.  Add a comment about why we
> have to use memset to ensure that the padding holes in the structures
> are set to zero.
> 
> Fixes: 5f19c7fc6873351 ("xfs: introduce v5 inode group structure")
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>

Reviewed-by: Eric Sandeen <sandeen@redhat.com>

> ---
> v2: add comments, use memset this time
> ---
>  fs/xfs/xfs_itable.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c
> index 30fe17d25518..39374c680c49 100644
> --- a/fs/xfs/xfs_itable.c
> +++ b/fs/xfs/xfs_itable.c
> @@ -283,6 +283,7 @@ xfs_bulkstat_to_bstat(
>  	struct xfs_bstat		*bs1,
>  	const struct xfs_bulkstat	*bstat)
>  {
> +	/* memset is needed here because of padding holes in the structure. */
>  	memset(bs1, 0, sizeof(struct xfs_bstat));
>  	bs1->bs_ino = bstat->bs_ino;
>  	bs1->bs_mode = bstat->bs_mode;
> @@ -399,6 +400,8 @@ xfs_inumbers_to_inogrp(
>  	struct xfs_inogrp		*ig1,
>  	const struct xfs_inumbers	*ig)
>  {
> +	/* memset is needed here because of padding holes in the structure. */
> +	memset(ig1, 0, sizeof(struct xfs_inogrp));
>  	ig1->xi_startino = ig->xi_startino;
>  	ig1->xi_alloccount = ig->xi_alloccount;
>  	ig1->xi_allocmask = ig->xi_allocmask;
> 

  reply	other threads:[~2019-07-25 18:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-25 17:53 [PATCH v2] xfs: fix stack contents leakage in the v1 inumber ioctls Darrick J. Wong
2019-07-25 18:16 ` Eric Sandeen [this message]
2019-07-26  6:37 ` Christoph Hellwig

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=49a64f95-7bf1-7434-8fdb-a5463b995149@sandeen.net \
    --to=sandeen@sandeen.net \
    --cc=dan.carpenter@oracle.com \
    --cc=darrick.wong@oracle.com \
    --cc=linux-xfs@vger.kernel.org \
    --cc=sandeen@redhat.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.