mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfs: add a new test for removing ACLs through the attr interface
Test that removing the SGI_ACL_FILE attr also removes the cached ACL used for access control checking. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eryu Guan <guaneryu@gmail.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
committed by
Eryu Guan
parent
b536de2a04
commit
3fde92b2a3
Executable
+59
@@ -0,0 +1,59 @@
|
||||
#! /bin/bash
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (c) 2020 Christoph Hellwig
|
||||
#
|
||||
# FS QA Test 512
|
||||
#
|
||||
# Ensure that removing the access ACL through the XFS-specific attr name removes
|
||||
# the cached ACL as well
|
||||
#
|
||||
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 $FILE
|
||||
}
|
||||
|
||||
# get standard environment, filters and checks
|
||||
. ./common/rc
|
||||
. ./common/filter
|
||||
. ./common/attr
|
||||
|
||||
# real QA test starts here
|
||||
_supported_fs xfs
|
||||
_supported_os Linux
|
||||
|
||||
_require_test
|
||||
_require_runas
|
||||
_require_acls
|
||||
_require_attrs
|
||||
_require_user
|
||||
|
||||
FILE=$TEST_DIR/foo
|
||||
|
||||
echo "This is a test" > ${FILE}
|
||||
chmod g-r $FILE
|
||||
chmod o-r $FILE
|
||||
chmod u-r $FILE
|
||||
|
||||
echo "No ACL: "
|
||||
_user_do "cat $FILE"
|
||||
|
||||
echo "With ACL: "
|
||||
setfacl -m u:$qa_user:r $FILE
|
||||
_user_do "cat $FILE"
|
||||
|
||||
echo "ACL Removed through attr:"
|
||||
$SETFATTR_PROG -x trusted.SGI_ACL_FILE ${FILE}
|
||||
_user_do "cat $FILE"
|
||||
|
||||
status=0
|
||||
exit
|
||||
@@ -0,0 +1,7 @@
|
||||
QA output created by 512
|
||||
No ACL:
|
||||
Permission denied
|
||||
With ACL:
|
||||
This is a test
|
||||
ACL Removed through attr:
|
||||
Permission denied
|
||||
@@ -509,3 +509,4 @@
|
||||
509 auto ioctl
|
||||
510 auto ioctl quick
|
||||
511 auto quick quota
|
||||
512 auto quick acl attr
|
||||
|
||||
Reference in New Issue
Block a user