~ubuntu-branches/ubuntu/karmic/dante/karmic

« back to all changes in this revision

Viewing changes to libscompat/daemon.c

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bridgett
  • Date: 2002-04-07 12:45:55 UTC
  • Revision ID: james.westby@ubuntu.com-20020407124555-qke8rt2tdor0naz2
Tags: upstream-1.1.11.12p1
ImportĀ upstreamĀ versionĀ 1.1.11.12p1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: daemon.c,v 1.3 1999/05/13 16:35:55 karls Exp $ */
 
2
 
 
3
#ifdef HAVE_CONFIG_H
 
4
#include "autoconf.h"
 
5
#endif  /* HAVE_CONFIG_H */
 
6
 
 
7
#include "common.h"
 
8
 
 
9
#if !HAVE_DAEMON
 
10
/*-
 
11
 * Copyright (c) 1990, 1993
 
12
 *      The Regents of the University of California.  All rights reserved.
 
13
 *
 
14
 * Redistribution and use in source and binary forms, with or without
 
15
 * modification, are permitted provided that the following conditions
 
16
 * are met:
 
17
 * 1. Redistributions of source code must retain the above copyright
 
18
 *    notice, this list of conditions and the following disclaimer.
 
19
 * 2. Redistributions in binary form must reproduce the above copyright
 
20
 *    notice, this list of conditions and the following disclaimer in the
 
21
 *    documentation and/or other materials provided with the distribution.
 
22
 * 3. All advertising materials mentioning features or use of this software
 
23
 *    must display the following acknowledgement:
 
24
 *      This product includes software developed by the University of
 
25
 *      California, Berkeley and its contributors.
 
26
 * 4. Neither the name of the University nor the names of its contributors
 
27
 *    may be used to endorse or promote products derived from this software
 
28
 *    without specific prior written permission.
 
29
 *
 
30
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
31
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
32
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
34
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
35
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
36
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
37
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
38
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
39
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
40
 * SUCH DAMAGE.
 
41
 */
 
42
 
 
43
#if defined(LIBC_SCCS) && !defined(lint)
 
44
static char rcsid[] = "$OpenBSD: daemon.c,v 1.2 1996/08/19 08:22:13 tholo Exp $";
 
45
#endif /* LIBC_SCCS and not lint */
 
46
 
 
47
#include <fcntl.h>
 
48
/*#include <paths.h>*/
 
49
#if HAVE_UNISTD_H
 
50
#include <unistd.h>
 
51
#endif  /* HAVE_UNISTD_H */
 
52
 
 
53
int
 
54
daemon(nochdir, noclose)
 
55
        int nochdir, noclose;
 
56
{
 
57
        int fd;
 
58
 
 
59
        switch (fork()) {
 
60
        case -1:
 
61
                return (-1);
 
62
        case 0:
 
63
                break;
 
64
        default:
 
65
                _exit(0);
 
66
        }
 
67
 
 
68
        if (setsid() == -1)
 
69
                return (-1);
 
70
 
 
71
        if (!nochdir)
 
72
                (void)chdir("/");
 
73
 
 
74
        /*XXX /dev/null */
 
75
        if (!noclose && (fd = open("/dev/null", O_RDWR, 0)) != -1) {
 
76
                (void)dup2(fd, STDIN_FILENO);
 
77
                (void)dup2(fd, STDOUT_FILENO);
 
78
                (void)dup2(fd, STDERR_FILENO);
 
79
                if (fd > 2)
 
80
                        (void)close (fd);
 
81
        }
 
82
        return (0);
 
83
}
 
84
#else
 
85
static void avoid_error __P((void));
 
86
static void avoid_error()
 
87
{
 
88
        avoid_error();
 
89
}
 
90
#endif  /* !HAVE_DAEMON */