Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright (c) 2001-2006, Gerrit Pape |
| 3 | All rights reserved. |
| 4 | |
| 5 | Redistribution and use in source and binary forms, with or without |
| 6 | modification, are permitted provided that the following conditions are met: |
| 7 | |
| 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. |
| 15 | |
| 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. |
| 26 | */ |
| 27 | |
| 28 | /* Taken from http://smarden.sunsite.dk/runit/sv.8.html: |
| 29 | |
| 30 | sv - control and manage services monitored by runsv |
| 31 | |
| 32 | sv [-v] [-w sec] command services |
| 33 | /etc/init.d/service [-w sec] command |
| 34 | |
| 35 | The sv program reports the current status and controls the state of services |
| 36 | monitored by the runsv(8) supervisor. |
| 37 | |
| 38 | services consists of one or more arguments, each argument naming a directory |
Denis Vlasenko | f223efb | 2007-08-03 10:58:12 +0000 | [diff] [blame] | 39 | service used by runsv(8). If service doesn't start with a dot or slash, |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 40 | it is searched in the default services directory /var/service/, otherwise |
| 41 | relative to the current directory. |
| 42 | |
| 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. |
| 46 | |
| 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". |
| 50 | |
| 51 | status |
| 52 | Report the current status of the service, and the appendant log service |
| 53 | if available, to standard output. |
| 54 | up |
| 55 | If the service is not running, start it. If the service stops, restart it. |
| 56 | down |
| 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 |
| 59 | restart service. |
| 60 | once |
| 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. |
| 65 | exit |
| 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 |
| 71 | log service. |
| 72 | |
| 73 | sv actually looks only at the first character of above commands. |
| 74 | |
Denis Vlasenko | f223efb | 2007-08-03 10:58:12 +0000 | [diff] [blame] | 75 | Commands compatible to LSB init script actions: |
| 76 | |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 77 | status |
| 78 | Same as status. |
| 79 | start |
| 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 |
| 84 | with 0. |
| 85 | stop |
| 86 | Same as down, but wait up to 7 seconds for the service to become down. |
| 87 | Then report the status or timeout. |
| 88 | restart |
| 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. |
| 94 | shutdown |
| 95 | Same as exit, but wait up to 7 seconds for the runsv(8) process |
| 96 | to terminate. Then report the status or timeout. |
| 97 | force-stop |
| 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. |
| 100 | force-reload |
| 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. |
| 104 | force-restart |
| 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 |
Denis Vlasenko | f223efb | 2007-08-03 10:58:12 +0000 | [diff] [blame] | 109 | the service is up and available again; it's considered to be available |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 110 | if ./check exits with 0. |
| 111 | force-shutdown |
| 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 |
| 114 | the kill command. |
| 115 | |
| 116 | Additional Commands |
| 117 | |
| 118 | check |
| 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. |
| 125 | |
| 126 | Options |
| 127 | |
| 128 | -v |
| 129 | wait up to 7 seconds for the command to take effect. |
| 130 | Then report the status or timeout. |
| 131 | -w sec |
| 132 | Override the default timeout of 7 seconds with sec seconds. Implies -v. |
| 133 | |
| 134 | Environment |
| 135 | |
| 136 | SVDIR |
| 137 | The environment variable $SVDIR overrides the default services directory |
| 138 | /var/service. |
| 139 | SVWAIT |
| 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. |
| 142 | |
| 143 | Exit Codes |
| 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. |
| 146 | |
| 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. |
| 151 | */ |
| 152 | |
Denis Vlasenko | d18f52b | 2008-03-02 12:53:15 +0000 | [diff] [blame] | 153 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 154 | |
| 155 | //config:config SV |
| 156 | //config: bool "sv" |
| 157 | //config: default y |
| 158 | //config: help |
| 159 | //config: sv reports the current status and controls the state of services |
| 160 | //config: monitored by the runsv supervisor. |
| 161 | //config: |
| 162 | //config:config SV_DEFAULT_SERVICE_DIR |
| 163 | //config: string "Default directory for services" |
| 164 | //config: default "/var/service" |
| 165 | //config: depends on SV |
| 166 | //config: help |
| 167 | //config: Default directory for services. |
| 168 | //config: Defaults to "/var/service" |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 169 | //config: |
| 170 | //config:config SVC |
| 171 | //config: bool "svc" |
| 172 | //config: default y |
| 173 | //config: help |
| 174 | //config: svc controls the state of services monitored by the runsv supervisor. |
| 175 | //config: It is comaptible with daemontools command with the same name. |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 176 | |
| 177 | //applet:IF_SV(APPLET(sv, BB_DIR_USR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 548620c | 2016-12-08 12:24:48 +0100 | [diff] [blame] | 178 | //applet:IF_SVC(APPLET(svc, BB_DIR_USR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 179 | |
| 180 | //kbuild:lib-$(CONFIG_SV) += sv.o |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 181 | //kbuild:lib-$(CONFIG_SVC) += sv.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 182 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 183 | #include <sys/file.h> |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 184 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 185 | #include "common_bufsiz.h" |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 186 | #include "runit_lib.h" |
| 187 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 188 | struct globals { |
| 189 | const char *acts; |
| 190 | char **service; |
| 191 | unsigned rc; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 192 | /* "Bernstein" time format: unix + 0x400000000000000aULL */ |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 193 | uint64_t tstart, tnow; |
| 194 | svstatus_t svstatus; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 195 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 196 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 197 | #define acts (G.acts ) |
| 198 | #define service (G.service ) |
| 199 | #define rc (G.rc ) |
| 200 | #define tstart (G.tstart ) |
| 201 | #define tnow (G.tnow ) |
| 202 | #define svstatus (G.svstatus ) |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 203 | #define INIT_G() do { setup_common_bufsiz(); } while (0) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 204 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 205 | |
Denys Vlasenko | 1d3a04a | 2016-11-28 01:22:57 +0100 | [diff] [blame] | 206 | #define str_equal(s,t) (strcmp((s), (t)) == 0) |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 207 | |
| 208 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 209 | static void fatal_cannot(const char *m1) NORETURN; |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 210 | static void fatal_cannot(const char *m1) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 211 | { |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 212 | bb_perror_msg("fatal: can't %s", m1); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 213 | _exit(151); |
| 214 | } |
| 215 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 216 | static void out(const char *p, const char *m1) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 217 | { |
| 218 | printf("%s%s: %s", p, *service, m1); |
| 219 | if (errno) { |
| 220 | printf(": %s", strerror(errno)); |
| 221 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 222 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 225 | #define WARN "warning: " |
| 226 | #define OK "ok: " |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 227 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 228 | static void fail(const char *m1) |
| 229 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 230 | ++rc; |
| 231 | out("fail: ", m1); |
| 232 | } |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 233 | static void failx(const char *m1) |
| 234 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 235 | errno = 0; |
| 236 | fail(m1); |
| 237 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 238 | static void warn(const char *m1) |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 239 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 240 | ++rc; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 241 | /* "warning: <service>: <m1>\n" */ |
| 242 | out("warning: ", m1); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 243 | } |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 244 | static void ok(const char *m1) |
| 245 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 246 | errno = 0; |
| 247 | out(OK, m1); |
| 248 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 249 | |
| 250 | static int svstatus_get(void) |
| 251 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 252 | int fd, r; |
| 253 | |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 254 | fd = open("supervise/ok", O_WRONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 255 | if (fd == -1) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 256 | if (errno == ENODEV) { |
| 257 | *acts == 'x' ? ok("runsv not running") |
| 258 | : failx("runsv not running"); |
| 259 | return 0; |
| 260 | } |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 261 | warn("can't open supervise/ok"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 262 | return -1; |
| 263 | } |
| 264 | close(fd); |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 265 | fd = open("supervise/status", O_RDONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 266 | if (fd == -1) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 267 | warn("can't open supervise/status"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 268 | return -1; |
| 269 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 270 | r = read(fd, &svstatus, 20); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 271 | close(fd); |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 272 | switch (r) { |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 273 | case 20: |
| 274 | break; |
| 275 | case -1: |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 276 | warn("can't read supervise/status"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 277 | return -1; |
| 278 | default: |
| 279 | errno = 0; |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 280 | warn("can't read supervise/status: bad format"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 281 | return -1; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 282 | } |
| 283 | return 1; |
| 284 | } |
| 285 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 286 | static unsigned svstatus_print(const char *m) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 287 | { |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 288 | int diff; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 289 | int pid; |
| 290 | int normallyup = 0; |
| 291 | struct stat s; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 292 | uint64_t timestamp; |
Denis Vlasenko | f7996f3 | 2007-01-11 17:20:00 +0000 | [diff] [blame] | 293 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 294 | if (stat("down", &s) == -1) { |
| 295 | if (errno != ENOENT) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 296 | bb_perror_msg(WARN"can't stat %s/down", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 297 | return 0; |
| 298 | } |
| 299 | normallyup = 1; |
| 300 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 301 | pid = SWAP_LE32(svstatus.pid_le32); |
| 302 | timestamp = SWAP_BE64(svstatus.time_be64); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 303 | if (pid) { |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 304 | switch (svstatus.run_or_finish) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 305 | case 1: printf("run: "); break; |
| 306 | case 2: printf("finish: "); break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 307 | } |
| 308 | printf("%s: (pid %d) ", m, pid); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 309 | } else { |
| 310 | printf("down: %s: ", m); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 311 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 312 | diff = tnow - timestamp; |
| 313 | printf("%us", (diff < 0 ? 0 : diff)); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 314 | if (pid) { |
| 315 | if (!normallyup) printf(", normally down"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 316 | if (svstatus.paused) printf(", paused"); |
| 317 | if (svstatus.want == 'd') printf(", want down"); |
| 318 | if (svstatus.got_term) printf(", got TERM"); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 319 | } else { |
| 320 | if (normallyup) printf(", normally up"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 321 | if (svstatus.want == 'u') printf(", want up"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 322 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 323 | return pid ? 1 : 2; |
| 324 | } |
| 325 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 326 | static int status(const char *unused UNUSED_PARAM) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 327 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 328 | int r; |
| 329 | |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 330 | if (svstatus_get() <= 0) |
| 331 | return 0; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 332 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 333 | r = svstatus_print(*service); |
| 334 | if (chdir("log") == -1) { |
| 335 | if (errno != ENOENT) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 336 | printf("; log: "WARN"can't change to log service directory: %s", |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 337 | strerror(errno)); |
| 338 | } |
| 339 | } else if (svstatus_get()) { |
| 340 | printf("; "); |
| 341 | svstatus_print("log"); |
| 342 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 343 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 344 | return r; |
| 345 | } |
| 346 | |
| 347 | static int checkscript(void) |
| 348 | { |
| 349 | char *prog[2]; |
| 350 | struct stat s; |
| 351 | int pid, w; |
| 352 | |
| 353 | if (stat("check", &s) == -1) { |
| 354 | if (errno == ENOENT) return 1; |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 355 | bb_perror_msg(WARN"can't stat %s/check", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 356 | return 0; |
| 357 | } |
| 358 | /* if (!(s.st_mode & S_IXUSR)) return 1; */ |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 359 | prog[0] = (char*)"./check"; |
| 360 | prog[1] = NULL; |
| 361 | pid = spawn(prog); |
| 362 | if (pid <= 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 363 | bb_perror_msg(WARN"can't %s child %s/check", "run", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 364 | return 0; |
| 365 | } |
Denis Vlasenko | fb0eba7 | 2008-01-02 19:55:04 +0000 | [diff] [blame] | 366 | while (safe_waitpid(pid, &w, 0) == -1) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 367 | bb_perror_msg(WARN"can't %s child %s/check", "wait for", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 368 | return 0; |
| 369 | } |
Denys Vlasenko | 8f24f98 | 2009-06-07 16:02:00 +0200 | [diff] [blame] | 370 | return WEXITSTATUS(w) == 0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 371 | } |
| 372 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 373 | static int check(const char *a) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 374 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 375 | int r; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 376 | unsigned pid_le32; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 377 | uint64_t timestamp; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 378 | |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 379 | r = svstatus_get(); |
| 380 | if (r == -1) |
| 381 | return -1; |
| 382 | if (r == 0) { |
| 383 | if (*a == 'x') |
| 384 | return 1; |
| 385 | return -1; |
| 386 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 387 | pid_le32 = svstatus.pid_le32; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 388 | switch (*a) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 389 | case 'x': |
| 390 | return 0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 391 | case 'u': |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 392 | if (!pid_le32 || svstatus.run_or_finish != 1) return 0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 393 | if (!checkscript()) return 0; |
| 394 | break; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 395 | case 'd': |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 396 | if (pid_le32) return 0; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 397 | break; |
| 398 | case 'c': |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 399 | if (pid_le32 && !checkscript()) return 0; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 400 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 401 | case 't': |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 402 | if (!pid_le32 && svstatus.want == 'd') break; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 403 | timestamp = SWAP_BE64(svstatus.time_be64); |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 404 | if ((tstart > timestamp) || !pid_le32 || svstatus.got_term || !checkscript()) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 405 | return 0; |
| 406 | break; |
| 407 | case 'o': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 408 | timestamp = SWAP_BE64(svstatus.time_be64); |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 409 | if ((!pid_le32 && tstart > timestamp) || (pid_le32 && svstatus.want != 'd')) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 410 | return 0; |
| 411 | } |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 412 | printf(OK); |
| 413 | svstatus_print(*service); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 414 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 415 | return 1; |
| 416 | } |
| 417 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 418 | static int control(const char *a) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 419 | { |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 420 | int fd, r, l; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 421 | |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 422 | /* Is it an optimization? |
| 423 | It causes problems with "sv o SRV; ...; sv d SRV" |
| 424 | ('d' is not passed to SRV because its .want == 'd'): |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 425 | if (svstatus_get() <= 0) |
| 426 | return -1; |
| 427 | if (svstatus.want == *a) |
| 428 | return 0; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 429 | */ |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 430 | fd = open("supervise/control", O_WRONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 431 | if (fd == -1) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 432 | if (errno != ENODEV) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 433 | warn("can't open supervise/control"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 434 | else |
| 435 | *a == 'x' ? ok("runsv not running") : failx("runsv not running"); |
| 436 | return -1; |
| 437 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 438 | l = strlen(a); |
| 439 | r = write(fd, a, l); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 440 | close(fd); |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 441 | if (r != l) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 442 | warn("can't write to supervise/control"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 443 | return -1; |
| 444 | } |
| 445 | return 1; |
| 446 | } |
| 447 | |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 448 | //usage:#define sv_trivial_usage |
| 449 | //usage: "[-v] [-w SEC] CMD SERVICE_DIR..." |
| 450 | //usage:#define sv_full_usage "\n\n" |
| 451 | //usage: "Control services monitored by runsv supervisor.\n" |
| 452 | //usage: "Commands (only first character is enough):\n" |
| 453 | //usage: "\n" |
| 454 | //usage: "status: query service status\n" |
| 455 | //usage: "up: if service isn't running, start it. If service stops, restart it\n" |
| 456 | //usage: "once: like 'up', but if service stops, don't restart it\n" |
| 457 | //usage: "down: send TERM and CONT signals. If ./run exits, start ./finish\n" |
| 458 | //usage: " if it exists. After it stops, don't restart service\n" |
| 459 | //usage: "exit: send TERM and CONT signals to service and log service. If they exit,\n" |
| 460 | //usage: " runsv exits too\n" |
| 461 | //usage: "pause, cont, hup, alarm, interrupt, quit, 1, 2, term, kill: send\n" |
| 462 | //usage: "STOP, CONT, HUP, ALRM, INT, QUIT, USR1, USR2, TERM, KILL signal to service" |
| 463 | static int sv(char **argv) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 464 | { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 465 | char *x; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 466 | char *action; |
Denis Vlasenko | f068b3e | 2008-11-06 23:07:42 +0000 | [diff] [blame] | 467 | const char *varservice = CONFIG_SV_DEFAULT_SERVICE_DIR; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 468 | unsigned waitsec = 7; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 469 | smallint kll = 0; |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 470 | int verbose = 0; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 471 | int (*act)(const char*); |
| 472 | int (*cbk)(const char*); |
| 473 | int curdir; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 474 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 475 | INIT_G(); |
| 476 | |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 477 | xfunc_error_retval = 100; |
| 478 | |
| 479 | x = getenv("SVDIR"); |
| 480 | if (x) varservice = x; |
| 481 | x = getenv("SVWAIT"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 482 | if (x) waitsec = xatou(x); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 483 | |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 484 | opt_complementary = "vv"; /* -w N, -v is a counter */ |
| 485 | getopt32(argv, "w:+v", &waitsec, &verbose); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 486 | argv += optind; |
| 487 | action = *argv++; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 488 | if (!action || !*argv) bb_show_usage(); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 489 | |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 490 | tnow = time(NULL) + 0x400000000000000aULL; |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 491 | tstart = tnow; |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 492 | curdir = open(".", O_RDONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 493 | if (curdir == -1) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 494 | fatal_cannot("open current directory"); |
| 495 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 496 | act = &control; |
| 497 | acts = "s"; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 498 | cbk = ✓ |
| 499 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 500 | switch (*action) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 501 | case 'x': |
| 502 | case 'e': |
| 503 | acts = "x"; |
| 504 | if (!verbose) cbk = NULL; |
| 505 | break; |
| 506 | case 'X': |
| 507 | case 'E': |
| 508 | acts = "x"; |
| 509 | kll = 1; |
| 510 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 511 | case 'D': |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 512 | acts = "d"; |
| 513 | kll = 1; |
| 514 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 515 | case 'T': |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 516 | acts = "tc"; |
| 517 | kll = 1; |
| 518 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 519 | case 'c': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 520 | if (str_equal(action, "check")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 521 | act = NULL; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 522 | acts = "c"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 523 | break; |
| 524 | } |
| 525 | case 'u': case 'd': case 'o': case 't': case 'p': case 'h': |
| 526 | case 'a': case 'i': case 'k': case 'q': case '1': case '2': |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 527 | action[1] = '\0'; |
| 528 | acts = action; |
| 529 | if (!verbose) cbk = NULL; |
| 530 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 531 | case 's': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 532 | if (str_equal(action, "shutdown")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 533 | acts = "x"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 534 | break; |
| 535 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 536 | if (str_equal(action, "start")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 537 | acts = "u"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 538 | break; |
| 539 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 540 | if (str_equal(action, "stop")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 541 | acts = "d"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 542 | break; |
| 543 | } |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 544 | /* "status" */ |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 545 | act = &status; |
| 546 | cbk = NULL; |
| 547 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 548 | case 'r': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 549 | if (str_equal(action, "restart")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 550 | acts = "tcu"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 551 | break; |
| 552 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 553 | bb_show_usage(); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 554 | case 'f': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 555 | if (str_equal(action, "force-reload")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 556 | acts = "tc"; |
| 557 | kll = 1; |
| 558 | break; |
| 559 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 560 | if (str_equal(action, "force-restart")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 561 | acts = "tcu"; |
| 562 | kll = 1; |
| 563 | break; |
| 564 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 565 | if (str_equal(action, "force-shutdown")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 566 | acts = "x"; |
| 567 | kll = 1; |
| 568 | break; |
| 569 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 570 | if (str_equal(action, "force-stop")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 571 | acts = "d"; |
| 572 | kll = 1; |
| 573 | break; |
| 574 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 575 | default: |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 576 | bb_show_usage(); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 577 | } |
| 578 | |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 579 | service = argv; |
| 580 | while ((x = *service) != NULL) { |
| 581 | if (x[0] != '/' && x[0] != '.') { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 582 | if (chdir(varservice) == -1) |
| 583 | goto chdir_failed_0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 584 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 585 | if (chdir(x) == -1) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 586 | chdir_failed_0: |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 587 | fail("can't change to service directory"); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 588 | goto nullify_service_0; |
| 589 | } |
| 590 | if (act && (act(acts) == -1)) { |
| 591 | nullify_service_0: |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 592 | *service = (char*) -1L; /* "dead" */ |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 593 | } |
| 594 | if (fchdir(curdir) == -1) |
| 595 | fatal_cannot("change to original directory"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 596 | service++; |
| 597 | } |
| 598 | |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 599 | if (cbk) while (1) { |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 600 | int want_exit; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 601 | int diff; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 602 | |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 603 | diff = tnow - tstart; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 604 | service = argv; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 605 | want_exit = 1; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 606 | while ((x = *service) != NULL) { |
| 607 | if (x == (char*) -1L) /* "dead" */ |
| 608 | goto next; |
| 609 | if (x[0] != '/' && x[0] != '.') { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 610 | if (chdir(varservice) == -1) |
| 611 | goto chdir_failed; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 612 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 613 | if (chdir(x) == -1) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 614 | chdir_failed: |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 615 | fail("can't change to service directory"); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 616 | goto nullify_service; |
| 617 | } |
| 618 | if (cbk(acts) != 0) |
| 619 | goto nullify_service; |
| 620 | want_exit = 0; |
| 621 | if (diff >= waitsec) { |
| 622 | printf(kll ? "kill: " : "timeout: "); |
| 623 | if (svstatus_get() > 0) { |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 624 | svstatus_print(x); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 625 | ++rc; |
| 626 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 627 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 628 | if (kll) |
| 629 | control("k"); |
| 630 | nullify_service: |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 631 | *service = (char*) -1L; /* "dead" */ |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 632 | } |
| 633 | if (fchdir(curdir) == -1) |
| 634 | fatal_cannot("change to original directory"); |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 635 | next: |
| 636 | service++; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 637 | } |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 638 | if (want_exit) break; |
| 639 | usleep(420000); |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 640 | tnow = time(NULL) + 0x400000000000000aULL; |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 641 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 642 | return rc > 99 ? 99 : rc; |
| 643 | } |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 644 | |
| 645 | #if ENABLE_SV |
| 646 | int sv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 647 | int sv_main(int argc UNUSED_PARAM, char **argv) |
| 648 | { |
| 649 | return sv(argv); |
| 650 | } |
| 651 | #endif |
| 652 | |
| 653 | //usage:#define svc_trivial_usage |
| 654 | //usage: "[-udopchaitkx] SERVICE_DIR..." |
| 655 | //usage:#define svc_full_usage "\n\n" |
| 656 | //usage: "Control services monitored by runsv supervisor" |
| 657 | //usage: "\n" |
| 658 | //usage: "\n"" -u If service is not running, start it; restart if it stops" |
| 659 | //usage: "\n"" -d If service is running, send TERM+CONT signals; do not restart it" |
| 660 | //usage: "\n"" -o Once: if service is not running, start it; do not restart it" |
| 661 | //usage: "\n"" -pchaitk Send STOP, CONT, HUP, ALRM, INT, TERM, KILL signal to service" |
| 662 | //usage: "\n"" -x Exit: runsv will exit as soon as the service is down" |
| 663 | #if ENABLE_SVC |
| 664 | int svc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 665 | int svc_main(int argc UNUSED_PARAM, char **argv) |
| 666 | { |
| 667 | char command[2]; |
| 668 | const char *optstring; |
| 669 | unsigned opts; |
| 670 | |
| 671 | INIT_G(); |
| 672 | |
| 673 | optstring = "udopchaitkx"; |
| 674 | opts = getopt32(argv, optstring); |
| 675 | argv += optind; |
| 676 | if (!argv[0] || !opts) |
| 677 | bb_show_usage(); |
| 678 | |
| 679 | argv -= 2; |
| 680 | if (optind > 2) { |
| 681 | argv--; |
| 682 | argv[2] = (char*)"--"; |
| 683 | } |
| 684 | argv[0] = (char*)"sv"; |
| 685 | argv[1] = command; |
| 686 | command[1] = '\0'; |
| 687 | |
| 688 | /* getopt32() was already called: |
| 689 | * reset the libc getopt() function, which keeps internal state. |
| 690 | */ |
Kaarle Ritvanen | 835ad3a | 2017-04-12 00:58:46 +0300 | [diff] [blame^] | 691 | GETOPT_RESET(); |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 692 | |
| 693 | do { |
| 694 | if (opts & 1) { |
| 695 | int r; |
| 696 | command[0] = *optstring; |
| 697 | r = sv(argv); |
| 698 | if (r) |
| 699 | return 1; |
| 700 | } |
| 701 | optstring++; |
| 702 | opts >>= 1; |
| 703 | } while (opts); |
| 704 | |
| 705 | return 0; |
| 706 | } |
| 707 | #endif |