1 /* $NetBSD: mkdir.c,v 1.38 2011/08/29 14:45:28 joerg Exp $ */
4 * Copyright (c) 1983, 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/cdefs.h>
34 __COPYRIGHT("@(#) Copyright (c) 1983, 1992, 1993\
35 The Regents of the University of California. All rights reserved.");
40 static char sccsid
[] = "@(#)mkdir.c 8.2 (Berkeley) 1/25/94";
42 __RCSID("$NetBSD: mkdir.c,v 1.38 2011/08/29 14:45:28 joerg Exp $");
46 #include <sys/param.h>
48 #include <sys/types.h>
58 static int mkpath(char *, mode_t
, mode_t
);
59 __dead
static void usage(void);
62 main(int argc
, char *argv
[])
64 int ch
, exitval
, pflag
;
66 mode_t mode
, dir_mode
;
69 (void)setlocale(LC_ALL
, "");
72 * The default file mode is a=rwx (0777) with selected permissions
73 * removed in accordance with the file mode creation mask. For
74 * intermediate path name components, the mode is the default modified
75 * by u+wx so that the subdirectories can always be created.
77 mode
= (S_IRWXU
| S_IRWXG
| S_IRWXO
) & ~umask(0);
78 dir_mode
= mode
| S_IWUSR
| S_IXUSR
;
81 while ((ch
= getopt(argc
, argv
, "m:p")) != -1)
87 if ((set
= setmode(optarg
)) == NULL
) {
88 err(EXIT_FAILURE
, "Cannot set file mode `%s'",
92 mode
= getmode(set
, S_IRWXU
| S_IRWXG
| S_IRWXO
);
108 for (exitval
= EXIT_SUCCESS
; *argv
!= NULL
; ++argv
) {
112 /* Kernel takes care of this */
113 /* Remove trailing slashes, per POSIX. */
114 slash
= strrchr(*argv
, '\0');
115 while (--slash
> *argv
&& *slash
== '/')
120 if (mkpath(*argv
, mode
, dir_mode
) < 0)
121 exitval
= EXIT_FAILURE
;
123 if (mkdir(*argv
, mode
) < 0) {
125 exitval
= EXIT_FAILURE
;
128 * The mkdir() and umask() calls both honor
129 * only the file permission bits, so if you try
130 * to set a mode including the sticky, setuid,
131 * setgid bits you lose them. So chmod().
133 if ((mode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
)) != 0 &&
134 chmod(*argv
, mode
) == -1) {
136 exitval
= EXIT_FAILURE
;
146 * mkpath -- create directories.
148 * mode - file mode of terminal directory
149 * dir_mode - file mode of intermediate directories
152 mkpath(char *path
, mode_t mode
, mode_t dir_mode
)
162 slash
+= strspn(slash
, "/");
163 slash
+= strcspn(slash
, "/");
165 done
= (*slash
== '\0');
168 rv
= mkdir(path
, done
? mode
: dir_mode
);
171 * Can't create; path exists or no perms.
172 * stat() path to determine what's there now.
177 if (stat(path
, &sb
) < 0) {
178 /* Not there; use mkdir()s error */
183 if (!S_ISDIR(sb
.st_mode
)) {
184 /* Is there, but isn't a directory */
191 * Created ok, and this is the last element
194 * The mkdir() and umask() calls both honor only the
195 * file permission bits, so if you try to set a mode
196 * including the sticky, setuid, setgid bits you lose
199 if ((mode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
)) != 0 &&
200 chmod(path
, mode
) == -1) {
219 (void)fprintf(stderr
, "usage: %s [-p] [-m mode] dirname ...\n",