Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
1fb42bf9
Commit
1fb42bf9
authored
Jan 11, 2000
by
Kurt Zeilenga
Browse files
Revamp detach code to ensure stdin, stdout, stderr get closed.
parent
d61873e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblutil/detach.c
View file @
1fb42bf9
...
...
@@ -72,21 +72,35 @@ lutil_detach( int debug, int do_close )
break
;
}
if
(
do_close
)
for
(
i
=
3
;
i
<
nbits
;
i
++
)
if
(
do_close
)
{
if
(
(
sd
=
open
(
"/dev/null"
,
O_RDWR
))
!=
-
1
)
{
perror
(
"/dev/null"
);
}
for
(
i
=
0
;
i
<
nbits
;
i
++
)
{
if
(
i
==
sd
)
continue
;
close
(
i
);
(
void
)
chdir
(
"/"
);
if
(
i
==
STDIN_FILENO
||
i
==
STDOUT_FILENO
||
i
==
STDERR_FILENO
)
{
/* attach /dev/null */
dup2
(
sd
,
i
);
}
}
if
(
(
sd
=
open
(
"/dev/null"
,
O_RDWR
))
==
-
1
)
{
perror
(
"/dev/null"
);
exit
(
EXIT_FAILURE
);
if
(
sd
!=
STDIN_FILENO
&&
sd
!=
STDOUT_FILENO
&&
sd
!=
STDERR_FILENO
)
{
/* unless stdin, stdout, or stderr, close /dev/null */
close
(
sd
);
}
}
for
(
i
=
0
;
i
<
3
;
i
++
)
if
(
sd
!=
i
)
(
void
)
dup2
(
sd
,
i
);
if
(
sd
>
2
)
close
(
sd
);
(
void
)
chdir
(
"/"
);
#ifdef HAVE_SETSID
(
void
)
setsid
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment