54d9b7241e24290f5a2dbc6bdd4f5313ece4aa7d
[oweals/busybox.git] / mkdir.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mkdir implementation for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #define bb_need_name_too_long
26 #define BB_DECLARE_EXTERN
27 #include "messages.c"
28
29 #include <stdio.h>
30 #include <errno.h>
31
32 static const char mkdir_usage[] =
33         "mkdir [OPTION] DIRECTORY...\n\n"
34         "Create the DIRECTORY(ies), if they do not already exist\n\n"
35         "Options:\n"
36
37         "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
38         "\t-p\tno error if existing, make parent directories as needed\n";
39
40
41 static int parentFlag = FALSE;
42 static mode_t mode = 0777;
43
44
45 extern int mkdir_main(int argc, char **argv)
46 {
47         int i = FALSE;
48
49         argc--;
50         argv++;
51
52         /* Parse any options */
53         while (argc > 0 && **argv == '-') {
54                 while (i == FALSE && *++(*argv)) {
55                         switch (**argv) {
56                         case 'm':
57                                 if (--argc == 0)
58                                         usage(mkdir_usage);
59                                 /* Find the specified modes */
60                                 mode = 0;
61                                 if (parse_mode(*(++argv), &mode) == FALSE) {
62                                         fprintf(stderr, "Unknown mode: %s\n", *argv);
63                                         exit FALSE;
64                                 }
65                                 /* Set the umask for this process so it doesn't 
66                                  * screw up whatever the user just entered. */
67                                 umask(0);
68                                 i = TRUE;
69                                 break;
70                         case 'p':
71                                 parentFlag = TRUE;
72                                 break;
73                         default:
74                                 usage(mkdir_usage);
75                         }
76                 }
77                 argc--;
78                 argv++;
79         }
80
81         if (argc < 1) {
82                 usage(mkdir_usage);
83         }
84
85         while (argc > 0) {
86                 int status;
87                 struct stat statBuf;
88                 char buf[BUFSIZ + 1];
89
90                 if (strlen(*argv) > BUFSIZ - 1) {
91                         fprintf(stderr, name_too_long, "mkdir");
92                         exit FALSE;
93                 }
94                 strcpy(buf, *argv);
95                 status = stat(buf, &statBuf);
96                 if (parentFlag == FALSE && status != -1 && errno != ENOENT) {
97                         fprintf(stderr, "%s: File exists\n", buf);
98                         exit FALSE;
99                 }
100                 if (parentFlag == TRUE) {
101                         strcat(buf, "/");
102                         createPath(buf, mode);
103                 } else {
104                         if (mkdir(buf, mode) != 0 && parentFlag == FALSE) {
105                                 perror(buf);
106                                 exit FALSE;
107                         }
108                 }
109                 argc--;
110                 argv++;
111         }
112         exit TRUE;
113 }