Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini start-stop-daemon implementation(s) for busybox |
| 4 | * |
| 5 | * Written by Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>, |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 6 | * Adapted for busybox David Kimdon <dwhedon@gordian.com> |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 11 | /* |
| 12 | This is how it is supposed to work: |
| 13 | |
| 14 | start-stop-daemon [OPTIONS] [--start|--stop] [[--] arguments...] |
| 15 | |
| 16 | One (only) of these must be given: |
| 17 | -S,--start Start |
| 18 | -K,--stop Stop |
| 19 | |
| 20 | Search for matching processes. |
| 21 | If --stop is given, stop all matching processes (by sending a signal). |
Denis Vlasenko | b67004b | 2008-06-20 18:24:14 +0000 | [diff] [blame] | 22 | If --start is given, start a new process unless a matching process was found. |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 23 | |
Denis Vlasenko | b67004b | 2008-06-20 18:24:14 +0000 | [diff] [blame] | 24 | Options controlling process matching |
| 25 | (if multiple conditions are specified, all must match): |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 26 | -u,--user USERNAME|UID Only consider this user's processes |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 27 | -n,--name PROCESS_NAME Look for processes by matching PROCESS_NAME |
| 28 | with comm field in /proc/$PID/stat. |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 29 | Only basename is compared: |
| 30 | "ntpd" == "./ntpd" == "/path/to/ntpd". |
| 31 | [TODO: can PROCESS_NAME be a full pathname? Should we require full match then |
| 32 | with /proc/$PID/exe or argv[0] (comm can't be matched, it never contains path)] |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 33 | -x,--exec EXECUTABLE Look for processes that were started with this |
Denys Vlasenko | 17eedca | 2012-03-05 16:28:07 +0100 | [diff] [blame] | 34 | command in /proc/$PID/exe and /proc/$PID/cmdline |
| 35 | (/proc/$PID/cmdline is a bbox extension) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 36 | Unlike -n, we match against the full path: |
| 37 | "ntpd" != "./ntpd" != "/path/to/ntpd" |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 38 | -p,--pidfile PID_FILE Look for processes with PID from this file |
| 39 | |
| 40 | Options which are valid for --start only: |
| 41 | -x,--exec EXECUTABLE Program to run (1st arg of execvp). Mandatory. |
| 42 | -a,--startas NAME argv[0] (defaults to EXECUTABLE) |
| 43 | -b,--background Put process into background |
| 44 | -N,--nicelevel N Add N to process' nice level |
| 45 | -c,--chuid USER[:[GRP]] Change to specified user [and group] |
| 46 | -m,--make-pidfile Write PID to the pidfile |
| 47 | (both -m and -p must be given!) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 48 | |
| 49 | Options which are valid for --stop only: |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 50 | -s,--signal SIG Signal to send (default:TERM) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 51 | -t,--test Exit with status 0 if process is found |
| 52 | (we don't actually start or stop daemons) |
| 53 | |
| 54 | Misc options: |
Denis Vlasenko | 647c20c | 2008-05-07 14:52:01 +0000 | [diff] [blame] | 55 | -o,--oknodo Exit with status 0 if nothing is done |
| 56 | -q,--quiet Quiet |
| 57 | -v,--verbose Verbose |
| 58 | */ |
Denys Vlasenko | 28826ac | 2015-10-19 00:52:26 +0200 | [diff] [blame] | 59 | //config:config START_STOP_DAEMON |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 60 | //config: bool "start-stop-daemon (12 kb)" |
Denys Vlasenko | 28826ac | 2015-10-19 00:52:26 +0200 | [diff] [blame] | 61 | //config: default y |
| 62 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 63 | //config: start-stop-daemon is used to control the creation and |
| 64 | //config: termination of system-level processes, usually the ones |
| 65 | //config: started during the startup of the system. |
Denys Vlasenko | 28826ac | 2015-10-19 00:52:26 +0200 | [diff] [blame] | 66 | //config: |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 67 | //config:config FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
| 68 | //config: bool "Enable long options" |
| 69 | //config: default y |
| 70 | //config: depends on START_STOP_DAEMON && LONG_OPTS |
| 71 | //config: |
Denys Vlasenko | 28826ac | 2015-10-19 00:52:26 +0200 | [diff] [blame] | 72 | //config:config FEATURE_START_STOP_DAEMON_FANCY |
| 73 | //config: bool "Support additional arguments" |
| 74 | //config: default y |
| 75 | //config: depends on START_STOP_DAEMON |
| 76 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 77 | //config: -o|--oknodo ignored since we exit with 0 anyway |
| 78 | //config: -v|--verbose |
| 79 | //config: -N|--nicelevel N |
Denys Vlasenko | 28826ac | 2015-10-19 00:52:26 +0200 | [diff] [blame] | 80 | |
| 81 | //applet:IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, BB_DIR_SBIN, BB_SUID_DROP, start_stop_daemon)) |
Denys Vlasenko | 184c738 | 2017-08-06 20:55:56 +0200 | [diff] [blame] | 82 | /* not NOEXEC: uses bb_common_bufsiz1 */ |
Denys Vlasenko | 28826ac | 2015-10-19 00:52:26 +0200 | [diff] [blame] | 83 | |
| 84 | //kbuild:lib-$(CONFIG_START_STOP_DAEMON) += start_stop_daemon.o |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 85 | |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 86 | //usage:#define start_stop_daemon_trivial_usage |
| 87 | //usage: "[OPTIONS] [-S|-K] ... [-- ARGS...]" |
| 88 | //usage:#define start_stop_daemon_full_usage "\n\n" |
| 89 | //usage: "Search for matching processes, and then\n" |
Denys Vlasenko | 4974917 | 2017-08-08 23:18:05 +0200 | [diff] [blame] | 90 | //usage: "-K: stop all matching processes\n" |
| 91 | //usage: "-S: start a process unless a matching process is found\n" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 92 | //usage: "\nProcess matching:" |
| 93 | //usage: "\n -u USERNAME|UID Match only this user's processes" |
| 94 | //usage: "\n -n NAME Match processes with NAME" |
| 95 | //usage: "\n in comm field in /proc/PID/stat" |
| 96 | //usage: "\n -x EXECUTABLE Match processes with this command" |
Alexander Vickberg | 100fa20 | 2019-04-27 15:42:41 +0200 | [diff] [blame] | 97 | //usage: "\n in /proc/PID/cmdline" |
Denys Vlasenko | 4974917 | 2017-08-08 23:18:05 +0200 | [diff] [blame] | 98 | //usage: "\n -p FILE Match a process with PID from FILE" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 99 | //usage: "\n All specified conditions must match" |
| 100 | //usage: "\n-S only:" |
| 101 | //usage: "\n -x EXECUTABLE Program to run" |
| 102 | //usage: "\n -a NAME Zeroth argument" |
| 103 | //usage: "\n -b Background" |
| 104 | //usage: IF_FEATURE_START_STOP_DAEMON_FANCY( |
| 105 | //usage: "\n -N N Change nice level" |
| 106 | //usage: ) |
Denys Vlasenko | 4974917 | 2017-08-08 23:18:05 +0200 | [diff] [blame] | 107 | //usage: "\n -c USER[:[GRP]] Change user/group" |
| 108 | //usage: "\n -m Write PID to pidfile specified by -p" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 109 | //usage: "\n-K only:" |
| 110 | //usage: "\n -s SIG Signal to send" |
Denys Vlasenko | 4974917 | 2017-08-08 23:18:05 +0200 | [diff] [blame] | 111 | //usage: "\n -t Match only, exit with 0 if found" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 112 | //usage: "\nOther:" |
| 113 | //usage: IF_FEATURE_START_STOP_DAEMON_FANCY( |
| 114 | //usage: "\n -o Exit with status 0 if nothing is done" |
| 115 | //usage: "\n -v Verbose" |
| 116 | //usage: ) |
| 117 | //usage: "\n -q Quiet" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 118 | |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 119 | /* Override ENABLE_FEATURE_PIDFILE */ |
| 120 | #define WANT_PIDFILE 1 |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 121 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 122 | #include "common_bufsiz.h" |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 123 | |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 124 | struct pid_list { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 125 | struct pid_list *next; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 126 | pid_t pid; |
| 127 | }; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 128 | |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 129 | enum { |
| 130 | CTX_STOP = (1 << 0), |
| 131 | CTX_START = (1 << 1), |
| 132 | OPT_BACKGROUND = (1 << 2), // -b |
| 133 | OPT_QUIET = (1 << 3), // -q |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 134 | OPT_TEST = (1 << 4), // -t |
| 135 | OPT_MAKEPID = (1 << 5), // -m |
| 136 | OPT_a = (1 << 6), // -a |
| 137 | OPT_n = (1 << 7), // -n |
| 138 | OPT_s = (1 << 8), // -s |
| 139 | OPT_u = (1 << 9), // -u |
| 140 | OPT_c = (1 << 10), // -c |
| 141 | OPT_x = (1 << 11), // -x |
| 142 | OPT_p = (1 << 12), // -p |
| 143 | OPT_OKNODO = (1 << 13) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -o |
| 144 | OPT_VERBOSE = (1 << 14) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -v |
| 145 | OPT_NICELEVEL = (1 << 15) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -N |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 146 | }; |
| 147 | #define QUIET (option_mask32 & OPT_QUIET) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 148 | #define TEST (option_mask32 & OPT_TEST) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 149 | |
| 150 | struct globals { |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 151 | struct pid_list *found_procs; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 152 | char *userspec; |
| 153 | char *cmdname; |
| 154 | char *execname; |
| 155 | char *pidfile; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 156 | char *execname_cmpbuf; |
| 157 | unsigned execname_sizeof; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 158 | int user_id; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 159 | smallint signal_nr; |
Denys Vlasenko | 837913f | 2018-04-14 01:23:40 +0200 | [diff] [blame] | 160 | #ifdef OLDER_VERSION_OF_X |
| 161 | struct stat execstat; |
| 162 | #endif |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 163 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 164 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 165 | #define userspec (G.userspec ) |
| 166 | #define cmdname (G.cmdname ) |
| 167 | #define execname (G.execname ) |
| 168 | #define pidfile (G.pidfile ) |
| 169 | #define user_id (G.user_id ) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 170 | #define signal_nr (G.signal_nr ) |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 171 | #define INIT_G() do { \ |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 172 | setup_common_bufsiz(); \ |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 173 | user_id = -1; \ |
| 174 | signal_nr = 15; \ |
| 175 | } while (0) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 176 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 177 | #ifdef OLDER_VERSION_OF_X |
| 178 | /* -x,--exec EXECUTABLE |
| 179 | * Look for processes with matching /proc/$PID/exe. |
| 180 | * Match is performed using device+inode. |
| 181 | */ |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 182 | static int pid_is_exec(pid_t pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 183 | { |
Denis Vlasenko | fe49347 | 2008-04-20 14:25:26 +0000 | [diff] [blame] | 184 | struct stat st; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 185 | char buf[sizeof("/proc/%u/exe") + sizeof(int)*3]; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 186 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 187 | sprintf(buf, "/proc/%u/exe", (unsigned)pid); |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 188 | if (stat(buf, &st) < 0) |
| 189 | return 0; |
Denys Vlasenko | 837913f | 2018-04-14 01:23:40 +0200 | [diff] [blame] | 190 | if (st.st_dev == G.execstat.st_dev |
| 191 | && st.st_ino == G.execstat.st_ino) |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 192 | return 1; |
| 193 | return 0; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 194 | } |
Denys Vlasenko | c783cf7 | 2018-04-14 01:29:01 +0200 | [diff] [blame] | 195 | #else |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 196 | static int pid_is_exec(pid_t pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 197 | { |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 198 | ssize_t bytes; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 199 | char buf[sizeof("/proc/%u/cmdline") + sizeof(int)*3]; |
Denys Vlasenko | 17eedca | 2012-03-05 16:28:07 +0100 | [diff] [blame] | 200 | char *procname, *exelink; |
| 201 | int match; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 202 | |
Denys Vlasenko | 17eedca | 2012-03-05 16:28:07 +0100 | [diff] [blame] | 203 | procname = buf + sprintf(buf, "/proc/%u/exe", (unsigned)pid) - 3; |
| 204 | |
| 205 | exelink = xmalloc_readlink(buf); |
| 206 | match = (exelink && strcmp(execname, exelink) == 0); |
| 207 | free(exelink); |
| 208 | if (match) |
| 209 | return match; |
| 210 | |
| 211 | strcpy(procname, "cmdline"); |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 212 | bytes = open_read_close(buf, G.execname_cmpbuf, G.execname_sizeof); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 213 | if (bytes > 0) { |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 214 | G.execname_cmpbuf[bytes] = '\0'; |
| 215 | return strcmp(execname, G.execname_cmpbuf) == 0; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 216 | } |
| 217 | return 0; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 218 | } |
Denys Vlasenko | c783cf7 | 2018-04-14 01:29:01 +0200 | [diff] [blame] | 219 | #endif |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 220 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 221 | static int pid_is_name(pid_t pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 222 | { |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 223 | /* /proc/PID/stat is "PID (comm_15_bytes_max) ..." */ |
| 224 | char buf[32]; /* should be enough */ |
Denis Vlasenko | 25cfe49 | 2008-04-20 01:27:59 +0000 | [diff] [blame] | 225 | char *p, *pe; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 226 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 227 | sprintf(buf, "/proc/%u/stat", (unsigned)pid); |
Denis Vlasenko | 25cfe49 | 2008-04-20 01:27:59 +0000 | [diff] [blame] | 228 | if (open_read_close(buf, buf, sizeof(buf) - 1) < 0) |
| 229 | return 0; |
| 230 | buf[sizeof(buf) - 1] = '\0'; /* paranoia */ |
| 231 | p = strchr(buf, '('); |
| 232 | if (!p) |
| 233 | return 0; |
| 234 | pe = strrchr(++p, ')'); |
| 235 | if (!pe) |
| 236 | return 0; |
| 237 | *pe = '\0'; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 238 | /* we require comm to match and to not be truncated */ |
| 239 | /* in Linux, if comm is 15 chars, it may be a truncated |
| 240 | * name, so we don't allow that to match */ |
| 241 | if (strlen(p) >= COMM_LEN - 1) /* COMM_LEN is 16 */ |
| 242 | return 0; |
| 243 | return strcmp(p, cmdname) == 0; |
| 244 | } |
| 245 | |
| 246 | static int pid_is_user(int pid) |
| 247 | { |
| 248 | struct stat sb; |
| 249 | char buf[sizeof("/proc/") + sizeof(int)*3]; |
| 250 | |
| 251 | sprintf(buf, "/proc/%u", (unsigned)pid); |
| 252 | if (stat(buf, &sb) != 0) |
| 253 | return 0; |
| 254 | return (sb.st_uid == (uid_t)user_id); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 257 | static void check(int pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 258 | { |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 259 | struct pid_list *p; |
| 260 | |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 261 | if (execname && !pid_is_exec(pid)) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 262 | return; |
| 263 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 264 | if (cmdname && !pid_is_name(pid)) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 265 | return; |
| 266 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 267 | if (userspec && !pid_is_user(pid)) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 268 | return; |
| 269 | } |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 270 | p = xmalloc(sizeof(*p)); |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 271 | p->next = G.found_procs; |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 272 | p->pid = pid; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 273 | G.found_procs = p; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 276 | static void do_pidfile(void) |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 277 | { |
| 278 | FILE *f; |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 279 | unsigned pid; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 280 | |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 281 | f = fopen_for_read(pidfile); |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 282 | if (f) { |
Denis Vlasenko | b131b27 | 2006-12-17 17:30:01 +0000 | [diff] [blame] | 283 | if (fscanf(f, "%u", &pid) == 1) |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 284 | check(pid); |
| 285 | fclose(f); |
| 286 | } else if (errno != ENOENT) |
Eric Andersen | 625da9d | 2004-04-13 18:28:46 +0000 | [diff] [blame] | 287 | bb_perror_msg_and_die("open pidfile %s", pidfile); |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 288 | } |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 289 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 290 | static void do_procinit(void) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 291 | { |
| 292 | DIR *procdir; |
| 293 | struct dirent *entry; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 294 | int pid; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 295 | |
Eric Andersen | 625da9d | 2004-04-13 18:28:46 +0000 | [diff] [blame] | 296 | if (pidfile) { |
| 297 | do_pidfile(); |
| 298 | return; |
| 299 | } |
| 300 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 301 | procdir = xopendir("/proc"); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 302 | |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 303 | pid = 0; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 304 | while (1) { |
Denis Vlasenko | 1f22898 | 2008-04-22 00:16:29 +0000 | [diff] [blame] | 305 | errno = 0; /* clear any previous error */ |
| 306 | entry = readdir(procdir); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 307 | // TODO: this check is too generic, it's better |
| 308 | // to check for exact errno(s) which mean that we got stale entry |
Denis Vlasenko | 1f22898 | 2008-04-22 00:16:29 +0000 | [diff] [blame] | 309 | if (errno) /* Stale entry, process has died after opendir */ |
| 310 | continue; |
| 311 | if (!entry) /* EOF, no more entries */ |
| 312 | break; |
| 313 | pid = bb_strtou(entry->d_name, NULL, 10); |
| 314 | if (errno) /* NaN */ |
| 315 | continue; |
| 316 | check(pid); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 317 | } |
| 318 | closedir(procdir); |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 319 | if (!pid) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 320 | bb_simple_error_msg_and_die("nothing in /proc - not mounted?"); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 323 | static int do_stop(void) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 324 | { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 325 | char *what; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 326 | struct pid_list *p; |
Eric Andersen | 950d8b4 | 2001-10-31 09:55:39 +0000 | [diff] [blame] | 327 | int killed = 0; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 328 | |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 329 | if (cmdname) { |
| 330 | if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(cmdname); |
| 331 | if (!ENABLE_FEATURE_CLEAN_UP) what = cmdname; |
| 332 | } else if (execname) { |
| 333 | if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(execname); |
| 334 | if (!ENABLE_FEATURE_CLEAN_UP) what = execname; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 335 | } else if (pidfile) { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 336 | what = xasprintf("process in pidfile '%s'", pidfile); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 337 | } else if (userspec) { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 338 | what = xasprintf("process(es) owned by '%s'", userspec); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 339 | } else { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 340 | bb_simple_error_msg_and_die("internal error, please report"); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 341 | } |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 342 | |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 343 | if (!G.found_procs) { |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 344 | if (!QUIET) |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 345 | printf("no %s found; none killed\n", what); |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 346 | killed = -1; |
| 347 | goto ret; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 348 | } |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 349 | for (p = G.found_procs; p; p = p->next) { |
Denys Vlasenko | 929f63e | 2011-04-04 02:03:35 +0200 | [diff] [blame] | 350 | if (kill(p->pid, TEST ? 0 : signal_nr) == 0) { |
Eric Andersen | 950d8b4 | 2001-10-31 09:55:39 +0000 | [diff] [blame] | 351 | killed++; |
| 352 | } else { |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 353 | bb_perror_msg("warning: killing process %u", (unsigned)p->pid); |
Denys Vlasenko | 929f63e | 2011-04-04 02:03:35 +0200 | [diff] [blame] | 354 | p->pid = 0; |
| 355 | if (TEST) { |
| 356 | /* Example: -K --test --pidfile PIDFILE detected |
| 357 | * that PIDFILE's pid doesn't exist */ |
| 358 | killed = -1; |
| 359 | goto ret; |
| 360 | } |
Eric Andersen | 950d8b4 | 2001-10-31 09:55:39 +0000 | [diff] [blame] | 361 | } |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 362 | } |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 363 | if (!QUIET && killed) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 364 | printf("stopped %s (pid", what); |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 365 | for (p = G.found_procs; p; p = p->next) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 366 | if (p->pid) |
| 367 | printf(" %u", (unsigned)p->pid); |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 368 | puts(")"); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 369 | } |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 370 | ret: |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 371 | if (ENABLE_FEATURE_CLEAN_UP) |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 372 | free(what); |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 373 | return killed; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 374 | } |
| 375 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 376 | #if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 377 | static const char start_stop_daemon_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 378 | "stop\0" No_argument "K" |
| 379 | "start\0" No_argument "S" |
| 380 | "background\0" No_argument "b" |
| 381 | "quiet\0" No_argument "q" |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 382 | "test\0" No_argument "t" |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 383 | "make-pidfile\0" No_argument "m" |
Denys Vlasenko | 184c738 | 2017-08-06 20:55:56 +0200 | [diff] [blame] | 384 | # if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 385 | "oknodo\0" No_argument "o" |
| 386 | "verbose\0" No_argument "v" |
| 387 | "nicelevel\0" Required_argument "N" |
Denys Vlasenko | 184c738 | 2017-08-06 20:55:56 +0200 | [diff] [blame] | 388 | # endif |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 389 | "startas\0" Required_argument "a" |
| 390 | "name\0" Required_argument "n" |
| 391 | "signal\0" Required_argument "s" |
| 392 | "user\0" Required_argument "u" |
| 393 | "chuid\0" Required_argument "c" |
| 394 | "exec\0" Required_argument "x" |
| 395 | "pidfile\0" Required_argument "p" |
Denys Vlasenko | 184c738 | 2017-08-06 20:55:56 +0200 | [diff] [blame] | 396 | # if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 397 | "retry\0" Required_argument "R" |
Denys Vlasenko | 184c738 | 2017-08-06 20:55:56 +0200 | [diff] [blame] | 398 | # endif |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 399 | ; |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 400 | # define GETOPT32 getopt32long |
| 401 | # define LONGOPTS start_stop_daemon_longopts, |
| 402 | #else |
| 403 | # define GETOPT32 getopt32 |
| 404 | # define LONGOPTS |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 405 | #endif |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 406 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 407 | int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 408 | int start_stop_daemon_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 409 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 410 | unsigned opt; |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 411 | char *signame; |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 412 | char *startas = NULL; |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 413 | char *chuid; |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 414 | #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
| 415 | // char *retry_arg = NULL; |
| 416 | // int retries = -1; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 417 | char *opt_N; |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 418 | #endif |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 419 | |
| 420 | INIT_G(); |
| 421 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 422 | opt = GETOPT32(argv, "^" |
| 423 | "KSbqtma:n:s:u:c:x:p:" |
| 424 | IF_FEATURE_START_STOP_DAEMON_FANCY("ovN:R:") |
| 425 | /* -K or -S is required; they are mutually exclusive */ |
| 426 | /* -p is required if -m is given */ |
| 427 | /* -xpun (at least one) is required if -K is given */ |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 428 | // /* -xa (at least one) is required if -S is given */ |
| 429 | //WRONG: "start-stop-daemon -S -- sleep 5" is a valid invocation |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 430 | /* -q turns off -v */ |
| 431 | "\0" |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 432 | "K:S:K--S:S--K:m?p:K?xpun" |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 433 | IF_FEATURE_START_STOP_DAEMON_FANCY("q-v"), |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 434 | LONGOPTS |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 435 | &startas, &cmdname, &signame, &userspec, &chuid, &execname, &pidfile |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 436 | IF_FEATURE_START_STOP_DAEMON_FANCY(,&opt_N) |
Denis Vlasenko | 75897ea | 2008-09-27 01:05:13 +0000 | [diff] [blame] | 437 | /* We accept and ignore -R <param> / --retry <param> */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 438 | IF_FEATURE_START_STOP_DAEMON_FANCY(,NULL) |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 439 | ); |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 440 | |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 441 | if (opt & OPT_s) { |
Rob Landley | 8479063 | 2006-08-28 20:30:27 +0000 | [diff] [blame] | 442 | signal_nr = get_signum(signame); |
| 443 | if (signal_nr < 0) bb_show_usage(); |
Eric Andersen | 08804ce | 2003-07-30 08:29:56 +0000 | [diff] [blame] | 444 | } |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 445 | |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 446 | //argc -= optind; |
| 447 | argv += optind; |
| 448 | // ARGS contains zeroth arg if -x/-a is not given, else it starts with 1st arg. |
| 449 | // These will try to execute "[/bin/]sleep 5": |
| 450 | // "start-stop-daemon -S -- sleep 5" |
| 451 | // "start-stop-daemon -S -x /bin/sleep -- 5" |
| 452 | // "start-stop-daemon -S -a sleep -- 5" |
| 453 | // NB: -n option does _not_ behave in this way: this will try to execute "5": |
| 454 | // "start-stop-daemon -S -n sleep -- 5" |
Alexander Vickberg | 100fa20 | 2019-04-27 15:42:41 +0200 | [diff] [blame] | 455 | if (opt & CTX_START) { |
| 456 | if (!execname) { /* -x is not given */ |
| 457 | execname = startas; |
| 458 | if (!execname) { /* neither -x nor -a is given */ |
| 459 | execname = argv[0]; |
| 460 | if (!execname) |
| 461 | bb_show_usage(); |
| 462 | argv++; |
| 463 | } |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 464 | } |
Alexander Vickberg | 100fa20 | 2019-04-27 15:42:41 +0200 | [diff] [blame] | 465 | if (!startas) /* -a is not given: use -x EXECUTABLE or argv[0] */ |
| 466 | startas = execname; |
| 467 | *--argv = startas; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 468 | } |
Alexander Vickberg | 100fa20 | 2019-04-27 15:42:41 +0200 | [diff] [blame] | 469 | if (execname) { |
| 470 | G.execname_sizeof = strlen(execname) + 1; |
| 471 | G.execname_cmpbuf = xmalloc(G.execname_sizeof + 1); |
| 472 | } |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 473 | // IF_FEATURE_START_STOP_DAEMON_FANCY( |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 474 | // if (retry_arg) |
Denys Vlasenko | 7783248 | 2010-08-12 14:14:45 +0200 | [diff] [blame] | 475 | // retries = xatoi_positive(retry_arg); |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 476 | // ) |
Denis Vlasenko | b131b27 | 2006-12-17 17:30:01 +0000 | [diff] [blame] | 477 | if (userspec) { |
| 478 | user_id = bb_strtou(userspec, NULL, 10); |
| 479 | if (errno) |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 480 | user_id = xuname2uid(userspec); |
Denis Vlasenko | b131b27 | 2006-12-17 17:30:01 +0000 | [diff] [blame] | 481 | } |
Alexander Vickberg | 100fa20 | 2019-04-27 15:42:41 +0200 | [diff] [blame] | 482 | |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 483 | /* Both start and stop need to know current processes */ |
| 484 | do_procinit(); |
Denis Vlasenko | 85d788e | 2008-04-19 21:30:52 +0000 | [diff] [blame] | 485 | |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 486 | if (opt & CTX_STOP) { |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 487 | int i = do_stop(); |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 488 | return (opt & OPT_OKNODO) ? 0 : (i <= 0); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Alexander Vickberg | 100fa20 | 2019-04-27 15:42:41 +0200 | [diff] [blame] | 491 | /* else: CTX_START (-S). execname can't be NULL. */ |
| 492 | |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 493 | if (G.found_procs) { |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 494 | if (!QUIET) |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 495 | printf("%s is already running\n", execname); |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 496 | return !(opt & OPT_OKNODO); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 497 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 498 | |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 499 | #ifdef OLDER_VERSION_OF_X |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 500 | if (execname) |
Denys Vlasenko | 837913f | 2018-04-14 01:23:40 +0200 | [diff] [blame] | 501 | xstat(execname, &G.execstat); |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 502 | #endif |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 503 | |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 504 | if (opt & OPT_BACKGROUND) { |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 505 | /* Daemons usually call bb_daemonize_or_rexec(), but SSD can do |
| 506 | * without: SSD is not itself a daemon, it _execs_ a daemon. |
| 507 | * The usual NOMMU problem of "child can't run indefinitely, |
| 508 | * it must exec" does not bite us: we exec anyway. |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 509 | * |
| 510 | * bb_daemonize(DAEMON_DEVNULL_STDIO | DAEMON_CLOSE_EXTRA_FDS | DAEMON_DOUBLE_FORK) |
| 511 | * can be used on MMU systems, but use of vfork() |
| 512 | * is preferable since we want to create pidfile |
| 513 | * _before_ parent returns, and vfork() on Linux |
| 514 | * ensures that (by blocking parent until exec in the child). |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 515 | */ |
Pascal Bellard | 926031b | 2010-07-04 15:32:38 +0200 | [diff] [blame] | 516 | pid_t pid = xvfork(); |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 517 | if (pid != 0) { |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 518 | /* Parent */ |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 519 | /* why _exit? the child may have changed the stack, |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 520 | * so "return 0" may do bad things |
| 521 | */ |
Denys Vlasenko | db5546c | 2022-01-05 22:16:06 +0100 | [diff] [blame] | 522 | _exit_SUCCESS(); |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 523 | } |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 524 | /* Child */ |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 525 | setsid(); /* detach from controlling tty */ |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 526 | /* Redirect stdio to /dev/null, close extra FDs */ |
| 527 | bb_daemon_helper(DAEMON_DEVNULL_STDIO + DAEMON_CLOSE_EXTRA_FDS); |
Denys Vlasenko | 088fec3 | 2019-01-14 14:45:18 +0100 | [diff] [blame] | 528 | /* On Linux, session leader can acquire ctty |
| 529 | * unknowingly, by opening a tty. |
| 530 | * Prevent this: stop being a session leader. |
| 531 | */ |
| 532 | pid = xvfork(); |
| 533 | if (pid != 0) |
Denys Vlasenko | db5546c | 2022-01-05 22:16:06 +0100 | [diff] [blame] | 534 | _exit_SUCCESS(); /* Parent */ |
Eric Andersen | 53a2299 | 2002-01-26 09:04:45 +0000 | [diff] [blame] | 535 | } |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 536 | if (opt & OPT_MAKEPID) { |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 537 | /* User wants _us_ to make the pidfile */ |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 538 | write_pidfile(pidfile); |
Eric Andersen | 625da9d | 2004-04-13 18:28:46 +0000 | [diff] [blame] | 539 | } |
Aitor Esteve Alvarado | 7b6d4f5 | 2019-03-07 10:14:48 +0100 | [diff] [blame] | 540 | #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
| 541 | if (opt & OPT_NICELEVEL) { |
| 542 | /* Set process priority (must be before OPT_c) */ |
| 543 | int prio = getpriority(PRIO_PROCESS, 0) + xatoi_range(opt_N, INT_MIN/2, INT_MAX/2); |
| 544 | if (setpriority(PRIO_PROCESS, 0, prio) < 0) { |
| 545 | bb_perror_msg_and_die("setpriority(%d)", prio); |
| 546 | } |
| 547 | } |
| 548 | #endif |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 549 | if (opt & OPT_c) { |
Denys Vlasenko | 3d0805e | 2015-10-19 04:37:19 +0200 | [diff] [blame] | 550 | struct bb_uidgid_t ugid; |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 551 | parse_chown_usergroup_or_die(&ugid, chuid); |
Denys Vlasenko | 3d0805e | 2015-10-19 04:37:19 +0200 | [diff] [blame] | 552 | if (ugid.uid != (uid_t) -1L) { |
Denys Vlasenko | 585541e | 2011-09-15 18:27:05 +0200 | [diff] [blame] | 553 | struct passwd *pw = xgetpwuid(ugid.uid); |
Denys Vlasenko | 3d0805e | 2015-10-19 04:37:19 +0200 | [diff] [blame] | 554 | if (ugid.gid != (gid_t) -1L) |
Denys Vlasenko | 585541e | 2011-09-15 18:27:05 +0200 | [diff] [blame] | 555 | pw->pw_gid = ugid.gid; |
| 556 | /* initgroups, setgid, setuid: */ |
| 557 | change_identity(pw); |
Denys Vlasenko | 3d0805e | 2015-10-19 04:37:19 +0200 | [diff] [blame] | 558 | } else if (ugid.gid != (gid_t) -1L) { |
Denys Vlasenko | 585541e | 2011-09-15 18:27:05 +0200 | [diff] [blame] | 559 | xsetgid(ugid.gid); |
| 560 | setgroups(1, &ugid.gid); |
| 561 | } |
Rob Landley | f0623a2 | 2006-07-17 00:35:07 +0000 | [diff] [blame] | 562 | } |
Denys Vlasenko | 77524a3 | 2019-01-14 15:00:49 +0100 | [diff] [blame] | 563 | /* Try: |
| 564 | * strace -oLOG start-stop-daemon -S -x /bin/usleep -a qwerty 500000 |
| 565 | * should exec "/bin/usleep", but argv[0] should be "qwerty": |
| 566 | */ |
| 567 | execvp(execname, argv); |
Denys Vlasenko | 41ddd9f | 2010-06-25 01:46:53 +0200 | [diff] [blame] | 568 | bb_perror_msg_and_die("can't execute '%s'", startas); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 569 | } |