overlay/014: remove unneeded require and include
[xfstests-dev.git] / tests / overlay / 014
1 #! /bin/bash
2 # FS QA Test 014
3 #
4 # Test copy-up of lowerdir with opaque xattr set.
5 #
6 # When copying up a directory with opaque xattr set, the xattr was copied up as
7 # well, after a remount the opaque flag is honored so the copied-up directory
8 # is treated as opaque, which causes files created in the lowerdir to be hidden
9 # when using multiple lower directories.
10 #
11 # This is fixed by "ovl: don't copy up opaqueness".
12 #
13 #-----------------------------------------------------------------------
14 # Copyright (c) 2016 Red Hat Inc. All Rights Reserved.
15 #
16 # This program is free software; you can redistribute it and/or
17 # modify it under the terms of the GNU General Public License as
18 # published by the Free Software Foundation.
19 #
20 # This program is distributed in the hope that it would be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write the Free Software Foundation,
27 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
28 #-----------------------------------------------------------------------
29 #
30
31 seq=`basename $0`
32 seqres=$RESULT_DIR/$seq
33 echo "QA output created by $seq"
34
35 here=`pwd`
36 tmp=/tmp/$$
37 status=1        # failure is the default!
38 trap "_cleanup; exit \$status" 0 1 2 3 15
39
40 _cleanup()
41 {
42         cd /
43         rm -f $tmp.*
44 }
45
46 # get standard environment, filters and checks
47 . ./common/rc
48 . ./common/filter
49
50 # remove previous $seqres.full before test
51 rm -f $seqres.full
52
53 # real QA test starts here
54 _supported_fs overlay
55 _supported_os Linux
56 _require_scratch
57
58 # Remove all files from previous tests
59 _scratch_mkfs
60
61 # Create multiple lowerdirs and upperdir, workdir, and testdir on lowerdir
62 lowerdir1=$OVL_BASE_SCRATCH_MNT/lower1
63 lowerdir2=$OVL_BASE_SCRATCH_MNT/lower2
64 upperdir=$OVL_BASE_SCRATCH_MNT/upper
65 workdir=$OVL_BASE_SCRATCH_MNT/workdir
66 mkdir -p $lowerdir1 $lowerdir2 $upperdir $workdir
67 mkdir -p $lowerdir1/testdir/d
68
69 # mount overlay with $lowerdir2 as upperdir, and remove & recreate testdir,
70 # make testdir on $lowerdir2 opaque
71 _overlay_mount_dirs $lowerdir1 $lowerdir2 $workdir $OVL_BASE_SCRATCH_MNT $SCRATCH_MNT
72 rm -rf $SCRATCH_MNT/testdir
73 mkdir -p $SCRATCH_MNT/testdir/visibledir
74 # unmount overlayfs but not base fs
75 $UMOUNT_PROG $SCRATCH_MNT
76
77 # mount overlay again, with lowerdir1 and lowerdir2 as multiple lowerdirs,
78 # and create a new file in testdir, triggers copyup from lowerdir,
79 # copyup should not copy overlayfs private xattr
80 _overlay_mount_dirs "$lowerdir2:$lowerdir1" $upperdir $workdir \
81                     $OVL_BASE_SCRATCH_MNT $SCRATCH_MNT
82 touch $SCRATCH_MNT/testdir/visiblefile
83
84 # umount and mount overlay again, buggy kernel treats the copied-up dir as
85 # opaque, visibledir is not seen in merged dir.
86 $UMOUNT_PROG $SCRATCH_MNT
87 _overlay_mount_dirs "$lowerdir2:$lowerdir1" $upperdir $workdir \
88                     $OVL_BASE_SCRATCH_MNT $SCRATCH_MNT
89 ls $SCRATCH_MNT/testdir
90
91 # success, all done
92 status=0
93 exit