blob: e7e73db82e7a154d0463be05bf0f8774b8726b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2015 Red Hat, Inc. All Rights Reserved.
#
# FS QA Test 053
#
# Ensure that xfs_repair can properly spot SGI_ACL_FILE
# and SGI_ACL_DEFAULT in the root attr namespace.
#
# Due to bugs here and there, we sometimes matched on partial
# strings with those names, and threw off xfs_repair.
#
. ./common/preamble
_begin_fstest attr acl repair quick auto
# Import common functions.
. ./common/filter
. ./common/attr
# real QA test starts here
_supported_fs xfs
_require_scratch
_require_attrs
_scratch_mkfs >/dev/null 2>&1
_scratch_mount
# Create root attr names which are substrings or superstrings
# of the reserved ACL names, and make sure xfs_repair copes.
# Due to various bugs, either the compared length was shorter
# than the reserved name (7 chars), so substrings matched, and/or only
# the reserved name length was compared, so superstrings matched.
rm -f $SCRATCH_MNT/$seq.*
# actual reserved names:
# SGI_ACL_FILE SGI_ACL_DEFAULT
for NAME in SGI_ACL \
SGI_ACL_F SGI_ACL_D \
SGI_ACL_FILE_FOO SGI_ACL_DEFAULT_FOO; do
touch $SCRATCH_MNT/${seq}.${NAME}
$ATTR_PROG -R -s $NAME -V "Wow, such $NAME" $SCRATCH_MNT/$seq.$NAME \
| _filter_scratch
done
# Older repair failed because it sees the above names as matching
# SGI_ACL_FILE / SGI_ACL_DEFAULT but w/o valid acls on them
# The test harness will catch this (false positive) corruption
# success, all done
status=0
exit
|