mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
udevd: don't sanitize fd 0,1,2
Kay said: 'it is from ancient times, when we started udevd from the kernel's usermodhelper which had no fd 0,1,2'.
This commit is contained in:
parent
d38e01dc96
commit
f6fd40d16a
@ -1628,23 +1628,6 @@ int main(int argc, char *argv[]) {
|
||||
log_debug("set children_max to %u", arg_children_max);
|
||||
}
|
||||
|
||||
/* before opening new files, make sure std{in,out,err} fds are in a sane state */
|
||||
if (arg_daemonize) {
|
||||
int fd;
|
||||
|
||||
fd = open("/dev/null", O_RDWR);
|
||||
if (fd < 0)
|
||||
log_error("cannot open /dev/null");
|
||||
else {
|
||||
if (write(STDOUT_FILENO, 0, 0) < 0)
|
||||
dup2(fd, STDOUT_FILENO);
|
||||
if (write(STDERR_FILENO, 0, 0) < 0)
|
||||
dup2(fd, STDERR_FILENO);
|
||||
if (fd > STDERR_FILENO)
|
||||
close(fd);
|
||||
}
|
||||
}
|
||||
|
||||
/* set umask before creating any file/directory */
|
||||
r = chdir("/");
|
||||
if (r < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user