2001-10-05 08:12:26 +00:00
|
|
|
#! /bin/sh
|
2004-06-15 07:32:36 +00:00
|
|
|
# FS QA Test No. 062
|
2001-10-05 08:12:26 +00:00
|
|
|
#
|
|
|
|
|
# Exercises the getfattr/setfattr tools
|
|
|
|
|
# Derived from tests originally written by Andreas Gruenbacher for ext2
|
|
|
|
|
#
|
|
|
|
|
#-----------------------------------------------------------------------
|
2002-06-04 23:07:56 +00:00
|
|
|
# Copyright (c) 2001-2002 Silicon Graphics, Inc. All Rights Reserved.
|
2001-10-05 08:12:26 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
|
# under the terms of version 2 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.
|
|
|
|
|
#
|
|
|
|
|
# Further, this software is distributed without any warranty that it is
|
|
|
|
|
# free of the rightful claim of any third person regarding infringement
|
|
|
|
|
# or the like. Any license provided herein, whether implied or
|
|
|
|
|
# otherwise, applies only to this software file. Patent licenses, if
|
|
|
|
|
# any, provided herein do not apply to combinations of this program with
|
|
|
|
|
# other software, or any other product whatsoever.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
|
# with this program; if not, write the Free Software Foundation, Inc., 59
|
|
|
|
|
# Temple Place - Suite 330, Boston MA 02111-1307, USA.
|
|
|
|
|
#
|
|
|
|
|
# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
|
|
|
|
|
# Mountain View, CA 94043, or:
|
|
|
|
|
#
|
|
|
|
|
# http://www.sgi.com
|
|
|
|
|
#
|
|
|
|
|
# For further information regarding this notice, see:
|
|
|
|
|
#
|
|
|
|
|
# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# creator
|
|
|
|
|
owner=nathans@sgi.com
|
|
|
|
|
|
|
|
|
|
seq=`basename $0`
|
|
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
tmp=/tmp/$$
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
|
|
|
|
. ./common.rc
|
|
|
|
|
. ./common.filter
|
|
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
2004-06-15 07:32:36 +00:00
|
|
|
cd /
|
2001-10-05 08:12:26 +00:00
|
|
|
echo; echo "*** unmount"
|
|
|
|
|
umount $SCRATCH_MNT 2>/dev/null
|
|
|
|
|
rm -f $tmp.*
|
|
|
|
|
}
|
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
2002-02-25 22:12:17 +00:00
|
|
|
_filter_scratch()
|
|
|
|
|
{
|
2004-06-15 07:32:36 +00:00
|
|
|
sed -e "s,$SCRATCH_MNT,SCRATCH_MNT,g"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_linux_attr_calls()
|
|
|
|
|
{
|
|
|
|
|
echo "*** set/get one initially empty attribute"
|
|
|
|
|
setfattr -h -n $nsp.name $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** overwrite empty, set several new attributes"
|
|
|
|
|
setfattr -h -n $nsp.name -v 0xbabe $SCRATCH_MNT/$inode
|
|
|
|
|
setfattr -h -n $nsp.name2 -v 0xdeadbeef $SCRATCH_MNT/$inode
|
|
|
|
|
setfattr -h -n $nsp.name3 -v 0xdeface $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** fetch several attribute names and values (hex)"
|
|
|
|
|
getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** fetch several attribute names and values (base64)"
|
|
|
|
|
getfattr -m $nsp -e base64 $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** shrink value of an existing attribute"
|
|
|
|
|
setfattr -h -n $nsp.name2 -v 0xdeaf $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** grow value of existing attribute"
|
|
|
|
|
setfattr -h -n $nsp.name2 -v 0xdecade $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** set an empty value for second attribute"
|
|
|
|
|
setfattr -h -n $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -n $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** overwrite empty value"
|
|
|
|
|
setfattr -h -n $nsp.name2 -v 0xcafe $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** remove attribute"
|
|
|
|
|
setfattr -h -x $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
|
|
|
|
|
echo "*** final list (strings, type=$inode, nsp=$nsp)"
|
|
|
|
|
getfattr -m '.' -e hex $SCRATCH_MNT/$inode
|
2002-02-25 22:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getfattr()
|
|
|
|
|
{
|
2004-06-15 07:32:36 +00:00
|
|
|
/usr/bin/getfattr --absolute-names -dh $@ 2>&1 | _filter_scratch
|
2002-02-25 22:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setfattr()
|
|
|
|
|
{
|
2004-06-15 07:32:36 +00:00
|
|
|
/usr/bin/setfattr $@
|
2002-02-25 22:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
2001-10-05 08:12:26 +00:00
|
|
|
_create_test_bed()
|
|
|
|
|
{
|
|
|
|
|
echo "*** create test bed"
|
|
|
|
|
touch $SCRATCH_MNT/reg
|
|
|
|
|
mkdir -p $SCRATCH_MNT/dir
|
|
|
|
|
ln -s $SCRATCH_MNT/dir $SCRATCH_MNT/lnk
|
|
|
|
|
mkdir $SCRATCH_MNT/dev
|
|
|
|
|
mknod $SCRATCH_MNT/dev/b b 0 0
|
|
|
|
|
mknod $SCRATCH_MNT/dev/c c 0 0
|
|
|
|
|
mknod $SCRATCH_MNT/dev/p p
|
|
|
|
|
# sanity check
|
2002-02-25 22:12:17 +00:00
|
|
|
find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch
|
2001-10-07 22:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-15 07:32:36 +00:00
|
|
|
# real QA test starts here
|
|
|
|
|
_supported_fs xfs udf nfs
|
|
|
|
|
_supported_os Linux
|
|
|
|
|
|
2001-10-05 08:12:26 +00:00
|
|
|
_require_scratch
|
|
|
|
|
rm -f $tmp.backup1 $tmp.backup2 $seq.full
|
|
|
|
|
|
|
|
|
|
# real QA test starts here
|
2003-05-22 04:16:45 +00:00
|
|
|
_scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
|
|
|
|
|
_scratch_mount || _fail "mount failed"
|
2001-10-05 08:12:26 +00:00
|
|
|
_create_test_bed
|
|
|
|
|
|
2004-02-26 00:31:25 +00:00
|
|
|
if [ "$USE_ATTR_SECURE" = yes ]; then
|
|
|
|
|
ATTR_MODES="user security trusted"
|
|
|
|
|
else
|
|
|
|
|
ATTR_MODES="user trusted"
|
|
|
|
|
fi
|
|
|
|
|
for nsp in $ATTR_MODES; do
|
2001-10-05 08:12:26 +00:00
|
|
|
for inode in reg dir lnk dev/b dev/c dev/p; do
|
|
|
|
|
|
|
|
|
|
echo; echo "=== TYPE $inode; NAMESPACE $nsp"; echo
|
|
|
|
|
echo "*** set/get one initially empty attribute"
|
2004-06-15 07:32:36 +00:00
|
|
|
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -n $nsp.name $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** overwrite empty, set several new attributes"
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -n $nsp.name -v 0xbabe $SCRATCH_MNT/$inode
|
|
|
|
|
setfattr -h -n $nsp.name2 -v 0xdeadbeef $SCRATCH_MNT/$inode
|
|
|
|
|
setfattr -h -n $nsp.name3 -v 0xdeface $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** fetch several attribute names and values (hex)"
|
2002-02-25 23:04:21 +00:00
|
|
|
getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** fetch several attribute names and values (base64)"
|
2002-02-25 23:04:21 +00:00
|
|
|
getfattr -m $nsp -e base64 $SCRATCH_MNT/$inode
|
2004-06-15 07:32:36 +00:00
|
|
|
|
2001-10-05 08:12:26 +00:00
|
|
|
echo "*** shrink value of an existing attribute"
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -n $nsp.name2 -v 0xdeaf $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** grow value of existing attribute"
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -n $nsp.name2 -v 0xdecade $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex $SCRATCH_MNT/$inode
|
2004-06-15 07:32:36 +00:00
|
|
|
|
2001-10-05 08:12:26 +00:00
|
|
|
echo "*** set an empty value for second attribute"
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -n $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -n $nsp.name2 $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** overwrite empty value"
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -n $nsp.name2 -v 0xcafe $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** remove attribute"
|
2002-02-25 23:04:21 +00:00
|
|
|
setfattr -h -x $nsp.name2 $SCRATCH_MNT/$inode
|
|
|
|
|
getfattr -m $nsp -e hex -n $nsp.name2 $SCRATCH_MNT/$inode
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** final list (strings, type=$inode, nsp=$nsp)"
|
2004-01-20 06:39:32 +00:00
|
|
|
getfattr -m '.' -e hex $SCRATCH_MNT/$inode
|
2004-06-15 07:32:36 +00:00
|
|
|
|
2001-10-05 08:12:26 +00:00
|
|
|
done
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Test the directory descent code
|
|
|
|
|
#
|
|
|
|
|
echo; echo
|
|
|
|
|
|
|
|
|
|
_extend_test_bed()
|
|
|
|
|
{
|
|
|
|
|
echo "*** extend test bed"
|
|
|
|
|
# must set some descents' attributes to be useful
|
|
|
|
|
mkdir -p $SCRATCH_MNT/here/up/ascend
|
|
|
|
|
mkdir -p $SCRATCH_MNT/descend/down/here
|
2001-11-02 00:13:11 +00:00
|
|
|
find $SCRATCH_MNT/descend | xargs setfattr -n user.x -v yz
|
|
|
|
|
find $SCRATCH_MNT/descend | xargs setfattr -n user.1 -v 23
|
2003-02-25 09:13:13 +00:00
|
|
|
find $SCRATCH_MNT/here | xargs setfattr -n trusted.a -v bc
|
|
|
|
|
find $SCRATCH_MNT/here | xargs setfattr -n trusted.9 -v 87
|
2001-10-05 08:12:26 +00:00
|
|
|
# whack a symlink in the middle, just to be difficult
|
|
|
|
|
ln -s $SCRATCH_MNT/here/up $SCRATCH_MNT/descend/and
|
|
|
|
|
# dump out our new starting point
|
2002-02-25 22:12:17 +00:00
|
|
|
find $SCRATCH_MNT | LC_COLLATE=POSIX sort | _filter_scratch
|
2001-10-05 08:12:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_extend_test_bed
|
|
|
|
|
|
|
|
|
|
echo
|
2002-02-25 23:04:21 +00:00
|
|
|
echo "*** directory descent with us following symlinks"
|
2004-01-20 06:39:32 +00:00
|
|
|
getfattr -h -L -R -m '.' -e hex $SCRATCH_MNT
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo
|
2002-02-25 23:04:21 +00:00
|
|
|
echo "*** directory descent without following symlinks"
|
2004-01-20 06:39:32 +00:00
|
|
|
getfattr -h -P -R -m '.' -e hex $SCRATCH_MNT
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Test the backup/restore code
|
|
|
|
|
#
|
|
|
|
|
echo; echo
|
|
|
|
|
|
|
|
|
|
_backup()
|
|
|
|
|
{
|
2002-02-25 22:12:17 +00:00
|
|
|
# NB: no filtering of scratch here... (need to restore too)
|
2004-01-20 06:39:32 +00:00
|
|
|
/usr/bin/getfattr --absolute-names -dh -R -m '.' $SCRATCH_MNT >$1
|
2001-10-05 08:12:26 +00:00
|
|
|
echo BACKUP $1 >>$seq.full
|
|
|
|
|
cat $1 >> $seq.full
|
|
|
|
|
[ ! -s $1 ] && echo "warning: $1 (backup file) is empty"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo "*** backup everything"
|
|
|
|
|
_backup $tmp.backup1
|
|
|
|
|
|
|
|
|
|
echo "*** clear out the scratch device"
|
|
|
|
|
rm -fr $SCRATCH_MNT/*
|
|
|
|
|
echo "AFTER REMOVE" >>$seq.full
|
2004-01-20 06:39:32 +00:00
|
|
|
getfattr -L -R -m '.' $SCRATCH_MNT >>$seq.full
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** reset test bed with no extended attributes"
|
|
|
|
|
_create_test_bed
|
|
|
|
|
_extend_test_bed
|
|
|
|
|
|
|
|
|
|
echo "*** restore everything"
|
2002-02-26 22:30:57 +00:00
|
|
|
setfattr -h --restore=$tmp.backup1
|
2001-10-05 08:12:26 +00:00
|
|
|
_backup $tmp.backup2
|
|
|
|
|
|
|
|
|
|
echo "AFTER RESTORE" >>$seq.full
|
2004-01-20 06:39:32 +00:00
|
|
|
getfattr -L -R -m '.' $SCRATCH_MNT >>$seq.full
|
2001-10-05 08:12:26 +00:00
|
|
|
|
|
|
|
|
echo "*** compare before and after backups"
|
|
|
|
|
diff $tmp.backup1 $tmp.backup2
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "urk, failed - creating $seq.backup1 and $seq.backup2"
|
|
|
|
|
cp $tmp.backup1 $seq.backup1 && cp $tmp.backup2 $seq.backup2
|
|
|
|
|
status=1
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|