Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
6c0f5fc6
Commit
6c0f5fc6
authored
Dec 30, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
listen: moved redirect_stdin() to daemon.c
redirect_stdin() is a daemonization function, and disconnecting from the standard input is always a good idea for MPD.
parent
67148081
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
29 deletions
+34
-29
daemon.c
src/daemon.c
+26
-0
daemon.h
src/daemon.h
+6
-0
listen.c
src/listen.c
+0
-29
main.c
src/main.c
+2
-0
No files found.
src/daemon.c
View file @
6c0f5fc6
...
...
@@ -24,6 +24,32 @@
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
void
daemonize_close_stdin
(
void
)
{
int
fd
,
st
;
struct
stat
ss
;
if
((
st
=
fstat
(
STDIN_FILENO
,
&
ss
))
<
0
)
{
if
((
fd
=
open
(
"/dev/null"
,
O_RDONLY
)
>
0
))
{
g_debug
(
"stdin closed, and could not open /dev/null "
"as fd=0, some external library bugs "
"may be exposed..."
);
close
(
fd
);
}
return
;
}
if
(
!
isatty
(
STDIN_FILENO
))
return
;
if
((
fd
=
open
(
"/dev/null"
,
O_RDONLY
))
<
0
)
g_error
(
"failed to open /dev/null %s"
,
strerror
(
errno
));
if
(
dup2
(
fd
,
STDIN_FILENO
)
<
0
)
g_error
(
"dup2 stdin: %s"
,
strerror
(
errno
));
}
void
daemonize
(
Options
*
options
)
...
...
src/daemon.h
View file @
6c0f5fc6
...
...
@@ -21,6 +21,12 @@
#include "cmdline.h"
/**
* Close stdin (fd 0) and re-open it as /dev/null.
*/
void
daemonize_close_stdin
(
void
);
void
daemonize
(
Options
*
options
);
...
...
src/listen.c
View file @
6c0f5fc6
...
...
@@ -49,34 +49,6 @@ static int *listenSockets;
static
int
numberOfListenSockets
;
int
boundPort
;
/*
* redirect stdin to /dev/null to work around a libao bug
* there are likely other bugs in other libraries (and even our code!)
* that check for fd > 0, so it's easiest to just keep
* fd = 0 == /dev/null for now...
*/
static
void
redirect_stdin
(
void
)
{
int
fd
,
st
;
struct
stat
ss
;
if
((
st
=
fstat
(
STDIN_FILENO
,
&
ss
))
<
0
)
{
if
((
fd
=
open
(
"/dev/null"
,
O_RDONLY
)
>
0
))
{
g_debug
(
"stdin closed, and could not open /dev/null "
"as fd=0, some external library bugs "
"may be exposed..."
);
close
(
fd
);
}
return
;
}
if
(
!
isatty
(
STDIN_FILENO
))
return
;
if
((
fd
=
open
(
"/dev/null"
,
O_RDONLY
))
<
0
)
g_error
(
"failed to open /dev/null %s"
,
strerror
(
errno
));
if
(
dup2
(
fd
,
STDIN_FILENO
)
<
0
)
g_error
(
"dup2 stdin: %s"
,
strerror
(
errno
));
}
static
int
establishListen
(
int
pf
,
const
struct
sockaddr
*
addrp
,
socklen_t
addrlen
)
{
...
...
@@ -245,7 +217,6 @@ void listenOnPort(void)
boundPort
=
port
;
redirect_stdin
();
do
{
parseListenConfigParam
(
port
,
param
);
}
while
((
param
=
getNextConfigParam
(
CONF_BIND_TO_ADDRESS
,
param
)));
...
...
src/main.c
View file @
6c0f5fc6
...
...
@@ -186,6 +186,8 @@ int main(int argc, char *argv[])
clock_t
start
;
GTimer
*
save_state_timer
;
daemonize_close_stdin
();
#ifdef HAVE_LOCALE
/* initialize locale */
setlocale
(
LC_CTYPE
,
""
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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