]> gitweb @ CieloNegro.org - daemon.git/blob - daemon.c
Done!
[daemon.git] / daemon.c
1 /*-
2  * Copyright (c) 1999 Berkeley Software Design, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. Berkeley Software Design Inc's name may not be used to endorse or
13  *    promote products derived from this software without specific prior
14  *    written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  *      From BSDI: daemon.c,v 1.2 1996/08/15 01:11:09 jch Exp
29  */
30
31 #include "config.h"
32 #include "pidfile.h"
33
34 #include <sys/param.h>
35
36 #include <err.h>
37 #include <errno.h>
38 #include <pwd.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <unistd.h>
42
43 static void restrict_process(const char *);
44 static void usage(void);
45
46 int
47 main(int argc, char *argv[])
48 {
49         struct pidfh *pfh = NULL;
50         int ch, nochdir, noclose, errcode;
51         const char *pidfile, *user;
52         pid_t otherpid;
53
54         nochdir = noclose = 1;
55         pidfile = user = NULL;
56         while ((ch = getopt(argc, argv, "-cfp:u:")) != -1) {
57                 switch (ch) {
58                 case 'c':
59                         nochdir = 0;
60                         break;
61                 case 'f':
62                         noclose = 0;
63                         break;
64                 case 'p':
65                         pidfile = optarg;
66                         break;
67                 case 'u':
68                         user = optarg;
69                         break;
70                 default:
71                         usage();
72                 }
73         }
74         argc -= optind;
75         argv += optind;
76
77         if (argc == 0)
78                 usage();
79
80         if (user != NULL)
81                 restrict_process(user);
82
83         /*
84          * Try to open the pidfile before calling daemon(3),
85          * to be able to report the error intelligently
86          */
87         if (pidfile) {
88                 pfh = pidfile_open(pidfile, 0600, &otherpid);
89                 if (pfh == NULL) {
90                         if (errno == EEXIST) {
91                                 errx(3, "process already running, pid: %d",
92                                     otherpid);
93                         }
94                         err(2, "pidfile ``%s''", pidfile);
95                 }
96         }
97
98         if (daemon(nochdir, noclose) == -1)
99                 err(1, NULL);
100
101         /* Now that we are the child, write out the pid */
102         if (pidfile)
103                 pidfile_write(pfh);
104
105         execvp(argv[0], argv);
106
107         /*
108          * execvp() failed -- unlink pidfile if any, and
109          * report the error
110          */
111         errcode = errno; /* Preserve errcode -- unlink may reset it */
112         if (pidfile)
113                 pidfile_remove(pfh);
114
115         /* The child is now running, so the exit status doesn't matter. */
116         errc(1, errcode, "%s", argv[0]);
117 }
118
119 static void
120 restrict_process(const char *user)
121 {
122         struct passwd *pw = NULL;
123
124         pw = getpwnam(user);
125         if (pw == NULL)
126                 errx(1, "unknown user: %s", user);
127
128     if (setuid(pw->pw_uid) != 0)
129         errx(1, "failed to setuid to %s", user);
130 }
131
132 static void
133 usage(void)
134 {
135         (void)fprintf(stderr,
136             "usage: daemon [-cf] [-p pidfile] [-u user] command "
137                 "arguments ...\n");
138         exit(1);
139 }