111 lines
2.5 KiB
C
111 lines
2.5 KiB
C
/*
|
|
|
|
Copyright (c) 1988 X Consortium
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
a copy of this software and associated documentation files (the
|
|
"Software"), to deal in the Software without restriction, including
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included
|
|
in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
Except as contained in this notice, the name of the X Consortium shall
|
|
not be used in advertising or otherwise to promote the sale, use or
|
|
other dealings in this Software without prior written authorization
|
|
from the X Consortium.
|
|
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <X11/Xos.h>
|
|
#include <sys/types.h>
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "os.h"
|
|
|
|
/* detach */
|
|
void
|
|
BecomeDaemon (void)
|
|
{
|
|
/* If our C library has the daemon() function, just use it. */
|
|
#ifdef HAVE_DAEMON
|
|
if (daemon (0, 0) < 0) {
|
|
/* error */
|
|
FatalError("daemon() failed, %s\n", strerror(errno));
|
|
}
|
|
|
|
/* Open/reopen log file on stderr */
|
|
#ifdef USE_SYSLOG
|
|
if (!UseSyslog)
|
|
#endif
|
|
CloseErrors();
|
|
InitErrors();
|
|
#else
|
|
|
|
switch (fork()) {
|
|
case -1:
|
|
/* error */
|
|
FatalError("daemon fork failed, %s\n", strerror(errno));
|
|
break;
|
|
case 0:
|
|
/* child */
|
|
break;
|
|
default:
|
|
/* parent */
|
|
exit(0);
|
|
}
|
|
|
|
if (setsid() == -1)
|
|
FatalError("setting session id for daemon failed: %s\n",
|
|
strerror(errno));
|
|
|
|
chdir("/");
|
|
|
|
DetachStdio();
|
|
#endif /* HAVE_DAEMON */
|
|
}
|
|
|
|
void
|
|
DetachStdio (void)
|
|
{
|
|
int nullfd;
|
|
close (0);
|
|
close (1);
|
|
close (2);
|
|
|
|
/*
|
|
* Set up the standard file descriptors.
|
|
*/
|
|
nullfd = open ("/dev/null", O_RDWR);
|
|
if (nullfd != 0) {
|
|
dup2(nullfd, 0);
|
|
close(nullfd);
|
|
}
|
|
dup2 (0, 1);
|
|
|
|
#ifdef USE_SYSLOG
|
|
if (UseSyslog) {
|
|
dup2 (0, 2);
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
/* open/reopen log file on stderr */
|
|
CloseErrors();
|
|
InitErrors();
|
|
}
|