mkdir.c revision 50528
11556Srgrimes/*
21556Srgrimes * Copyright (c) 1983, 1992, 1993
31556Srgrimes *	The Regents of the University of California.  All rights reserved.
41556Srgrimes *
51556Srgrimes * Redistribution and use in source and binary forms, with or without
61556Srgrimes * modification, are permitted provided that the following conditions
71556Srgrimes * are met:
81556Srgrimes * 1. Redistributions of source code must retain the above copyright
91556Srgrimes *    notice, this list of conditions and the following disclaimer.
101556Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111556Srgrimes *    notice, this list of conditions and the following disclaimer in the
121556Srgrimes *    documentation and/or other materials provided with the distribution.
131556Srgrimes * 3. All advertising materials mentioning features or use of this software
141556Srgrimes *    must display the following acknowledgement:
151556Srgrimes *	This product includes software developed by the University of
161556Srgrimes *	California, Berkeley and its contributors.
171556Srgrimes * 4. Neither the name of the University nor the names of its contributors
181556Srgrimes *    may be used to endorse or promote products derived from this software
191556Srgrimes *    without specific prior written permission.
201556Srgrimes *
211556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221556Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231556Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241556Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251556Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261556Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271556Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281556Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291556Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301556Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311556Srgrimes * SUCH DAMAGE.
321556Srgrimes */
331556Srgrimes
341556Srgrimes#ifndef lint
3520418Sstevestatic char const copyright[] =
361556Srgrimes"@(#) Copyright (c) 1983, 1992, 1993\n\
371556Srgrimes	The Regents of the University of California.  All rights reserved.\n";
381556Srgrimes#endif /* not lint */
391556Srgrimes
401556Srgrimes#ifndef lint
4136048Scharnier#if 0
4236048Scharnierstatic char sccsid[] = "@(#)mkdir.c	8.2 (Berkeley) 1/25/94";
4336048Scharnier#endif
4436048Scharnierstatic const char rcsid[] =
4550471Speter  "$FreeBSD: head/bin/mkdir/mkdir.c 50528 1999-08-28 20:46:00Z mharo $";
461556Srgrimes#endif /* not lint */
471556Srgrimes
481556Srgrimes#include <sys/types.h>
491556Srgrimes#include <sys/stat.h>
501556Srgrimes
511556Srgrimes#include <err.h>
521556Srgrimes#include <errno.h>
531556Srgrimes#include <stdio.h>
541556Srgrimes#include <stdlib.h>
551556Srgrimes#include <string.h>
5650528Smharo#include <sysexits.h>
571556Srgrimes#include <unistd.h>
581556Srgrimes
5924524Smppint	build __P((char *, mode_t));
601556Srgrimesvoid	usage __P((void));
611556Srgrimes
6250528Smharoint vflag;
6350528Smharo
641556Srgrimesint
651556Srgrimesmain(argc, argv)
661556Srgrimes	int argc;
671556Srgrimes	char *argv[];
681556Srgrimes{
6940606Smsmith	int ch, exitval, success, omode, pflag;
702923Sphk	mode_t *set = (mode_t *)NULL;
7124524Smpp	char *mode;
721556Srgrimes
732923Sphk	omode = pflag = 0;
741556Srgrimes	mode = NULL;
7550528Smharo	while ((ch = getopt(argc, argv, "m:pv")) != -1)
761556Srgrimes		switch(ch) {
771556Srgrimes		case 'p':
781556Srgrimes			pflag = 1;
791556Srgrimes			break;
8050528Smharo		case 'v':
8150528Smharo			vflag = 1;
8250528Smharo			break;
831556Srgrimes		case 'm':
841556Srgrimes			mode = optarg;
851556Srgrimes			break;
861556Srgrimes		case '?':
871556Srgrimes		default:
881556Srgrimes			usage();
891556Srgrimes		}
901556Srgrimes
911556Srgrimes	argc -= optind;
921556Srgrimes	argv += optind;
931556Srgrimes	if (argv[0] == NULL)
941556Srgrimes		usage();
951556Srgrimes
961556Srgrimes	if (mode == NULL) {
971556Srgrimes		omode = S_IRWXU | S_IRWXG | S_IRWXO;
981556Srgrimes	} else {
991556Srgrimes		if ((set = setmode(mode)) == NULL)
1001556Srgrimes			errx(1, "invalid file mode: %s", mode);
10124524Smpp		omode = getmode(set, S_IRWXU | S_IRWXG | S_IRWXO);
10241842Simp		free(set);
1031556Srgrimes	}
1041556Srgrimes
1051556Srgrimes	for (exitval = 0; *argv != NULL; ++argv) {
10640606Smsmith		success = 1;
10724524Smpp		if (pflag) {
10824524Smpp			if (build(*argv, omode))
10940606Smsmith				success = 0;
11040602Smsmith		} else if (mkdir(*argv, omode) < 0) {
11124524Smpp			warn("%s", *argv);
11240606Smsmith			success = 0;
11350528Smharo		} else if (vflag)
11450528Smharo			(void)printf("%s\n", *argv);
11550528Smharo
11640606Smsmith		if (!success)
11724524Smpp			exitval = 1;
11840535Smsmith		/*
11940535Smsmith		 * The mkdir() and umask() calls both honor only the low
12040535Smsmith		 * nine bits, so if you try to set a mode including the
12140602Smsmith		 * sticky, setuid, setgid bits you lose them.  Don't do
12240602Smsmith		 * this unless the user has specifically requested a mode,
12340602Smsmith		 * as chmod will (obviously) ignore the umask.
12440535Smsmith		 */
12540606Smsmith		if (success && mode != NULL && chmod(*argv, omode) == -1) {
12640606Smsmith			warn("%s", *argv);
12740535Smsmith			exitval = 1;
12840535Smsmith		}
1291556Srgrimes	}
1301556Srgrimes	exit(exitval);
1311556Srgrimes}
1321556Srgrimes
1331556Srgrimesint
13424524Smppbuild(path, omode)
1351556Srgrimes	char *path;
13624524Smpp	mode_t omode;
1371556Srgrimes{
1381556Srgrimes	struct stat sb;
1391556Srgrimes	mode_t numask, oumask;
14024524Smpp	int first, last, retval;
1411556Srgrimes	char *p;
1421556Srgrimes
1431556Srgrimes	p = path;
1442959Sbde	oumask = 0;
14524524Smpp	retval = 0;
1461556Srgrimes	if (p[0] == '/')		/* Skip leading '/'. */
1471556Srgrimes		++p;
14824524Smpp	for (first = 1, last = 0; !last ; ++p) {
14924524Smpp		if (p[0] == '\0')
15024524Smpp			last = 1;
15124524Smpp		else if (p[0] != '/')
1521556Srgrimes			continue;
1531556Srgrimes		*p = '\0';
15424524Smpp		if (p[1] == '\0')
15524524Smpp			last = 1;
1561556Srgrimes		if (first) {
1571556Srgrimes			/*
1581556Srgrimes			 * POSIX 1003.2:
1591556Srgrimes			 * For each dir operand that does not name an existing
1601556Srgrimes			 * directory, effects equivalent to those cased by the
1611556Srgrimes			 * following command shall occcur:
1621556Srgrimes			 *
1631556Srgrimes			 * mkdir -p -m $(umask -S),u+wx $(dirname dir) &&
1641556Srgrimes			 *    mkdir [-m mode] dir
1651556Srgrimes			 *
1661556Srgrimes			 * We change the user's umask and then restore it,
1671556Srgrimes			 * instead of doing chmod's.
1681556Srgrimes			 */
1691556Srgrimes			oumask = umask(0);
1701556Srgrimes			numask = oumask & ~(S_IWUSR | S_IXUSR);
1711556Srgrimes			(void)umask(numask);
1721556Srgrimes			first = 0;
1731556Srgrimes		}
17424524Smpp		if (last)
17524524Smpp			(void)umask(oumask);
1761556Srgrimes		if (stat(path, &sb)) {
1771556Srgrimes			if (errno != ENOENT ||
17824524Smpp			    mkdir(path, last ? omode :
17924524Smpp				  S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
1801556Srgrimes				warn("%s", path);
18124524Smpp				retval = 1;
18224524Smpp				break;
18350528Smharo			} else if (vflag)
18450528Smharo				printf("%s\n", path);
1851556Srgrimes		}
18624524Smpp		else if ((sb.st_mode & S_IFMT) != S_IFDIR) {
18724524Smpp			if (last)
18824524Smpp				errno = EEXIST;
18924524Smpp			else
19024524Smpp				errno = ENOTDIR;
19124524Smpp			warn("%s", path);
19224524Smpp			retval = 1;
19324524Smpp			break;
19424524Smpp		}
19540602Smsmith		if (!last)
19640602Smsmith		    *p = '/';
1971556Srgrimes	}
19824524Smpp	if (!first && !last)
1991556Srgrimes		(void)umask(oumask);
20024524Smpp	return (retval);
2011556Srgrimes}
2021556Srgrimes
2031556Srgrimesvoid
2041556Srgrimesusage()
2051556Srgrimes{
20650528Smharo	(void)fprintf(stderr, "usage: mkdir [-p] [-m mode] [-v] directory ...\n");
20750528Smharo	exit (EX_USAGE);
2081556Srgrimes}
209