VirtualBox

source: kBuild/trunk/src/gmake/kmkbuiltin/mkdir.c@ 227

Last change on this file since 227 was 227, checked in by bird, 20 years ago

builtin stuff.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1/*
2 * Copyright (c) 1983, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#if 0
31#ifndef lint
32static char const copyright[] =
33"@(#) Copyright (c) 1983, 1992, 1993\n\
34 The Regents of the University of California. All rights reserved.\n";
35#endif /* not lint */
36
37#ifndef lint
38static char sccsid[] = "@(#)mkdir.c 8.2 (Berkeley) 1/25/94";
39#endif /* not lint */
40#endif
41#include <sys/cdefs.h>
42//__FBSDID("$FreeBSD: src/bin/mkdir/mkdir.c,v 1.28 2004/04/06 20:06:48 markm Exp $");
43
44#include <sys/types.h>
45#include <sys/stat.h>
46
47//#include <err.h>
48#include <errno.h>
49#include <libgen.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53#include <sysexits.h>
54#include <unistd.h>
55
56extern void * setmode(const char *p);
57extern mode_t getmode(const void *bbox, mode_t omode);
58
59static int build(char *, mode_t);
60static int usage(void);
61
62int vflag;
63
64int
65kmk_builtin_mkdir(int argc, char *argv[])
66{
67 int ch, exitval, success, pflag;
68 mode_t omode, *set = (mode_t *)NULL;
69 char *mode;
70
71 omode = pflag = 0;
72 mode = NULL;
73 opterr = 1;
74 optarg = NULL;
75 optopt = 0;
76 optind = 0; /* init */
77 while ((ch = getopt(argc, argv, "m:pv")) != -1)
78 switch(ch) {
79 case 'm':
80 mode = optarg;
81 break;
82 case 'p':
83 pflag = 1;
84 break;
85 case 'v':
86 vflag = 1;
87 break;
88 case '?':
89 default:
90 return usage();
91 }
92
93 argc -= optind;
94 argv += optind;
95 if (argv[0] == NULL)
96 return usage();
97
98 if (mode == NULL) {
99 omode = S_IRWXU | S_IRWXG | S_IRWXO;
100 } else {
101 if ((set = setmode(mode)) == NULL) {
102 fprintf(stderr, "%s: invalid file mode: %s", mode, argv[0]);
103 return 1;
104 }
105 omode = getmode(set, S_IRWXU | S_IRWXG | S_IRWXO);
106 free(set);
107 }
108
109 for (exitval = 0; *argv != NULL; ++argv) {
110 success = 1;
111 if (pflag) {
112 if (build(*argv, omode))
113 success = 0;
114 } else if (mkdir(*argv, omode) < 0) {
115 if (errno == ENOTDIR || errno == ENOENT)
116 fprintf(stderr, "%s: %s", argv[0], dirname(*argv));
117 else
118 fprintf(stderr, "%s: %s", argv[0], *argv);
119 success = 0;
120 } else if (vflag)
121 (void)printf("%s\n", *argv);
122
123 if (!success)
124 exitval = 1;
125 /*
126 * The mkdir() and umask() calls both honor only the low
127 * nine bits, so if you try to set a mode including the
128 * sticky, setuid, setgid bits you lose them. Don't do
129 * this unless the user has specifically requested a mode,
130 * as chmod will (obviously) ignore the umask.
131 */
132 if (success && mode != NULL && chmod(*argv, omode) == -1) {
133 fprintf(stderr, "%s: %s", argv[0], *argv);
134 exitval = 1;
135 }
136 }
137 return exitval;
138}
139
140int
141build(char *path, mode_t omode)
142{
143 struct stat sb;
144 mode_t numask, oumask;
145 int first, last, retval;
146 char *p;
147
148 p = path;
149 oumask = 0;
150 retval = 0;
151 if (p[0] == '/') /* Skip leading '/'. */
152 ++p;
153 for (first = 1, last = 0; !last ; ++p) {
154 if (p[0] == '\0')
155 last = 1;
156 else if (p[0] != '/')
157 continue;
158 *p = '\0';
159 if (p[1] == '\0')
160 last = 1;
161 if (first) {
162 /*
163 * POSIX 1003.2:
164 * For each dir operand that does not name an existing
165 * directory, effects equivalent to those cased by the
166 * following command shall occcur:
167 *
168 * mkdir -p -m $(umask -S),u+wx $(dirname dir) &&
169 * mkdir [-m mode] dir
170 *
171 * We change the user's umask and then restore it,
172 * instead of doing chmod's.
173 */
174 oumask = umask(0);
175 numask = oumask & ~(S_IWUSR | S_IXUSR);
176 (void)umask(numask);
177 first = 0;
178 }
179 if (last)
180 (void)umask(oumask);
181 if (mkdir(path, last ? omode : S_IRWXU | S_IRWXG | S_IRWXO) < 0) {
182 if (errno == EEXIST || errno == EISDIR) {
183 if (stat(path, &sb) < 0) {
184 warn("%s", path);
185 retval = 1;
186 break;
187 } else if (!S_ISDIR(sb.st_mode)) {
188 if (last)
189 errno = EEXIST;
190 else
191 errno = ENOTDIR;
192 warn("%s", path);
193 retval = 1;
194 break;
195 }
196 } else {
197 warn("%s", path);
198 retval = 1;
199 break;
200 }
201 } else if (vflag)
202 printf("%s\n", path);
203 if (!last)
204 *p = '/';
205 }
206 if (!first && !last)
207 (void)umask(oumask);
208 return (retval);
209}
210
211int
212usage(void)
213{
214
215 (void)fprintf(stderr, "usage: mkdir [-pv] [-m mode] directory ...\n");
216 return EX_USAGE;
217}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette