blob: 5c596c40a003062f712285b2276911051b1da309 [file] [log] [blame]
Eric Andersenc2af1ee2001-10-18 19:33:06 +00001/* 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 * public domain.
7 * Adapted for busybox David Kimdon <dwhedon@gordian.com>
8 */
9
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
13#include <stdarg.h>
14#include <signal.h>
15#include <errno.h>
16#include <sys/stat.h>
17#include <dirent.h>
18#include <unistd.h>
Rob Landleyb7128c62005-09-11 01:05:30 +000019#include <getopt.h> /* struct option */
Eric Andersenc2af1ee2001-10-18 19:33:06 +000020
21#include "busybox.h"
Eric Andersen887ca792002-07-03 23:19:26 +000022#include "pwd_.h"
Eric Andersenc2af1ee2001-10-18 19:33:06 +000023
Eric Andersenc2af1ee2001-10-18 19:33:06 +000024static int signal_nr = 15;
25static int user_id = -1;
Eric Andersen63a1a7a2004-03-13 08:33:10 +000026static int quiet = 0;
Eric Andersenaa820db2003-07-26 09:10:35 +000027static char *userspec = NULL;
28static char *cmdname = NULL;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000029static char *execname = NULL;
Eric Andersen63a1a7a2004-03-13 08:33:10 +000030static char *pidfile = NULL;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000031
Eric Andersen63a1a7a2004-03-13 08:33:10 +000032struct pid_list {
Eric Andersenc2af1ee2001-10-18 19:33:06 +000033 struct pid_list *next;
Eric Andersen63a1a7a2004-03-13 08:33:10 +000034 pid_t pid;
35};
Eric Andersenc2af1ee2001-10-18 19:33:06 +000036
Eric Andersen63a1a7a2004-03-13 08:33:10 +000037static struct pid_list *found = NULL;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000038
Eric Andersen950d8b42001-10-31 09:55:39 +000039static inline void
Eric Andersen63a1a7a2004-03-13 08:33:10 +000040push(pid_t pid)
Eric Andersenc2af1ee2001-10-18 19:33:06 +000041{
Eric Andersen63a1a7a2004-03-13 08:33:10 +000042 struct pid_list *p;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000043
44 p = xmalloc(sizeof(*p));
Eric Andersen950d8b42001-10-31 09:55:39 +000045 p->next = found;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000046 p->pid = pid;
Eric Andersen950d8b42001-10-31 09:55:39 +000047 found = p;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000048}
49
Eric Andersenc2af1ee2001-10-18 19:33:06 +000050static int
Eric Andersen63a1a7a2004-03-13 08:33:10 +000051pid_is_exec(pid_t pid, const char *name)
Eric Andersenc2af1ee2001-10-18 19:33:06 +000052{
Eric Andersen63a1a7a2004-03-13 08:33:10 +000053 char buf[32];
54 struct stat sb, exec_stat;
Eric Andersenc2af1ee2001-10-18 19:33:06 +000055
Rob Landleyc5b1d4d2006-03-13 15:45:16 +000056 if (name)
57 xstat(name, &exec_stat);
Eric Andersen63a1a7a2004-03-13 08:33:10 +000058
59 sprintf(buf, "/proc/%d/exe", pid);
60 if (stat(buf, &sb) != 0)
61 return 0;
62 return (sb.st_dev == exec_stat.st_dev && sb.st_ino == exec_stat.st_ino);
Eric Andersenc2af1ee2001-10-18 19:33:06 +000063}
64
Eric Andersenc2af1ee2001-10-18 19:33:06 +000065static int
66pid_is_user(int pid, int uid)
67{
68 struct stat sb;
69 char buf[32];
70
71 sprintf(buf, "/proc/%d", pid);
72 if (stat(buf, &sb) != 0)
73 return 0;
74 return (sb.st_uid == uid);
75}
76
Eric Andersenc2af1ee2001-10-18 19:33:06 +000077static int
Eric Andersen63a1a7a2004-03-13 08:33:10 +000078pid_is_cmd(pid_t pid, const char *name)
Eric Andersenc2af1ee2001-10-18 19:33:06 +000079{
80 char buf[32];
81 FILE *f;
82 int c;
83
84 sprintf(buf, "/proc/%d/stat", pid);
85 f = fopen(buf, "r");
86 if (!f)
87 return 0;
88 while ((c = getc(f)) != EOF && c != '(')
89 ;
90 if (c != '(') {
91 fclose(f);
92 return 0;
93 }
94 /* this hopefully handles command names containing ')' */
95 while ((c = getc(f)) != EOF && c == *name)
96 name++;
97 fclose(f);
98 return (c == ')' && *name == '\0');
99}
100
101
102static void
103check(int pid)
104{
105 if (execname && !pid_is_exec(pid, execname)) {
106 return;
107 }
108 if (userspec && !pid_is_user(pid, user_id)) {
109 return;
110 }
111 if (cmdname && !pid_is_cmd(pid, cmdname)) {
112 return;
113 }
Eric Andersen950d8b42001-10-31 09:55:39 +0000114 push(pid);
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000115}
116
117
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000118static void
Eric Andersen625da9d2004-04-13 18:28:46 +0000119do_pidfile(void)
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000120{
121 FILE *f;
122 pid_t pid;
123
Eric Andersen625da9d2004-04-13 18:28:46 +0000124 f = fopen(pidfile, "r");
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000125 if (f) {
126 if (fscanf(f, "%d", &pid) == 1)
127 check(pid);
128 fclose(f);
129 } else if (errno != ENOENT)
Eric Andersen625da9d2004-04-13 18:28:46 +0000130 bb_perror_msg_and_die("open pidfile %s", pidfile);
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000131
132}
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000133
134static void
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000135do_procinit(void)
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000136{
137 DIR *procdir;
138 struct dirent *entry;
139 int foundany, pid;
140
Eric Andersen625da9d2004-04-13 18:28:46 +0000141 if (pidfile) {
142 do_pidfile();
143 return;
144 }
145
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +0000146 procdir = bb_xopendir("/proc");
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000147
148 foundany = 0;
149 while ((entry = readdir(procdir)) != NULL) {
150 if (sscanf(entry->d_name, "%d", &pid) != 1)
151 continue;
152 foundany++;
153 check(pid);
154 }
155 closedir(procdir);
156 if (!foundany)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 bb_error_msg_and_die ("nothing in /proc - not mounted?");
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000158}
159
160
161static void
162do_stop(void)
163{
164 char what[1024];
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000165 struct pid_list *p;
Eric Andersen950d8b42001-10-31 09:55:39 +0000166 int killed = 0;
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000167
Eric Andersen625da9d2004-04-13 18:28:46 +0000168 do_procinit();
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000169
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000170 if (cmdname)
171 strcpy(what, cmdname);
172 else if (execname)
173 strcpy(what, execname);
Eric Andersen625da9d2004-04-13 18:28:46 +0000174 else if (pidfile)
175 sprintf(what, "process in pidfile `%.200s'", pidfile);
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000176 else if (userspec)
177 sprintf(what, "process(es) owned by `%s'", userspec);
178 else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000179 bb_error_msg_and_die ("internal error, please report");
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000180
181 if (!found) {
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000182 if (!quiet)
183 printf("no %s found; none killed.\n", what);
Eric Andersen950d8b42001-10-31 09:55:39 +0000184 return;
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000185 }
186 for (p = found; p; p = p->next) {
Eric Andersen950d8b42001-10-31 09:55:39 +0000187 if (kill(p->pid, signal_nr) == 0) {
188 p->pid = -p->pid;
189 killed++;
190 } else {
Eric Andersen625da9d2004-04-13 18:28:46 +0000191 bb_perror_msg("warning: failed to kill %d", p->pid);
Eric Andersen950d8b42001-10-31 09:55:39 +0000192 }
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000193 }
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000194 if (!quiet && killed) {
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000195 printf("stopped %s (pid", what);
Eric Andersen950d8b42001-10-31 09:55:39 +0000196 for (p = found; p; p = p->next)
197 if(p->pid < 0)
198 printf(" %d", -p->pid);
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000199 printf(").\n");
200 }
201}
202
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000203#if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
Eric Andersenaa820db2003-07-26 09:10:35 +0000204static const struct option ssd_long_options[] = {
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000205 { "stop", 0, NULL, 'K' },
206 { "start", 0, NULL, 'S' },
Eric Andersen625da9d2004-04-13 18:28:46 +0000207 { "background", 0, NULL, 'b' },
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000208 { "quiet", 0, NULL, 'q' },
Eric Andersen625da9d2004-04-13 18:28:46 +0000209 { "make-pidfile", 0, NULL, 'm' },
210 { "startas", 1, NULL, 'a' },
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000211 { "name", 1, NULL, 'n' },
212 { "signal", 1, NULL, 's' },
213 { "user", 1, NULL, 'u' },
214 { "exec", 1, NULL, 'x' },
Eric Andersen625da9d2004-04-13 18:28:46 +0000215 { "pidfile", 1, NULL, 'p' },
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000216 { 0, 0, 0, 0 }
Eric Andersenaa820db2003-07-26 09:10:35 +0000217};
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000218#endif
Eric Andersenaa820db2003-07-26 09:10:35 +0000219
Eric Andersen625da9d2004-04-13 18:28:46 +0000220#define SSD_CTX_STOP 1
221#define SSD_CTX_START 2
Glenn L McGrath8d441782004-01-22 09:04:58 +0000222#define SSD_OPT_BACKGROUND 4
Eric Andersen625da9d2004-04-13 18:28:46 +0000223#define SSD_OPT_QUIET 8
224#define SSD_OPT_MAKEPID 16
Glenn L McGrath8d441782004-01-22 09:04:58 +0000225
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000226int
227start_stop_daemon_main(int argc, char **argv)
228{
Glenn L McGrath8d441782004-01-22 09:04:58 +0000229 unsigned long opt;
Eric Andersen08804ce2003-07-30 08:29:56 +0000230 char *signame = NULL;
Glenn L McGrath8d441782004-01-22 09:04:58 +0000231 char *startas = NULL;
232
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000233#if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
Eric Andersenaa820db2003-07-26 09:10:35 +0000234 bb_applet_long_options = ssd_long_options;
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000235#endif
Eric Andersenaa820db2003-07-26 09:10:35 +0000236
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000237 /* Check required one context option was given */
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000238 bb_opt_complementally = "K:S:?:K--S:S--K";
Eric Andersen625da9d2004-04-13 18:28:46 +0000239 opt = bb_getopt_ulflags(argc, argv, "KSbqma:n:s:u:x:p:",
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +0000240 &startas, &cmdname, &signame, &userspec, &execname, &pidfile);
Eric Andersenaa820db2003-07-26 09:10:35 +0000241
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000242
"Vladimir N. Oleynik"064f04e2005-10-11 14:38:01 +0000243 quiet = opt & SSD_OPT_QUIET;
Paul Foxbb9a0ad2005-07-29 14:58:09 +0000244
Eric Andersen08804ce2003-07-30 08:29:56 +0000245 if (signame) {
246 signal_nr = bb_xgetlarg(signame, 10, 0, NSIG);
247 }
Eric Andersenaa820db2003-07-26 09:10:35 +0000248
Eric Andersen625da9d2004-04-13 18:28:46 +0000249 if (!execname && !pidfile && !userspec && !cmdname)
250 bb_error_msg_and_die ("need at least one of -x, -p, -u, or -n");
Eric Andersenaa820db2003-07-26 09:10:35 +0000251
252 if (!startas)
253 startas = execname;
254
Glenn L McGrath8d441782004-01-22 09:04:58 +0000255 if ((opt & SSD_CTX_START) && !startas)
Eric Andersenaa820db2003-07-26 09:10:35 +0000256 bb_error_msg_and_die ("-S needs -x or -a");
257
Eric Andersen625da9d2004-04-13 18:28:46 +0000258 if ((opt & SSD_OPT_MAKEPID) && pidfile == NULL)
259 bb_error_msg_and_die ("-m needs -p");
260
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000261 argc -= optind;
262 argv += optind;
263
Eric Andersen950d8b42001-10-31 09:55:39 +0000264 if (userspec && sscanf(userspec, "%d", &user_id) != 1)
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000265 user_id = bb_xgetpwnam(userspec);
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000266
Glenn L McGrath8d441782004-01-22 09:04:58 +0000267 if (opt & SSD_CTX_STOP) {
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000268 do_stop();
Eric Andersen950d8b42001-10-31 09:55:39 +0000269 return EXIT_SUCCESS;
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000270 }
271
Eric Andersen625da9d2004-04-13 18:28:46 +0000272 do_procinit();
273
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000274 if (found) {
Eric Andersen63a1a7a2004-03-13 08:33:10 +0000275 if (!quiet)
276 printf("%s already running.\n%d\n", execname ,found->pid);
Eric Andersen950d8b42001-10-31 09:55:39 +0000277 return EXIT_SUCCESS;
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000278 }
279 *--argv = startas;
Glenn L McGrath8d441782004-01-22 09:04:58 +0000280 if (opt & SSD_OPT_BACKGROUND) {
Bernhard Reutner-Fischer2c998512006-04-12 18:09:26 +0000281 bb_xdaemon(0, 0);
Eric Andersen625da9d2004-04-13 18:28:46 +0000282 setsid();
Eric Andersen53a22992002-01-26 09:04:45 +0000283 }
Eric Andersen625da9d2004-04-13 18:28:46 +0000284 if (opt & SSD_OPT_MAKEPID) {
285 /* user wants _us_ to make the pidfile */
286 FILE *pidf = fopen(pidfile, "w");
287 pid_t pidt = getpid();
288 if (pidf == NULL)
289 bb_perror_msg_and_die("Unable to write pidfile '%s'", pidfile);
290 fprintf(pidf, "%d\n", pidt);
291 fclose(pidf);
292 }
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000293 execv(startas, argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 bb_perror_msg_and_die ("unable to start %s", startas);
Eric Andersenc2af1ee2001-10-18 19:33:06 +0000295}