2 Copyright (c) 2001-2006, Gerrit Pape
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
8 1. Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14 derived from this software without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 /* Taken from http://smarden.sunsite.dk/runit/sv.8.html:
30 sv - control and manage services monitored by runsv
32 sv [-v] [-w sec] command services
33 /etc/init.d/service [-w sec] command
35 The sv program reports the current status and controls the state of services
36 monitored by the runsv(8) supervisor.
38 services consists of one or more arguments, each argument naming a directory
39 service used by runsv(8). If service doesn't start with a dot or slash,
40 it is searched in the default services directory /var/service/, otherwise
41 relative to the current directory.
43 command is one of up, down, status, once, pause, cont, hup, alarm, interrupt,
44 1, 2, term, kill, or exit, or start, stop, restart, shutdown, force-stop,
45 force-reload, force-restart, force-shutdown.
47 The sv program can be sym-linked to /etc/init.d/ to provide an LSB init
48 script interface. The service to be controlled then is specified by the
49 base name of the "init script".
52 Report the current status of the service, and the appendant log service
53 if available, to standard output.
55 If the service is not running, start it. If the service stops, restart it.
57 If the service is running, send it the TERM signal, and the CONT signal.
58 If ./run exits, start ./finish if it exists. After it stops, do not
61 If the service is not running, start it. Do not restart it if it stops.
62 pause cont hup alarm interrupt quit 1 2 term kill
63 If the service is running, send it the STOP, CONT, HUP, ALRM, INT, QUIT,
64 USR1, USR2, TERM, or KILL signal respectively.
66 If the service is running, send it the TERM signal, and the CONT signal.
67 Do not restart the service. If the service is down, and no log service
68 exists, runsv(8) exits. If the service is down and a log service exists,
69 send the TERM signal to the log service. If the log service is down,
70 runsv(8) exits. This command is ignored if it is given to an appendant
73 sv actually looks only at the first character of above commands.
75 Commands compatible to LSB init script actions:
80 Same as up, but wait up to 7 seconds for the command to take effect.
81 Then report the status or timeout. If the script ./check exists in
82 the service directory, sv runs this script to check whether the service
83 is up and available; it's considered to be available if ./check exits
86 Same as down, but wait up to 7 seconds for the service to become down.
87 Then report the status or timeout.
89 Send the commands term, cont, and up to the service, and wait up to
90 7 seconds for the service to restart. Then report the status or timeout.
91 If the script ./check exists in the service directory, sv runs this script
92 to check whether the service is up and available again; it's considered
93 to be available if ./check exits with 0.
95 Same as exit, but wait up to 7 seconds for the runsv(8) process
96 to terminate. Then report the status or timeout.
98 Same as down, but wait up to 7 seconds for the service to become down.
99 Then report the status, and on timeout send the service the kill command.
101 Send the service the term and cont commands, and wait up to
102 7 seconds for the service to restart. Then report the status,
103 and on timeout send the service the kill command.
105 Send the service the term, cont and up commands, and wait up to
106 7 seconds for the service to restart. Then report the status, and
107 on timeout send the service the kill command. If the script ./check
108 exists in the service directory, sv runs this script to check whether
109 the service is up and available again; it's considered to be available
110 if ./check exits with 0.
112 Same as exit, but wait up to 7 seconds for the runsv(8) process to
113 terminate. Then report the status, and on timeout send the service
119 Check for the service to be in the state that's been requested. Wait up to
120 7 seconds for the service to reach the requested state, then report
121 the status or timeout. If the requested state of the service is up,
122 and the script ./check exists in the service directory, sv runs
123 this script to check whether the service is up and running;
124 it's considered to be up if ./check exits with 0.
129 wait up to 7 seconds for the command to take effect.
130 Then report the status or timeout.
132 Override the default timeout of 7 seconds with sec seconds. Implies -v.
137 The environment variable $SVDIR overrides the default services directory
140 The environment variable $SVWAIT overrides the default 7 seconds to wait
141 for a command to take effect. It is overridden by the -w option.
144 sv exits 0, if the command was successfully sent to all services, and,
145 if it was told to wait, the command has taken effect to all services.
147 For each service that caused an error (e.g. the directory is not
148 controlled by a runsv(8) process, or sv timed out while waiting),
149 sv increases the exit code by one and exits non zero. The maximum
150 is 99. sv exits 100 on error.
153 /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
154 /* TODO: depends on runit_lib.c - review and reduce/eliminate */
156 #include <sys/poll.h>
157 #include <sys/file.h>
159 #include "runit_lib.h"
165 /* "Bernstein" time format: unix + 0x400000000000000aULL */
166 uint64_t tstart, tnow;
169 #define G (*(struct globals*)&bb_common_bufsiz1)
170 #define acts (G.acts )
171 #define service (G.service )
173 #define tstart (G.tstart )
174 #define tnow (G.tnow )
175 #define svstatus (G.svstatus )
176 #define INIT_G() do { } while (0)
179 static void fatal_cannot(const char *m1) NORETURN;
180 static void fatal_cannot(const char *m1)
182 bb_perror_msg("fatal: can't %s", m1);
186 static void out(const char *p, const char *m1)
188 printf("%s%s: %s", p, *service, m1);
190 printf(": %s", strerror(errno));
192 bb_putchar('\n'); /* will also flush the output */
195 #define WARN "warning: "
198 static void fail(const char *m1)
203 static void failx(const char *m1)
208 static void warn(const char *m1)
211 /* "warning: <service>: <m1>\n" */
212 out("warning: ", m1);
214 static void ok(const char *m1)
220 static int svstatus_get(void)
224 fd = open_write("supervise/ok");
226 if (errno == ENODEV) {
227 *acts == 'x' ? ok("runsv not running")
228 : failx("runsv not running");
231 warn("cannot open supervise/ok");
235 fd = open_read("supervise/status");
237 warn("cannot open supervise/status");
240 r = read(fd, &svstatus, 20);
246 warn("cannot read supervise/status");
250 warn("cannot read supervise/status: bad format");
256 static unsigned svstatus_print(const char *m)
264 if (stat("down", &s) == -1) {
265 if (errno != ENOENT) {
266 bb_perror_msg(WARN"cannot stat %s/down", *service);
271 pid = SWAP_LE32(svstatus.pid_le32);
272 timestamp = SWAP_BE64(svstatus.time_be64);
274 switch (svstatus.run_or_finish) {
275 case 1: printf("run: "); break;
276 case 2: printf("finish: "); break;
278 printf("%s: (pid %d) ", m, pid);
280 printf("down: %s: ", m);
282 diff = tnow - timestamp;
283 printf("%us", (diff < 0 ? 0 : diff));
285 if (!normallyup) printf(", normally down");
286 if (svstatus.paused) printf(", paused");
287 if (svstatus.want == 'd') printf(", want down");
288 if (svstatus.got_term) printf(", got TERM");
290 if (normallyup) printf(", normally up");
291 if (svstatus.want == 'u') printf(", want up");
296 static int status(const char *unused UNUSED_PARAM)
301 switch (r) { case -1: case 0: return 0; }
303 r = svstatus_print(*service);
304 if (chdir("log") == -1) {
305 if (errno != ENOENT) {
306 printf("; log: "WARN"cannot change to log service directory: %s",
309 } else if (svstatus_get()) {
311 svstatus_print("log");
313 bb_putchar('\n'); /* will also flush the output */
317 static int checkscript(void)
323 if (stat("check", &s) == -1) {
324 if (errno == ENOENT) return 1;
325 bb_perror_msg(WARN"cannot stat %s/check", *service);
328 /* if (!(s.st_mode & S_IXUSR)) return 1; */
329 prog[0] = (char*)"./check";
333 bb_perror_msg(WARN"cannot %s child %s/check", "run", *service);
336 while (safe_waitpid(pid, &w, 0) == -1) {
337 bb_perror_msg(WARN"cannot %s child %s/check", "wait for", *service);
340 return !wait_exitcode(w);
343 static int check(const char *a)
357 pid = SWAP_LE32(svstatus.pid_le32);
362 if (!pid || svstatus.run_or_finish != 1) return 0;
363 if (!checkscript()) return 0;
369 if (pid && !checkscript()) return 0;
372 if (!pid && svstatus.want == 'd') break;
373 timestamp = SWAP_BE64(svstatus.time_be64);
374 if ((tstart > timestamp) || !pid || svstatus.got_term || !checkscript())
378 timestamp = SWAP_BE64(svstatus.time_be64);
379 if ((!pid && tstart > timestamp) || (pid && svstatus.want != 'd'))
383 svstatus_print(*service);
384 bb_putchar('\n'); /* will also flush the output */
388 static int control(const char *a)
392 if (svstatus_get() <= 0)
394 if (svstatus.want == *a)
396 fd = open_write("supervise/control");
399 warn("cannot open supervise/control");
401 *a == 'x' ? ok("runsv not running") : failx("runsv not running");
404 r = write(fd, a, strlen(a));
406 if (r != strlen(a)) {
407 warn("cannot write to supervise/control");
413 int sv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
414 int sv_main(int argc, char **argv)
417 unsigned i, want_exit;
420 const char *varservice = "/var/service/";
423 unsigned waitsec = 7;
426 int (*act)(const char*);
427 int (*cbk)(const char*);
432 xfunc_error_retval = 100;
435 if (x) varservice = x;
436 x = getenv("SVWAIT");
437 if (x) waitsec = xatou(x);
439 opt_complementary = "w+:vv"; /* -w N, -v is a counter */
440 opt = getopt32(argv, "w:v", &waitsec, &verbose);
444 if (!action || !*argv) bb_show_usage();
448 tnow = time(0) + 0x400000000000000aULL;
450 curdir = open_read(".");
452 fatal_cannot("open current directory");
462 if (!verbose) cbk = NULL;
478 if (str_equal(action, "check")) {
483 case 'u': case 'd': case 'o': case 't': case 'p': case 'h':
484 case 'a': case 'i': case 'k': case 'q': case '1': case '2':
487 if (!verbose) cbk = NULL;
490 if (str_equal(action, "shutdown")) {
494 if (str_equal(action, "start")) {
498 if (str_equal(action, "stop")) {
507 if (str_equal(action, "restart")) {
513 if (str_equal(action, "force-reload")) {
518 if (str_equal(action, "force-restart")) {
523 if (str_equal(action, "force-shutdown")) {
528 if (str_equal(action, "force-stop")) {
538 for (i = 0; i < services; ++i) {
539 if ((**service != '/') && (**service != '.')) {
540 if (chdir(varservice) == -1)
543 if (chdir(*service) == -1) {
545 fail("cannot change to service directory");
546 goto nullify_service_0;
548 if (act && (act(acts) == -1)) {
552 if (fchdir(curdir) == -1)
553 fatal_cannot("change to original directory");
560 diff = tnow - tstart;
563 for (i = 0; i < services; ++i, ++service) {
566 if ((**service != '/') && (**service != '.')) {
567 if (chdir(varservice) == -1)
570 if (chdir(*service) == -1) {
572 fail("cannot change to service directory");
573 goto nullify_service;
576 goto nullify_service;
578 if (diff >= waitsec) {
579 printf(kll ? "kill: " : "timeout: ");
580 if (svstatus_get() > 0) {
581 svstatus_print(*service);
584 bb_putchar('\n'); /* will also flush the output */
590 if (fchdir(curdir) == -1)
591 fatal_cannot("change to original directory");
593 if (want_exit) break;
595 tnow = time(0) + 0x400000000000000aULL;
597 return rc > 99 ? 99 : rc;