blob: 7f4f12cbdb771d677bf0ece26abd77bd7636b8de [file] [log] [blame]
Harald Welteb6cb0232010-08-25 19:24:26 +02001/* 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>
Harald Welteb6cb0232010-08-25 19:24:26 +020026#include <sys/stat.h>
27
28int 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 */
Sylvain Munautaf5ee342010-09-17 14:38:17 +020065/* since C89/C99 says stderr is a macro, we can safely do this! */
66#ifdef stderr
Harald Welteb6cb0232010-08-25 19:24:26 +020067 freopen("/dev/null", "r", stdin);
68 freopen("/dev/null", "w", stdout);
69 freopen("/dev/null", "w", stderr);
Sylvain Munautaf5ee342010-09-17 14:38:17 +020070#endif
Harald Welteb6cb0232010-08-25 19:24:26 +020071
72 return 0;
73}