Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reopen STDIN and STDOUT as dev/null #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Maxime2
Copy link
Contributor

@Maxime2 Maxime2 commented Jul 30, 2015

It is better to reopen STDIN and STDOUT as well as they may be used in a third-party application using ccan.

@Maxime2
Copy link
Contributor Author

Maxime2 commented Jul 31, 2015

But STDIN is read only while STDOUT and STDERR are write only.

@rustyrussell
Copy link
Owner

Good point! A couple of typos to fix is all it needs then!

close(0);
if (dup2(fd, STDIN_FILENO) != STDIN_FILENO)
return false;
if (fd > STDERR_FILENO) close(fd);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be "if (fd == STDIN_FILENO)" right?

@Maxime2
Copy link
Contributor Author

Maxime2 commented Aug 3, 2015

Nope. If the new fd is already open, dup2() would close it before reusing. If the old fd is equal to the new fd dup2() does nothing. So there is no point to close fd if it is below or equal to STDERR_FILENO.

@rustyrussell
Copy link
Owner

Maxim Zakharov [email protected] writes:

Nope. If the new fd is already open, dup2() would close it before reusing. If the old fd is equal to the new fd dup2() does nothing. So there is no point to close fd if it is below or equal to STDERR_FILENO.

Well, if you're assuming the continuity of stdin, stdout, and stderr,
then how about this:

    if (open("/dev/null", O_RDONLY) != STDIN_FILENO)
            return false;
    /* Save some kernel memory by dup() for stdout & stderr */
    if (dup(open("/dev/null", O_WRONLY)) != STDERR_FILENO)
            return false;

Cheers,
Rusty.

@Maxime2
Copy link
Contributor Author

Maxime2 commented Aug 3, 2015

It looks very good, but perhaps we need to add a comment that this code is rely on unix's property to always use lowest unused file descriptor. As I remember, Windows do not state such guaranty.

@rustyrussell
Copy link
Owner

Maxim Zakharov [email protected] writes:

It looks very good, but perhaps we need to add a comment that this code is rely on unix's property to always use lowest unused file descriptor. As I remember, Windows do not state such guaranty.

Hmm, does this code even work on Windows at all? If so, might be nice
to do it the long way, but it'll need a comment explaining the reason
for the > test instead of == :)

Thanks,
Rusty.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants