Be consistent.
[tinc] / lib / dropin.c
1 /*
2     dropin.c -- a set of drop-in replacements for libc functions
3     Copyright (C) 2000-2003 Ivo Timmermans <ivo@o2w.nl>,
4                   2000-2003 Guus Sliepen <guus@sliepen.eu.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: dropin.c,v 1.1.2.16 2003/07/21 13:14:02 guus Exp $
21 */
22
23 #include "system.h"
24
25 #include "xalloc.h"
26
27 #ifndef HAVE_DAEMON
28 /*
29   Replacement for the daemon() function.
30   
31   The daemon() function is for programs wishing to detach themselves
32   from the controlling terminal and run in the background as system
33   daemons.
34
35   Unless the argument nochdir is non-zero, daemon() changes the
36   current working directory to the root (``/'').
37
38   Unless the argument noclose is non-zero, daemon() will redirect
39   standard input, standard output and standard error to /dev/null.
40 */
41 int daemon(int nochdir, int noclose)
42 {
43         pid_t pid;
44         int fd;
45
46         pid = fork();
47
48         /* Check if forking failed */
49         if(pid < 0) {
50                 perror("fork");
51                 exit(-1);
52         }
53
54         /* If we are the parent, terminate */
55         if(pid)
56                 exit(0);
57
58         /* Detach by becoming the new process group leader */
59         if(setsid() < 0) {
60                 perror("setsid");
61                 return -1;
62         }
63
64         /* Change working directory to the root (to avoid keeping mount
65            points busy) */
66         if(!nochdir) {
67                 chdir("/");
68         }
69
70         /* Redirect stdin/out/err to /dev/null */
71         if(!noclose) {
72                 fd = open("/dev/null", O_RDWR);
73
74                 if(fd < 0) {
75                         perror("opening /dev/null");
76                         return -1;
77                 } else {
78                         dup2(fd, 0);
79                         dup2(fd, 1);
80                         dup2(fd, 2);
81                 }
82         }
83
84         return 0;
85 }
86 #endif
87
88 #ifndef HAVE_GET_CURRENT_DIR_NAME
89 /*
90   Replacement for the GNU get_current_dir_name function:
91
92   get_current_dir_name will malloc(3) an array big enough to hold the
93   current directory name.  If the environment variable PWD is set, and
94   its value is correct, then that value will be returned.
95 */
96 char *get_current_dir_name(void)
97 {
98         size_t size;
99         char *buf;
100         char *r;
101
102         /* Start with 100 bytes.  If this turns out to be insufficient to
103            contain the working directory, double the size.  */
104         size = 100;
105         buf = xmalloc(size);
106
107         errno = 0;                                      /* Success */
108         r = getcwd(buf, size);
109
110         /* getcwd returns NULL and sets errno to ERANGE if the bufferspace
111            is insufficient to contain the entire working directory.  */
112         while(r == NULL && errno == ERANGE) {
113                 free(buf);
114                 size <<= 1;                             /* double the size */
115                 buf = xmalloc(size);
116                 r = getcwd(buf, size);
117         }
118
119         return buf;
120 }
121 #endif
122
123 #ifndef HAVE_ASPRINTF
124 int asprintf(char **buf, const char *fmt, ...)
125 {
126         int status;
127         va_list ap;
128         int len;
129
130         len = 4096;
131         *buf = xmalloc(len);
132
133         va_start(ap, fmt);
134         status = vsnprintf(*buf, len, fmt, ap);
135         va_end(ap);
136
137         if(status >= 0)
138                 *buf = xrealloc(*buf, status);
139
140         if(status > len - 1) {
141                 len = status;
142                 va_start(ap, fmt);
143                 status = vsnprintf(*buf, len, fmt, ap);
144                 va_end(ap);
145         }
146
147         return status;
148 }
149 #endif