]> gitweb @ CieloNegro.org - daemon.git/blob - daemon.c
5b769dd49863cee1d56c120217edf75d0e870720
[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 <errno.h>
37 #include <pwd.h>
38 #include <stdio.h>
39 #include <string.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                 fprintf(stderr, "process already running, pid: %d\n", otherpid);
92                 exit(3);
93                         }
94             else {
95                 fprintf(stderr, "pidfile ``%s'': %s\n", pidfile, strerror(errno));
96                 exit(2);
97             }
98                 }
99         }
100
101         if (daemon(nochdir, noclose) == -1) {
102         fprintf(stderr, "%s\n", strerror(errno));
103         exit(1);
104     }
105
106         /* Now that we are the child, write out the pid */
107         if (pidfile)
108                 pidfile_write(pfh);
109
110         execvp(argv[0], argv);
111
112         /*
113          * execvp() failed -- unlink pidfile if any, and
114          * report the error
115          */
116         errcode = errno; /* Preserve errcode -- unlink may reset it */
117         if (pidfile)
118                 pidfile_remove(pfh);
119
120         /* The child is now running, so the exit status doesn't matter. */
121     fprintf(stderr, "%s: %s\n", argv[0], strerror(errcode));
122     exit(1);
123 }
124
125 static void
126 restrict_process(const char *user)
127 {
128         struct passwd *pw = NULL;
129
130         pw = getpwnam(user);
131         if (pw == NULL) {
132         fprintf(stderr, "unknown user: %s\n", user);
133         exit(1);
134     }
135
136     if (setuid(pw->pw_uid) != 0) {
137         fprintf(stderr, "failed to setuid to %s\n", user);
138         exit(1);
139     }
140 }
141
142 static void
143 usage(void)
144 {
145         fprintf(stderr,
146             "usage: daemon [-cf] [-p pidfile] [-u user] command "
147             "arguments ...\n");
148         exit(1);
149 }