Switch from LOOKUP() to lookup() for rtm_type (see bug #401 for details).
[jleu-quagga.git] / lib / daemon.c
blobe73a74f10d59528e5bc511daa75eb5cc53d64ac8
1 /*
2 * Daemonize routine
3 * Copyright (C) 1997, 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
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.
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.
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.
23 #include <zebra.h>
25 #ifndef HAVE_DAEMON
27 /* Daemonize myself. */
28 int
29 daemon (int nochdir, int noclose)
31 pid_t pid;
33 pid = fork ();
35 /* In case of fork is error. */
36 if (pid < 0)
38 zlog_err ("fork failed: %s", safe_strerror(errno));
39 return -1;
42 /* In case of this is parent process. */
43 if (pid != 0)
44 exit (0);
46 /* Become session leader and get pid. */
47 pid = setsid();
49 if (pid == -1)
51 zlog_err ("setsid failed: %s", safe_strerror(errno));
52 return -1;
55 /* Change directory to root. */
56 if (! nochdir)
57 chdir ("/");
59 /* File descriptor close. */
60 if (! noclose)
62 int fd;
64 fd = open ("/dev/null", O_RDWR, 0);
65 if (fd != -1)
67 dup2 (fd, STDIN_FILENO);
68 dup2 (fd, STDOUT_FILENO);
69 dup2 (fd, STDERR_FILENO);
70 if (fd > 2)
71 close (fd);
75 umask (0027);
77 return 0;
80 #endif /* HAVE_DAEMON */