1#!/bin/sh
2# make sure mkdir's -p options works properly
3
4# Copyright (C) 2000-2023 Free Software Foundation, Inc.
5
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <https://www.gnu.org/licenses/>.
18
19. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
20print_ver_ mkdir
21skip_if_setgid_
22require_no_default_acl_ .
23
24mkdir -m 700 e-dir || framework_failure_
25
26
27# Make sure 'mkdir -p existing-dir' succeeds
28# and that 'mkdir existing-dir' fails.
29mkdir -p e-dir || fail=1
30returns_ 1 mkdir e-dir > /dev/null 2>&1 || fail=1
31
32# Create an existing directory.
33umask 077
34mode_str=drwxr-x-wx
35mode_arg=$(rwx_to_mode_ $mode_str)
36mkdir -m $mode_arg a || fail=1
37
38# this 'mkdir -p ...' shouldn't change perms of existing dir 'a'.
39d_mode_str=drwx-w--wx
40d_mode_arg=$(rwx_to_mode_ $d_mode_str)
41mkdir -p -m $d_mode_arg a/b/c/d
42
43# Make sure the permissions of 'a' haven't been changed.
44p=$(ls -ld a|cut -b-10); case $p in $mode_str);; *) fail=1;; esac
45# 'b's and 'c's should reflect the umask
46p=$(ls -ld a/b|cut -b-10); case $p in drwx------);; *) fail=1;; esac
47p=$(ls -ld a/b/c|cut -b-10); case $p in drwx------);; *) fail=1;; esac
48
49# 'd's perms are determined by the -m argument.
50p=$(ls -ld a/b/c/d|cut -b-10); case $p in $d_mode_str);; *) fail=1;; esac
51
52Exit $fail
53