2 # Verify that mkdir's '-m MODE' option works properly
3 # with various umask settings.
5 # Copyright (C) 2000-2024 Free Software Foundation, Inc.
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 .
"${srcdir=.}/tests/init.sh"; path_prepend_ .
/src
23 require_no_default_acl_ .
25 working_umask_or_skip_
29 # umask -m option resulting perm resulting perm
31 000 : empty : drwxrwxrwx : drwxrwxrwx :
32 000 : -m 016 : drwxrwxrwx : d-----xrw- :
33 077 : empty : drwx------ : drwx------ :
34 050 : empty : drwx-w-rwx : drwx-w-rwx :
35 050 : -m 312 : drwx-w-rwx : d-wx--x-w- :
36 160 : empty : drwx--xrwx : drw---xrwx :
37 160 : -m 743 : drwx--xrwx : drwxr---wx :
38 022 : -m o-w : drwxr-xr-x : drwxrwxr-x :
39 027 : -m =+x : drwxr-x--- : d--x--x--- :
40 027 : -m =+X : drwxr-x--- : d--x--x--- :
43 colon_tests
=$
(echo $tests |
sed 's/^ *//; s/ *: */:/g')
46 test _
$p = _empty
&& p
=
54 test "$VERBOSE" = yes && set -x
55 umask=$1 mode
=$2 parent_perms
=$3 sub_perms
=$4
56 test "_$mode" = _empty
&& mode
=
57 test $sub_perms = last
&& break
58 # echo p=$p umask=$1 mode=$2 parent_perms=$3 sub_perms=$4
59 shift; shift; shift; shift
62 # If we're not using -p, then create the parent manually,
63 # and adjust expectations accordingly.
66 mkdir
-m =,u
=rwx parent || fail
=1
67 parent_perms
=drwx------
70 mkdir
$p $mode parent
/sub || fail
=1
72 perms
=$
(stat
--printf %A parent
)
73 test "$parent_perms" = "$perms" \
74 ||
{ fail
=1; echo parent
: expected
$parent_perms, got
$perms; }
76 perms
=$
(stat
--printf %A parent
/sub
)
77 test "$sub_perms" = "$perms" \
78 ||
{ fail
=1; echo parent
/sub
: expected
$sub_perms, got
$perms; }
81 rm -rf parent || fail
=1