generic/611: Use _getfattr instead of GETFATTR_PROG
[xfstests-dev.git] / tests / generic / 128
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FSQA Test No. 128
6 #
7 # Test nosuid mount option modified from CXFSQA test mount_option_nosuid
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16 trap "exit \$status" 0 1 2 3 15
17
18 # get standard environment, filters and checks
19 . ./common/rc
20 . ./common/filter
21
22 # real QA test starts here
23 _supported_fs generic
24
25 _require_scratch
26 _require_user
27
28 _scratch_mkfs >/dev/null 2>&1
29 _scratch_mount "-o nosuid"
30
31 mkdir $SCRATCH_MNT/nosuid
32 cp `which ls` $SCRATCH_MNT
33 chmod 700 $SCRATCH_MNT/nosuid
34 chmod 4755 $SCRATCH_MNT/ls
35
36 su -s/bin/bash - $qa_user -c "$SCRATCH_MNT/ls $SCRATCH_MNT/nosuid >/dev/null 2>&1"
37 if [ $? -eq 0 ] ; then
38         echo "Error: we shouldn't be able to ls the directory"
39 fi
40 _scratch_unmount
41
42 status=0
43 exit