Files
apfstests/tests/xfs/298
T
Darrick J. Wong a860a167d8 common: kill _supported_os
fstests only supports Linux, so get rid of this unnecessary predicate.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
2020-09-21 01:16:50 +08:00

76 lines
2.0 KiB
Bash
Executable File

#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2013 SGI. All Rights Reserved.
#
# FS QA Test No. 298
#
# Test that inline symlinks are removed from the inode when an extended
# attributes forces it into being remote symlink.
# Warning: this test will ASSERT on unpatched DEBUG XFS.
#
seq=`basename $0`
seqres=$RESULT_DIR/$seq
echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
status=1 # failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
_cleanup()
{
cd /
rm -f $tmp.*
}
# get standard environment, filters and checks
. ./common/rc
. ./common/filter
# real QA test starts here
# Modify as appropriate. This is a XFS specific bug. xfs_db also limits
# this test to xfs
_supported_fs xfs
_require_scratch
rm -f $seqres.full
_scratch_mkfs_xfs >/dev/null 2>&1
SYMLINK_FILE="$SCRATCH_MNT/symlink"
SYMLINK=""
SYMLINK_ADD="0123456789ABCDEF01234567890ABCDEF"
# test from 32 to MAXPATHLEN sized symlink. This should make sure that
# 256-1024 byte version 2 and 3 inodes are covered.
SIZE=32
while [ $SIZE -lt 1024 ];do
_scratch_mount >/dev/null 2>&1
cd $SCRATCH_MNT
echo "Testing symlink size $SIZE"
SYMLINK="${SYMLINK}${SYMLINK_ADD}"
ln -s $SYMLINK $SYMLINK_FILE > /dev/null 2>&1
inode=`ls -li $SYMLINK_FILE | awk '{print $1}'`
# add the extended attributes
attr -Rs 1234567890ab $SYMLINK_FILE < /dev/null > /dev/null 2>&1
attr -Rs 1234567890ac $SYMLINK_FILE < /dev/null > /dev/null 2>&1
attr -Rs 1234567890ad $SYMLINK_FILE < /dev/null > /dev/null 2>&1
# remove the extended attributes
attr -Rr 1234567890ab $SYMLINK_FILE > /dev/null 2>&1
attr -Rr 1234567890ac $SYMLINK_FILE > /dev/null 2>&1
attr -Rr 1234567890ad $SYMLINK_FILE > /dev/null 2>&1
# remove the symlink - make sure ifree removes the remote symlink.
rm $SYMLINK_FILE
# umount and check the number of extents on the inode. Should be 0.
cd /
_scratch_unmount >/dev/null 2>&1
_scratch_xfs_db -c "inode $inode" -c "p core.nextents"
let SIZE=$SIZE+32
done
status=0
exit