start_stop_daemon: mark argc as unused
[platform/upstream/busybox.git] / debianutils / start_stop_daemon.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini start-stop-daemon implementation(s) for busybox
4  *
5  * Written by Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>,
6  * Adapted for busybox David Kimdon <dwhedon@gordian.com>
7  *
8  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
9  */
10
11 /* NB: we have a problem here with /proc/NN/exe usage, similar to
12  * one fixed in killall/pidof */
13
14 #include <sys/resource.h>
15
16 /* Override ENABLE_FEATURE_PIDFILE */
17 #define WANT_PIDFILE 1
18 #include "libbb.h"
19
20 struct pid_list {
21         struct pid_list *next;
22         pid_t pid;
23 };
24
25
26 struct globals {
27         struct pid_list *found;
28         char *userspec;
29         char *cmdname;
30         char *execname;
31         char *pidfile;
32         int user_id;
33         smallint quiet;
34         smallint signal_nr;
35 };
36 #define G (*(struct globals*)&bb_common_bufsiz1)
37 #define found             (G.found               )
38 #define userspec          (G.userspec            )
39 #define cmdname           (G.cmdname             )
40 #define execname          (G.execname            )
41 #define pidfile           (G.pidfile             )
42 #define user_id           (G.user_id             )
43 #define quiet             (G.quiet               )
44 #define signal_nr         (G.signal_nr           )
45 #define INIT_G() \
46         do { \
47                 user_id = -1; \
48                 signal_nr = 15; \
49         } while (0)
50
51
52 static int pid_is_exec(pid_t pid, const char *name)
53 {
54         char buf[sizeof("/proc//exe") + sizeof(int)*3];
55         char *execbuf;
56         int n;
57
58         sprintf(buf, "/proc/%u/exe", pid);
59         n = strlen(name) + 1;
60         execbuf = xzalloc(n + 1);
61         readlink(buf, execbuf, n);
62         /* if readlink fails because link target is longer than strlen(name),
63          * execbuf still contains "", and strcmp will return !0. */
64         n = strcmp(execbuf, name);
65         if (ENABLE_FEATURE_CLEAN_UP)
66                 free(execbuf);
67         return !n; /* nonzero (true) if execbuf == name */
68 }
69
70 static int pid_is_user(int pid, int uid)
71 {
72         struct stat sb;
73         char buf[sizeof("/proc/") + sizeof(int)*3];
74
75         sprintf(buf, "/proc/%u", pid);
76         if (stat(buf, &sb) != 0)
77                 return 0;
78         return (sb.st_uid == uid);
79 }
80
81 static int pid_is_cmd(pid_t pid, const char *name)
82 {
83         char fname[sizeof("/proc//stat") + sizeof(int)*3];
84         char *buf;
85         int r = 0;
86
87         sprintf(fname, "/proc/%u/stat", pid);
88         buf = xmalloc_open_read_close(fname, NULL);
89         if (buf) {
90                 char *p = strchr(buf, '(');
91                 if (p) {
92                         char *pe = strrchr(++p, ')');
93                         if (pe) {
94                                 *pe = '\0';
95                                 r = !strcmp(p, name);
96                         }
97                 }
98                 free(buf);
99         }
100         return r;
101 }
102
103 static void check(int pid)
104 {
105         struct pid_list *p;
106
107         if (execname && !pid_is_exec(pid, execname)) {
108                 return;
109         }
110         if (userspec && !pid_is_user(pid, user_id)) {
111                 return;
112         }
113         if (cmdname && !pid_is_cmd(pid, cmdname)) {
114                 return;
115         }
116         p = xmalloc(sizeof(*p));
117         p->next = found;
118         p->pid = pid;
119         found = p;
120 }
121
122 static void do_pidfile(void)
123 {
124         FILE *f;
125         unsigned pid;
126
127         f = fopen(pidfile, "r");
128         if (f) {
129                 if (fscanf(f, "%u", &pid) == 1)
130                         check(pid);
131                 fclose(f);
132         } else if (errno != ENOENT)
133                 bb_perror_msg_and_die("open pidfile %s", pidfile);
134 }
135
136 static void do_procinit(void)
137 {
138         DIR *procdir;
139         struct dirent *entry;
140         int pid;
141
142         if (pidfile) {
143                 do_pidfile();
144                 return;
145         }
146
147         procdir = xopendir("/proc");
148
149         pid = 0;
150         while ((entry = readdir(procdir)) != NULL) {
151                 pid = bb_strtou(entry->d_name, NULL, 10);
152                 if (errno)
153                         continue;
154                 check(pid);
155         }
156         closedir(procdir);
157         if (!pid)
158                 bb_error_msg_and_die("nothing in /proc - not mounted?");
159 }
160
161 static int do_stop(void)
162 {
163         char *what;
164         struct pid_list *p;
165         int killed = 0;
166
167         do_procinit();
168
169         if (cmdname) {
170                 if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(cmdname);
171                 if (!ENABLE_FEATURE_CLEAN_UP) what = cmdname;
172         } else if (execname) {
173                 if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(execname);
174                 if (!ENABLE_FEATURE_CLEAN_UP) what = execname;
175         } else if (pidfile)
176                 what = xasprintf("process in pidfile '%s'", pidfile);
177         else if (userspec)
178                 what = xasprintf("process(es) owned by '%s'", userspec);
179         else
180                 bb_error_msg_and_die("internal error, please report");
181
182         if (!found) {
183                 if (!quiet)
184                         printf("no %s found; none killed\n", what);
185                 killed = -1;
186                 goto ret;
187         }
188         for (p = found; p; p = p->next) {
189                 if (kill(p->pid, signal_nr) == 0) {
190                         p->pid = - p->pid;
191                         killed++;
192                 } else {
193                         bb_perror_msg("warning: killing process %u", p->pid);
194                 }
195         }
196         if (!quiet && killed) {
197                 printf("stopped %s (pid", what);
198                 for (p = found; p; p = p->next)
199                         if (p->pid < 0)
200                                 printf(" %u", - p->pid);
201                 puts(")");
202         }
203  ret:
204         if (ENABLE_FEATURE_CLEAN_UP)
205                 free(what);
206         return killed;
207 }
208
209 #if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
210 static const char start_stop_daemon_longopts[] ALIGN1 =
211         "stop\0"         No_argument       "K"
212         "start\0"        No_argument       "S"
213         "background\0"   No_argument       "b"
214         "quiet\0"        No_argument       "q"
215         "make-pidfile\0" No_argument       "m"
216 #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY
217         "oknodo\0"       No_argument       "o"
218         "verbose\0"      No_argument       "v"
219         "nicelevel\0"    Required_argument "N"
220 #endif
221         "startas\0"      Required_argument "a"
222         "name\0"         Required_argument "n"
223         "signal\0"       Required_argument "s"
224         "user\0"         Required_argument "u"
225         "chuid\0"        Required_argument "c"
226         "exec\0"         Required_argument "x"
227         "pidfile\0"      Required_argument "p"
228 #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY
229         "retry\0"        Required_argument "R"
230 #endif
231         ;
232 #endif
233
234 enum {
235         CTX_STOP       = 0x1,
236         CTX_START      = 0x2,
237         OPT_BACKGROUND = 0x4, // -b
238         OPT_QUIET      = 0x8, // -q
239         OPT_MAKEPID    = 0x10, // -m
240         OPT_a          = 0x20, // -a
241         OPT_n          = 0x40, // -n
242         OPT_s          = 0x80, // -s
243         OPT_u          = 0x100, // -u
244         OPT_c          = 0x200, // -c
245         OPT_x          = 0x400, // -x
246         OPT_p          = 0x800, // -p
247         OPT_OKNODO     = 0x1000 * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -o
248         OPT_VERBOSE    = 0x2000 * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -v
249         OPT_NICELEVEL  = 0x4000 * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -N
250 };
251
252 int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
253 int start_stop_daemon_main(int argc ATTRIBUTE_UNUSED, char **argv)
254 {
255         unsigned opt;
256         char *signame;
257         char *startas;
258         char *chuid;
259 #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY
260 //      char *retry_arg = NULL;
261 //      int retries = -1;
262         char *opt_N;
263 #endif
264
265         INIT_G();
266
267 #if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
268         applet_long_options = start_stop_daemon_longopts;
269 #endif
270
271         /* Check required one context option was given */
272         opt_complementary = "K:S:K--S:S--K:m?p:K?xpun:S?xa";
273         opt = getopt32(argv, "KSbqma:n:s:u:c:x:p:"
274                 USE_FEATURE_START_STOP_DAEMON_FANCY("ovN:"),
275 //              USE_FEATURE_START_STOP_DAEMON_FANCY("ovN:R:"),
276                 &startas, &cmdname, &signame, &userspec, &chuid, &execname, &pidfile
277                 USE_FEATURE_START_STOP_DAEMON_FANCY(,&opt_N)
278 //              USE_FEATURE_START_STOP_DAEMON_FANCY(,&retry_arg)
279         );
280
281         quiet = (opt & OPT_QUIET) && !(opt & OPT_VERBOSE);
282
283         if (opt & OPT_s) {
284                 signal_nr = get_signum(signame);
285                 if (signal_nr < 0) bb_show_usage();
286         }
287
288         if (!(opt & OPT_a))
289                 startas = execname;
290
291 //      USE_FEATURE_START_STOP_DAEMON_FANCY(
292 //              if (retry_arg)
293 //                      retries = xatoi_u(retry_arg);
294 //      )
295         //argc -= optind;
296         argv += optind;
297
298         if (userspec) {
299                 user_id = bb_strtou(userspec, NULL, 10);
300                 if (errno)
301                         user_id = xuname2uid(userspec);
302         }
303
304         if (opt & CTX_STOP) {
305                 int i = do_stop();
306                 return (opt & OPT_OKNODO) ? 0 : (i <= 0);
307         }
308
309         do_procinit();
310
311         if (found) {
312                 if (!quiet)
313                         printf("%s already running\n%d\n", execname, found->pid);
314                 return !(opt & OPT_OKNODO);
315         }
316         *--argv = startas;
317         if (opt & OPT_BACKGROUND) {
318 #if BB_MMU
319                 bb_daemonize(0);
320 #else
321                 pid_t pid = vfork();
322                 if (pid < 0) /* error */
323                         bb_perror_msg_and_die("vfork");
324                 if (pid != 0) {
325                         /* parent */
326                         /* why _exit? the child may have changed the stack,
327                          * so "return 0" may do bad things */
328                         _exit(0);
329                 }
330                 /* child */
331                 setsid(); /* detach from controlling tty */
332                 /* Redirect stdio to /dev/null, close extra FDs.
333                  * We do not actually daemonize because of DAEMON_ONLY_SANITIZE */
334                 bb_daemonize_or_rexec(
335                         DAEMON_DEVNULL_STDIO
336                         + DAEMON_CLOSE_EXTRA_FDS
337                         + DAEMON_ONLY_SANITIZE,
338                         NULL /* argv, unused */ );
339 #endif
340         }
341         if (opt & OPT_MAKEPID) {
342                 /* user wants _us_ to make the pidfile */
343                 write_pidfile(pidfile);
344         }
345         if (opt & OPT_c) {
346                 struct bb_uidgid_t ugid;
347                 parse_chown_usergroup_or_die(&ugid, chuid);
348                 if (ugid.gid != (gid_t) -1) xsetgid(ugid.gid);
349                 if (ugid.uid != (uid_t) -1) xsetuid(ugid.uid);
350         }
351 #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY
352         if (opt & OPT_NICELEVEL) {
353                 /* Set process priority */
354                 int prio = getpriority(PRIO_PROCESS, 0) + xatoi_range(opt_N, INT_MIN/2, INT_MAX/2);
355                 if (setpriority(PRIO_PROCESS, 0, prio) < 0) {
356                         bb_perror_msg_and_die("setpriority(%d)", prio);
357                 }
358         }
359 #endif
360         execv(startas, argv);
361         bb_perror_msg_and_die("cannot start %s", startas);
362 }