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