c95a892627b0c52d1adab5553b476ff83a8ad1f9
[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 . ./common/attr
50
51 # remove previous $seqres.full before test
52 rm -f $seqres.full
53
54 # real QA test starts here
55 _supported_fs overlay
56 _supported_os Linux
57 _require_test
58 _require_scratch
59
60 # Remove all files from previous tests
61 _scratch_mkfs
62
63 # Create multiple lowerdirs and upperdir, workdir, and testdir on lowerdir
64 lowerdir1=$SCRATCH_DEV/lower1
65 lowerdir2=$SCRATCH_DEV/lower2
66 upperdir=$SCRATCH_DEV/upper
67 workdir=$SCRATCH_DEV/workdir
68 mkdir -p $lowerdir1 $lowerdir2 $upperdir $workdir
69 mkdir -p $lowerdir1/testdir/d
70
71 # mount overlay with $lowerdir2 as upperdir, and remove & recreate testdir,
72 # make testdir on $lowerdir2 opaque
73 _overlay_mount_dirs $lowerdir1 $lowerdir2 $workdir $SCRATCH_DEV $SCRATCH_MNT
74 rm -rf $SCRATCH_MNT/testdir
75 mkdir -p $SCRATCH_MNT/testdir/visibledir
76 # unmount overlayfs but not base fs
77 $UMOUNT_PROG $SCRATCH_MNT
78
79 # mount overlay again, with lowerdir1 and lowerdir2 as multiple lowerdirs,
80 # and create a new file in testdir, triggers copyup from lowerdir,
81 # copyup should not copy overlayfs private xattr
82 _overlay_mount_dirs "$lowerdir2:$lowerdir1" $upperdir $workdir \
83                     $SCRATCH_DEV $SCRATCH_MNT
84 touch $SCRATCH_MNT/testdir/visiblefile
85
86 # umount and mount overlay again, buggy kernel treats the copied-up dir as
87 # opaque, visibledir is not seen in merged dir.
88 $UMOUNT_PROG $SCRATCH_MNT
89 _overlay_mount_dirs "$lowerdir2:$lowerdir1" $upperdir $workdir \
90                     $SCRATCH_DEV $SCRATCH_MNT
91 ls $SCRATCH_MNT/testdir
92
93 # success, all done
94 status=0
95 exit