blob: b018ac1814284e9daa61301a80ad78912ddf1a4d [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenf6be9441999-10-13 21:12:06 +00002/*
3 * Mini mkdir implementation for busybox
4 *
Matt Kraaiceeff732001-06-21 19:41:37 +00005 * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
Eric Andersenf6be9441999-10-13 21:12:06 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Manuel Novoa III cad53642003-03-19 09:13:01 +000023/* BB_AUDIT SUSv3 compliant */
24/* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */
Matt Kraaiceeff732001-06-21 19:41:37 +000025
Manuel Novoa III cad53642003-03-19 09:13:01 +000026/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
27 *
28 * Fixed broken permission setting when -p was used; especially in
29 * conjunction with -m.
30 */
31
32#include <stdlib.h>
33#include <unistd.h>
Eric Andersen3570a342000-09-25 21:45:58 +000034#include "busybox.h"
Erik Andersenfac10d72000-02-07 05:29:42 +000035
Matt Kraaiceeff732001-06-21 19:41:37 +000036extern int mkdir_main (int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000037{
Manuel Novoa III cad53642003-03-19 09:13:01 +000038 mode_t mode = (mode_t)(-1);
39 int status = EXIT_SUCCESS;
Matt Kraaiceeff732001-06-21 19:41:37 +000040 int flags = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +000041 int opt;
Eric Andersencc8ed391999-10-05 16:24:54 +000042
Manuel Novoa III cad53642003-03-19 09:13:01 +000043 while ((opt = getopt (argc, argv, "m:p")) > 0) {
44 if (opt == 'm') {
Matt Kraaiceeff732001-06-21 19:41:37 +000045 mode = 0777;
Manuel Novoa III cad53642003-03-19 09:13:01 +000046 if (!bb_parse_mode (optarg, &mode)) {
47 bb_error_msg_and_die ("invalid mode `%s'", optarg);
Glenn L McGrath822e7fd2002-11-24 22:48:20 +000048 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 } else if (opt == 'p') {
Matt Kraaiceeff732001-06-21 19:41:37 +000050 flags |= FILEUTILS_RECUR;
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 } else {
52 bb_show_usage();
Eric Andersenfa0540f1999-10-22 18:18:31 +000053 }
Eric Andersenfa0540f1999-10-22 18:18:31 +000054 }
Eric Andersenf6be9441999-10-13 21:12:06 +000055
Manuel Novoa III cad53642003-03-19 09:13:01 +000056 if (optind == argc) {
57 bb_show_usage();
Glenn L McGrath924f93e2002-09-28 08:32:14 +000058 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000059
Manuel Novoa III cad53642003-03-19 09:13:01 +000060 argv += optind;
61
62 do {
63 if (bb_make_directory(*argv, mode, flags)) {
64 status = EXIT_FAILURE;
65 }
66 } while (*++argv);
67
68 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +000069}