2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-30 22:05:46 +00:00

Add fallback to PERM_IOLOG when making the final componenet of iolog_dir.

This commit is contained in:
Todd C. Miller
2017-03-22 15:55:16 -06:00
parent b3af85ddc8
commit 31b16fd3e9

View File

@@ -125,9 +125,15 @@ io_mkdirs(char *path)
/* Create final path component. */
sudo_debug_printf(SUDO_DEBUG_DEBUG|SUDO_DEBUG_LINENO,
"mkdir %s, mode 0%o", path, (unsigned int) iolog_dirmode);
if (mkdir(path, iolog_dirmode) != 0 && errno != EEXIST) {
sudo_warn(U_("unable to mkdir %s"), path);
ok = false;
ok = mkdir(path, iolog_dirmode) == 0 || errno == EEXIST;
if (!ok) {
if (!uid_changed) {
/* Try again as the I/O log owner (for NFS). */
uid_changed = set_perms(PERM_IOLOG);
ok = mkdir(path, iolog_dirmode) == 0 || errno == EEXIST;
}
if (!ok)
sudo_warn(U_("unable to mkdir %s"), path);
} else {
ignore_result(chown(path, iolog_uid, iolog_gid));
}