2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
|
|
|
int ngx_daemon(ngx_log_t *log)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
switch (fork()) {
|
|
|
|
case -1:
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "fork() failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setsid() == -1) {
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "setsid() failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
umask(0);
|
|
|
|
|
|
|
|
fd = open("/dev/null", O_RDWR);
|
|
|
|
if (fd == -1) {
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "open(\"/dev/null\") failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dup2(fd, STDIN_FILENO) == -1) {
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "dup2(STDIN) failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dup2(fd, STDOUT_FILENO) == -1) {
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "dup2(STDOUT) failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2003-06-16 02:32:13 +08:00
|
|
|
#if 0
|
2003-05-12 23:52:24 +08:00
|
|
|
if (dup2(fd, STDERR_FILENO) == -1) {
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "dup2(STDERR) failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2003-06-16 02:32:13 +08:00
|
|
|
#endif
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
if (fd > STDERR_FILENO) {
|
|
|
|
if (close(fd) == -1) {
|
2003-05-20 23:37:55 +08:00
|
|
|
ngx_log_error(NGX_LOG_EMERG, log, errno, "close() failed");
|
2003-05-12 23:52:24 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|