From: Dave Chinner <david@fromorbit.com>
To: Eric Sandeen <sandeen@redhat.com>
Cc: xfs-oss <xfs@oss.sgi.com>
Subject: Re: [PATCH] xfs: fix remote symlinks on V5/CRC filesystems
Date: Tue, 16 Jun 2015 08:21:57 +1000 [thread overview]
Message-ID: <20150615222157.GD10224@dastard> (raw)
In-Reply-To: <557F4E1E.8000505@redhat.com>
On Mon, Jun 15, 2015 at 05:13:50PM -0500, Eric Sandeen wrote:
> If we create a CRC filesystem, mount it, and create a symlink with
> a path long enough that it can't live in the inode, we get a very
> strange result upon remount:
>
> # ls -l mnt
> total 4
> lrwxrwxrwx. 1 root root 929 Jun 15 16:58 link -> XSLM
>
> XSLM is the V5 symlink block header magic (which happens to be
> followed by a NUL, so the string looks terminated).
>
> xfs_readlink_bmap() advanced cur_chunk by the size of the header
> for CRC filesystems, but never actually used that pointer; it
> kept reading from bp->b_addr, which is the start of the block,
> rather than the start of the symlink data after the header.
>
> Looks like this problem goes back to v3.10.
>
> Fixing this gets us reading the proper link target, again.
>
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> Cc: stable@vger.kernel.org
> ---
>
> diff --git a/fs/xfs/xfs_symlink.c b/fs/xfs/xfs_symlink.c
> index 3df411e..40c0765 100644
> --- a/fs/xfs/xfs_symlink.c
> +++ b/fs/xfs/xfs_symlink.c
> @@ -104,7 +104,7 @@ xfs_readlink_bmap(
> cur_chunk += sizeof(struct xfs_dsymlink_hdr);
> }
>
> - memcpy(link + offset, bp->b_addr, byte_cnt);
> + memcpy(link + offset, cur_chunk, byte_cnt);
>
> pathlen -= byte_cnt;
> offset += byte_cnt;
Looks like the correct fix, so:
Reviewed-by: Dave Chinner <dchinner@redhat.com>
However, it raises a more disturbing question: how did we not trip
over this until now? I though we had long symlink test coverage in
xfstests but clearly we haven't - do you have a test that closes
this verification hole?
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2015-06-15 22:22 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-15 22:13 [PATCH] xfs: fix remote symlinks on V5/CRC filesystems Eric Sandeen
2015-06-15 22:21 ` Dave Chinner [this message]
2015-06-15 22:35 ` Eric Sandeen
2015-06-15 22:47 ` Dave Chinner
2015-06-15 22:49 ` Eric Sandeen
2015-06-15 23:16 ` Dave Chinner
2015-06-16 1:26 ` Eric Sandeen
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=20150615222157.GD10224@dastard \
--to=david@fromorbit.com \
--cc=sandeen@redhat.com \
--cc=xfs@oss.sgi.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.