2 dropin.c -- a set of drop-in replacements for libc functions
3 Copyright (C) 2000,2001 Ivo Timmermans <itimmermans@bigfoot.com>,
4 2000,2001 Guus Sliepen <guus@sliepen.warande.net>
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.
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.
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.
20 $Id: dropin.c,v 1.1.2.3 2001/01/07 17:08:49 guus Exp $
25 #include <sys/types.h>
37 Replacement for the daemon() function.
39 The daemon() function is for programs wishing to detach themselves
40 from the controlling terminal and run in the background as system
43 Unless the argument nochdir is non-zero, daemon() changes the
44 current working directory to the root (``/'').
46 Unless the argument noclose is non-zero, daemon() will redirect
47 standard input, standard output and standard error to /dev/null.
49 int daemon(int nochdir, int noclose)
56 /* Check if forking failed */
63 /* If we are the parent, terminate */
67 /* Detach by becoming the new process group leader */
74 /* Change working directory to the root (to avoid keeping mount
81 /* Redirect stdin/out/err to /dev/null */
84 fd = open("/dev/null", O_RDWR);
88 perror("opening /dev/null");
104 #ifndef HAVE_GET_CURRENT_DIR_NAME
106 Replacement for the GNU get_current_dir_name function:
108 get_current_dir_name will malloc(3) an array big enough to hold the
109 current directory name. If the environment variable PWD is set, and
110 its value is correct, then that value will be returned.
112 char *get_current_dir_name(void)
117 /* Start with 100 bytes. If this turns out to be insufficient to
118 contain the working directory, double the size. */
122 errno = 0; /* Success */
123 r = getcwd(buf, size);
124 /* getcwd returns NULL and sets errno to ERANGE if the bufferspace
125 is insufficient to contain the entire working directory. */
126 while(r == NULL && errno = ERANGE)
129 size <<= 1; /* double the size */
131 r = getcwd(buf, size);