2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-13 21:12:06 +00:00
|
|
|
/*
|
|
|
|
* Mini mkdir implementation for busybox
|
|
|
|
*
|
2001-01-27 09:33:39 +00:00
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
1999-10-20 22:08:37 +00:00
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
1999-10-13 21:12:06 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-25 21:45:58 +00:00
|
|
|
#include "busybox.h"
|
2000-02-07 05:29:42 +00:00
|
|
|
#define bb_need_name_too_long
|
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#include "messages.c"
|
|
|
|
|
1999-10-13 21:12:06 +00:00
|
|
|
#include <stdio.h>
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <errno.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
1999-10-05 16:24:54 +00:00
|
|
|
|
1999-10-13 21:12:06 +00:00
|
|
|
static int parentFlag = FALSE;
|
1999-11-18 00:19:26 +00:00
|
|
|
static mode_t mode = 0777;
|
1999-10-13 21:12:06 +00:00
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
|
1999-10-13 21:12:06 +00:00
|
|
|
extern int mkdir_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
int i = FALSE;
|
1999-10-13 21:12:06 +00:00
|
|
|
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
/* Parse any options */
|
|
|
|
while (argc > 0 && **argv == '-') {
|
|
|
|
while (i == FALSE && *++(*argv)) {
|
|
|
|
switch (**argv) {
|
|
|
|
case 'm':
|
|
|
|
if (--argc == 0)
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
2000-02-08 19:58:47 +00:00
|
|
|
/* Find the specified modes */
|
|
|
|
mode = 0;
|
|
|
|
if (parse_mode(*(++argv), &mode) == FALSE) {
|
2001-01-31 19:00:21 +00:00
|
|
|
error_msg_and_die("Unknown mode: %s", *argv);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
/* Set the umask for this process so it doesn't
|
|
|
|
* screw up whatever the user just entered. */
|
|
|
|
umask(0);
|
|
|
|
i = TRUE;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
parentFlag = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
argc--;
|
|
|
|
argv++;
|
1999-11-19 02:38:58 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
if (argc < 1) {
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
while (argc > 0) {
|
|
|
|
int status;
|
|
|
|
struct stat statBuf;
|
2000-04-28 00:18:56 +00:00
|
|
|
char buf[BUFSIZ + 1];
|
1999-10-13 21:12:06 +00:00
|
|
|
|
2000-04-28 00:18:56 +00:00
|
|
|
if (strlen(*argv) > BUFSIZ - 1) {
|
2001-01-31 17:35:02 +00:00
|
|
|
error_msg_and_die(name_too_long);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
strcpy(buf, *argv);
|
|
|
|
status = stat(buf, &statBuf);
|
|
|
|
if (parentFlag == FALSE && status != -1 && errno != ENOENT) {
|
2001-01-31 19:00:21 +00:00
|
|
|
error_msg_and_die("%s: File exists", buf);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
if (parentFlag == TRUE) {
|
|
|
|
strcat(buf, "/");
|
2000-12-07 19:56:48 +00:00
|
|
|
create_path(buf, mode);
|
2000-02-08 19:58:47 +00:00
|
|
|
} else {
|
|
|
|
if (mkdir(buf, mode) != 0 && parentFlag == FALSE) {
|
2001-01-31 17:35:02 +00:00
|
|
|
perror_msg_and_die(buf);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
}
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|