]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/daemon.c
update version
[bacula/bacula] / bacula / src / lib / daemon.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2011 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *  daemon.c by Kern Sibbald 2000
30  *
31  *   This code is inspired by the Prentice Hall book
32  *   "Unix Network Programming" by W. Richard Stevens
33  *   and later updated from his book "Advanced Programming
34  *   in the UNIX Environment"
35  *
36  * Initialize a daemon process completely detaching us from
37  * any terminal processes.
38  *
39  */
40
41
42 #include "bacula.h"
43 extern int debug_level;
44
45 void
46 daemon_start()
47 {
48 #if !defined(HAVE_WIN32)
49    int i;
50    pid_t cpid;
51    mode_t oldmask;
52 #ifdef DEVELOPER
53    int low_fd = 2;
54 #else
55    int low_fd = -1;
56 #endif
57    /*
58     *  Become a daemon.
59     */
60
61    Dmsg0(900, "Enter daemon_start\n");
62    if ( (cpid = fork() ) < 0) {
63       berrno be;
64       Emsg1(M_ABORT, 0, _("Cannot fork to become daemon: ERR=%s\n"), be.bstrerror());
65    } else if (cpid > 0) {
66       exit(0);              /* parent exits */
67    }
68    /* Child continues */
69
70    setsid();
71
72    /* In the PRODUCTION system, we close ALL
73     * file descriptors except stdin, stdout, and stderr.
74     */
75    if (debug_level > 0) {
76       low_fd = 2;                     /* don't close debug output */
77    }
78    for (i=sysconf(_SC_OPEN_MAX)-1; i > low_fd; i--) {
79       close(i);
80    }
81
82    /* Move to root directory. For debug we stay
83     * in current directory so dumps go there.
84     */
85 #ifndef DEBUG
86    chdir("/");
87 #endif
88
89    /*
90     * Avoid creating files 666 but don't override any
91     * more restrictive mask set by the user.
92     */
93    oldmask = umask(026);
94    oldmask |= 026;
95    umask(oldmask);
96
97
98    /*
99     * Make sure we have fd's 0, 1, 2 open
100     *  If we don't do this one of our sockets may open
101     *  there and if we then use stdout, it could
102     *  send total garbage to our socket.
103     *
104     */
105    int fd;
106    fd = open("/dev/null", O_RDONLY, 0644);
107    if (fd > 2) {
108       close(fd);
109    } else {
110       for(i=1; fd + i <= 2; i++) {
111          dup2(fd, fd+i);
112       }
113    }
114
115 #endif /* HAVE_WIN32 */
116    Dmsg0(900, "Exit daemon_start\n");
117 }