paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 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 Jakma | 30a2231 | 2008-08-15 14:05:22 +0100 | [diff] [blame] | 24 | #include <log.h> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 25 | |
| 26 | #ifndef HAVE_DAEMON |
| 27 | |
| 28 | /* Daemonize myself. */ |
| 29 | int |
| 30 | daemon (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 | { |
ajs | 6a52d0d | 2005-01-30 18:49:28 +0000 | [diff] [blame] | 39 | zlog_err ("fork failed: %s", safe_strerror(errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 40 | 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 | |
paul | 31fcdd3 | 2004-04-21 11:00:43 +0000 | [diff] [blame] | 50 | if (pid == -1) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | { |
ajs | 6a52d0d | 2005-01-30 18:49:28 +0000 | [diff] [blame] | 52 | zlog_err ("setsid failed: %s", safe_strerror(errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 53 | 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 */ |