1 /* $NetBSD: mkdir.c,v 1.37 2008/07/20 00:52:40 lukem 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.37 2008/07/20 00:52:40 lukem Exp $");
46 #include <sys/param.h>
48 #include <sys/types.h>
58 int mkpath(char *, mode_t
, mode_t
);
60 int main(int, char *[]);
63 main(int argc
, char *argv
[])
65 int ch
, exitval
, pflag
;
67 mode_t mode
, dir_mode
;
70 (void)setlocale(LC_ALL
, "");
73 * The default file mode is a=rwx (0777) with selected permissions
74 * removed in accordance with the file mode creation mask. For
75 * intermediate path name components, the mode is the default modified
76 * by u+wx so that the subdirectories can always be created.
78 mode
= (S_IRWXU
| S_IRWXG
| S_IRWXO
) & ~umask(0);
79 dir_mode
= mode
| S_IWUSR
| S_IXUSR
;
82 while ((ch
= getopt(argc
, argv
, "m:p")) != -1)
88 if ((set
= setmode(optarg
)) == NULL
) {
89 err(EXIT_FAILURE
, "Cannot set file mode `%s'",
93 mode
= getmode(set
, S_IRWXU
| S_IRWXG
| S_IRWXO
);
109 for (exitval
= EXIT_SUCCESS
; *argv
!= NULL
; ++argv
) {
113 /* Kernel takes care of this */
114 /* Remove trailing slashes, per POSIX. */
115 slash
= strrchr(*argv
, '\0');
116 while (--slash
> *argv
&& *slash
== '/')
121 if (mkpath(*argv
, mode
, dir_mode
) < 0)
122 exitval
= EXIT_FAILURE
;
124 if (mkdir(*argv
, mode
) < 0) {
126 exitval
= EXIT_FAILURE
;
129 * The mkdir() and umask() calls both honor
130 * only the file permission bits, so if you try
131 * to set a mode including the sticky, setuid,
132 * setgid bits you lose them. So chmod().
134 if ((mode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
)) != 0 &&
135 chmod(*argv
, mode
) == -1) {
137 exitval
= EXIT_FAILURE
;
147 * mkpath -- create directories.
149 * mode - file mode of terminal directory
150 * dir_mode - file mode of intermediate directories
153 mkpath(char *path
, mode_t mode
, mode_t dir_mode
)
163 slash
+= strspn(slash
, "/");
164 slash
+= strcspn(slash
, "/");
166 done
= (*slash
== '\0');
169 rv
= mkdir(path
, done
? mode
: dir_mode
);
172 * Can't create; path exists or no perms.
173 * stat() path to determine what's there now.
178 if (stat(path
, &sb
) < 0) {
179 /* Not there; use mkdir()s error */
184 if (!S_ISDIR(sb
.st_mode
)) {
185 /* Is there, but isn't a directory */
192 * Created ok, and this is the last element
195 * The mkdir() and umask() calls both honor only the
196 * file permission bits, so if you try to set a mode
197 * including the sticky, setuid, setgid bits you lose
200 if ((mode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
)) != 0 &&
201 chmod(path
, mode
) == -1) {
220 (void)fprintf(stderr
, "usage: %s [-p] [-m mode] dirname ...\n",