blob: 0d0a90ec3d714dc0d4664f2bd776778a2c1175cb [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
Eric Andersene77ae3a1999-10-19 20:03:34 +000029static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n"
Eric Andersenf6be9441999-10-13 21:12:06 +000030"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";
Eric Andersencc8ed391999-10-05 16:24:54 +000033
Eric Andersenf6be9441999-10-13 21:12:06 +000034
35static int parentFlag = FALSE;
Eric Andersenfa0540f1999-10-22 18:18:31 +000036static mode_t mode = 777;
Eric Andersenf6be9441999-10-13 21:12:06 +000037
38
39extern int mkdir_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000040{
Eric Andersenfa0540f1999-10-22 18:18:31 +000041 int i=FALSE;
Eric Andersenf6be9441999-10-13 21:12:06 +000042 argc--;
43 argv++;
Eric Andersencc8ed391999-10-05 16:24:54 +000044
Eric Andersenf6be9441999-10-13 21:12:06 +000045 /* Parse any options */
Eric Andersenfa0540f1999-10-22 18:18:31 +000046 while (argc > 0 && **argv == '-') {
47 while (i==FALSE && *++(*argv)) {
Eric Andersenf6be9441999-10-13 21:12:06 +000048 switch (**argv) {
49 case 'm':
Eric Andersenfa0540f1999-10-22 18:18:31 +000050 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;
Eric Andersenf6be9441999-10-13 21:12:06 +000062 break;
63 case 'p':
64 parentFlag = TRUE;
65 break;
66 default:
Eric Andersenb0e9a701999-10-18 22:28:26 +000067 usage( mkdir_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000068 }
Eric Andersenfa0540f1999-10-22 18:18:31 +000069 }
Eric Andersenf6be9441999-10-13 21:12:06 +000070 argc--;
71 argv++;
72 }
73
74
75 if (argc < 1) {
Eric Andersenb0e9a701999-10-18 22:28:26 +000076 usage( mkdir_usage);
Eric Andersenf6be9441999-10-13 21:12:06 +000077 }
78
Eric Andersenfa0540f1999-10-22 18:18:31 +000079 while (argc > 0) {
80 int status;
Eric Andersenf6be9441999-10-13 21:12:06 +000081 struct stat statBuf;
Eric Andersenfa0540f1999-10-22 18:18:31 +000082 status=stat(*argv, &statBuf);
83 if (status != -1 && status != ENOENT ) {
Eric Andersenf6be9441999-10-13 21:12:06 +000084 fprintf(stderr, "%s: File exists\n", *argv);
Eric Andersenfa0540f1999-10-22 18:18:31 +000085 exit( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000086 }
Eric Andersenf6be9441999-10-13 21:12:06 +000087 if (parentFlag == TRUE)
88 createPath(*argv, mode);
89 else {
90 if (mkdir (*argv, mode) != 0) {
91 perror(*argv);
92 exit( FALSE);
93 }
Eric Andersencc8ed391999-10-05 16:24:54 +000094 }
Eric Andersenfa0540f1999-10-22 18:18:31 +000095 argc--;
96 argv++;
Eric Andersenf6be9441999-10-13 21:12:06 +000097 }
98 exit( TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000099}
100
Eric Andersencc8ed391999-10-05 16:24:54 +0000101