app: Introduce some routines to help with application startup
[osmocom-bb.git] / src / process.c
1 /* Process handling support code */
2
3 /* (C) 2010 by Harald Welte <laforge@gnumonks.org>
4  * All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <sys/stat.h>
27
28 int osmo_daemonize(void)
29 {
30         int rc;
31         pid_t pid, sid;
32
33         /* Check if parent PID == init, in which case we are already a daemon */
34         if (getppid() == 1)
35                 return -EEXIST;
36
37         /* Fork from the parent process */
38         pid = fork();
39         if (pid < 0) {
40                 /* some error happened */
41                 return pid;
42         }
43
44         if (pid > 0) {
45                 /* if we have received a positive PID, then we are the parent
46                  * and can exit */
47                 exit(0);
48         }
49
50         /* FIXME: do we really want this? */
51         umask(0);
52
53         /* Create a new session and set process group ID */
54         sid = setsid();
55         if (sid < 0)
56                 return sid;
57
58         /* Change to the /tmp directory, which prevents the CWD from being locked
59          * and unable to remove it */
60         rc = chdir("/tmp");
61         if (rc < 0)
62                 return rc;
63
64         /* Redirect stdio to /dev/null */
65 /* since C89/C99 says stderr is a macro, we can safely do this! */
66 #ifdef stderr
67         freopen("/dev/null", "r", stdin);
68         freopen("/dev/null", "w", stdout);
69         freopen("/dev/null", "w", stderr);
70 #endif
71
72         return 0;
73 }