1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
/*
* Replacement for a missing daemon.
*
* Provides the same functionality as the library function daemon for those
* systems that don't have it.
*
* The canonical version of this file is maintained in the rra-c-util package,
* which can be found at <http://www.eyrie.org/~eagle/software/rra-c-util/>.
*
* Written by Russ Allbery <eagle@eyrie.org>
*
* The authors hereby relinquish any claim to any copyright that they may have
* in this work, whether granted under contract or by operation of law or
* international treaty, and hereby commit to the public, at large, that they
* shall not, at any time in the future, seek to enforce any copyright in this
* work against any person or entity, or prevent any person or entity from
* copying, publishing, distributing or creating derivative works of this
* work.
*/
#include <config.h>
#include <portable/system.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
/*
* If we're running the test suite, rename daemon to avoid conflicts with the
* system version. #undef it first because some systems may define it to
* another name.
*/
#if TESTING
# undef daemon
# define daemon test_daemon
int test_daemon(int, int);
#endif
int
daemon(int nochdir, int noclose)
{
int status, fd;
/*
* Fork and exit in the parent to disassociate from the current process
* group and become the leader of a new process group.
*/
status = fork();
if (status < 0)
return -1;
else if (status > 0)
_exit(0);
/*
* setsid() should take care of disassociating from the controlling
* terminal, and FreeBSD at least doesn't like TIOCNOTTY if you don't
* already have a controlling terminal. So only use the older TIOCNOTTY
* method if setsid() isn't available.
*/
#if HAVE_SETSID
if (setsid() < 0)
return -1;
#elif defined(TIOCNOTTY)
fd = open("/dev/tty", O_RDWR);
if (fd >= 0) {
if (ioctl(fd, TIOCNOTTY, NULL) < 0) {
status = errno;
close(fd);
errno = status;
return -1;
}
close(fd);
}
#endif /* defined(TIOCNOTTY) */
if (!nochdir && chdir("/") < 0)
return -1;
if (!noclose) {
fd = open("/dev/null", O_RDWR, 0);
if (fd < 0)
return -1;
else {
if (dup2(fd, STDIN_FILENO) < 0)
return -1;
if (dup2(fd, STDOUT_FILENO) < 0)
return -1;
if (dup2(fd, STDERR_FILENO) < 0)
return -1;
if (fd > 2)
close(fd);
}
}
return 0;
}
|