017ef9b08083c3c56f3e4217bc8bc2eb5a905d23
[oweals/busybox.git] / mkdir.c
1 /*
2  * Mini mkdir implementation for busybox
3  *
4  *
5  * Copyright (C) 1999 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 #include <stdio.h>
26 #include <errno.h>
27 #include <sys/param.h>
28
29 static const char mkdir_usage[] =
30 "mkdir [OPTION] DIRECTORY...\n\n"
31 "Create the DIRECTORY(ies), if they do not already exist\n\n"
32 "Options:\n"
33 "\t-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n"
34 "\t-p\tno error if existing, make parent directories as needed\n";
35
36
37 static int parentFlag = FALSE;
38 static mode_t mode = 0777;
39
40
41 extern int mkdir_main(int argc, char **argv)
42 {
43     int i=FALSE;
44     argc--;
45     argv++;
46
47     /* Parse any options */
48     while (argc > 0 && **argv == '-') {
49         while (i==FALSE && *++(*argv)) {
50             switch (**argv) {
51             case 'm':
52                 if (--argc == 0)
53                     usage( mkdir_usage);
54                 /* Find the specified modes */
55                 mode = 0;
56                 if ( parse_mode(*(++argv), &mode) == FALSE ) {
57                     fprintf(stderr, "Unknown mode: %s\n", *argv);
58                     exit( FALSE);
59                 }
60                 /* Set the umask for this process so it doesn't 
61                  * screw up whatever the user just entered. */
62                 umask(0);
63                 i=TRUE;
64                 break;
65             case 'p':
66                 parentFlag = TRUE;
67                 break;
68             default:
69                 usage( mkdir_usage);
70             }
71         }
72         argc--;
73         argv++;
74     }
75
76
77     if (argc < 1) {
78         usage( mkdir_usage);
79     }
80
81     while (argc > 0) {
82         int status;
83         struct stat statBuf;
84         char buf[NAME_MAX];
85
86         strcpy (buf, *argv);
87         status=stat(buf, &statBuf);
88         if (parentFlag == FALSE && status != -1 && status != ENOENT ) {
89             fprintf(stderr, "%s: File exists\n", buf);
90             exit( FALSE);
91         }
92         if (parentFlag == TRUE) {
93             strcat( buf, "/");
94             createPath(buf, mode);
95         }
96         else { 
97             if (mkdir (buf, mode) != 0 && parentFlag == FALSE) {
98                 perror(buf);
99                 exit( FALSE);
100             }
101         }
102         argc--;
103         argv++;
104     }
105     exit( TRUE);
106 }
107
108