common/rc: factor out _scratch_xfs_[get|set]_sb_field
[xfstests-dev.git] / tests / xfs / 295
1 #! /bin/bash
2 # FS QA Test No. 295
3 #
4 # Test xfs_logprint w/ multiply-logged inodes & continued transactions
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2013 Red Hat, Inc.  All Rights Reserved.
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 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35     cd /
36     rm -f $tmp.*
37 }
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42 . ./common/attr
43
44 # real QA test starts here
45
46 # Modify as appropriate.
47 _supported_fs xfs
48 _supported_os Linux
49 _require_scratch
50 _require_attrs
51
52 rm -f $seqres.full
53
54 _scratch_mkfs -l size=2560b >/dev/null 2>&1
55
56 # Should yield a multiply-logged inode, thanks to xattr
57 # Old logprint says this, then coredumps:
58 #       xlog_print_trans_inode: illegal inode type
59 _scratch_mount
60 echo hello > $SCRATCH_MNT/hello; setfattr -n user.name -v value $SCRATCH_MNT/hello
61 _scratch_unmount
62 _scratch_xfs_logprint 2>&1 >> $seqres.full
63
64 # Now go for a continued transaction
65 # The trick here is to get a transaction which is exactly the size of a
66 # xfs_inode_log_format_32_t or xfs_inode_log_format_64_t
67 # Prior to the bugfix, this was parsed like an inode due to the size
68 # match, not as a continued transaction.  If that happens we'll see:
69 #       xfs_logprint: unknown log operation type (494e)
70
71 _scratch_mkfs -l size=2560b >/dev/null 2>&1
72 _scratch_mount
73 for I in `seq 0 8192`; do
74         echo a >> $SCRATCH_MNT/cat
75         touch $SCRATCH_MNT/tmp$I
76 done
77 _scratch_unmount
78 _scratch_xfs_logprint 2>&1 >> $seqres.full
79
80 # success, all done
81 status=0
82 exit