blob: c473555bb5d30e90eb5fc60a0741b3a814b308a5 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Daemonize routine
3 * Copyright (C) 1997, 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23#include <zebra.h>
Paul Jakma30a22312008-08-15 14:05:22 +010024#include <log.h>
paul718e3742002-12-13 20:15:29 +000025
26#ifndef HAVE_DAEMON
27
28/* Daemonize myself. */
29int
30daemon (int nochdir, int noclose)
31{
32 pid_t pid;
33
34 pid = fork ();
35
36 /* In case of fork is error. */
37 if (pid < 0)
38 {
ajs6a52d0d2005-01-30 18:49:28 +000039 zlog_err ("fork failed: %s", safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +000040 return -1;
41 }
42
43 /* In case of this is parent process. */
44 if (pid != 0)
45 exit (0);
46
47 /* Become session leader and get pid. */
48 pid = setsid();
49
paul31fcdd32004-04-21 11:00:43 +000050 if (pid == -1)
paul718e3742002-12-13 20:15:29 +000051 {
ajs6a52d0d2005-01-30 18:49:28 +000052 zlog_err ("setsid failed: %s", safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +000053 return -1;
54 }
55
56 /* Change directory to root. */
57 if (! nochdir)
58 chdir ("/");
59
60 /* File descriptor close. */
61 if (! noclose)
62 {
63 int fd;
64
65 fd = open ("/dev/null", O_RDWR, 0);
66 if (fd != -1)
67 {
68 dup2 (fd, STDIN_FILENO);
69 dup2 (fd, STDOUT_FILENO);
70 dup2 (fd, STDERR_FILENO);
71 if (fd > 2)
72 close (fd);
73 }
74 }
75
76 umask (0027);
77
78 return 0;
79}
80
81#endif /* HAVE_DAEMON */