fsx/fsstress: round blocksize properly
[xfstests-dev.git] / tests / btrfs / 053
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2014 Filipe Manana.  All Rights Reserved.
4 #
5 # FS QA Test No. btrfs/053
6 #
7 # Verify that btrfs send is able to replicate xattrs larger than PATH_MAX.
8 # This is possible if the b+tree leaf size is larger than 4Kb (mkfs.btrfs's
9 # default is max(16Kb, PAGE_SIZE) as of btrfs-progs v3.12, and max(4Kb,
10 # PAGE_SIZE in older versions).
11 #
12 # This issue is fixed by the following linux kernel btrfs patch:
13 #
14 #   Btrfs: send, use the right limits for xattr names and values
15 #
16 seq=`basename $0`
17 seqres=$RESULT_DIR/$seq
18 echo "QA output created by $seq"
19
20 tmp=/tmp/$$
21 status=1        # failure is the default!
22 trap "_cleanup; exit \$status" 0 1 2 3 15
23
24 _cleanup()
25 {
26     rm -fr $send_files_dir
27     rm -fr $tmp
28 }
29
30 # get standard environment, filters and checks
31 . ./common/rc
32 . ./common/filter
33 . ./common/attr
34
35 # real QA test starts here
36 _supported_fs btrfs
37 _require_test
38 _require_scratch
39 _require_fssum
40 _require_attrs
41
42 # max(16384, PAGE_SIZE) is the default leaf/node size on btrfs-progs v3.12+.
43 # Older versions just use max(4096, PAGE_SIZE).
44 # mkfs.btrfs can't create an fs with a leaf/node size smaller than PAGE_SIZE.
45 leaf_size=$(echo -e "16384\n`getconf PAGE_SIZE`" | sort -nr | head -1)
46
47 send_files_dir=$TEST_DIR/btrfs-test-$seq
48
49 rm -f $seqres.full
50 rm -fr $send_files_dir
51 mkdir $send_files_dir
52
53 _scratch_mkfs "-l $leaf_size" >/dev/null 2>&1
54 _scratch_mount
55
56 echo "hello world" > $SCRATCH_MNT/foobar
57
58 $SETFATTR_PROG -n user.xattr_name_1 -v `$PERL_PROG -e 'print "A" x 6000;'` \
59         $SCRATCH_MNT/foobar
60
61 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/mysnap1
62 run_check $FSSUM_PROG -A -f -w $send_files_dir/1.fssum $SCRATCH_MNT/mysnap1
63
64 # Update existing xattr value and add a new xattr too.
65 $SETFATTR_PROG -n user.xattr_name_1 -v `$PERL_PROG -e 'print "Z" x 6666;'` \
66         $SCRATCH_MNT/foobar
67 $SETFATTR_PROG -n user.xattr_name_2 -v `$PERL_PROG -e 'print "U" x 5555;'` \
68         $SCRATCH_MNT/foobar
69
70 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT $SCRATCH_MNT/mysnap2
71 run_check $FSSUM_PROG -A -f -w $send_files_dir/2.fssum \
72         -x $SCRATCH_MNT/mysnap2/mysnap1 $SCRATCH_MNT/mysnap2
73
74 _run_btrfs_util_prog send -f $send_files_dir/1.snap $SCRATCH_MNT/mysnap1
75 _run_btrfs_util_prog send -p $SCRATCH_MNT/mysnap1 -f $send_files_dir/2.snap \
76         $SCRATCH_MNT/mysnap2
77
78 _scratch_unmount
79 _check_scratch_fs
80
81 _scratch_mkfs "-l $leaf_size" >/dev/null 2>&1
82 _scratch_mount
83
84 _run_btrfs_util_prog receive -f $send_files_dir/1.snap $SCRATCH_MNT
85 run_check $FSSUM_PROG -r $send_files_dir/1.fssum $SCRATCH_MNT/mysnap1
86
87 _run_btrfs_util_prog receive -f $send_files_dir/2.snap $SCRATCH_MNT
88 run_check $FSSUM_PROG -r $send_files_dir/2.fssum $SCRATCH_MNT/mysnap2
89
90 status=0
91 exit