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 | |
Denys Vlasenko | 95f7953 | 2017-08-02 14:26:33 +0200 | [diff] [blame] | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 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 | |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 28 | /* Taken from http://smarden.org/runit/sv.8.html: |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 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 |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 39 | service used by runsv(8). If service doesn't start with a dot or slash and |
| 40 | doesn't end with a slash, it is searched in the default services directory |
| 41 | /var/service/, otherwise relative to the current directory. |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 42 | |
| 43 | command is one of up, down, status, once, pause, cont, hup, alarm, interrupt, |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 44 | 1, 2, term, kill, or exit, or start, stop, reload, restart, shutdown, |
| 45 | force-stop, force-reload, force-restart, force-shutdown, try-restart. |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 46 | |
| 47 | status |
| 48 | Report the current status of the service, and the appendant log service |
| 49 | if available, to standard output. |
| 50 | up |
| 51 | If the service is not running, start it. If the service stops, restart it. |
| 52 | down |
| 53 | If the service is running, send it the TERM signal, and the CONT signal. |
| 54 | If ./run exits, start ./finish if it exists. After it stops, do not |
| 55 | restart service. |
| 56 | once |
| 57 | If the service is not running, start it. Do not restart it if it stops. |
| 58 | pause cont hup alarm interrupt quit 1 2 term kill |
| 59 | If the service is running, send it the STOP, CONT, HUP, ALRM, INT, QUIT, |
| 60 | USR1, USR2, TERM, or KILL signal respectively. |
| 61 | exit |
| 62 | If the service is running, send it the TERM signal, and the CONT signal. |
| 63 | Do not restart the service. If the service is down, and no log service |
| 64 | exists, runsv(8) exits. If the service is down and a log service exists, |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 65 | runsv(8) closes the standard input of the log service and waits for it to |
| 66 | terminate. If the log service is down, runsv(8) exits. This command is |
| 67 | ignored if it is given to an appendant log service. |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 68 | |
| 69 | sv actually looks only at the first character of above commands. |
| 70 | |
Denis Vlasenko | f223efb | 2007-08-03 10:58:12 +0000 | [diff] [blame] | 71 | Commands compatible to LSB init script actions: |
| 72 | |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 73 | status |
| 74 | Same as status. |
| 75 | start |
| 76 | Same as up, but wait up to 7 seconds for the command to take effect. |
| 77 | Then report the status or timeout. If the script ./check exists in |
| 78 | the service directory, sv runs this script to check whether the service |
| 79 | is up and available; it's considered to be available if ./check exits |
| 80 | with 0. |
| 81 | stop |
| 82 | Same as down, but wait up to 7 seconds for the service to become down. |
| 83 | Then report the status or timeout. |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 84 | reload |
| 85 | Same as hup, and additionally report the status afterwards. |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 86 | restart |
| 87 | Send the commands term, cont, and up to the service, and wait up to |
| 88 | 7 seconds for the service to restart. Then report the status or timeout. |
| 89 | If the script ./check exists in the service directory, sv runs this script |
| 90 | to check whether the service is up and available again; it's considered |
| 91 | to be available if ./check exits with 0. |
| 92 | shutdown |
| 93 | Same as exit, but wait up to 7 seconds for the runsv(8) process |
| 94 | to terminate. Then report the status or timeout. |
| 95 | force-stop |
| 96 | Same as down, but wait up to 7 seconds for the service to become down. |
| 97 | Then report the status, and on timeout send the service the kill command. |
| 98 | force-reload |
| 99 | Send the service the term and cont commands, and wait up to |
| 100 | 7 seconds for the service to restart. Then report the status, |
| 101 | and on timeout send the service the kill command. |
| 102 | force-restart |
| 103 | Send the service the term, cont and up commands, and wait up to |
| 104 | 7 seconds for the service to restart. Then report the status, and |
| 105 | on timeout send the service the kill command. If the script ./check |
| 106 | exists in the service directory, sv runs this script to check whether |
Denis Vlasenko | f223efb | 2007-08-03 10:58:12 +0000 | [diff] [blame] | 107 | 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] | 108 | if ./check exits with 0. |
| 109 | force-shutdown |
| 110 | Same as exit, but wait up to 7 seconds for the runsv(8) process to |
| 111 | terminate. Then report the status, and on timeout send the service |
| 112 | the kill command. |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 113 | try-restart |
| 114 | if the service is running, send it the term and cont commands, and wait up to |
| 115 | 7 seconds for the service to restart. Then report the status or timeout. |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 116 | |
| 117 | Additional Commands |
| 118 | |
| 119 | check |
| 120 | Check for the service to be in the state that's been requested. Wait up to |
| 121 | 7 seconds for the service to reach the requested state, then report |
| 122 | the status or timeout. If the requested state of the service is up, |
| 123 | and the script ./check exists in the service directory, sv runs |
| 124 | this script to check whether the service is up and running; |
| 125 | it's considered to be up if ./check exits with 0. |
| 126 | |
| 127 | Options |
| 128 | |
| 129 | -v |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 130 | If the command is up, down, term, once, cont, or exit, then wait up to 7 |
| 131 | seconds for the command to take effect. Then report the status or timeout. |
Denis Vlasenko | 8a16405 | 2007-03-12 23:34:52 +0000 | [diff] [blame] | 132 | -w sec |
| 133 | Override the default timeout of 7 seconds with sec seconds. Implies -v. |
| 134 | |
| 135 | Environment |
| 136 | |
| 137 | SVDIR |
| 138 | The environment variable $SVDIR overrides the default services directory |
| 139 | /var/service. |
| 140 | SVWAIT |
| 141 | The environment variable $SVWAIT overrides the default 7 seconds to wait |
| 142 | for a command to take effect. It is overridden by the -w option. |
| 143 | |
| 144 | Exit Codes |
| 145 | sv exits 0, if the command was successfully sent to all services, and, |
| 146 | if it was told to wait, the command has taken effect to all services. |
| 147 | |
| 148 | For each service that caused an error (e.g. the directory is not |
| 149 | controlled by a runsv(8) process, or sv timed out while waiting), |
| 150 | sv increases the exit code by one and exits non zero. The maximum |
| 151 | is 99. sv exits 100 on error. |
| 152 | */ |
| 153 | |
Denis Vlasenko | d18f52b | 2008-03-02 12:53:15 +0000 | [diff] [blame] | 154 | /* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */ |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 155 | |
| 156 | //config:config SV |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 157 | //config: bool "sv (7.8 kb)" |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 158 | //config: default y |
| 159 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 160 | //config: sv reports the current status and controls the state of services |
| 161 | //config: monitored by the runsv supervisor. |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 162 | //config: |
| 163 | //config:config SV_DEFAULT_SERVICE_DIR |
| 164 | //config: string "Default directory for services" |
| 165 | //config: default "/var/service" |
Denys Vlasenko | 0d79d77 | 2018-03-30 20:02:33 +0200 | [diff] [blame] | 166 | //config: depends on SV || SVC || SVOK |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 167 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 168 | //config: Default directory for services. |
| 169 | //config: Defaults to "/var/service" |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 170 | //config: |
| 171 | //config:config SVC |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 172 | //config: bool "svc (7.8 kb)" |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 173 | //config: default y |
| 174 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 175 | //config: svc controls the state of services monitored by the runsv supervisor. |
Denys Vlasenko | 0d79d77 | 2018-03-30 20:02:33 +0200 | [diff] [blame] | 176 | //config: It is compatible with daemontools command with the same name. |
| 177 | //config: |
| 178 | //config:config SVOK |
| 179 | //config: bool "svok" |
| 180 | //config: default y |
| 181 | //config: help |
| 182 | //config: svok checks whether runsv supervisor is running. |
| 183 | //config: It is compatible with daemontools command with the same name. |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 184 | |
Denys Vlasenko | 0d79d77 | 2018-03-30 20:02:33 +0200 | [diff] [blame] | 185 | //applet:IF_SV( APPLET_NOEXEC(sv, sv, BB_DIR_USR_BIN, BB_SUID_DROP, sv )) |
| 186 | //applet:IF_SVC( APPLET_NOEXEC(svc, svc, BB_DIR_USR_BIN, BB_SUID_DROP, svc )) |
| 187 | //applet:IF_SVOK(APPLET_NOEXEC(svok, svok, BB_DIR_USR_BIN, BB_SUID_DROP, svok)) |
Denys Vlasenko | 0863e1a | 2015-10-19 00:41:28 +0200 | [diff] [blame] | 188 | |
| 189 | //kbuild:lib-$(CONFIG_SV) += sv.o |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 190 | //kbuild:lib-$(CONFIG_SVC) += sv.o |
Denys Vlasenko | 0d79d77 | 2018-03-30 20:02:33 +0200 | [diff] [blame] | 191 | //kbuild:lib-$(CONFIG_SVOK) += sv.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 192 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 193 | #include <sys/file.h> |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 194 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 195 | #include "common_bufsiz.h" |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 196 | #include "runit_lib.h" |
| 197 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 198 | struct globals { |
| 199 | const char *acts; |
| 200 | char **service; |
| 201 | unsigned rc; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 202 | /* "Bernstein" time format: unix + 0x400000000000000aULL */ |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 203 | uint64_t tstart, tnow; |
| 204 | svstatus_t svstatus; |
Denys Vlasenko | b9be780 | 2017-08-06 21:23:03 +0200 | [diff] [blame] | 205 | smallint islog; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 206 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 207 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 208 | #define acts (G.acts ) |
| 209 | #define service (G.service ) |
| 210 | #define rc (G.rc ) |
| 211 | #define tstart (G.tstart ) |
| 212 | #define tnow (G.tnow ) |
| 213 | #define svstatus (G.svstatus ) |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 214 | #define islog (G.islog ) |
Denys Vlasenko | b9be780 | 2017-08-06 21:23:03 +0200 | [diff] [blame] | 215 | #define INIT_G() do { \ |
| 216 | setup_common_bufsiz(); \ |
Denys Vlasenko | 7389662 | 2017-08-06 21:29:51 +0200 | [diff] [blame] | 217 | /* need to zero out, svc calls sv() repeatedly */ \ |
| 218 | memset(&G, 0, sizeof(G)); \ |
Denys Vlasenko | b9be780 | 2017-08-06 21:23:03 +0200 | [diff] [blame] | 219 | } while (0) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 220 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 221 | |
Denys Vlasenko | 1d3a04a | 2016-11-28 01:22:57 +0100 | [diff] [blame] | 222 | #define str_equal(s,t) (strcmp((s), (t)) == 0) |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 223 | |
| 224 | |
Denys Vlasenko | 2ab994f | 2018-04-06 18:26:33 +0200 | [diff] [blame] | 225 | #if ENABLE_SV || ENABLE_SVC |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 226 | static void fatal_cannot(const char *m1) NORETURN; |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 227 | static void fatal_cannot(const char *m1) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 228 | { |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 229 | bb_perror_msg("fatal: can't %s", m1); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 230 | _exit(151); |
| 231 | } |
| 232 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 233 | static void out(const char *p, const char *m1) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 234 | { |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 235 | printf("%s%s%s: %s", p, *service, islog ? "/log" : "", m1); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 236 | if (errno) { |
Denys Vlasenko | 6f97b30 | 2017-09-29 18:17:25 +0200 | [diff] [blame] | 237 | printf(": "STRERROR_FMT STRERROR_ERRNO); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 238 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 239 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 242 | #define WARN "warning: " |
| 243 | #define OK "ok: " |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 244 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 245 | static void fail(const char *m1) |
| 246 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 247 | ++rc; |
| 248 | out("fail: ", m1); |
| 249 | } |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 250 | static void failx(const char *m1) |
| 251 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 252 | errno = 0; |
| 253 | fail(m1); |
| 254 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 255 | static void warn(const char *m1) |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 256 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 257 | ++rc; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 258 | /* "warning: <service>: <m1>\n" */ |
| 259 | out("warning: ", m1); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 260 | } |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 261 | static void ok(const char *m1) |
| 262 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 263 | errno = 0; |
| 264 | out(OK, m1); |
| 265 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 266 | |
| 267 | static int svstatus_get(void) |
| 268 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 269 | int fd, r; |
| 270 | |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 271 | fd = open("supervise/ok", O_WRONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 272 | if (fd == -1) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 273 | if (errno == ENODEV) { |
| 274 | *acts == 'x' ? ok("runsv not running") |
| 275 | : failx("runsv not running"); |
| 276 | return 0; |
| 277 | } |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 278 | warn("can't open supervise/ok"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 279 | return -1; |
| 280 | } |
| 281 | close(fd); |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 282 | fd = open("supervise/status", O_RDONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 283 | if (fd == -1) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 284 | warn("can't open supervise/status"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 285 | return -1; |
| 286 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 287 | r = read(fd, &svstatus, 20); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 288 | close(fd); |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 289 | switch (r) { |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 290 | case 20: |
| 291 | break; |
| 292 | case -1: |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 293 | warn("can't read supervise/status"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 294 | return -1; |
| 295 | default: |
| 296 | errno = 0; |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 297 | warn("can't read supervise/status: bad format"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 298 | return -1; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 299 | } |
| 300 | return 1; |
| 301 | } |
| 302 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 303 | static unsigned svstatus_print(const char *m) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 304 | { |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 305 | int diff; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 306 | int pid; |
| 307 | int normallyup = 0; |
| 308 | struct stat s; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 309 | uint64_t timestamp; |
Denis Vlasenko | f7996f3 | 2007-01-11 17:20:00 +0000 | [diff] [blame] | 310 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 311 | if (stat("down", &s) == -1) { |
| 312 | if (errno != ENOENT) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 313 | bb_perror_msg(WARN"can't stat %s/down", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 314 | return 0; |
| 315 | } |
| 316 | normallyup = 1; |
| 317 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 318 | pid = SWAP_LE32(svstatus.pid_le32); |
| 319 | timestamp = SWAP_BE64(svstatus.time_be64); |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 320 | switch (svstatus.run_or_finish) { |
| 321 | case 0: printf("down: "); break; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 322 | case 1: printf("run: "); break; |
| 323 | case 2: printf("finish: "); break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 324 | } |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 325 | printf("%s: ", m); |
| 326 | if (svstatus.run_or_finish) |
| 327 | printf("(pid %d) ", pid); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 328 | diff = tnow - timestamp; |
| 329 | printf("%us", (diff < 0 ? 0 : diff)); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 330 | if (pid) { |
| 331 | if (!normallyup) printf(", normally down"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 332 | if (svstatus.paused) printf(", paused"); |
| 333 | if (svstatus.want == 'd') printf(", want down"); |
| 334 | if (svstatus.got_term) printf(", got TERM"); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 335 | } else { |
| 336 | if (normallyup) printf(", normally up"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 337 | if (svstatus.want == 'u') printf(", want up"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 338 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 339 | return pid ? 1 : 2; |
| 340 | } |
| 341 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 342 | static int status(const char *unused UNUSED_PARAM) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 343 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 344 | int r; |
| 345 | |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 346 | if (svstatus_get() <= 0) |
| 347 | return 0; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 348 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 349 | r = svstatus_print(*service); |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 350 | islog = 1; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 351 | if (chdir("log") == -1) { |
| 352 | if (errno != ENOENT) { |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 353 | printf("; "); |
| 354 | warn("can't change directory"); |
| 355 | } else |
| 356 | bb_putchar('\n'); |
| 357 | } else { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 358 | printf("; "); |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 359 | if (svstatus_get()) { |
| 360 | r = svstatus_print("log"); |
| 361 | bb_putchar('\n'); |
| 362 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 363 | } |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 364 | islog = 0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 365 | return r; |
| 366 | } |
| 367 | |
| 368 | static int checkscript(void) |
| 369 | { |
| 370 | char *prog[2]; |
| 371 | struct stat s; |
| 372 | int pid, w; |
| 373 | |
| 374 | if (stat("check", &s) == -1) { |
| 375 | if (errno == ENOENT) return 1; |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 376 | bb_perror_msg(WARN"can't stat %s/check", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 377 | return 0; |
| 378 | } |
| 379 | /* if (!(s.st_mode & S_IXUSR)) return 1; */ |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 380 | prog[0] = (char*)"./check"; |
| 381 | prog[1] = NULL; |
| 382 | pid = spawn(prog); |
| 383 | if (pid <= 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 384 | bb_perror_msg(WARN"can't %s child %s/check", "run", *service); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 385 | return 0; |
| 386 | } |
Denis Vlasenko | fb0eba7 | 2008-01-02 19:55:04 +0000 | [diff] [blame] | 387 | while (safe_waitpid(pid, &w, 0) == -1) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 388 | 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] | 389 | return 0; |
| 390 | } |
Denys Vlasenko | 8f24f98 | 2009-06-07 16:02:00 +0200 | [diff] [blame] | 391 | return WEXITSTATUS(w) == 0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 394 | static int check(const char *a) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 395 | { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 396 | int r; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 397 | unsigned pid_le32; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 398 | uint64_t timestamp; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 399 | |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 400 | r = svstatus_get(); |
| 401 | if (r == -1) |
| 402 | return -1; |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 403 | while (*a) { |
| 404 | if (r == 0) { |
| 405 | if (*a == 'x') |
| 406 | return 1; |
| 407 | return -1; |
| 408 | } |
| 409 | pid_le32 = svstatus.pid_le32; |
| 410 | switch (*a) { |
| 411 | case 'x': |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 412 | return 0; |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 413 | case 'u': |
| 414 | if (!pid_le32 || svstatus.run_or_finish != 1) |
| 415 | return 0; |
| 416 | if (!checkscript()) |
| 417 | return 0; |
| 418 | break; |
| 419 | case 'd': |
| 420 | if (pid_le32 || svstatus.run_or_finish != 0) |
| 421 | return 0; |
| 422 | break; |
| 423 | case 'C': |
| 424 | if (pid_le32 && !checkscript()) |
| 425 | return 0; |
| 426 | break; |
| 427 | case 't': |
| 428 | case 'k': |
| 429 | if (!pid_le32 && svstatus.want == 'd') |
| 430 | break; |
| 431 | timestamp = SWAP_BE64(svstatus.time_be64); |
| 432 | if ((tstart > timestamp) || !pid_le32 || svstatus.got_term || !checkscript()) |
| 433 | return 0; |
| 434 | break; |
| 435 | case 'o': |
| 436 | timestamp = SWAP_BE64(svstatus.time_be64); |
| 437 | if ((!pid_le32 && tstart > timestamp) || (pid_le32 && svstatus.want != 'd')) |
| 438 | return 0; |
| 439 | break; |
| 440 | case 'p': |
| 441 | if (pid_le32 && !svstatus.paused) |
| 442 | return 0; |
| 443 | break; |
| 444 | case 'c': |
| 445 | if (pid_le32 && svstatus.paused) |
| 446 | return 0; |
| 447 | break; |
| 448 | } |
| 449 | ++a; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 450 | } |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 451 | printf(OK); |
| 452 | svstatus_print(*service); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 453 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 454 | return 1; |
| 455 | } |
| 456 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 457 | static int control(const char *a) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 458 | { |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 459 | int fd, r, l; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 460 | |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 461 | if (svstatus_get() <= 0) |
| 462 | return -1; |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 463 | if (svstatus.want == *a && (*a != 'd' || svstatus.got_term == 1)) |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 464 | return 0; |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 465 | fd = open("supervise/control", O_WRONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 466 | if (fd == -1) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 467 | if (errno != ENODEV) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 468 | warn("can't open supervise/control"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 469 | else |
| 470 | *a == 'x' ? ok("runsv not running") : failx("runsv not running"); |
| 471 | return -1; |
| 472 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 473 | l = strlen(a); |
| 474 | r = write(fd, a, l); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 475 | close(fd); |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 476 | if (r != l) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 477 | warn("can't write to supervise/control"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 478 | return -1; |
| 479 | } |
| 480 | return 1; |
| 481 | } |
| 482 | |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 483 | //usage:#define sv_trivial_usage |
| 484 | //usage: "[-v] [-w SEC] CMD SERVICE_DIR..." |
| 485 | //usage:#define sv_full_usage "\n\n" |
| 486 | //usage: "Control services monitored by runsv supervisor.\n" |
| 487 | //usage: "Commands (only first character is enough):\n" |
| 488 | //usage: "\n" |
| 489 | //usage: "status: query service status\n" |
| 490 | //usage: "up: if service isn't running, start it. If service stops, restart it\n" |
| 491 | //usage: "once: like 'up', but if service stops, don't restart it\n" |
| 492 | //usage: "down: send TERM and CONT signals. If ./run exits, start ./finish\n" |
| 493 | //usage: " if it exists. After it stops, don't restart service\n" |
| 494 | //usage: "exit: send TERM and CONT signals to service and log service. If they exit,\n" |
| 495 | //usage: " runsv exits too\n" |
| 496 | //usage: "pause, cont, hup, alarm, interrupt, quit, 1, 2, term, kill: send\n" |
| 497 | //usage: "STOP, CONT, HUP, ALRM, INT, QUIT, USR1, USR2, TERM, KILL signal to service" |
| 498 | static int sv(char **argv) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 499 | { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 500 | char *x; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 501 | char *action; |
Denis Vlasenko | f068b3e | 2008-11-06 23:07:42 +0000 | [diff] [blame] | 502 | const char *varservice = CONFIG_SV_DEFAULT_SERVICE_DIR; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 503 | unsigned waitsec = 7; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 504 | smallint kll = 0; |
Denis Vlasenko | 1d42665 | 2008-03-17 09:09:09 +0000 | [diff] [blame] | 505 | int verbose = 0; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 506 | int (*act)(const char*); |
| 507 | int (*cbk)(const char*); |
| 508 | int curdir; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 509 | |
Denis Vlasenko | b925605 | 2007-09-28 10:29:17 +0000 | [diff] [blame] | 510 | INIT_G(); |
| 511 | |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 512 | xfunc_error_retval = 100; |
| 513 | |
| 514 | x = getenv("SVDIR"); |
| 515 | if (x) varservice = x; |
| 516 | x = getenv("SVWAIT"); |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 517 | if (x) waitsec = xatou(x); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 518 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 519 | getopt32(argv, "^" "w:+v" "\0" "vv" /* -w N, -v is a counter */, |
| 520 | &waitsec, &verbose |
| 521 | ); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 522 | argv += optind; |
| 523 | action = *argv++; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 524 | if (!action || !*argv) bb_show_usage(); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 525 | |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 526 | tnow = time(NULL) + 0x400000000000000aULL; |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 527 | tstart = tnow; |
Denys Vlasenko | 05e8605 | 2010-10-13 12:53:27 +0200 | [diff] [blame] | 528 | curdir = open(".", O_RDONLY|O_NDELAY); |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 529 | if (curdir == -1) |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 530 | fatal_cannot("open current directory"); |
| 531 | |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 532 | act = &control; |
| 533 | acts = "s"; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 534 | cbk = ✓ |
| 535 | |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 536 | switch (*action) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 537 | case 'x': |
| 538 | case 'e': |
| 539 | acts = "x"; |
| 540 | if (!verbose) cbk = NULL; |
| 541 | break; |
| 542 | case 'X': |
| 543 | case 'E': |
| 544 | acts = "x"; |
| 545 | kll = 1; |
| 546 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 547 | case 'D': |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 548 | acts = "d"; |
| 549 | kll = 1; |
| 550 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 551 | case 'T': |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 552 | acts = "tc"; |
| 553 | kll = 1; |
| 554 | break; |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 555 | case 't': |
| 556 | if (str_equal(action, "try-restart")) { |
| 557 | acts = "tc"; |
| 558 | break; |
| 559 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 560 | case 'c': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 561 | if (str_equal(action, "check")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 562 | act = NULL; |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 563 | acts = "C"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 564 | break; |
| 565 | } |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 566 | case 'u': case 'd': case 'o': case 'p': case 'h': |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 567 | case 'a': case 'i': case 'k': case 'q': case '1': case '2': |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 568 | action[1] = '\0'; |
| 569 | acts = action; |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 570 | if (!verbose) |
| 571 | cbk = NULL; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 572 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 573 | case 's': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 574 | if (str_equal(action, "shutdown")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 575 | acts = "x"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 576 | break; |
| 577 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 578 | if (str_equal(action, "start")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 579 | acts = "u"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 580 | break; |
| 581 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 582 | if (str_equal(action, "stop")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 583 | acts = "d"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 584 | break; |
| 585 | } |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 586 | /* "status" */ |
Denis Vlasenko | 322661d | 2007-01-29 23:43:52 +0000 | [diff] [blame] | 587 | act = &status; |
| 588 | cbk = NULL; |
| 589 | break; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 590 | case 'r': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 591 | if (str_equal(action, "restart")) { |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 592 | acts = "tcu"; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 593 | break; |
| 594 | } |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 595 | if (str_equal(action, "reload")) { |
| 596 | acts = "h"; |
| 597 | break; |
| 598 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 599 | bb_show_usage(); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 600 | case 'f': |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 601 | if (str_equal(action, "force-reload")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 602 | acts = "tc"; |
| 603 | kll = 1; |
| 604 | break; |
| 605 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 606 | if (str_equal(action, "force-restart")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 607 | acts = "tcu"; |
| 608 | kll = 1; |
| 609 | break; |
| 610 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 611 | if (str_equal(action, "force-shutdown")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 612 | acts = "x"; |
| 613 | kll = 1; |
| 614 | break; |
| 615 | } |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 616 | if (str_equal(action, "force-stop")) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 617 | acts = "d"; |
| 618 | kll = 1; |
| 619 | break; |
| 620 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 621 | default: |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 622 | bb_show_usage(); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 625 | service = argv; |
| 626 | while ((x = *service) != NULL) { |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 627 | if (x[0] != '/' && x[0] != '.' |
Denys Vlasenko | 0d79d77 | 2018-03-30 20:02:33 +0200 | [diff] [blame] | 628 | && !last_char_is(x, '/') |
James Byrne | 0c63299 | 2017-05-15 21:39:51 +0200 | [diff] [blame] | 629 | ) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 630 | if (chdir(varservice) == -1) |
| 631 | goto chdir_failed_0; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 632 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 633 | if (chdir(x) == -1) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 634 | chdir_failed_0: |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 635 | fail("can't change to service directory"); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 636 | goto nullify_service_0; |
| 637 | } |
| 638 | if (act && (act(acts) == -1)) { |
| 639 | nullify_service_0: |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 640 | *service = (char*) -1L; /* "dead" */ |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 641 | } |
| 642 | if (fchdir(curdir) == -1) |
| 643 | fatal_cannot("change to original directory"); |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 644 | service++; |
| 645 | } |
| 646 | |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 647 | if (cbk) while (1) { |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 648 | int want_exit; |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 649 | int diff; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 650 | |
Denis Vlasenko | 45946f8 | 2007-08-20 17:27:40 +0000 | [diff] [blame] | 651 | diff = tnow - tstart; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 652 | service = argv; |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 653 | want_exit = 1; |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 654 | while ((x = *service) != NULL) { |
| 655 | if (x == (char*) -1L) /* "dead" */ |
| 656 | goto next; |
| 657 | if (x[0] != '/' && x[0] != '.') { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 658 | if (chdir(varservice) == -1) |
| 659 | goto chdir_failed; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 660 | } |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 661 | if (chdir(x) == -1) { |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 662 | chdir_failed: |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 663 | fail("can't change to service directory"); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 664 | goto nullify_service; |
| 665 | } |
| 666 | if (cbk(acts) != 0) |
| 667 | goto nullify_service; |
| 668 | want_exit = 0; |
| 669 | if (diff >= waitsec) { |
| 670 | printf(kll ? "kill: " : "timeout: "); |
| 671 | if (svstatus_get() > 0) { |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 672 | svstatus_print(x); |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 673 | ++rc; |
| 674 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 675 | bb_putchar('\n'); /* will also flush the output */ |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 676 | if (kll) |
| 677 | control("k"); |
| 678 | nullify_service: |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 679 | *service = (char*) -1L; /* "dead" */ |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 680 | } |
| 681 | if (fchdir(curdir) == -1) |
| 682 | fatal_cannot("change to original directory"); |
Denys Vlasenko | b3ba9e2 | 2009-07-15 00:24:08 +0200 | [diff] [blame] | 683 | next: |
| 684 | service++; |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 685 | } |
Denis Vlasenko | 7fca91a3 | 2007-02-02 01:19:09 +0000 | [diff] [blame] | 686 | if (want_exit) break; |
| 687 | usleep(420000); |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 688 | tnow = time(NULL) + 0x400000000000000aULL; |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 689 | } |
Denis Vlasenko | 04c6386 | 2006-11-17 18:58:49 +0000 | [diff] [blame] | 690 | return rc > 99 ? 99 : rc; |
| 691 | } |
Denys Vlasenko | 2ab994f | 2018-04-06 18:26:33 +0200 | [diff] [blame] | 692 | #endif |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 693 | |
| 694 | #if ENABLE_SV |
| 695 | int sv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 696 | int sv_main(int argc UNUSED_PARAM, char **argv) |
| 697 | { |
| 698 | return sv(argv); |
| 699 | } |
| 700 | #endif |
| 701 | |
| 702 | //usage:#define svc_trivial_usage |
| 703 | //usage: "[-udopchaitkx] SERVICE_DIR..." |
| 704 | //usage:#define svc_full_usage "\n\n" |
| 705 | //usage: "Control services monitored by runsv supervisor" |
| 706 | //usage: "\n" |
| 707 | //usage: "\n"" -u If service is not running, start it; restart if it stops" |
| 708 | //usage: "\n"" -d If service is running, send TERM+CONT signals; do not restart it" |
| 709 | //usage: "\n"" -o Once: if service is not running, start it; do not restart it" |
| 710 | //usage: "\n"" -pchaitk Send STOP, CONT, HUP, ALRM, INT, TERM, KILL signal to service" |
| 711 | //usage: "\n"" -x Exit: runsv will exit as soon as the service is down" |
| 712 | #if ENABLE_SVC |
| 713 | int svc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 714 | int svc_main(int argc UNUSED_PARAM, char **argv) |
| 715 | { |
| 716 | char command[2]; |
| 717 | const char *optstring; |
| 718 | unsigned opts; |
| 719 | |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 720 | optstring = "udopchaitkx"; |
| 721 | opts = getopt32(argv, optstring); |
| 722 | argv += optind; |
| 723 | if (!argv[0] || !opts) |
| 724 | bb_show_usage(); |
| 725 | |
| 726 | argv -= 2; |
| 727 | if (optind > 2) { |
| 728 | argv--; |
| 729 | argv[2] = (char*)"--"; |
| 730 | } |
| 731 | argv[0] = (char*)"sv"; |
| 732 | argv[1] = command; |
| 733 | command[1] = '\0'; |
| 734 | |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 735 | do { |
| 736 | if (opts & 1) { |
| 737 | int r; |
Denys Vlasenko | 754e9f9 | 2017-08-05 01:38:55 +0200 | [diff] [blame] | 738 | |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 739 | command[0] = *optstring; |
Denys Vlasenko | 754e9f9 | 2017-08-05 01:38:55 +0200 | [diff] [blame] | 740 | |
| 741 | /* getopt() was already called by getopt32(): |
| 742 | * reset the libc getopt() function's internal state. |
| 743 | */ |
| 744 | GETOPT_RESET(); |
Denys Vlasenko | 4051a99 | 2016-12-05 13:56:40 +0100 | [diff] [blame] | 745 | r = sv(argv); |
| 746 | if (r) |
| 747 | return 1; |
| 748 | } |
| 749 | optstring++; |
| 750 | opts >>= 1; |
| 751 | } while (opts); |
| 752 | |
| 753 | return 0; |
| 754 | } |
| 755 | #endif |
Denys Vlasenko | 0d79d77 | 2018-03-30 20:02:33 +0200 | [diff] [blame] | 756 | |
| 757 | //usage:#define svok_trivial_usage |
| 758 | //usage: "SERVICE_DIR" |
| 759 | //usage:#define svok_full_usage "\n\n" |
| 760 | //usage: "Check whether runsv supervisor is running.\n" |
| 761 | //usage: "Exit code is 0 if it does, 100 if it does not,\n" |
| 762 | //usage: "111 (with error message) if SERVICE_DIR does not exist." |
| 763 | #if ENABLE_SVOK |
| 764 | int svok_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 765 | int svok_main(int argc UNUSED_PARAM, char **argv) |
| 766 | { |
| 767 | const char *dir = argv[1]; |
| 768 | |
| 769 | if (!dir) |
| 770 | bb_show_usage(); |
| 771 | |
| 772 | xfunc_error_retval = 111; |
| 773 | |
| 774 | /* |
| 775 | * daemontools has no concept of "default service dir", runit does. |
| 776 | * Let's act as runit. |
| 777 | */ |
| 778 | if (dir[0] != '/' && dir[0] != '.' |
| 779 | && !last_char_is(dir, '/') |
| 780 | ) { |
| 781 | xchdir(CONFIG_SV_DEFAULT_SERVICE_DIR); |
| 782 | } |
| 783 | |
| 784 | xchdir(dir); |
| 785 | if (open("supervise/ok", O_WRONLY) < 0) { |
| 786 | if (errno == ENOENT || errno == ENXIO) |
| 787 | return 100; |
| 788 | bb_perror_msg_and_die("can't open '%s'", "supervise/ok"); |
| 789 | } |
| 790 | |
| 791 | return 0; |
| 792 | } |
| 793 | #endif |