generic: add _require_odirect to generic/113 and generic/214
[xfstests-dev.git] / tests / generic / 050
1 #! /bin/bash
2 # FS QA Test No. 050
3 #
4 # Check out various mount/remount/unmount scenarious on a read-only blockdev.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2009 Christoph Hellwig.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22 #
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31
32 _cleanup()
33 {
34         cd /
35         blockdev --setrw $SCRATCH_DEV
36 }
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42
43 # real QA test starts here
44 _supported_fs generic
45 _supported_os Linux
46
47 _require_scratch_nocheck
48 _require_scratch_shutdown
49 _require_norecovery
50
51 _scratch_mkfs >/dev/null 2>&1
52
53 #
54 # Mark the device read-only
55 #
56 echo "setting device read-only"
57 blockdev --setro $SCRATCH_DEV
58
59 #
60 # Mount it, and make sure we can't write to it, and we can unmount it again
61 #
62 echo "mounting read-only block device:"
63 _scratch_mount 2>&1 | _filter_scratch | _filter_ro_mount
64
65 echo "touching file on read-only filesystem (should fail)"
66 touch $SCRATCH_MNT/foo 2>&1 | _filter_scratch
67
68 #
69 # Apparently this used to be broken at some point:
70 #       http://oss.sgi.com/bugzilla/show_bug.cgi?id=807
71 #
72 echo "unmounting read-only filesystem"
73 _scratch_unmount 2>&1 | _filter_scratch
74
75 echo "setting device read-write"
76 blockdev --setrw $SCRATCH_DEV
77
78 echo "mounting read-write block device:"
79 _scratch_mount 2>&1 | _filter_scratch
80
81 echo "touch files"
82 touch $SCRATCH_MNT/{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
83
84 echo "going down:"
85 src/godown -f $SCRATCH_MNT
86
87 echo "unmounting shutdown filesystem:"
88 _scratch_unmount 2>&1 | _filter_scratch
89
90 echo "setting device read-only"
91 blockdev --setro $SCRATCH_DEV
92
93 #
94 # Mounting a filesystem that requires log-recovery fails unless
95 # -o norecovery is used.
96 #
97 echo "mounting filesystem that needs recovery on a read-only device:"
98 _scratch_mount 2>&1 | _filter_scratch | _filter_ro_mount
99
100 echo "unmounting read-only filesystem"
101 _scratch_unmount 2>&1 | _filter_scratch
102
103 #
104 # This is the way out if the underlying device really is read-only.
105 # Doesn't mean it's a good idea in practive, more a last resort
106 # data recovery hack.
107 #
108 echo "mounting filesystem with -o norecovery on a read-only device:"
109 _scratch_mount -o norecovery 2>&1 | _filter_scratch | _filter_ro_mount
110
111 echo "unmounting read-only filesystem"
112 _scratch_unmount 2>&1 | _filter_scratch
113
114 echo "setting device read-write"
115 blockdev --setrw $SCRATCH_DEV
116
117 #
118 # But log recovery is performed when mount with -o ro as long as
119 # the underlying device is not write protected.
120 #
121 echo "mounting filesystem that needs recovery with -o ro:"
122 _scratch_mount -o ro 2>&1 | _filter_scratch
123
124 # success, all done
125 echo "*** done"
126 rm -f $seqres.full
127 status=0