2005-01-10 08:39:26 +00:00
|
|
|
/*-
|
1994-05-26 06:18:55 +00:00
|
|
|
* Copyright (c) 1983, 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-05-01 16:58:57 +00:00
|
|
|
#if 0
|
1994-05-26 06:18:55 +00:00
|
|
|
#ifndef lint
|
1996-12-14 06:04:06 +00:00
|
|
|
static char const copyright[] =
|
1994-05-26 06:18:55 +00:00
|
|
|
"@(#) Copyright (c) 1983, 1992, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-05-15 06:23:45 +00:00
|
|
|
static char sccsid[] = "@(#)mkdir.c 8.2 (Berkeley) 1/25/94";
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2003-05-01 16:58:57 +00:00
|
|
|
#endif
|
2002-06-30 05:13:54 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2001-01-14 12:08:50 +00:00
|
|
|
#include <libgen.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-08-28 20:46:00 +00:00
|
|
|
#include <sysexits.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2002-02-22 21:11:03 +00:00
|
|
|
static int build(char *, mode_t);
|
|
|
|
static void usage(void);
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2011-10-31 08:59:17 +00:00
|
|
|
static int vflag;
|
1999-08-28 20:46:00 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
int
|
2002-02-02 06:48:10 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2002-02-22 21:11:03 +00:00
|
|
|
int ch, exitval, success, pflag;
|
2005-01-25 14:31:19 +00:00
|
|
|
mode_t omode;
|
|
|
|
void *set = NULL;
|
1997-04-01 23:46:22 +00:00
|
|
|
char *mode;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1994-09-20 06:24:56 +00:00
|
|
|
omode = pflag = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
mode = NULL;
|
1999-08-28 20:46:00 +00:00
|
|
|
while ((ch = getopt(argc, argv, "m:pv")) != -1)
|
1994-05-26 06:18:55 +00:00
|
|
|
switch(ch) {
|
1999-09-04 03:19:38 +00:00
|
|
|
case 'm':
|
|
|
|
mode = optarg;
|
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
case 'p':
|
|
|
|
pflag = 1;
|
|
|
|
break;
|
1999-08-28 20:46:00 +00:00
|
|
|
case 'v':
|
|
|
|
vflag = 1;
|
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argv[0] == NULL)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
if (mode == NULL) {
|
|
|
|
omode = S_IRWXU | S_IRWXG | S_IRWXO;
|
|
|
|
} else {
|
|
|
|
if ((set = setmode(mode)) == NULL)
|
|
|
|
errx(1, "invalid file mode: %s", mode);
|
1997-04-01 23:46:22 +00:00
|
|
|
omode = getmode(set, S_IRWXU | S_IRWXG | S_IRWXO);
|
1998-12-16 04:42:33 +00:00
|
|
|
free(set);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (exitval = 0; *argv != NULL; ++argv) {
|
1997-04-01 23:46:22 +00:00
|
|
|
if (pflag) {
|
2006-10-10 20:18:20 +00:00
|
|
|
success = build(*argv, omode);
|
1998-10-22 21:42:20 +00:00
|
|
|
} else if (mkdir(*argv, omode) < 0) {
|
2001-01-14 12:08:50 +00:00
|
|
|
if (errno == ENOTDIR || errno == ENOENT)
|
|
|
|
warn("%s", dirname(*argv));
|
|
|
|
else
|
|
|
|
warn("%s", *argv);
|
1998-10-23 06:28:40 +00:00
|
|
|
success = 0;
|
2006-10-10 20:18:20 +00:00
|
|
|
} else {
|
|
|
|
success = 1;
|
|
|
|
if (vflag)
|
|
|
|
(void)printf("%s\n", *argv);
|
|
|
|
}
|
1998-10-23 06:28:40 +00:00
|
|
|
if (!success)
|
|
|
|
exitval = 1;
|
1998-10-20 06:37:01 +00:00
|
|
|
/*
|
|
|
|
* The mkdir() and umask() calls both honor only the low
|
|
|
|
* nine bits, so if you try to set a mode including the
|
1998-10-22 21:42:20 +00:00
|
|
|
* sticky, setuid, setgid bits you lose them. Don't do
|
|
|
|
* this unless the user has specifically requested a mode,
|
2006-10-10 20:18:20 +00:00
|
|
|
* as chmod will (obviously) ignore the umask. Do this
|
|
|
|
* on newly created directories only.
|
1998-10-20 06:37:01 +00:00
|
|
|
*/
|
2006-10-10 20:18:20 +00:00
|
|
|
if (success == 1 && mode != NULL && chmod(*argv, omode) == -1) {
|
1998-10-23 06:28:40 +00:00
|
|
|
warn("%s", *argv);
|
1998-10-20 06:37:01 +00:00
|
|
|
exitval = 1;
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
exit(exitval);
|
|
|
|
}
|
|
|
|
|
2006-10-10 20:18:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns 1 if a directory has been created,
|
|
|
|
* 2 if it already existed, and 0 on failure.
|
|
|
|
*/
|
2013-04-27 21:59:43 +00:00
|
|
|
static int
|
2002-02-02 06:48:10 +00:00
|
|
|
build(char *path, mode_t omode)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
mode_t numask, oumask;
|
1997-04-01 23:46:22 +00:00
|
|
|
int first, last, retval;
|
1994-05-26 06:18:55 +00:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = path;
|
1994-09-21 22:34:38 +00:00
|
|
|
oumask = 0;
|
2006-10-10 20:18:20 +00:00
|
|
|
retval = 1;
|
1994-05-26 06:18:55 +00:00
|
|
|
if (p[0] == '/') /* Skip leading '/'. */
|
|
|
|
++p;
|
1997-04-01 23:46:22 +00:00
|
|
|
for (first = 1, last = 0; !last ; ++p) {
|
|
|
|
if (p[0] == '\0')
|
|
|
|
last = 1;
|
|
|
|
else if (p[0] != '/')
|
1994-05-26 06:18:55 +00:00
|
|
|
continue;
|
|
|
|
*p = '\0';
|
2004-09-24 06:57:26 +00:00
|
|
|
if (!last && p[1] == '\0')
|
1997-04-01 23:46:22 +00:00
|
|
|
last = 1;
|
1994-05-26 06:18:55 +00:00
|
|
|
if (first) {
|
|
|
|
/*
|
|
|
|
* POSIX 1003.2:
|
|
|
|
* For each dir operand that does not name an existing
|
2006-10-10 20:18:20 +00:00
|
|
|
* directory, effects equivalent to those caused by the
|
1994-05-26 06:18:55 +00:00
|
|
|
* following command shall occcur:
|
|
|
|
*
|
|
|
|
* mkdir -p -m $(umask -S),u+wx $(dirname dir) &&
|
|
|
|
* mkdir [-m mode] dir
|
|
|
|
*
|
|
|
|
* We change the user's umask and then restore it,
|
|
|
|
* instead of doing chmod's.
|
|
|
|
*/
|
|
|
|
oumask = umask(0);
|
|
|
|
numask = oumask & ~(S_IWUSR | S_IXUSR);
|
|
|
|
(void)umask(numask);
|
|
|
|
first = 0;
|
|
|
|
}
|
1997-04-01 23:46:22 +00:00
|
|
|
if (last)
|
|
|
|
(void)umask(oumask);
|
2002-02-05 21:55:12 +00:00
|
|
|
if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
|
2002-02-25 09:17:44 +00:00
|
|
|
if (errno == EEXIST || errno == EISDIR) {
|
2002-02-05 21:55:12 +00:00
|
|
|
if (stat(path, &sb) < 0) {
|
|
|
|
warn("%s", path);
|
2006-10-10 20:18:20 +00:00
|
|
|
retval = 0;
|
2002-02-05 21:55:12 +00:00
|
|
|
break;
|
|
|
|
} else if (!S_ISDIR(sb.st_mode)) {
|
|
|
|
if (last)
|
|
|
|
errno = EEXIST;
|
|
|
|
else
|
|
|
|
errno = ENOTDIR;
|
|
|
|
warn("%s", path);
|
2006-10-10 20:18:20 +00:00
|
|
|
retval = 0;
|
2002-02-05 21:55:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-10-10 20:18:20 +00:00
|
|
|
if (last)
|
|
|
|
retval = 2;
|
2002-02-05 21:55:12 +00:00
|
|
|
} else {
|
1994-05-26 06:18:55 +00:00
|
|
|
warn("%s", path);
|
2006-10-10 20:18:20 +00:00
|
|
|
retval = 0;
|
1997-04-01 23:46:22 +00:00
|
|
|
break;
|
2002-02-05 21:55:12 +00:00
|
|
|
}
|
|
|
|
} else if (vflag)
|
|
|
|
printf("%s\n", path);
|
1998-10-22 21:42:20 +00:00
|
|
|
if (!last)
|
|
|
|
*p = '/';
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
1997-04-01 23:46:22 +00:00
|
|
|
if (!first && !last)
|
1994-05-26 06:18:55 +00:00
|
|
|
(void)umask(oumask);
|
1997-04-01 23:46:22 +00:00
|
|
|
return (retval);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2013-04-27 21:59:43 +00:00
|
|
|
static void
|
2002-02-02 06:48:10 +00:00
|
|
|
usage(void)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
1999-09-04 03:19:38 +00:00
|
|
|
|
2005-02-09 17:37:39 +00:00
|
|
|
(void)fprintf(stderr,
|
|
|
|
"usage: mkdir [-pv] [-m mode] directory_name ...\n");
|
1999-08-28 20:46:00 +00:00
|
|
|
exit (EX_USAGE);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|