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
|
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifndef S_SPLINT_S
#include <unistd.h>
#endif /* S_SPLINT_S */
#include "gpsd_config.h"
#ifndef HAVE_DAEMON
#if defined (HAVE_PATH_H)
#include <paths.h>
#else
#if !defined (_PATH_DEVNULL)
#define _PATH_DEVNULL "/dev/null"
#endif
#endif
int daemon(int nochdir, int noclose)
/* compatible with the daemon(3) found on Linuxes and BSDs */
{
int fd;
/*@ -type @*//* weirdly, splint 3.1.2 is confused by fork() */
switch (fork()) {
case -1:
return -1;
case 0: /* child side */
break;
default: /* parent side */
exit(EXIT_SUCCESS);
}
/*@ +type @*/
if (setsid() == -1)
return -1;
if ((nochdir==0) && (chdir("/") == -1))
return -1;
/*@ -nullpass @*/
if ((noclose==0) && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
(void)dup2(fd, STDIN_FILENO);
(void)dup2(fd, STDOUT_FILENO);
(void)dup2(fd, STDERR_FILENO);
if (fd > 2)
(void)close(fd);
}
/*@ +nullpass @*/
/* coverity[leaked_handle] Intentional handle duplication */
return 0;
}
#endif /* HAVE_DAEMON */
// end
|