2004-08-24 01:39:22 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-08-24 01:39:22 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "orte_config.h"
|
2004-10-20 05:03:09 +04:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2004-08-24 01:39:22 +04:00
|
|
|
#include <sys/types.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#endif
|
2004-08-24 01:39:22 +04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2004-08-24 01:39:22 +04:00
|
|
|
#include <unistd.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#endif
|
2004-08-24 12:44:37 +04:00
|
|
|
#include <stdlib.h>
|
2004-08-24 01:39:22 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "include/orte_constants.h"
|
2004-08-24 01:39:22 +04:00
|
|
|
#include "util/daemon_init.h"
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
int orte_daemon_init(char *working_dir)
|
2004-08-24 01:39:22 +04:00
|
|
|
{
|
2004-10-22 20:06:05 +04:00
|
|
|
#ifndef WIN32
|
|
|
|
/* it seems that there is an entirely different way to write daemons in
|
|
|
|
WINDOWS land. Firstly, they are called services and the way to
|
|
|
|
go about it is to get a service handle annd then call CreateService()
|
|
|
|
So, I am guessing that this piece of code is called only by UNIX versions */
|
|
|
|
|
2004-08-24 01:39:22 +04:00
|
|
|
pid_t pid;
|
2005-05-13 01:44:23 +04:00
|
|
|
int fd;
|
2004-08-24 01:39:22 +04:00
|
|
|
|
|
|
|
if ((pid = fork()) < 0) {
|
2005-05-13 01:44:23 +04:00
|
|
|
return ORTE_ERROR;
|
2004-08-24 01:39:22 +04:00
|
|
|
} else if (pid != 0) {
|
2005-05-13 01:44:23 +04:00
|
|
|
exit(0); /* parent goes bye-bye */
|
2004-08-24 01:39:22 +04:00
|
|
|
}
|
2005-05-13 01:44:23 +04:00
|
|
|
|
2004-08-24 01:39:22 +04:00
|
|
|
/* child continues */
|
|
|
|
setsid(); /* become session leader */
|
|
|
|
|
|
|
|
if (NULL != working_dir) {
|
2005-05-13 01:44:23 +04:00
|
|
|
chdir(working_dir); /* change working directory */
|
2004-08-24 01:39:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
umask(0); /* clear file mode creation mask */
|
2005-05-13 01:44:23 +04:00
|
|
|
|
|
|
|
/* connect input to /dev/null */
|
|
|
|
fd = open("/dev/null", O_RDONLY);
|
|
|
|
if(fd > STDIN_FILENO) {
|
|
|
|
dup2(fd, STDIN_FILENO);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* connect outputs to /dev/null */
|
|
|
|
fd = open("/dev/null", O_RDWR|O_CREAT|O_TRUNC, 0666);
|
|
|
|
if (fd >= 0) {
|
|
|
|
dup2(fd, STDOUT_FILENO);
|
|
|
|
dup2(fd, STDERR_FILENO);
|
|
|
|
/* just to be safe, make sure we aren't trying
|
|
|
|
* to close stdout or stderr! since we dup'd both
|
|
|
|
* of them to the same fd, we can't just close it
|
|
|
|
* since one of the two would still be open and
|
|
|
|
* someone could attempt to use it.
|
|
|
|
*/
|
|
|
|
if(fd != STDOUT_FILENO && fd != STDERR_FILENO) {
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return ORTE_ERR_FATAL;
|
|
|
|
}
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
return ORTE_SUCCESS;
|
2004-10-22 20:06:05 +04:00
|
|
|
#else
|
|
|
|
printf ("This function has not been implemented in windows yet, file %s line %d\n", __FILE__, __LINE__);
|
|
|
|
abort();
|
|
|
|
#endif
|
2004-08-24 01:39:22 +04:00
|
|
|
}
|