]> gitweb @ CieloNegro.org - daemon.git/blob - daemon.c
Added COPYING.
[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 #include "getprogname.h"
34
35 #include <sys/param.h>
36
37 #include <errno.h>
38 #include <pwd.h>
39 #include <stdio.h>
40 #include <string.h>
41 #include <stdlib.h>
42 #include <unistd.h>
43
44 static void restrict_process(const char *);
45 static void usage(void);
46
47 int
48 main(int argc, char *argv[])
49 {
50         struct pidfh *pfh = NULL;
51         int ch, nochdir, noclose, errcode;
52         const char *pidfile, *user;
53         pid_t otherpid;
54
55     setprogname(argv[0]);
56
57         nochdir = noclose = 1;
58         pidfile = user = NULL;
59         while ((ch = getopt(argc, argv, "cfp:u:")) != -1) {
60                 switch (ch) {
61                 case 'c':
62                         nochdir = 0;
63                         break;
64                 case 'f':
65                         noclose = 0;
66                         break;
67                 case 'p':
68                         pidfile = optarg;
69                         break;
70                 case 'u':
71                         user = optarg;
72                         break;
73                 default:
74                         usage();
75                 }
76         }
77         argc -= optind;
78         argv += optind;
79
80         if (argc == 0)
81                 usage();
82
83         if (user != NULL)
84                 restrict_process(user);
85
86         /*
87          * Try to open the pidfile before calling daemon(3),
88          * to be able to report the error intelligently
89          */
90         if (pidfile) {
91                 pfh = pidfile_open(pidfile, 0600, &otherpid);
92                 if (pfh == NULL) {
93                         if (errno == EEXIST) {
94                 fprintf(stderr, "process already running, pid: %d\n", otherpid);
95                 exit(3);
96                         }
97             else {
98                 fprintf(stderr, "pidfile ``%s'': %s\n", pidfile, strerror(errno));
99                 exit(2);
100             }
101                 }
102         }
103
104         if (daemon(nochdir, noclose) == -1) {
105         fprintf(stderr, "%s\n", strerror(errno));
106         exit(1);
107     }
108
109         /* Now that we are the child, write out the pid */
110         if (pidfile)
111                 pidfile_write(pfh);
112
113         execvp(argv[0], argv);
114
115         /*
116          * execvp() failed -- unlink pidfile if any, and
117          * report the error
118          */
119         errcode = errno; /* Preserve errcode -- unlink may reset it */
120         if (pidfile)
121                 pidfile_remove(pfh);
122
123         /* The child is now running, so the exit status doesn't matter. */
124     fprintf(stderr, "%s: %s\n", argv[0], strerror(errcode));
125     exit(1);
126 }
127
128 static void
129 restrict_process(const char *user)
130 {
131         struct passwd *pw = NULL;
132
133         pw = getpwnam(user);
134         if (pw == NULL) {
135         fprintf(stderr, "unknown user: %s\n", user);
136         exit(1);
137     }
138
139     if (setuid(pw->pw_uid) != 0) {
140         fprintf(stderr, "failed to setuid to %s\n", user);
141         exit(1);
142     }
143 }
144
145 static void
146 usage(void)
147 {
148         fprintf(stderr,
149             "usage: daemon [-cf] [-p pidfile] [-u user] command "
150             "arguments ...\n");
151         exit(1);
152 }