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