All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] generic: test XATTR_REPLACE doesn't take the fs down
       [not found] <20180418003236.GE5201@magnolia>
@ 2018-04-18  4:24 ` Darrick J. Wong
  2018-04-24 12:08   ` Eryu Guan
  0 siblings, 1 reply; 6+ messages in thread
From: Darrick J. Wong @ 2018-04-18  4:24 UTC (permalink / raw)
  To: Eryu Guan; +Cc: kanda.motohiro, xfs, fstests

[cc xfs/fstests lists]

On Tue, Apr 17, 2018 at 05:32:36PM -0700, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
> 
> Kanda Motohiro reported that expanding a tiny xattr into a large xattr
> fails on XFS because we remove the tiny xattr from a shortform fork and
> then try to re-add it after converting the fork to extents format having
> not removed the ATTR_REPLACE flag.  This fails because the attr is no
> longer present, causing a fs shutdown.
> 
> Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
> Reported-by: kanda.motohiro@gmail.com
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
>  src/Makefile            |    3 +-
>  src/attr_replace_test.c |   47 +++++++++++++++++++++++++++++++++++
>  tests/generic/706       |   64 +++++++++++++++++++++++++++++++++++++++++++++++
>  tests/generic/706.out   |    2 +
>  tests/generic/group     |    1 +
>  5 files changed, 116 insertions(+), 1 deletion(-)
>  create mode 100644 src/attr_replace_test.c
>  create mode 100755 tests/generic/706
>  create mode 100644 tests/generic/706.out
> 
> diff --git a/src/Makefile b/src/Makefile
> index 0d3feae..162e529 100644
> --- a/src/Makefile
> +++ b/src/Makefile
> @@ -25,7 +25,8 @@ LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
>  	seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
>  	renameat2 t_getcwd e4compact test-nextquota punch-alternating \
>  	attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
> -	dio-invalidate-cache stat_test t_encrypted_d_revalidate
> +	dio-invalidate-cache stat_test t_encrypted_d_revalidate \
> +	attr_replace_test
>  
>  SUBDIRS = log-writes perf
>  
> diff --git a/src/attr_replace_test.c b/src/attr_replace_test.c
> new file mode 100644
> index 0000000..583ca17
> --- /dev/null
> +++ b/src/attr_replace_test.c
> @@ -0,0 +1,47 @@
> +// setattr.c by kanda.motohiro@gmail.com
> +// xfs extended attribute corruption bug reproducer
> +#include <stdio.h>
> +#include <string.h>
> +#include <fcntl.h>
> +#include <errno.h>
> +#include <stdlib.h>
> +#include <unistd.h>
> +#include <sys/types.h>
> +#include <sys/xattr.h>
> +
> +#define die() do { perror(""); \
> +fprintf(stderr, "error=%d at line %d\n", errno, __LINE__); \
> +exit(1); } while (0)
> +
> +int main(int argc, char *argv[])
> +{
> +	int ret;
> +	int fd;
> +	char *path = "/mnt/xfs/hello";
> +	char *name = "user.world";
> +	char value[2048];
> +	size_t size = sizeof(value);
> +
> +	if (argc == 2)
> +		path = argv[1];
> +
> +	fd = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
> +	if (fd < 0) die();
> +
> +	// First, create a small xattr.
> +	memset(value, '0', 1);
> +	ret = fsetxattr(fd, name, value, 1, XATTR_CREATE);
> +	if (ret < 0) die();
> +	close(fd);
> +
> +	fd = open(path, O_RDWR);
> +	if (fd < 0) die();
> +
> +	// Then, replace it with bigger one, forcing short form to leaf conversion.
> +	memset(value, '1', sizeof(value));
> +	ret = fsetxattr(fd, name, value, size, XATTR_REPLACE);
> +	if (ret < 0) die();
> +	close(fd);
> +
> +	return 0;
> +}
> diff --git a/tests/generic/706 b/tests/generic/706
> new file mode 100755
> index 0000000..4d8f180
> --- /dev/null
> +++ b/tests/generic/706
> @@ -0,0 +1,64 @@
> +#! /bin/bash
> +# FS QA Test No. 706
> +#
> +# Ensure that we can XATTR_REPLACE a tiny attr into a large attr.
> +# Kanda Motohiro <kanda.motohiro@gmail.com> reports that XATTR_REPLACE'ing
> +# a single-byte attr with a 2048-byte attr causes a fs shutdown because we
> +# remove the shortform attr, convert the attr fork to long format, and then
> +# try to re-add the attr having not cleared ATTR_REPLACE.
> +#
> +#-----------------------------------------------------------------------
> +# Copyright (c) 2018 Oracle.  All Rights Reserved.
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation.
> +#
> +# This program is distributed in the hope that it would be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; if not, write the Free Software Foundation,
> +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> +#
> +#-----------------------------------------------------------------------
> +
> +seq=`basename $0`
> +seqres=$RESULT_DIR/$seq
> +echo "QA output created by $seq"
> +
> +status=1	# failure is the default!
> +trap "_cleanup; exit \$status" 0 1 2 3 15
> +
> +_cleanup()
> +{
> +	cd /
> +	rm -f $testfile
> +}
> +
> +# get standard environment, filters and checks
> +. ./common/rc
> +. ./common/filter
> +. ./common/attr
> +
> +# remove previous $seqres.full before test
> +rm -f $seqres.full
> +
> +# real QA test starts here
> +_supported_fs generic
> +_supported_os Linux
> +_require_test_program "attr_replace_test"
> +_require_attrs
> +_require_scratch
> +
> +rm -f $seqres.full
> +_scratch_mkfs >>$seqres.full 2>&1
> +_scratch_mount >>$seqres.full 2>&1
> +
> +./src/attr_replace_test $SCRATCH_MNT/hello
> +$ATTR_PROG -l $SCRATCH_MNT/hello | _filter_scratch
> +
> +status=0
> +exit
> diff --git a/tests/generic/706.out b/tests/generic/706.out
> new file mode 100644
> index 0000000..1c654c1
> --- /dev/null
> +++ b/tests/generic/706.out
> @@ -0,0 +1,2 @@
> +QA output created by 706
> +Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> diff --git a/tests/generic/group b/tests/generic/group
> index 3f93dc4..fc05315 100644
> --- a/tests/generic/group
> +++ b/tests/generic/group
> @@ -487,3 +487,4 @@
>  482 auto metadata replay
>  483 auto quick log metadata
>  484 auto quick insert
> +706 auto quick attr

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] generic: test XATTR_REPLACE doesn't take the fs down
  2018-04-18  4:24 ` [PATCH] generic: test XATTR_REPLACE doesn't take the fs down Darrick J. Wong
@ 2018-04-24 12:08   ` Eryu Guan
  2018-04-24 16:06     ` Darrick J. Wong
  0 siblings, 1 reply; 6+ messages in thread
From: Eryu Guan @ 2018-04-24 12:08 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: kanda.motohiro, xfs, fstests

On Tue, Apr 17, 2018 at 09:24:57PM -0700, Darrick J. Wong wrote:
> [cc xfs/fstests lists]
> 
> On Tue, Apr 17, 2018 at 05:32:36PM -0700, Darrick J. Wong wrote:
> > From: Darrick J. Wong <darrick.wong@oracle.com>
> > 
> > Kanda Motohiro reported that expanding a tiny xattr into a large xattr
> > fails on XFS because we remove the tiny xattr from a shortform fork and
> > then try to re-add it after converting the fork to extents format having
> > not removed the ATTR_REPLACE flag.  This fails because the attr is no
> > longer present, causing a fs shutdown.
> > 
> > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
> > Reported-by: kanda.motohiro@gmail.com
> > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>

Some minor issues below, but I think I can fix them all on commit.

> > ---
> >  src/Makefile            |    3 +-
> >  src/attr_replace_test.c |   47 +++++++++++++++++++++++++++++++++++

Need a .gitignore entry for it.

> >  tests/generic/706       |   64 +++++++++++++++++++++++++++++++++++++++++++++++
> >  tests/generic/706.out   |    2 +
> >  tests/generic/group     |    1 +
> >  5 files changed, 116 insertions(+), 1 deletion(-)
> >  create mode 100644 src/attr_replace_test.c
> >  create mode 100755 tests/generic/706
> >  create mode 100644 tests/generic/706.out
> > 
> > diff --git a/src/Makefile b/src/Makefile
> > index 0d3feae..162e529 100644
> > --- a/src/Makefile
> > +++ b/src/Makefile
> > @@ -25,7 +25,8 @@ LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
> >  	seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
> >  	renameat2 t_getcwd e4compact test-nextquota punch-alternating \
> >  	attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
> > -	dio-invalidate-cache stat_test t_encrypted_d_revalidate
> > +	dio-invalidate-cache stat_test t_encrypted_d_revalidate \
> > +	attr_replace_test
> >  
> >  SUBDIRS = log-writes perf
> >  
> > diff --git a/src/attr_replace_test.c b/src/attr_replace_test.c
> > new file mode 100644
> > index 0000000..583ca17
> > --- /dev/null
> > +++ b/src/attr_replace_test.c
> > @@ -0,0 +1,47 @@
> > +// setattr.c by kanda.motohiro@gmail.com
> > +// xfs extended attribute corruption bug reproducer
> > +#include <stdio.h>
> > +#include <string.h>
> > +#include <fcntl.h>
> > +#include <errno.h>
> > +#include <stdlib.h>
> > +#include <unistd.h>
> > +#include <sys/types.h>
> > +#include <sys/xattr.h>
> > +
> > +#define die() do { perror(""); \
> > +fprintf(stderr, "error=%d at line %d\n", errno, __LINE__); \
> > +exit(1); } while (0)
> > +
> > +int main(int argc, char *argv[])
> > +{
> > +	int ret;
> > +	int fd;
> > +	char *path = "/mnt/xfs/hello";

I'd like not assign default path to "/mnt/xfs/hello", just in case we
forget the testfile argument and test runs against /mnt/xfs/hello
accidently and test passes silently.

> > +	char *name = "user.world";
> > +	char value[2048];
> > +	size_t size = sizeof(value);
> > +
> > +	if (argc == 2)
> > +		path = argv[1];

I'll make sure argc == 2, and error out if not.

Thanks,
Eryu

> > +
> > +	fd = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
> > +	if (fd < 0) die();
> > +
> > +	// First, create a small xattr.
> > +	memset(value, '0', 1);
> > +	ret = fsetxattr(fd, name, value, 1, XATTR_CREATE);
> > +	if (ret < 0) die();
> > +	close(fd);
> > +
> > +	fd = open(path, O_RDWR);
> > +	if (fd < 0) die();
> > +
> > +	// Then, replace it with bigger one, forcing short form to leaf conversion.
> > +	memset(value, '1', sizeof(value));
> > +	ret = fsetxattr(fd, name, value, size, XATTR_REPLACE);
> > +	if (ret < 0) die();
> > +	close(fd);
> > +
> > +	return 0;
> > +}
> > diff --git a/tests/generic/706 b/tests/generic/706
> > new file mode 100755
> > index 0000000..4d8f180
> > --- /dev/null
> > +++ b/tests/generic/706
> > @@ -0,0 +1,64 @@
> > +#! /bin/bash
> > +# FS QA Test No. 706
> > +#
> > +# Ensure that we can XATTR_REPLACE a tiny attr into a large attr.
> > +# Kanda Motohiro <kanda.motohiro@gmail.com> reports that XATTR_REPLACE'ing
> > +# a single-byte attr with a 2048-byte attr causes a fs shutdown because we
> > +# remove the shortform attr, convert the attr fork to long format, and then
> > +# try to re-add the attr having not cleared ATTR_REPLACE.
> > +#
> > +#-----------------------------------------------------------------------
> > +# Copyright (c) 2018 Oracle.  All Rights Reserved.
> > +#
> > +# This program is free software; you can redistribute it and/or
> > +# modify it under the terms of the GNU General Public License as
> > +# published by the Free Software Foundation.
> > +#
> > +# This program is distributed in the hope that it would be useful,
> > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > +# GNU General Public License for more details.
> > +#
> > +# You should have received a copy of the GNU General Public License
> > +# along with this program; if not, write the Free Software Foundation,
> > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > +#
> > +#-----------------------------------------------------------------------
> > +
> > +seq=`basename $0`
> > +seqres=$RESULT_DIR/$seq
> > +echo "QA output created by $seq"
> > +
> > +status=1	# failure is the default!
> > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > +
> > +_cleanup()
> > +{
> > +	cd /
> > +	rm -f $testfile
> > +}
> > +
> > +# get standard environment, filters and checks
> > +. ./common/rc
> > +. ./common/filter
> > +. ./common/attr
> > +
> > +# remove previous $seqres.full before test
> > +rm -f $seqres.full
> > +
> > +# real QA test starts here
> > +_supported_fs generic
> > +_supported_os Linux
> > +_require_test_program "attr_replace_test"
> > +_require_attrs
> > +_require_scratch
> > +
> > +rm -f $seqres.full
> > +_scratch_mkfs >>$seqres.full 2>&1
> > +_scratch_mount >>$seqres.full 2>&1
> > +
> > +./src/attr_replace_test $SCRATCH_MNT/hello
> > +$ATTR_PROG -l $SCRATCH_MNT/hello | _filter_scratch
> > +
> > +status=0
> > +exit
> > diff --git a/tests/generic/706.out b/tests/generic/706.out
> > new file mode 100644
> > index 0000000..1c654c1
> > --- /dev/null
> > +++ b/tests/generic/706.out
> > @@ -0,0 +1,2 @@
> > +QA output created by 706
> > +Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> > diff --git a/tests/generic/group b/tests/generic/group
> > index 3f93dc4..fc05315 100644
> > --- a/tests/generic/group
> > +++ b/tests/generic/group
> > @@ -487,3 +487,4 @@
> >  482 auto metadata replay
> >  483 auto quick log metadata
> >  484 auto quick insert
> > +706 auto quick attr

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] generic: test XATTR_REPLACE doesn't take the fs down
  2018-04-24 12:08   ` Eryu Guan
@ 2018-04-24 16:06     ` Darrick J. Wong
  2018-04-25  3:14       ` Eryu Guan
  0 siblings, 1 reply; 6+ messages in thread
From: Darrick J. Wong @ 2018-04-24 16:06 UTC (permalink / raw)
  To: Eryu Guan; +Cc: kanda.motohiro, xfs, fstests

On Tue, Apr 24, 2018 at 08:08:59PM +0800, Eryu Guan wrote:
> On Tue, Apr 17, 2018 at 09:24:57PM -0700, Darrick J. Wong wrote:
> > [cc xfs/fstests lists]
> > 
> > On Tue, Apr 17, 2018 at 05:32:36PM -0700, Darrick J. Wong wrote:
> > > From: Darrick J. Wong <darrick.wong@oracle.com>
> > > 
> > > Kanda Motohiro reported that expanding a tiny xattr into a large xattr
> > > fails on XFS because we remove the tiny xattr from a shortform fork and
> > > then try to re-add it after converting the fork to extents format having
> > > not removed the ATTR_REPLACE flag.  This fails because the attr is no
> > > longer present, causing a fs shutdown.
> > > 
> > > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
> > > Reported-by: kanda.motohiro@gmail.com
> > > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> 
> Some minor issues below, but I think I can fix them all on commit.
> 
> > > ---
> > >  src/Makefile            |    3 +-
> > >  src/attr_replace_test.c |   47 +++++++++++++++++++++++++++++++++++
> 
> Need a .gitignore entry for it.

Ok.  Assuming you meant a .gitignore entry for src/attr_replace_test,
not the source file itself.

> > >  tests/generic/706       |   64 +++++++++++++++++++++++++++++++++++++++++++++++
> > >  tests/generic/706.out   |    2 +
> > >  tests/generic/group     |    1 +
> > >  5 files changed, 116 insertions(+), 1 deletion(-)
> > >  create mode 100644 src/attr_replace_test.c
> > >  create mode 100755 tests/generic/706
> > >  create mode 100644 tests/generic/706.out
> > > 
> > > diff --git a/src/Makefile b/src/Makefile
> > > index 0d3feae..162e529 100644
> > > --- a/src/Makefile
> > > +++ b/src/Makefile
> > > @@ -25,7 +25,8 @@ LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
> > >  	seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
> > >  	renameat2 t_getcwd e4compact test-nextquota punch-alternating \
> > >  	attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
> > > -	dio-invalidate-cache stat_test t_encrypted_d_revalidate
> > > +	dio-invalidate-cache stat_test t_encrypted_d_revalidate \
> > > +	attr_replace_test
> > >  
> > >  SUBDIRS = log-writes perf
> > >  
> > > diff --git a/src/attr_replace_test.c b/src/attr_replace_test.c
> > > new file mode 100644
> > > index 0000000..583ca17
> > > --- /dev/null
> > > +++ b/src/attr_replace_test.c
> > > @@ -0,0 +1,47 @@
> > > +// setattr.c by kanda.motohiro@gmail.com
> > > +// xfs extended attribute corruption bug reproducer
> > > +#include <stdio.h>
> > > +#include <string.h>
> > > +#include <fcntl.h>
> > > +#include <errno.h>
> > > +#include <stdlib.h>
> > > +#include <unistd.h>
> > > +#include <sys/types.h>
> > > +#include <sys/xattr.h>
> > > +
> > > +#define die() do { perror(""); \
> > > +fprintf(stderr, "error=%d at line %d\n", errno, __LINE__); \
> > > +exit(1); } while (0)
> > > +
> > > +int main(int argc, char *argv[])
> > > +{
> > > +	int ret;
> > > +	int fd;
> > > +	char *path = "/mnt/xfs/hello";
> 
> I'd like not assign default path to "/mnt/xfs/hello", just in case we
> forget the testfile argument and test runs against /mnt/xfs/hello
> accidently and test passes silently.

Ok, please get rid of it then. :)

> > > +	char *name = "user.world";
> > > +	char value[2048];
> > > +	size_t size = sizeof(value);
> > > +
> > > +	if (argc == 2)
> > > +		path = argv[1];
> 
> I'll make sure argc == 2, and error out if not.

Ok.

> Thanks,
> Eryu
> 
> > > +
> > > +	fd = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
> > > +	if (fd < 0) die();
> > > +
> > > +	// First, create a small xattr.
> > > +	memset(value, '0', 1);
> > > +	ret = fsetxattr(fd, name, value, 1, XATTR_CREATE);
> > > +	if (ret < 0) die();
> > > +	close(fd);
> > > +
> > > +	fd = open(path, O_RDWR);
> > > +	if (fd < 0) die();
> > > +
> > > +	// Then, replace it with bigger one, forcing short form to leaf conversion.
> > > +	memset(value, '1', sizeof(value));
> > > +	ret = fsetxattr(fd, name, value, size, XATTR_REPLACE);
> > > +	if (ret < 0) die();
> > > +	close(fd);
> > > +
> > > +	return 0;
> > > +}
> > > diff --git a/tests/generic/706 b/tests/generic/706
> > > new file mode 100755
> > > index 0000000..4d8f180
> > > --- /dev/null
> > > +++ b/tests/generic/706
> > > @@ -0,0 +1,64 @@
> > > +#! /bin/bash
> > > +# FS QA Test No. 706
> > > +#
> > > +# Ensure that we can XATTR_REPLACE a tiny attr into a large attr.
> > > +# Kanda Motohiro <kanda.motohiro@gmail.com> reports that XATTR_REPLACE'ing
> > > +# a single-byte attr with a 2048-byte attr causes a fs shutdown because we
> > > +# remove the shortform attr, convert the attr fork to long format, and then
> > > +# try to re-add the attr having not cleared ATTR_REPLACE.
> > > +#
> > > +#-----------------------------------------------------------------------
> > > +# Copyright (c) 2018 Oracle.  All Rights Reserved.
> > > +#
> > > +# This program is free software; you can redistribute it and/or
> > > +# modify it under the terms of the GNU General Public License as
> > > +# published by the Free Software Foundation.
> > > +#
> > > +# This program is distributed in the hope that it would be useful,
> > > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > > +# GNU General Public License for more details.
> > > +#
> > > +# You should have received a copy of the GNU General Public License
> > > +# along with this program; if not, write the Free Software Foundation,
> > > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > > +#
> > > +#-----------------------------------------------------------------------
> > > +
> > > +seq=`basename $0`
> > > +seqres=$RESULT_DIR/$seq
> > > +echo "QA output created by $seq"
> > > +
> > > +status=1	# failure is the default!
> > > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > > +
> > > +_cleanup()
> > > +{
> > > +	cd /
> > > +	rm -f $testfile
> > > +}
> > > +
> > > +# get standard environment, filters and checks
> > > +. ./common/rc
> > > +. ./common/filter
> > > +. ./common/attr
> > > +
> > > +# remove previous $seqres.full before test
> > > +rm -f $seqres.full
> > > +
> > > +# real QA test starts here
> > > +_supported_fs generic
> > > +_supported_os Linux
> > > +_require_test_program "attr_replace_test"
> > > +_require_attrs
> > > +_require_scratch
> > > +
> > > +rm -f $seqres.full
> > > +_scratch_mkfs >>$seqres.full 2>&1
> > > +_scratch_mount >>$seqres.full 2>&1
> > > +
> > > +./src/attr_replace_test $SCRATCH_MNT/hello
> > > +$ATTR_PROG -l $SCRATCH_MNT/hello | _filter_scratch
> > > +
> > > +status=0
> > > +exit
> > > diff --git a/tests/generic/706.out b/tests/generic/706.out
> > > new file mode 100644
> > > index 0000000..1c654c1
> > > --- /dev/null
> > > +++ b/tests/generic/706.out
> > > @@ -0,0 +1,2 @@
> > > +QA output created by 706
> > > +Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> > > diff --git a/tests/generic/group b/tests/generic/group
> > > index 3f93dc4..fc05315 100644
> > > --- a/tests/generic/group
> > > +++ b/tests/generic/group
> > > @@ -487,3 +487,4 @@
> > >  482 auto metadata replay
> > >  483 auto quick log metadata
> > >  484 auto quick insert
> > > +706 auto quick attr
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] generic: test XATTR_REPLACE doesn't take the fs down
  2018-04-24 16:06     ` Darrick J. Wong
@ 2018-04-25  3:14       ` Eryu Guan
  2018-04-25  5:48         ` Darrick J. Wong
  0 siblings, 1 reply; 6+ messages in thread
From: Eryu Guan @ 2018-04-25  3:14 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: kanda.motohiro, xfs, fstests, linux-ext4

On Tue, Apr 24, 2018 at 09:06:30AM -0700, Darrick J. Wong wrote:
> On Tue, Apr 24, 2018 at 08:08:59PM +0800, Eryu Guan wrote:
> > On Tue, Apr 17, 2018 at 09:24:57PM -0700, Darrick J. Wong wrote:
> > > [cc xfs/fstests lists]
> > > 
> > > On Tue, Apr 17, 2018 at 05:32:36PM -0700, Darrick J. Wong wrote:
> > > > From: Darrick J. Wong <darrick.wong@oracle.com>
> > > > 
> > > > Kanda Motohiro reported that expanding a tiny xattr into a large xattr
> > > > fails on XFS because we remove the tiny xattr from a shortform fork and
> > > > then try to re-add it after converting the fork to extents format having
> > > > not removed the ATTR_REPLACE flag.  This fails because the attr is no
> > > > longer present, causing a fs shutdown.
> > > > 
> > > > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
> > > > Reported-by: kanda.motohiro@gmail.com
> > > > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > 
> > Some minor issues below, but I think I can fix them all on commit.
> > 
> > > > ---
> > > >  src/Makefile            |    3 +-
> > > >  src/attr_replace_test.c |   47 +++++++++++++++++++++++++++++++++++
> > 
> > Need a .gitignore entry for it.
> 
> Ok.  Assuming you meant a .gitignore entry for src/attr_replace_test,
> not the source file itself.

Correct, I meant the entry for binary file :)

And I found another problem in the test, it fails on 1k/2k block size
extN filesystems, because 2k xattr doesn't fit in single block.. e.g.

    -Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
    +No space left on device
    +error=22 at line 46
    +Attribute "world" has a 1 byte value for

We probably need to check the block size of SCRATCH_DEV and _notrun if
it's smaller than 4k.

Or require ea_inode feature when block size < 4k? Note that this test
does fail on ext4 with ea_inode feature enabled (so add ext4 list to
cc). e.g.

    ...
    Pass 4: Checking reference counts
    Extended attribute inode 13 ref count is 0, should be 1. Fix? no
    ...

I think it's easier to _notrun if block size < 4k in this generic test
and introduce a new ext4-specific test that excrises the ea_inode
feature.

What do you and/or other ext4 developers think?

Thanks,
Eryu

> 
> > > >  tests/generic/706       |   64 +++++++++++++++++++++++++++++++++++++++++++++++
> > > >  tests/generic/706.out   |    2 +
> > > >  tests/generic/group     |    1 +
> > > >  5 files changed, 116 insertions(+), 1 deletion(-)
> > > >  create mode 100644 src/attr_replace_test.c
> > > >  create mode 100755 tests/generic/706
> > > >  create mode 100644 tests/generic/706.out
> > > > 
> > > > diff --git a/src/Makefile b/src/Makefile
> > > > index 0d3feae..162e529 100644
> > > > --- a/src/Makefile
> > > > +++ b/src/Makefile
> > > > @@ -25,7 +25,8 @@ LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
> > > >  	seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
> > > >  	renameat2 t_getcwd e4compact test-nextquota punch-alternating \
> > > >  	attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
> > > > -	dio-invalidate-cache stat_test t_encrypted_d_revalidate
> > > > +	dio-invalidate-cache stat_test t_encrypted_d_revalidate \
> > > > +	attr_replace_test
> > > >  
> > > >  SUBDIRS = log-writes perf
> > > >  
> > > > diff --git a/src/attr_replace_test.c b/src/attr_replace_test.c
> > > > new file mode 100644
> > > > index 0000000..583ca17
> > > > --- /dev/null
> > > > +++ b/src/attr_replace_test.c
> > > > @@ -0,0 +1,47 @@
> > > > +// setattr.c by kanda.motohiro@gmail.com
> > > > +// xfs extended attribute corruption bug reproducer
> > > > +#include <stdio.h>
> > > > +#include <string.h>
> > > > +#include <fcntl.h>
> > > > +#include <errno.h>
> > > > +#include <stdlib.h>
> > > > +#include <unistd.h>
> > > > +#include <sys/types.h>
> > > > +#include <sys/xattr.h>
> > > > +
> > > > +#define die() do { perror(""); \
> > > > +fprintf(stderr, "error=%d at line %d\n", errno, __LINE__); \
> > > > +exit(1); } while (0)
> > > > +
> > > > +int main(int argc, char *argv[])
> > > > +{
> > > > +	int ret;
> > > > +	int fd;
> > > > +	char *path = "/mnt/xfs/hello";
> > 
> > I'd like not assign default path to "/mnt/xfs/hello", just in case we
> > forget the testfile argument and test runs against /mnt/xfs/hello
> > accidently and test passes silently.
> 
> Ok, please get rid of it then. :)
> 
> > > > +	char *name = "user.world";
> > > > +	char value[2048];
> > > > +	size_t size = sizeof(value);
> > > > +
> > > > +	if (argc == 2)
> > > > +		path = argv[1];
> > 
> > I'll make sure argc == 2, and error out if not.
> 
> Ok.
> 
> > Thanks,
> > Eryu
> > 
> > > > +
> > > > +	fd = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
> > > > +	if (fd < 0) die();
> > > > +
> > > > +	// First, create a small xattr.
> > > > +	memset(value, '0', 1);
> > > > +	ret = fsetxattr(fd, name, value, 1, XATTR_CREATE);
> > > > +	if (ret < 0) die();
> > > > +	close(fd);
> > > > +
> > > > +	fd = open(path, O_RDWR);
> > > > +	if (fd < 0) die();
> > > > +
> > > > +	// Then, replace it with bigger one, forcing short form to leaf conversion.
> > > > +	memset(value, '1', sizeof(value));
> > > > +	ret = fsetxattr(fd, name, value, size, XATTR_REPLACE);
> > > > +	if (ret < 0) die();
> > > > +	close(fd);
> > > > +
> > > > +	return 0;
> > > > +}
> > > > diff --git a/tests/generic/706 b/tests/generic/706
> > > > new file mode 100755
> > > > index 0000000..4d8f180
> > > > --- /dev/null
> > > > +++ b/tests/generic/706
> > > > @@ -0,0 +1,64 @@
> > > > +#! /bin/bash
> > > > +# FS QA Test No. 706
> > > > +#
> > > > +# Ensure that we can XATTR_REPLACE a tiny attr into a large attr.
> > > > +# Kanda Motohiro <kanda.motohiro@gmail.com> reports that XATTR_REPLACE'ing
> > > > +# a single-byte attr with a 2048-byte attr causes a fs shutdown because we
> > > > +# remove the shortform attr, convert the attr fork to long format, and then
> > > > +# try to re-add the attr having not cleared ATTR_REPLACE.
> > > > +#
> > > > +#-----------------------------------------------------------------------
> > > > +# Copyright (c) 2018 Oracle.  All Rights Reserved.
> > > > +#
> > > > +# This program is free software; you can redistribute it and/or
> > > > +# modify it under the terms of the GNU General Public License as
> > > > +# published by the Free Software Foundation.
> > > > +#
> > > > +# This program is distributed in the hope that it would be useful,
> > > > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > > > +# GNU General Public License for more details.
> > > > +#
> > > > +# You should have received a copy of the GNU General Public License
> > > > +# along with this program; if not, write the Free Software Foundation,
> > > > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > > > +#
> > > > +#-----------------------------------------------------------------------
> > > > +
> > > > +seq=`basename $0`
> > > > +seqres=$RESULT_DIR/$seq
> > > > +echo "QA output created by $seq"
> > > > +
> > > > +status=1	# failure is the default!
> > > > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > > > +
> > > > +_cleanup()
> > > > +{
> > > > +	cd /
> > > > +	rm -f $testfile
> > > > +}
> > > > +
> > > > +# get standard environment, filters and checks
> > > > +. ./common/rc
> > > > +. ./common/filter
> > > > +. ./common/attr
> > > > +
> > > > +# remove previous $seqres.full before test
> > > > +rm -f $seqres.full
> > > > +
> > > > +# real QA test starts here
> > > > +_supported_fs generic
> > > > +_supported_os Linux
> > > > +_require_test_program "attr_replace_test"
> > > > +_require_attrs
> > > > +_require_scratch
> > > > +
> > > > +rm -f $seqres.full
> > > > +_scratch_mkfs >>$seqres.full 2>&1
> > > > +_scratch_mount >>$seqres.full 2>&1
> > > > +
> > > > +./src/attr_replace_test $SCRATCH_MNT/hello
> > > > +$ATTR_PROG -l $SCRATCH_MNT/hello | _filter_scratch
> > > > +
> > > > +status=0
> > > > +exit
> > > > diff --git a/tests/generic/706.out b/tests/generic/706.out
> > > > new file mode 100644
> > > > index 0000000..1c654c1
> > > > --- /dev/null
> > > > +++ b/tests/generic/706.out
> > > > @@ -0,0 +1,2 @@
> > > > +QA output created by 706
> > > > +Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> > > > diff --git a/tests/generic/group b/tests/generic/group
> > > > index 3f93dc4..fc05315 100644
> > > > --- a/tests/generic/group
> > > > +++ b/tests/generic/group
> > > > @@ -487,3 +487,4 @@
> > > >  482 auto metadata replay
> > > >  483 auto quick log metadata
> > > >  484 auto quick insert
> > > > +706 auto quick attr
> > --
> > To unsubscribe from this list: send the line "unsubscribe fstests" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] generic: test XATTR_REPLACE doesn't take the fs down
  2018-04-25  3:14       ` Eryu Guan
@ 2018-04-25  5:48         ` Darrick J. Wong
  2018-05-01 15:02           ` Darrick J. Wong
  0 siblings, 1 reply; 6+ messages in thread
From: Darrick J. Wong @ 2018-04-25  5:48 UTC (permalink / raw)
  To: Eryu Guan; +Cc: kanda.motohiro, xfs, fstests, linux-ext4

On Wed, Apr 25, 2018 at 11:14:20AM +0800, Eryu Guan wrote:
> On Tue, Apr 24, 2018 at 09:06:30AM -0700, Darrick J. Wong wrote:
> > On Tue, Apr 24, 2018 at 08:08:59PM +0800, Eryu Guan wrote:
> > > On Tue, Apr 17, 2018 at 09:24:57PM -0700, Darrick J. Wong wrote:
> > > > [cc xfs/fstests lists]
> > > > 
> > > > On Tue, Apr 17, 2018 at 05:32:36PM -0700, Darrick J. Wong wrote:
> > > > > From: Darrick J. Wong <darrick.wong@oracle.com>
> > > > > 
> > > > > Kanda Motohiro reported that expanding a tiny xattr into a large xattr
> > > > > fails on XFS because we remove the tiny xattr from a shortform fork and
> > > > > then try to re-add it after converting the fork to extents format having
> > > > > not removed the ATTR_REPLACE flag.  This fails because the attr is no
> > > > > longer present, causing a fs shutdown.
> > > > > 
> > > > > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
> > > > > Reported-by: kanda.motohiro@gmail.com
> > > > > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > > 
> > > Some minor issues below, but I think I can fix them all on commit.
> > > 
> > > > > ---
> > > > >  src/Makefile            |    3 +-
> > > > >  src/attr_replace_test.c |   47 +++++++++++++++++++++++++++++++++++
> > > 
> > > Need a .gitignore entry for it.
> > 
> > Ok.  Assuming you meant a .gitignore entry for src/attr_replace_test,
> > not the source file itself.
> 
> Correct, I meant the entry for binary file :)
> 
> And I found another problem in the test, it fails on 1k/2k block size
> extN filesystems, because 2k xattr doesn't fit in single block.. e.g.
> 
>     -Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
>     +No space left on device
>     +error=22 at line 46
>     +Attribute "world" has a 1 byte value for
> 
> We probably need to check the block size of SCRATCH_DEV and _notrun if
> it's smaller than 4k.
>
> Or require ea_inode feature when block size < 4k? Note that this test
> does fail on ext4 with ea_inode feature enabled (so add ext4 list to
> cc). e.g.

I was about to say "Eh, this is a regression test for XFS so that's
probably fine, but then...

> 
>     ...
>     Pass 4: Checking reference counts
>     Extended attribute inode 13 ref count is 0, should be 1. Fix? no
>     ...
> 
> I think it's easier to _notrun if block size < 4k in this generic test
> and introduce a new ext4-specific test that excrises the ea_inode
> feature.
> 
> What do you and/or other ext4 developers think?

"Oh WTH I wasn't expecting /that/..." :)

--D

> 
> Thanks,
> Eryu
> 
> > 
> > > > >  tests/generic/706       |   64 +++++++++++++++++++++++++++++++++++++++++++++++
> > > > >  tests/generic/706.out   |    2 +
> > > > >  tests/generic/group     |    1 +
> > > > >  5 files changed, 116 insertions(+), 1 deletion(-)
> > > > >  create mode 100644 src/attr_replace_test.c
> > > > >  create mode 100755 tests/generic/706
> > > > >  create mode 100644 tests/generic/706.out
> > > > > 
> > > > > diff --git a/src/Makefile b/src/Makefile
> > > > > index 0d3feae..162e529 100644
> > > > > --- a/src/Makefile
> > > > > +++ b/src/Makefile
> > > > > @@ -25,7 +25,8 @@ LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
> > > > >  	seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
> > > > >  	renameat2 t_getcwd e4compact test-nextquota punch-alternating \
> > > > >  	attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
> > > > > -	dio-invalidate-cache stat_test t_encrypted_d_revalidate
> > > > > +	dio-invalidate-cache stat_test t_encrypted_d_revalidate \
> > > > > +	attr_replace_test
> > > > >  
> > > > >  SUBDIRS = log-writes perf
> > > > >  
> > > > > diff --git a/src/attr_replace_test.c b/src/attr_replace_test.c
> > > > > new file mode 100644
> > > > > index 0000000..583ca17
> > > > > --- /dev/null
> > > > > +++ b/src/attr_replace_test.c
> > > > > @@ -0,0 +1,47 @@
> > > > > +// setattr.c by kanda.motohiro@gmail.com
> > > > > +// xfs extended attribute corruption bug reproducer
> > > > > +#include <stdio.h>
> > > > > +#include <string.h>
> > > > > +#include <fcntl.h>
> > > > > +#include <errno.h>
> > > > > +#include <stdlib.h>
> > > > > +#include <unistd.h>
> > > > > +#include <sys/types.h>
> > > > > +#include <sys/xattr.h>
> > > > > +
> > > > > +#define die() do { perror(""); \
> > > > > +fprintf(stderr, "error=%d at line %d\n", errno, __LINE__); \
> > > > > +exit(1); } while (0)
> > > > > +
> > > > > +int main(int argc, char *argv[])
> > > > > +{
> > > > > +	int ret;
> > > > > +	int fd;
> > > > > +	char *path = "/mnt/xfs/hello";
> > > 
> > > I'd like not assign default path to "/mnt/xfs/hello", just in case we
> > > forget the testfile argument and test runs against /mnt/xfs/hello
> > > accidently and test passes silently.
> > 
> > Ok, please get rid of it then. :)
> > 
> > > > > +	char *name = "user.world";
> > > > > +	char value[2048];
> > > > > +	size_t size = sizeof(value);
> > > > > +
> > > > > +	if (argc == 2)
> > > > > +		path = argv[1];
> > > 
> > > I'll make sure argc == 2, and error out if not.
> > 
> > Ok.
> > 
> > > Thanks,
> > > Eryu
> > > 
> > > > > +
> > > > > +	fd = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
> > > > > +	if (fd < 0) die();
> > > > > +
> > > > > +	// First, create a small xattr.
> > > > > +	memset(value, '0', 1);
> > > > > +	ret = fsetxattr(fd, name, value, 1, XATTR_CREATE);
> > > > > +	if (ret < 0) die();
> > > > > +	close(fd);
> > > > > +
> > > > > +	fd = open(path, O_RDWR);
> > > > > +	if (fd < 0) die();
> > > > > +
> > > > > +	// Then, replace it with bigger one, forcing short form to leaf conversion.
> > > > > +	memset(value, '1', sizeof(value));
> > > > > +	ret = fsetxattr(fd, name, value, size, XATTR_REPLACE);
> > > > > +	if (ret < 0) die();
> > > > > +	close(fd);
> > > > > +
> > > > > +	return 0;
> > > > > +}
> > > > > diff --git a/tests/generic/706 b/tests/generic/706
> > > > > new file mode 100755
> > > > > index 0000000..4d8f180
> > > > > --- /dev/null
> > > > > +++ b/tests/generic/706
> > > > > @@ -0,0 +1,64 @@
> > > > > +#! /bin/bash
> > > > > +# FS QA Test No. 706
> > > > > +#
> > > > > +# Ensure that we can XATTR_REPLACE a tiny attr into a large attr.
> > > > > +# Kanda Motohiro <kanda.motohiro@gmail.com> reports that XATTR_REPLACE'ing
> > > > > +# a single-byte attr with a 2048-byte attr causes a fs shutdown because we
> > > > > +# remove the shortform attr, convert the attr fork to long format, and then
> > > > > +# try to re-add the attr having not cleared ATTR_REPLACE.
> > > > > +#
> > > > > +#-----------------------------------------------------------------------
> > > > > +# Copyright (c) 2018 Oracle.  All Rights Reserved.
> > > > > +#
> > > > > +# This program is free software; you can redistribute it and/or
> > > > > +# modify it under the terms of the GNU General Public License as
> > > > > +# published by the Free Software Foundation.
> > > > > +#
> > > > > +# This program is distributed in the hope that it would be useful,
> > > > > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > > > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > > > > +# GNU General Public License for more details.
> > > > > +#
> > > > > +# You should have received a copy of the GNU General Public License
> > > > > +# along with this program; if not, write the Free Software Foundation,
> > > > > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > > > > +#
> > > > > +#-----------------------------------------------------------------------
> > > > > +
> > > > > +seq=`basename $0`
> > > > > +seqres=$RESULT_DIR/$seq
> > > > > +echo "QA output created by $seq"
> > > > > +
> > > > > +status=1	# failure is the default!
> > > > > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > > > > +
> > > > > +_cleanup()
> > > > > +{
> > > > > +	cd /
> > > > > +	rm -f $testfile
> > > > > +}
> > > > > +
> > > > > +# get standard environment, filters and checks
> > > > > +. ./common/rc
> > > > > +. ./common/filter
> > > > > +. ./common/attr
> > > > > +
> > > > > +# remove previous $seqres.full before test
> > > > > +rm -f $seqres.full
> > > > > +
> > > > > +# real QA test starts here
> > > > > +_supported_fs generic
> > > > > +_supported_os Linux
> > > > > +_require_test_program "attr_replace_test"
> > > > > +_require_attrs
> > > > > +_require_scratch
> > > > > +
> > > > > +rm -f $seqres.full
> > > > > +_scratch_mkfs >>$seqres.full 2>&1
> > > > > +_scratch_mount >>$seqres.full 2>&1
> > > > > +
> > > > > +./src/attr_replace_test $SCRATCH_MNT/hello
> > > > > +$ATTR_PROG -l $SCRATCH_MNT/hello | _filter_scratch
> > > > > +
> > > > > +status=0
> > > > > +exit
> > > > > diff --git a/tests/generic/706.out b/tests/generic/706.out
> > > > > new file mode 100644
> > > > > index 0000000..1c654c1
> > > > > --- /dev/null
> > > > > +++ b/tests/generic/706.out
> > > > > @@ -0,0 +1,2 @@
> > > > > +QA output created by 706
> > > > > +Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> > > > > diff --git a/tests/generic/group b/tests/generic/group
> > > > > index 3f93dc4..fc05315 100644
> > > > > --- a/tests/generic/group
> > > > > +++ b/tests/generic/group
> > > > > @@ -487,3 +487,4 @@
> > > > >  482 auto metadata replay
> > > > >  483 auto quick log metadata
> > > > >  484 auto quick insert
> > > > > +706 auto quick attr
> > > --
> > > To unsubscribe from this list: send the line "unsubscribe fstests" in
> > > the body of a message to majordomo@vger.kernel.org
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] generic: test XATTR_REPLACE doesn't take the fs down
  2018-04-25  5:48         ` Darrick J. Wong
@ 2018-05-01 15:02           ` Darrick J. Wong
  0 siblings, 0 replies; 6+ messages in thread
From: Darrick J. Wong @ 2018-05-01 15:02 UTC (permalink / raw)
  To: Eryu Guan; +Cc: kanda.motohiro, xfs, fstests, linux-ext4

On Tue, Apr 24, 2018 at 10:48:26PM -0700, Darrick J. Wong wrote:
> On Wed, Apr 25, 2018 at 11:14:20AM +0800, Eryu Guan wrote:
> > On Tue, Apr 24, 2018 at 09:06:30AM -0700, Darrick J. Wong wrote:
> > > On Tue, Apr 24, 2018 at 08:08:59PM +0800, Eryu Guan wrote:
> > > > On Tue, Apr 17, 2018 at 09:24:57PM -0700, Darrick J. Wong wrote:
> > > > > [cc xfs/fstests lists]
> > > > > 
> > > > > On Tue, Apr 17, 2018 at 05:32:36PM -0700, Darrick J. Wong wrote:
> > > > > > From: Darrick J. Wong <darrick.wong@oracle.com>
> > > > > > 
> > > > > > Kanda Motohiro reported that expanding a tiny xattr into a large xattr
> > > > > > fails on XFS because we remove the tiny xattr from a shortform fork and
> > > > > > then try to re-add it after converting the fork to extents format having
> > > > > > not removed the ATTR_REPLACE flag.  This fails because the attr is no
> > > > > > longer present, causing a fs shutdown.
> > > > > > 
> > > > > > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
> > > > > > Reported-by: kanda.motohiro@gmail.com
> > > > > > Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> > > > 
> > > > Some minor issues below, but I think I can fix them all on commit.
> > > > 
> > > > > > ---
> > > > > >  src/Makefile            |    3 +-
> > > > > >  src/attr_replace_test.c |   47 +++++++++++++++++++++++++++++++++++
> > > > 
> > > > Need a .gitignore entry for it.
> > > 
> > > Ok.  Assuming you meant a .gitignore entry for src/attr_replace_test,
> > > not the source file itself.
> > 
> > Correct, I meant the entry for binary file :)
> > 
> > And I found another problem in the test, it fails on 1k/2k block size
> > extN filesystems, because 2k xattr doesn't fit in single block.. e.g.
> > 
> >     -Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> >     +No space left on device
> >     +error=22 at line 46
> >     +Attribute "world" has a 1 byte value for
> > 
> > We probably need to check the block size of SCRATCH_DEV and _notrun if
> > it's smaller than 4k.

FWIW I didn't see this appear in last Sunday's update, so I rewrote the
C program to set the value to 3/4 the size of a fs block, so I'll
resubmit this shortly.

--D

> >
> > Or require ea_inode feature when block size < 4k? Note that this test
> > does fail on ext4 with ea_inode feature enabled (so add ext4 list to
> > cc). e.g.
> 
> I was about to say "Eh, this is a regression test for XFS so that's
> probably fine, but then...
> 
> > 
> >     ...
> >     Pass 4: Checking reference counts
> >     Extended attribute inode 13 ref count is 0, should be 1. Fix? no
> >     ...
> > 
> > I think it's easier to _notrun if block size < 4k in this generic test
> > and introduce a new ext4-specific test that excrises the ea_inode
> > feature.
> > 
> > What do you and/or other ext4 developers think?
> 
> "Oh WTH I wasn't expecting /that/..." :)
> 
> --D
> 
> > 
> > Thanks,
> > Eryu
> > 
> > > 
> > > > > >  tests/generic/706       |   64 +++++++++++++++++++++++++++++++++++++++++++++++
> > > > > >  tests/generic/706.out   |    2 +
> > > > > >  tests/generic/group     |    1 +
> > > > > >  5 files changed, 116 insertions(+), 1 deletion(-)
> > > > > >  create mode 100644 src/attr_replace_test.c
> > > > > >  create mode 100755 tests/generic/706
> > > > > >  create mode 100644 tests/generic/706.out
> > > > > > 
> > > > > > diff --git a/src/Makefile b/src/Makefile
> > > > > > index 0d3feae..162e529 100644
> > > > > > --- a/src/Makefile
> > > > > > +++ b/src/Makefile
> > > > > > @@ -25,7 +25,8 @@ LINUX_TARGETS = xfsctl bstat t_mtab getdevicesize preallo_rw_pattern_reader \
> > > > > >  	seek_copy_test t_readdir_1 t_readdir_2 fsync-tester nsexec cloner \
> > > > > >  	renameat2 t_getcwd e4compact test-nextquota punch-alternating \
> > > > > >  	attr-list-by-handle-cursor-test listxattr dio-interleaved t_dir_type \
> > > > > > -	dio-invalidate-cache stat_test t_encrypted_d_revalidate
> > > > > > +	dio-invalidate-cache stat_test t_encrypted_d_revalidate \
> > > > > > +	attr_replace_test
> > > > > >  
> > > > > >  SUBDIRS = log-writes perf
> > > > > >  
> > > > > > diff --git a/src/attr_replace_test.c b/src/attr_replace_test.c
> > > > > > new file mode 100644
> > > > > > index 0000000..583ca17
> > > > > > --- /dev/null
> > > > > > +++ b/src/attr_replace_test.c
> > > > > > @@ -0,0 +1,47 @@
> > > > > > +// setattr.c by kanda.motohiro@gmail.com
> > > > > > +// xfs extended attribute corruption bug reproducer
> > > > > > +#include <stdio.h>
> > > > > > +#include <string.h>
> > > > > > +#include <fcntl.h>
> > > > > > +#include <errno.h>
> > > > > > +#include <stdlib.h>
> > > > > > +#include <unistd.h>
> > > > > > +#include <sys/types.h>
> > > > > > +#include <sys/xattr.h>
> > > > > > +
> > > > > > +#define die() do { perror(""); \
> > > > > > +fprintf(stderr, "error=%d at line %d\n", errno, __LINE__); \
> > > > > > +exit(1); } while (0)
> > > > > > +
> > > > > > +int main(int argc, char *argv[])
> > > > > > +{
> > > > > > +	int ret;
> > > > > > +	int fd;
> > > > > > +	char *path = "/mnt/xfs/hello";
> > > > 
> > > > I'd like not assign default path to "/mnt/xfs/hello", just in case we
> > > > forget the testfile argument and test runs against /mnt/xfs/hello
> > > > accidently and test passes silently.
> > > 
> > > Ok, please get rid of it then. :)
> > > 
> > > > > > +	char *name = "user.world";
> > > > > > +	char value[2048];
> > > > > > +	size_t size = sizeof(value);
> > > > > > +
> > > > > > +	if (argc == 2)
> > > > > > +		path = argv[1];
> > > > 
> > > > I'll make sure argc == 2, and error out if not.
> > > 
> > > Ok.
> > > 
> > > > Thanks,
> > > > Eryu
> > > > 
> > > > > > +
> > > > > > +	fd = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
> > > > > > +	if (fd < 0) die();
> > > > > > +
> > > > > > +	// First, create a small xattr.
> > > > > > +	memset(value, '0', 1);
> > > > > > +	ret = fsetxattr(fd, name, value, 1, XATTR_CREATE);
> > > > > > +	if (ret < 0) die();
> > > > > > +	close(fd);
> > > > > > +
> > > > > > +	fd = open(path, O_RDWR);
> > > > > > +	if (fd < 0) die();
> > > > > > +
> > > > > > +	// Then, replace it with bigger one, forcing short form to leaf conversion.
> > > > > > +	memset(value, '1', sizeof(value));
> > > > > > +	ret = fsetxattr(fd, name, value, size, XATTR_REPLACE);
> > > > > > +	if (ret < 0) die();
> > > > > > +	close(fd);
> > > > > > +
> > > > > > +	return 0;
> > > > > > +}
> > > > > > diff --git a/tests/generic/706 b/tests/generic/706
> > > > > > new file mode 100755
> > > > > > index 0000000..4d8f180
> > > > > > --- /dev/null
> > > > > > +++ b/tests/generic/706
> > > > > > @@ -0,0 +1,64 @@
> > > > > > +#! /bin/bash
> > > > > > +# FS QA Test No. 706
> > > > > > +#
> > > > > > +# Ensure that we can XATTR_REPLACE a tiny attr into a large attr.
> > > > > > +# Kanda Motohiro <kanda.motohiro@gmail.com> reports that XATTR_REPLACE'ing
> > > > > > +# a single-byte attr with a 2048-byte attr causes a fs shutdown because we
> > > > > > +# remove the shortform attr, convert the attr fork to long format, and then
> > > > > > +# try to re-add the attr having not cleared ATTR_REPLACE.
> > > > > > +#
> > > > > > +#-----------------------------------------------------------------------
> > > > > > +# Copyright (c) 2018 Oracle.  All Rights Reserved.
> > > > > > +#
> > > > > > +# This program is free software; you can redistribute it and/or
> > > > > > +# modify it under the terms of the GNU General Public License as
> > > > > > +# published by the Free Software Foundation.
> > > > > > +#
> > > > > > +# This program is distributed in the hope that it would be useful,
> > > > > > +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > > > > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > > > > > +# GNU General Public License for more details.
> > > > > > +#
> > > > > > +# You should have received a copy of the GNU General Public License
> > > > > > +# along with this program; if not, write the Free Software Foundation,
> > > > > > +# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
> > > > > > +#
> > > > > > +#-----------------------------------------------------------------------
> > > > > > +
> > > > > > +seq=`basename $0`
> > > > > > +seqres=$RESULT_DIR/$seq
> > > > > > +echo "QA output created by $seq"
> > > > > > +
> > > > > > +status=1	# failure is the default!
> > > > > > +trap "_cleanup; exit \$status" 0 1 2 3 15
> > > > > > +
> > > > > > +_cleanup()
> > > > > > +{
> > > > > > +	cd /
> > > > > > +	rm -f $testfile
> > > > > > +}
> > > > > > +
> > > > > > +# get standard environment, filters and checks
> > > > > > +. ./common/rc
> > > > > > +. ./common/filter
> > > > > > +. ./common/attr
> > > > > > +
> > > > > > +# remove previous $seqres.full before test
> > > > > > +rm -f $seqres.full
> > > > > > +
> > > > > > +# real QA test starts here
> > > > > > +_supported_fs generic
> > > > > > +_supported_os Linux
> > > > > > +_require_test_program "attr_replace_test"
> > > > > > +_require_attrs
> > > > > > +_require_scratch
> > > > > > +
> > > > > > +rm -f $seqres.full
> > > > > > +_scratch_mkfs >>$seqres.full 2>&1
> > > > > > +_scratch_mount >>$seqres.full 2>&1
> > > > > > +
> > > > > > +./src/attr_replace_test $SCRATCH_MNT/hello
> > > > > > +$ATTR_PROG -l $SCRATCH_MNT/hello | _filter_scratch
> > > > > > +
> > > > > > +status=0
> > > > > > +exit
> > > > > > diff --git a/tests/generic/706.out b/tests/generic/706.out
> > > > > > new file mode 100644
> > > > > > index 0000000..1c654c1
> > > > > > --- /dev/null
> > > > > > +++ b/tests/generic/706.out
> > > > > > @@ -0,0 +1,2 @@
> > > > > > +QA output created by 706
> > > > > > +Attribute "world" has a 2048 byte value for SCRATCH_MNT/hello
> > > > > > diff --git a/tests/generic/group b/tests/generic/group
> > > > > > index 3f93dc4..fc05315 100644
> > > > > > --- a/tests/generic/group
> > > > > > +++ b/tests/generic/group
> > > > > > @@ -487,3 +487,4 @@
> > > > > >  482 auto metadata replay
> > > > > >  483 auto quick log metadata
> > > > > >  484 auto quick insert
> > > > > > +706 auto quick attr
> > > > --
> > > > To unsubscribe from this list: send the line "unsubscribe fstests" in
> > > > the body of a message to majordomo@vger.kernel.org
> > > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-05-01 15:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20180418003236.GE5201@magnolia>
2018-04-18  4:24 ` [PATCH] generic: test XATTR_REPLACE doesn't take the fs down Darrick J. Wong
2018-04-24 12:08   ` Eryu Guan
2018-04-24 16:06     ` Darrick J. Wong
2018-04-25  3:14       ` Eryu Guan
2018-04-25  5:48         ` Darrick J. Wong
2018-05-01 15:02           ` Darrick J. Wong

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.