libuutil: move under bmake
[unleashed.git] / usr / src / cmd / mkdir / mkdir.c
blobd473679379702f4ae48d6209cc129dd5a2fb027b
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
24 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
25 * Use is subject to license terms.
28 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
29 /* All Rights Reserved */
30 /* */
32 #pragma ident "%Z%%M% %I% %E% SMI"
35 * make directory.
36 * If -m is used with a valid mode, directories will be
37 * created in that mode. Otherwise, the default mode will
38 * be 777 possibly altered by the process's file mode creation
39 * mask.
40 * If -p is used, make the directory as well as
41 * its non-existing parent directories.
44 #include <signal.h>
45 #include <stdio.h>
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <errno.h>
49 #include <string.h>
50 #include <locale.h>
51 #include <stdlib.h>
52 #include <unistd.h>
53 #include <libgen.h>
54 #include <stdarg.h>
55 #include <wchar.h>
57 #define MSGEXISTS "\"%s\": Exists but is not a directory\n"
58 #define MSGUSAGE "usage: mkdir [-m mode] [-p] dirname ...\n"
59 #define MSGFMT1 "\"%s\": %s\n"
60 #define MSGFAILED "Failed to make directory \"%s\"; %s\n"
62 extern int optind, errno;
63 extern char *optarg;
65 static char
66 *simplify(char *path);
68 void
69 errmsg(int severity, int code, char *format, ...);
71 extern mode_t
72 newmode(char *ms, mode_t new_mode, mode_t umsk, char *file, char *path);
74 #define ALLRWX (S_IRWXU | S_IRWXG | S_IRWXO)
77 int
78 main(int argc, char *argv[])
80 int pflag, errflg, mflag;
81 int c, local_errno, tmp_errno;
82 mode_t cur_umask;
83 mode_t mode;
84 mode_t modediff;
85 char *d;
86 struct stat buf;
88 pflag = mflag = errflg = 0;
89 local_errno = 0;
91 (void) setlocale(LC_ALL, "");
93 #if !defined(TEXT_DOMAIN) /* Should be defined by cc -D */
94 #define TEXT_DOMAIN "SYS_TEST" /* Use this only if it weren't */
95 #endif
97 (void) textdomain(TEXT_DOMAIN);
99 cur_umask = umask(0);
101 mode = ALLRWX;
103 while ((c = getopt(argc, argv, "m:p")) != EOF) {
104 switch (c) {
105 case 'm':
106 mflag++;
107 mode = newmode(optarg, ALLRWX, cur_umask, "", "");
108 break;
109 case 'p':
110 pflag++;
111 break;
112 case '?':
113 errflg++;
114 break;
120 * When using default ACLs, mkdir() should be called with
121 * 0777 always; and umask or default ACL should do the work.
122 * Because of the POSIX.2 requirement that the
123 * intermediate mode be at least -wx------,
124 * we do some trickery here.
126 * If pflag is not set, we can just leave the umask as
127 * it the user specified it, unless it masks any of bits 0300.
129 if (pflag) {
130 modediff = cur_umask & (S_IXUSR | S_IWUSR);
131 if (modediff)
132 cur_umask &= ~modediff;
134 (void) umask(cur_umask);
136 argc -= optind;
137 if (argc < 1 || errflg) {
138 errmsg(0, 2, gettext(MSGUSAGE));
140 argv = &argv[optind];
142 errno = 0;
143 while (argc--) {
144 if ((d = simplify(*argv++)) == NULL) {
145 exit(2);
149 * When -p is set, invokes mkdirp library routine.
150 * Although successfully invoked, mkdirp sets errno to ENOENT
151 * if one of the directory in the pathname does not exist,
152 * thus creates a confusion on success/failure status
153 * possibly checked by the calling routine or shell.
154 * Therefore, errno is reset only when
155 * mkdirp has executed successfully, otherwise save
156 * in local_errno.
158 if (pflag) {
160 * POSIX.2 says that it is not an error if
161 * the argument names an existing directory.
162 * We will, however, complain if the argument
163 * exists but is not a directory.
165 if (lstat(d, &buf) != -1) {
166 if (S_ISDIR(buf.st_mode)) {
167 continue;
168 } else {
169 local_errno = EEXIST;
170 errmsg(0, 0, gettext(MSGEXISTS), d);
171 continue;
174 errno = 0;
176 if (mkdirp(d, ALLRWX) < 0) {
177 tmp_errno = errno;
179 if (tmp_errno == EEXIST) {
180 if (lstat(d, &buf) != -1) {
181 if (! S_ISDIR(buf.st_mode)) {
182 local_errno =
183 tmp_errno;
184 errmsg(0, 0, gettext(
185 MSGEXISTS), d);
186 continue;
188 /* S_ISDIR: do nothing */
189 } else {
190 local_errno = tmp_errno;
191 perror("mkdir");
192 errmsg(0, 0,
193 gettext(MSGFAILED), d,
194 strerror(local_errno));
195 continue;
197 } else {
198 local_errno = tmp_errno;
199 errmsg(0, 0, gettext(MSGFMT1), d,
200 strerror(tmp_errno));
201 continue;
205 errno = 0;
208 * get the file mode for the newly
209 * created directory and test for
210 * set gid bit being inherited from the parent
211 * directory to include it with the file
212 * mode creation for the last directory
213 * on the dir path.
215 * This is only needed if mflag was specified
216 * or if the umask was adjusted with -wx-----
218 * If mflag is specified, we chmod to the specified
219 * mode, oring in the 02000 bit.
221 * If modediff is set, those bits need to be
222 * removed from the last directory component,
223 * all other bits are kept regardless of umask
224 * in case a default ACL is present.
226 if (mflag || modediff) {
227 mode_t tmpmode;
229 (void) lstat(d, &buf);
230 if (modediff && !mflag)
231 tmpmode = (buf.st_mode & 07777)
232 & ~modediff;
233 else
234 tmpmode = mode | (buf.st_mode & 02000);
236 if (chmod(d, tmpmode) < 0) {
237 tmp_errno = errno;
238 local_errno = errno;
239 errmsg(0, 0, gettext(MSGFMT1), d,
240 strerror(tmp_errno));
241 continue;
243 errno = 0;
246 continue;
247 } else {
249 * No -p. Make only one directory
252 errno = 0;
254 if (mkdir(d, mode) < 0) {
255 local_errno = tmp_errno = errno;
256 errmsg(0, 0, gettext(MSGFAILED), d,
257 strerror(tmp_errno));
258 continue;
260 if (mflag) {
261 mode_t tmpmode;
262 (void) lstat(d, &buf);
263 tmpmode = mode | (buf.st_mode & 02000);
265 if (chmod(d, tmpmode) < 0) {
266 tmp_errno = errno;
267 local_errno = errno;
268 errmsg(0, 0, gettext(MSGFMT1), d,
269 strerror(tmp_errno));
270 continue;
272 errno = 0;
275 } /* end while */
277 /* When pflag is set, the errno is saved in local_errno */
279 if (local_errno)
280 errno = local_errno;
281 return (errno ? 2: 0);
285 * errmsg - This is an interface required by the code common to mkdir and
286 * chmod. The severity parameter is ignored here, but is meaningful
287 * to chmod.
290 /* ARGSUSED */
291 /* PRINTFLIKE3 */
292 void
293 errmsg(int severity, int code, char *format, ...)
295 va_list ap;
296 va_start(ap, format);
298 (void) fprintf(stderr, "mkdir: ");
299 (void) vfprintf(stderr, format, ap);
301 va_end(ap);
303 if (code > 0) {
304 exit(code);
309 * simplify - given a pathname in a writable buffer, simplify that
310 * path by removing meaningless occurances of path
311 * syntax.
313 * The change happens in place in the argument. The
314 * result is neceassarily no longer than the original.
316 * Return the pointer supplied by the caller on success, or
317 * NULL on error.
319 * The caller should handle error reporting based upon the
320 * returned vlaue.
323 static char *
324 simplify(char *mbPath)
326 int i;
327 size_t mbPathlen; /* length of multi-byte path */
328 size_t wcPathlen; /* length of wide-character path */
329 wchar_t *wptr; /* scratch pointer */
330 wchar_t *wcPath; /* wide-character version of the path */
333 * bail out if there is nothing there.
336 if (!mbPath)
337 return (mbPath);
340 * convert the multi-byte version of the path to a
341 * wide-character rendering, for doing our figuring.
344 mbPathlen = strlen(mbPath);
346 if ((wcPath = calloc(sizeof (wchar_t), mbPathlen+1)) == NULL) {
347 perror("mkdir");
348 exit(2);
351 if ((wcPathlen = mbstowcs(wcPath, mbPath, mbPathlen)) == (size_t)-1) {
352 free(wcPath);
353 return (NULL);
357 * remove duplicate slashes first ("//../" -> "/")
360 for (wptr = wcPath, i = 0; i < wcPathlen; i++) {
361 *wptr++ = wcPath[i];
363 if (wcPath[i] == '/') {
364 i++;
366 while (wcPath[i] == '/') {
367 i++;
370 i--;
374 *wptr = '\0';
377 * next skip initial occurances of "./"
380 for (wcPathlen = wcslen(wcPath), wptr = wcPath, i = 0;
381 i < wcPathlen-2 && wcPath[i] == '.' && wcPath[i+1] == '/';
382 i += 2) {
383 /* empty body */
387 * now make reductions of various forms.
390 while (i < wcPathlen) {
391 if (i < wcPathlen-2 && wcPath[i] == '/' &&
392 wcPath[i+1] == '.' && wcPath[i+2] == '/') {
393 /* "/./" -> "/" */
394 i += 2;
395 } else {
396 /* Normal case: copy the character */
397 *wptr++ = wcPath[i++];
401 *wptr = '\0';
404 * now convert back to the multi-byte format.
407 if (wcstombs(mbPath, wcPath, mbPathlen) == (size_t)-1) {
408 free(wcPath);
409 return (NULL);
412 free(wcPath);
413 return (mbPath);