From: Jim Meyering Date: Sat, 30 Sep 2000 08:53:10 +0000 (+0000) Subject: (main): Don't set the umask to 0 and hand-apply X-Git-Tag: TEXTUTILS-2_0_8~94 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=beebc6916806d148b3e38a4f61d4455fd6486aa2;p=thirdparty%2Fcoreutils.git (main): Don't set the umask to 0 and hand-apply the previously-set umask unconditionally. Do that only when a MODE has been specified. Otherwise, call mknod with the full creation mask (0777 or 0666) and let the kernel apply the umask. The difference shows up only on file systems with ACL support when the containing directory has a default ACL. Patch by Andreas Gruenbacher. (main): Rename local `symbolic_mode' to `specified_mode'. Also, when MODE is specified, call chmod to ensure that the permission bits are set as specified even when the containing directory has a default ACL. --- diff --git a/src/mknod.c b/src/mknod.c index c17b9fdda4..19167fa413 100644 --- a/src/mknod.c +++ b/src/mknod.c @@ -117,10 +117,10 @@ main (int argc, char **argv) } } - newmode = ((S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) - & ~ umask (0)); + newmode = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); if (symbolic_mode) { + newmode &= ~ umask (0); change = mode_compile (symbolic_mode, 0); if (change == MODE_INVALID) error (1, 0, _("invalid mode")); @@ -223,5 +223,16 @@ major and minor device numbers may not be specified for fifo files")); usage (1); } + /* Perform an explicit chmod to ensure the file mode permission bits + are set as specified. This extra step is necessary in some cases + when the containing directory has a default ACL. */ + + if (symbolic_mode) + { + if (chmod (argv[optind], newmode)) + error (0, errno, _("cannot set permissions of `%s'"), + quote (argv[optind])); + } + exit (0); }