chiark / gitweb /
plugins/tracklength-gstreamer.c: Rewrite to use `GstDiscoverer'.
[disorder] / server / daemonize.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2005, 2007-2009 Richard Kettlewell
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file server/daemonize.c
19  * @brief Go into background
20  */
21
22 #include "disorder-server.h"
23
24 /** @brief Go into background
25  * @param tag Message tag, or NULL
26  * @param fac Logging facility
27  * @param pidfile Where to store PID, or NULL
28  *
29  * Become a daemon.  stdout/stderr are lost and DisOrder's logging is
30  * redirected to syslog.  It is assumed that there are no FDs beyond 2
31  * that need closing.
32  */
33 void daemonize(const char *tag, int fac, const char *pidfile) {
34   pid_t pid, r;
35   int w, dn;
36   FILE *fp;
37
38   D(("daemonize tag=%s fac=%d pidfile=%s",
39      tag ? tag : "NULL", fac, pidfile ? pidfile : "NULL"));
40   /* make sure that FDs 0, 1, 2 all at least exist (and get a
41    * /dev/null) */
42   do {
43     if((dn = open("/dev/null", O_RDWR, 0)) < 0)
44       disorder_fatal(errno, "error opening /dev/null");
45   } while(dn < 3);
46   pid = xfork();
47   if(pid) {
48     /* Parent process.  Wait for the first child to finish, then
49      * return to the caller. */
50     exitfn = _exit;
51     while((r = waitpid(pid, &w, 0)) == -1 && errno == EINTR)
52       ;
53     if(r < 0) disorder_fatal(errno, "error calling waitpid");
54     if(w)
55       disorder_error(0, "subprocess exited with wait status %#x", (unsigned)w);
56     _exit(0);
57   }
58   /* First child process.  This will be the session leader, and will
59    * be transient. */
60   D(("first child pid=%lu", (unsigned long)getpid()));
61   if(setsid() < 0)
62     disorder_fatal(errno, "error calling setsid");
63   /* we'll log to syslog */
64   openlog(tag, LOG_PID, fac);
65   log_default = &log_syslog;
66   /* stdin/out/err we lose */
67   xdup2(dn, 0);
68   xdup2(dn, 1);
69   xdup2(dn, 2);
70   xclose(dn);
71   pid = xfork();
72   if(pid)
73     _exit(0);
74   /* second child.  Write a pidfile if someone wanted it. */
75   D(("second child pid=%lu", (unsigned long)getpid()));
76   if(pidfile) {
77     if(!(fp = fopen(pidfile, "w"))
78        || fprintf(fp, "%lu\n", (unsigned long)getpid()) < 0
79        || fclose(fp) < 0)
80       disorder_fatal(errno, "error creating %s", pidfile);
81   }
82 }
83
84 /*
85 Local Variables:
86 c-basic-offset:2
87 comment-column:40
88 End:
89 */