1 /* vi: set sw=4 ts=4: */
3 * parse_mode implementation for busybox
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10 /* Mar 5, 2003 Manuel Novoa III
12 * This is the main work function for the 'mkdir' applet. As such, it
13 * strives to be SUSv3 compliant in it's behaviour when recursively
14 * making missing parent dirs, and in it's mode setting of the final
17 * To recursively build all missing intermediate directories, make
18 * sure that (flags & FILEUTILS_RECUR) is non-zero. Newly created
19 * intermediate directories will have at least u+wx perms.
21 * To set specific permissions on 'path', pass the appropriate 'mode'
22 * val. Otherwise, pass -1 to get default permissions.
27 /* This function is used from NOFORK applets. It must not allocate anything */
29 int FAST_FUNC bb_make_directory(char *path, long mode, int flags)
38 umask(mask & ~0300); /* Ensure intermediate dirs are wx */
43 if (flags & FILEUTILS_RECUR) { /* Get the parent. */
44 /* Bypass leading non-'/'s and then subsequent '/'s. */
50 c = *s; /* Save the current char */
51 *s = '\0'; /* and replace it with nul. */
58 if (!c) /* Last component uses orig umask */
61 if (mkdir(path, 0777) < 0) {
62 /* If we failed for any other reason than the directory
63 * already exists, output a diagnostic and return -1. */
65 || !(flags & FILEUTILS_RECUR)
66 || ((stat(path, &st) < 0) || !S_ISDIR(st.st_mode))
72 /* Since the directory exists, don't attempt to change
73 * permissions if it was the full target. Note that
74 * this is not an error condition. */
82 /* Done. If necessary, update perms on the newly
83 * created directory. Failure to update here _is_
85 if ((mode != -1) && (chmod(path, mode) < 0)) {
86 fail_msg = "set permissions of";
92 /* Remove any inserted nul from the path (recursive mode). */
96 bb_perror_msg("cannot %s directory '%s'", fail_msg, path);