aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-02-06 17:59:32 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-02-06 17:59:32 +0100
commit5cdd120f0c6423a42fa2eec2311126142a9a49f0 (patch)
treeca688521c96d2cc58d4bf72ce486023741a8106e
parent0a90960f446ebaf062244afbc626546b14689e0a (diff)
downloadbusybox-w32-5cdd120f0c6423a42fa2eec2311126142a9a49f0.tar.gz
busybox-w32-5cdd120f0c6423a42fa2eec2311126142a9a49f0.tar.bz2
busybox-w32-5cdd120f0c6423a42fa2eec2311126142a9a49f0.zip
unzip: do not set directory mode to 0777
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882177 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--archival/unzip.c4
-rw-r--r--libbb/make_directory.c16
2 files changed, 13 insertions, 7 deletions
diff --git a/archival/unzip.c b/archival/unzip.c
index 653fdd10f..da4b2a544 100644
--- a/archival/unzip.c
+++ b/archival/unzip.c
@@ -336,7 +336,9 @@ static void unzip_create_leading_dirs(const char *fn)
336{ 336{
337 /* Create all leading directories */ 337 /* Create all leading directories */
338 char *name = xstrdup(fn); 338 char *name = xstrdup(fn);
339 if (bb_make_directory(dirname(name), 0777, FILEUTILS_RECUR)) { 339
340 /* mode of -1: set mode according to umask */
341 if (bb_make_directory(dirname(name), -1, FILEUTILS_RECUR)) {
340 xfunc_die(); /* bb_make_directory is noisy */ 342 xfunc_die(); /* bb_make_directory is noisy */
341 } 343 }
342 free(name); 344 free(name);
diff --git a/libbb/make_directory.c b/libbb/make_directory.c
index b9916d165..64736efbe 100644
--- a/libbb/make_directory.c
+++ b/libbb/make_directory.c
@@ -92,6 +92,7 @@ int FAST_FUNC bb_make_directory(char *path, long mode, int flags)
92 } 92 }
93 } 93 }
94 94
95 //bb_error_msg("mkdir '%s'", path);
95 if (mkdir(path, 0777) < 0) { 96 if (mkdir(path, 0777) < 0) {
96 /* If we failed for any other reason than the directory 97 /* If we failed for any other reason than the directory
97 * already exists, output a diagnostic and return -1 */ 98 * already exists, output a diagnostic and return -1 */
@@ -118,13 +119,16 @@ int FAST_FUNC bb_make_directory(char *path, long mode, int flags)
118 /* Done. If necessary, update perms on the newly 119 /* Done. If necessary, update perms on the newly
119 * created directory. Failure to update here _is_ 120 * created directory. Failure to update here _is_
120 * an error. */ 121 * an error. */
121 if ((mode != -1) && (chmod(path, mode) < 0)) { 122 if (mode != -1) {
122 fail_msg = "set permissions of"; 123 //bb_error_msg("chmod 0%03lo mkdir '%s'", mode, path);
123 if (flags & FILEUTILS_IGNORE_CHMOD_ERR) { 124 if (chmod(path, mode) < 0)) {
124 flags = 0; 125 fail_msg = "set permissions of";
125 goto print_err; 126 if (flags & FILEUTILS_IGNORE_CHMOD_ERR) {
127 flags = 0;
128 goto print_err;
129 }
130 break;
126 } 131 }
127 break;
128 } 132 }
129 goto ret0; 133 goto ret0;
130 } 134 }