Big cleanup in config help and description
[oweals/busybox.git] / coreutils / mkdir.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mkdir implementation for busybox
4  *
5  * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8  */
9 /* Mar 16, 2003      Manuel Novoa III   (mjn3@codepoet.org)
10  *
11  * Fixed broken permission setting when -p was used; especially in
12  * conjunction with -m.
13  */
14 /* Nov 28, 2006      Yoshinori Sato <ysato@users.sourceforge.jp>: Add SELinux Support.
15  */
16 //config:config MKDIR
17 //config:       bool "mkdir"
18 //config:       default y
19 //config:       help
20 //config:         mkdir is used to create directories with the specified names.
21 //config:
22 //config:config FEATURE_MKDIR_LONG_OPTIONS
23 //config:       bool "Enable long options"
24 //config:       default y
25 //config:       depends on MKDIR && LONG_OPTS
26
27 //applet:IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, BB_DIR_BIN, BB_SUID_DROP, mkdir))
28
29 //kbuild:lib-$(CONFIG_MKDIR) += mkdir.o
30
31 /* BB_AUDIT SUSv3 compliant */
32 /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */
33
34 //usage:#define mkdir_trivial_usage
35 //usage:       "[OPTIONS] DIRECTORY..."
36 //usage:#define mkdir_full_usage "\n\n"
37 //usage:       "Create DIRECTORY\n"
38 //usage:     "\n        -m MODE Mode"
39 //usage:     "\n        -p      No error if exists; make parent directories as needed"
40 //usage:        IF_SELINUX(
41 //usage:     "\n        -Z      Set security context"
42 //usage:        )
43 //usage:
44 //usage:#define mkdir_example_usage
45 //usage:       "$ mkdir /tmp/foo\n"
46 //usage:       "$ mkdir /tmp/foo\n"
47 //usage:       "/tmp/foo: File exists\n"
48 //usage:       "$ mkdir /tmp/foo/bar/baz\n"
49 //usage:       "/tmp/foo/bar/baz: No such file or directory\n"
50 //usage:       "$ mkdir -p /tmp/foo/bar/baz\n"
51
52 #include "libbb.h"
53
54 /* This is a NOFORK applet. Be very careful! */
55
56 #if ENABLE_FEATURE_MKDIR_LONG_OPTIONS
57 static const char mkdir_longopts[] ALIGN1 =
58         "mode\0"    Required_argument "m"
59         "parents\0" No_argument       "p"
60 #if ENABLE_SELINUX
61         "context\0" Required_argument "Z"
62 #endif
63 #if ENABLE_FEATURE_VERBOSE
64         "verbose\0" No_argument       "v"
65 #endif
66         ;
67 #endif
68
69 int mkdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
70 int mkdir_main(int argc UNUSED_PARAM, char **argv)
71 {
72         long mode = -1;
73         int status = EXIT_SUCCESS;
74         int flags = 0;
75         unsigned opt;
76         char *smode;
77 #if ENABLE_SELINUX
78         security_context_t scontext;
79 #endif
80
81 #if ENABLE_FEATURE_MKDIR_LONG_OPTIONS
82         applet_long_options = mkdir_longopts;
83 #endif
84         opt = getopt32(argv, "m:pv" IF_SELINUX("Z:"), &smode IF_SELINUX(,&scontext));
85         if (opt & 1) {
86                 mode_t mmode = bb_parse_mode(smode, 0777);
87                 if (mmode == (mode_t)-1) {
88                         bb_error_msg_and_die("invalid mode '%s'", smode);
89                 }
90                 mode = mmode;
91         }
92         if (opt & 2)
93                 flags |= FILEUTILS_RECUR;
94         if ((opt & 4) && FILEUTILS_VERBOSE)
95                 flags |= FILEUTILS_VERBOSE;
96 #if ENABLE_SELINUX
97         if (opt & 8) {
98                 selinux_or_die();
99                 setfscreatecon_or_die(scontext);
100         }
101 #endif
102
103         argv += optind;
104         if (!argv[0])
105                 bb_show_usage();
106
107         do {
108                 if (bb_make_directory(*argv, mode, flags)) {
109                         status = EXIT_FAILURE;
110                 }
111         } while (*++argv);
112
113         return status;
114 }