blob: 017ef9b08083c3c56f3e4217bc8bc2eb5a905d23 [file] [log] [blame]
Eric Andersenf6be9441999-10-13 21:12:06 +00001/*
2 * Mini mkdir implementation for busybox
3 *
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
5 * Copyright (C) 1999 by Lineo, inc.
6 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersenf6be9441999-10-13 21:12:06 +00007 *
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
Eric Andersencc8ed391999-10-05 16:24:54 +000024#include "internal.h"
Eric Andersenf6be9441999-10-13 21:12:06 +000025#include <stdio.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <errno.h>
27#include <sys/param.h>
28
Erik Andersen5509af72000-01-23 18:19:02 +000029static const char mkdir_usage[] =
30"mkdir [OPTION] DIRECTORY...\n\n"
Eric Andersenf6be9441999-10-13 21:12:06 +000031"Create the DIRECTORY(ies), if they do not already exist\n\n"
Eric Andersend73dc5b1999-11-10 23:13:02 +000032"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";
Eric Andersencc8ed391999-10-05 16:24:54 +000035
Eric Andersenf6be9441999-10-13 21:12:06 +000036
37static int parentFlag = FALSE;
Eric Andersended62591999-11-18 00:19:26 +000038static mode_t mode = 0777;
Eric Andersenf6be9441999-10-13 21:12:06 +000039
40
41extern int mkdir_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000042{
Eric Andersenfa0540f1999-10-22 18:18:31 +000043 int i=FALSE;
Eric Andersenf6be9441999-10-13 21:12:06 +000044 argc--;
45 argv++;
Eric Andersencc8ed391999-10-05 16:24:54 +000046
Eric Andersenf6be9441999-10-13 21:12:06 +000047 /* Parse any options */
Eric Andersenfa0540f1999-10-22 18:18:31 +000048 while (argc > 0 && **argv == '-') {
49 while (i==FALSE && *++(*argv)) {
Eric Andersenf6be9441999-10-13 21:12:06 +000050 switch (**argv) {
51 case 'm':
Eric Andersenfa0540f1999-10-22 18:18:31 +000052 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;
Eric Andersenf6be9441999-10-13 21:12:06 +000064 break;
65 case 'p':
66 parentFlag = TRUE;
67 break;
68 default:
Eric Andersenb0e9a701999-10-18 22:28:26 +000069 usage( mkdir_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000070 }
Eric Andersenfa0540f1999-10-22 18:18:31 +000071 }
Eric Andersenf6be9441999-10-13 21:12:06 +000072 argc--;
73 argv++;
74 }
75
76
77 if (argc < 1) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000078 usage( mkdir_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000079 }
80
Eric Andersenfa0540f1999-10-22 18:18:31 +000081 while (argc > 0) {
82 int status;
Eric Andersenf6be9441999-10-13 21:12:06 +000083 struct stat statBuf;
Eric Andersencb41c2e1999-11-22 07:41:00 +000084 char buf[NAME_MAX];
85
86 strcpy (buf, *argv);
87 status=stat(buf, &statBuf);
Erik Andersen05df2392000-01-13 04:43:48 +000088 if (parentFlag == FALSE && status != -1 && status != ENOENT ) {
Eric Andersencb41c2e1999-11-22 07:41:00 +000089 fprintf(stderr, "%s: File exists\n", buf);
Eric Andersenfa0540f1999-10-22 18:18:31 +000090 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000091 }
Eric Andersen08b10341999-11-19 02:38:58 +000092 if (parentFlag == TRUE) {
Eric Andersencb41c2e1999-11-22 07:41:00 +000093 strcat( buf, "/");
94 createPath(buf, mode);
Eric Andersen08b10341999-11-19 02:38:58 +000095 }
Eric Andersenf6be9441999-10-13 21:12:06 +000096 else {
Erik Andersen05df2392000-01-13 04:43:48 +000097 if (mkdir (buf, mode) != 0 && parentFlag == FALSE) {
Eric Andersencb41c2e1999-11-22 07:41:00 +000098 perror(buf);
Eric Andersenf6be9441999-10-13 21:12:06 +000099 exit( FALSE);
100 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000101 }
Eric Andersenfa0540f1999-10-22 18:18:31 +0000102 argc--;
103 argv++;
Eric Andersenf6be9441999-10-13 21:12:06 +0000104 }
105 exit( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000106}
107
Eric Andersencc8ed391999-10-05 16:24:54 +0000108