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 | */ |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 59 | |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 60 | //usage:#define start_stop_daemon_trivial_usage |
| 61 | //usage: "[OPTIONS] [-S|-K] ... [-- ARGS...]" |
| 62 | //usage:#define start_stop_daemon_full_usage "\n\n" |
| 63 | //usage: "Search for matching processes, and then\n" |
| 64 | //usage: "-K: stop all matching processes.\n" |
| 65 | //usage: "-S: start a process unless a matching process is found.\n" |
| 66 | //usage: IF_FEATURE_START_STOP_DAEMON_LONG_OPTIONS( |
| 67 | //usage: "\nProcess matching:" |
| 68 | //usage: "\n -u,--user USERNAME|UID Match only this user's processes" |
| 69 | //usage: "\n -n,--name NAME Match processes with NAME" |
| 70 | //usage: "\n in comm field in /proc/PID/stat" |
| 71 | //usage: "\n -x,--exec EXECUTABLE Match processes with this command" |
Denys Vlasenko | 17eedca | 2012-03-05 16:28:07 +0100 | [diff] [blame] | 72 | //usage: "\n in /proc/PID/{exe,cmdline}" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 73 | //usage: "\n -p,--pidfile FILE Match a process with PID from the file" |
| 74 | //usage: "\n All specified conditions must match" |
| 75 | //usage: "\n-S only:" |
| 76 | //usage: "\n -x,--exec EXECUTABLE Program to run" |
| 77 | //usage: "\n -a,--startas NAME Zeroth argument" |
| 78 | //usage: "\n -b,--background Background" |
| 79 | //usage: IF_FEATURE_START_STOP_DAEMON_FANCY( |
| 80 | //usage: "\n -N,--nicelevel N Change nice level" |
| 81 | //usage: ) |
| 82 | //usage: "\n -c,--chuid USER[:[GRP]] Change to user/group" |
| 83 | //usage: "\n -m,--make-pidfile Write PID to the pidfile specified by -p" |
| 84 | //usage: "\n-K only:" |
| 85 | //usage: "\n -s,--signal SIG Signal to send" |
| 86 | //usage: "\n -t,--test Match only, exit with 0 if a process is found" |
| 87 | //usage: "\nOther:" |
| 88 | //usage: IF_FEATURE_START_STOP_DAEMON_FANCY( |
| 89 | //usage: "\n -o,--oknodo Exit with status 0 if nothing is done" |
| 90 | //usage: "\n -v,--verbose Verbose" |
| 91 | //usage: ) |
| 92 | //usage: "\n -q,--quiet Quiet" |
| 93 | //usage: ) |
| 94 | //usage: IF_NOT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS( |
| 95 | //usage: "\nProcess matching:" |
| 96 | //usage: "\n -u USERNAME|UID Match only this user's processes" |
| 97 | //usage: "\n -n NAME Match processes with NAME" |
| 98 | //usage: "\n in comm field in /proc/PID/stat" |
| 99 | //usage: "\n -x EXECUTABLE Match processes with this command" |
| 100 | //usage: "\n command in /proc/PID/cmdline" |
| 101 | //usage: "\n -p FILE Match a process with PID from the file" |
| 102 | //usage: "\n All specified conditions must match" |
| 103 | //usage: "\n-S only:" |
| 104 | //usage: "\n -x EXECUTABLE Program to run" |
| 105 | //usage: "\n -a NAME Zeroth argument" |
| 106 | //usage: "\n -b Background" |
| 107 | //usage: IF_FEATURE_START_STOP_DAEMON_FANCY( |
| 108 | //usage: "\n -N N Change nice level" |
| 109 | //usage: ) |
| 110 | //usage: "\n -c USER[:[GRP]] Change to user/group" |
| 111 | //usage: "\n -m Write PID to the pidfile specified by -p" |
| 112 | //usage: "\n-K only:" |
| 113 | //usage: "\n -s SIG Signal to send" |
| 114 | //usage: "\n -t Match only, exit with 0 if a process is found" |
| 115 | //usage: "\nOther:" |
| 116 | //usage: IF_FEATURE_START_STOP_DAEMON_FANCY( |
| 117 | //usage: "\n -o Exit with status 0 if nothing is done" |
| 118 | //usage: "\n -v Verbose" |
| 119 | //usage: ) |
| 120 | //usage: "\n -q Quiet" |
| 121 | //usage: ) |
| 122 | |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 123 | #include <sys/resource.h> |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 124 | |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 125 | /* Override ENABLE_FEATURE_PIDFILE */ |
| 126 | #define WANT_PIDFILE 1 |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 127 | #include "libbb.h" |
| 128 | |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 129 | struct pid_list { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 130 | struct pid_list *next; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 131 | pid_t pid; |
| 132 | }; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 133 | |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 134 | enum { |
| 135 | CTX_STOP = (1 << 0), |
| 136 | CTX_START = (1 << 1), |
| 137 | OPT_BACKGROUND = (1 << 2), // -b |
| 138 | OPT_QUIET = (1 << 3), // -q |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 139 | OPT_TEST = (1 << 4), // -t |
| 140 | OPT_MAKEPID = (1 << 5), // -m |
| 141 | OPT_a = (1 << 6), // -a |
| 142 | OPT_n = (1 << 7), // -n |
| 143 | OPT_s = (1 << 8), // -s |
| 144 | OPT_u = (1 << 9), // -u |
| 145 | OPT_c = (1 << 10), // -c |
| 146 | OPT_x = (1 << 11), // -x |
| 147 | OPT_p = (1 << 12), // -p |
| 148 | OPT_OKNODO = (1 << 13) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -o |
| 149 | OPT_VERBOSE = (1 << 14) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -v |
| 150 | OPT_NICELEVEL = (1 << 15) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -N |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 151 | }; |
| 152 | #define QUIET (option_mask32 & OPT_QUIET) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 153 | #define TEST (option_mask32 & OPT_TEST) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 154 | |
| 155 | struct globals { |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 156 | struct pid_list *found_procs; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 157 | char *userspec; |
| 158 | char *cmdname; |
| 159 | char *execname; |
| 160 | char *pidfile; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 161 | char *execname_cmpbuf; |
| 162 | unsigned execname_sizeof; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 163 | int user_id; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 164 | smallint signal_nr; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 165 | } FIX_ALIASING; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 166 | #define G (*(struct globals*)&bb_common_bufsiz1) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 167 | #define userspec (G.userspec ) |
| 168 | #define cmdname (G.cmdname ) |
| 169 | #define execname (G.execname ) |
| 170 | #define pidfile (G.pidfile ) |
| 171 | #define user_id (G.user_id ) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 172 | #define signal_nr (G.signal_nr ) |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 173 | #define INIT_G() do { \ |
| 174 | user_id = -1; \ |
| 175 | signal_nr = 15; \ |
| 176 | } while (0) |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 177 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 178 | #ifdef OLDER_VERSION_OF_X |
| 179 | /* -x,--exec EXECUTABLE |
| 180 | * Look for processes with matching /proc/$PID/exe. |
| 181 | * Match is performed using device+inode. |
| 182 | */ |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 183 | static int pid_is_exec(pid_t pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 184 | { |
Denis Vlasenko | fe49347 | 2008-04-20 14:25:26 +0000 | [diff] [blame] | 185 | struct stat st; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 186 | char buf[sizeof("/proc/%u/exe") + sizeof(int)*3]; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 187 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 188 | sprintf(buf, "/proc/%u/exe", (unsigned)pid); |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 189 | if (stat(buf, &st) < 0) |
| 190 | return 0; |
| 191 | if (st.st_dev == execstat.st_dev |
| 192 | && st.st_ino == execstat.st_ino) |
| 193 | return 1; |
| 194 | return 0; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 195 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 196 | #endif |
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 | static int pid_is_exec(pid_t pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 199 | { |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 200 | ssize_t bytes; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 201 | char buf[sizeof("/proc/%u/cmdline") + sizeof(int)*3]; |
Denys Vlasenko | 17eedca | 2012-03-05 16:28:07 +0100 | [diff] [blame] | 202 | char *procname, *exelink; |
| 203 | int match; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 204 | |
Denys Vlasenko | 17eedca | 2012-03-05 16:28:07 +0100 | [diff] [blame] | 205 | procname = buf + sprintf(buf, "/proc/%u/exe", (unsigned)pid) - 3; |
| 206 | |
| 207 | exelink = xmalloc_readlink(buf); |
| 208 | match = (exelink && strcmp(execname, exelink) == 0); |
| 209 | free(exelink); |
| 210 | if (match) |
| 211 | return match; |
| 212 | |
| 213 | strcpy(procname, "cmdline"); |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 214 | bytes = open_read_close(buf, G.execname_cmpbuf, G.execname_sizeof); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 215 | if (bytes > 0) { |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 216 | G.execname_cmpbuf[bytes] = '\0'; |
| 217 | return strcmp(execname, G.execname_cmpbuf) == 0; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 218 | } |
| 219 | return 0; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 222 | static int pid_is_name(pid_t pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 223 | { |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 224 | /* /proc/PID/stat is "PID (comm_15_bytes_max) ..." */ |
| 225 | char buf[32]; /* should be enough */ |
Denis Vlasenko | 25cfe49 | 2008-04-20 01:27:59 +0000 | [diff] [blame] | 226 | char *p, *pe; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 227 | |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 228 | sprintf(buf, "/proc/%u/stat", (unsigned)pid); |
Denis Vlasenko | 25cfe49 | 2008-04-20 01:27:59 +0000 | [diff] [blame] | 229 | if (open_read_close(buf, buf, sizeof(buf) - 1) < 0) |
| 230 | return 0; |
| 231 | buf[sizeof(buf) - 1] = '\0'; /* paranoia */ |
| 232 | p = strchr(buf, '('); |
| 233 | if (!p) |
| 234 | return 0; |
| 235 | pe = strrchr(++p, ')'); |
| 236 | if (!pe) |
| 237 | return 0; |
| 238 | *pe = '\0'; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 239 | /* we require comm to match and to not be truncated */ |
| 240 | /* in Linux, if comm is 15 chars, it may be a truncated |
| 241 | * name, so we don't allow that to match */ |
| 242 | if (strlen(p) >= COMM_LEN - 1) /* COMM_LEN is 16 */ |
| 243 | return 0; |
| 244 | return strcmp(p, cmdname) == 0; |
| 245 | } |
| 246 | |
| 247 | static int pid_is_user(int pid) |
| 248 | { |
| 249 | struct stat sb; |
| 250 | char buf[sizeof("/proc/") + sizeof(int)*3]; |
| 251 | |
| 252 | sprintf(buf, "/proc/%u", (unsigned)pid); |
| 253 | if (stat(buf, &sb) != 0) |
| 254 | return 0; |
| 255 | return (sb.st_uid == (uid_t)user_id); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 258 | static void check(int pid) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 259 | { |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 260 | struct pid_list *p; |
| 261 | |
Denis Vlasenko | d9c51e9 | 2008-04-19 19:06:23 +0000 | [diff] [blame] | 262 | if (execname && !pid_is_exec(pid)) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 263 | return; |
| 264 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 265 | if (cmdname && !pid_is_name(pid)) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 266 | return; |
| 267 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 268 | if (userspec && !pid_is_user(pid)) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 269 | return; |
| 270 | } |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 271 | p = xmalloc(sizeof(*p)); |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 272 | p->next = G.found_procs; |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 273 | p->pid = pid; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 274 | G.found_procs = p; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 277 | static void do_pidfile(void) |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 278 | { |
| 279 | FILE *f; |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 280 | unsigned pid; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 281 | |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 282 | f = fopen_for_read(pidfile); |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 283 | if (f) { |
Denis Vlasenko | b131b27 | 2006-12-17 17:30:01 +0000 | [diff] [blame] | 284 | if (fscanf(f, "%u", &pid) == 1) |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 285 | check(pid); |
| 286 | fclose(f); |
| 287 | } else if (errno != ENOENT) |
Eric Andersen | 625da9d | 2004-04-13 18:28:46 +0000 | [diff] [blame] | 288 | bb_perror_msg_and_die("open pidfile %s", pidfile); |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 289 | } |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 290 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 291 | static void do_procinit(void) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 292 | { |
| 293 | DIR *procdir; |
| 294 | struct dirent *entry; |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 295 | int pid; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 296 | |
Eric Andersen | 625da9d | 2004-04-13 18:28:46 +0000 | [diff] [blame] | 297 | if (pidfile) { |
| 298 | do_pidfile(); |
| 299 | return; |
| 300 | } |
| 301 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 302 | procdir = xopendir("/proc"); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 303 | |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 304 | pid = 0; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 305 | while (1) { |
Denis Vlasenko | 1f22898 | 2008-04-22 00:16:29 +0000 | [diff] [blame] | 306 | errno = 0; /* clear any previous error */ |
| 307 | entry = readdir(procdir); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 308 | // TODO: this check is too generic, it's better |
| 309 | // 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] | 310 | if (errno) /* Stale entry, process has died after opendir */ |
| 311 | continue; |
| 312 | if (!entry) /* EOF, no more entries */ |
| 313 | break; |
| 314 | pid = bb_strtou(entry->d_name, NULL, 10); |
| 315 | if (errno) /* NaN */ |
| 316 | continue; |
| 317 | check(pid); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 318 | } |
| 319 | closedir(procdir); |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 320 | if (!pid) |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 321 | bb_error_msg_and_die("nothing in /proc - not mounted?"); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 322 | } |
| 323 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 324 | static int do_stop(void) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 325 | { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 326 | char *what; |
Eric Andersen | 63a1a7a | 2004-03-13 08:33:10 +0000 | [diff] [blame] | 327 | struct pid_list *p; |
Eric Andersen | 950d8b4 | 2001-10-31 09:55:39 +0000 | [diff] [blame] | 328 | int killed = 0; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 329 | |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 330 | if (cmdname) { |
| 331 | if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(cmdname); |
| 332 | if (!ENABLE_FEATURE_CLEAN_UP) what = cmdname; |
| 333 | } else if (execname) { |
| 334 | if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(execname); |
| 335 | if (!ENABLE_FEATURE_CLEAN_UP) what = execname; |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 336 | } else if (pidfile) { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 337 | what = xasprintf("process in pidfile '%s'", pidfile); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 338 | } else if (userspec) { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 339 | what = xasprintf("process(es) owned by '%s'", userspec); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 340 | } else { |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 341 | bb_error_msg_and_die("internal error, please report"); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 342 | } |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 343 | |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 344 | if (!G.found_procs) { |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 345 | if (!QUIET) |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 346 | printf("no %s found; none killed\n", what); |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 347 | killed = -1; |
| 348 | goto ret; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 349 | } |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 350 | for (p = G.found_procs; p; p = p->next) { |
Denys Vlasenko | 929f63e | 2011-04-04 02:03:35 +0200 | [diff] [blame] | 351 | if (kill(p->pid, TEST ? 0 : signal_nr) == 0) { |
Eric Andersen | 950d8b4 | 2001-10-31 09:55:39 +0000 | [diff] [blame] | 352 | killed++; |
| 353 | } else { |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 354 | bb_perror_msg("warning: killing process %u", (unsigned)p->pid); |
Denys Vlasenko | 929f63e | 2011-04-04 02:03:35 +0200 | [diff] [blame] | 355 | p->pid = 0; |
| 356 | if (TEST) { |
| 357 | /* Example: -K --test --pidfile PIDFILE detected |
| 358 | * that PIDFILE's pid doesn't exist */ |
| 359 | killed = -1; |
| 360 | goto ret; |
| 361 | } |
Eric Andersen | 950d8b4 | 2001-10-31 09:55:39 +0000 | [diff] [blame] | 362 | } |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 363 | } |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 364 | if (!QUIET && killed) { |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 365 | printf("stopped %s (pid", what); |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 366 | for (p = G.found_procs; p; p = p->next) |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 367 | if (p->pid) |
| 368 | printf(" %u", (unsigned)p->pid); |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 369 | puts(")"); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 370 | } |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 371 | ret: |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 372 | if (ENABLE_FEATURE_CLEAN_UP) |
Denis Vlasenko | 61126ab | 2006-11-18 22:03:26 +0000 | [diff] [blame] | 373 | free(what); |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 374 | return killed; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 377 | #if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 378 | static const char start_stop_daemon_longopts[] ALIGN1 = |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 379 | "stop\0" No_argument "K" |
| 380 | "start\0" No_argument "S" |
| 381 | "background\0" No_argument "b" |
| 382 | "quiet\0" No_argument "q" |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 383 | "test\0" No_argument "t" |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 384 | "make-pidfile\0" No_argument "m" |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 385 | #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 386 | "oknodo\0" No_argument "o" |
| 387 | "verbose\0" No_argument "v" |
| 388 | "nicelevel\0" Required_argument "N" |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 389 | #endif |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 390 | "startas\0" Required_argument "a" |
| 391 | "name\0" Required_argument "n" |
| 392 | "signal\0" Required_argument "s" |
| 393 | "user\0" Required_argument "u" |
| 394 | "chuid\0" Required_argument "c" |
| 395 | "exec\0" Required_argument "x" |
| 396 | "pidfile\0" Required_argument "p" |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 397 | #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 398 | "retry\0" Required_argument "R" |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 399 | #endif |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 400 | ; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 401 | #endif |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 402 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 403 | int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 404 | int start_stop_daemon_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 405 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 406 | unsigned opt; |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 407 | char *signame; |
| 408 | char *startas; |
| 409 | char *chuid; |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 410 | #ifdef OLDER_VERSION_OF_X |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 411 | struct stat execstat; |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 412 | #endif |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 413 | #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
| 414 | // char *retry_arg = NULL; |
| 415 | // int retries = -1; |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 416 | char *opt_N; |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 417 | #endif |
Denis Vlasenko | 04bb2d2 | 2008-02-26 16:08:02 +0000 | [diff] [blame] | 418 | |
| 419 | INIT_G(); |
| 420 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 421 | #if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
Denis Vlasenko | bdc88fd | 2007-07-23 17:14:14 +0000 | [diff] [blame] | 422 | applet_long_options = start_stop_daemon_longopts; |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 423 | #endif |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 424 | |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 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 */ |
| 428 | /* -xa (at least one) is required if -S is given */ |
| 429 | /* -q turns off -v */ |
| 430 | opt_complementary = "K:S:K--S:S--K:m?p:K?xpun:S?xa" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 431 | IF_FEATURE_START_STOP_DAEMON_FANCY("q-v"); |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 432 | opt = getopt32(argv, "KSbqtma:n:s:u:c:x:p:" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 433 | IF_FEATURE_START_STOP_DAEMON_FANCY("ovN:R:"), |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 434 | &startas, &cmdname, &signame, &userspec, &chuid, &execname, &pidfile |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 435 | IF_FEATURE_START_STOP_DAEMON_FANCY(,&opt_N) |
Denis Vlasenko | 75897ea | 2008-09-27 01:05:13 +0000 | [diff] [blame] | 436 | /* We accept and ignore -R <param> / --retry <param> */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 437 | IF_FEATURE_START_STOP_DAEMON_FANCY(,NULL) |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 438 | ); |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 439 | |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 440 | if (opt & OPT_s) { |
Rob Landley | 8479063 | 2006-08-28 20:30:27 +0000 | [diff] [blame] | 441 | signal_nr = get_signum(signame); |
| 442 | if (signal_nr < 0) bb_show_usage(); |
Eric Andersen | 08804ce | 2003-07-30 08:29:56 +0000 | [diff] [blame] | 443 | } |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 444 | |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 445 | if (!(opt & OPT_a)) |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 446 | startas = execname; |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 447 | if (!execname) /* in case -a is given and -x is not */ |
| 448 | execname = startas; |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 449 | if (execname) { |
| 450 | G.execname_sizeof = strlen(execname) + 1; |
| 451 | G.execname_cmpbuf = xmalloc(G.execname_sizeof + 1); |
| 452 | } |
Eric Andersen | aa820db | 2003-07-26 09:10:35 +0000 | [diff] [blame] | 453 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 454 | // IF_FEATURE_START_STOP_DAEMON_FANCY( |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 455 | // if (retry_arg) |
Denys Vlasenko | 7783248 | 2010-08-12 14:14:45 +0200 | [diff] [blame] | 456 | // retries = xatoi_positive(retry_arg); |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 457 | // ) |
Denis Vlasenko | 5a96c3e | 2008-04-19 17:40:29 +0000 | [diff] [blame] | 458 | //argc -= optind; |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 459 | argv += optind; |
| 460 | |
Denis Vlasenko | b131b27 | 2006-12-17 17:30:01 +0000 | [diff] [blame] | 461 | if (userspec) { |
| 462 | user_id = bb_strtou(userspec, NULL, 10); |
| 463 | if (errno) |
Denis Vlasenko | 9a44c4f | 2006-12-28 05:44:47 +0000 | [diff] [blame] | 464 | user_id = xuname2uid(userspec); |
Denis Vlasenko | b131b27 | 2006-12-17 17:30:01 +0000 | [diff] [blame] | 465 | } |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 466 | /* Both start and stop need to know current processes */ |
| 467 | do_procinit(); |
Denis Vlasenko | 85d788e | 2008-04-19 21:30:52 +0000 | [diff] [blame] | 468 | |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 469 | if (opt & CTX_STOP) { |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame] | 470 | int i = do_stop(); |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 471 | return (opt & OPT_OKNODO) ? 0 : (i <= 0); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 472 | } |
| 473 | |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 474 | if (G.found_procs) { |
Denis Vlasenko | e061226 | 2008-04-30 13:58:31 +0000 | [diff] [blame] | 475 | if (!QUIET) |
Jérémie Koenig | fbedacf | 2010-03-26 19:08:53 +0100 | [diff] [blame] | 476 | printf("%s is already running\n%u\n", execname, (unsigned)G.found_procs->pid); |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 477 | return !(opt & OPT_OKNODO); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 478 | } |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 479 | |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 480 | #ifdef OLDER_VERSION_OF_X |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 481 | if (execname) |
| 482 | xstat(execname, &execstat); |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 483 | #endif |
Denis Vlasenko | e125a68 | 2008-05-18 21:17:52 +0000 | [diff] [blame] | 484 | |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 485 | *--argv = startas; |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 486 | if (opt & OPT_BACKGROUND) { |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 487 | #if BB_MMU |
Peter Korsgaard | 743edac | 2011-11-09 19:44:37 +0100 | [diff] [blame] | 488 | bb_daemonize(DAEMON_DEVNULL_STDIO + DAEMON_CLOSE_EXTRA_FDS + DAEMON_DOUBLE_FORK); |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 489 | /* DAEMON_DEVNULL_STDIO is superfluous - |
| 490 | * it's always done by bb_daemonize() */ |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 491 | #else |
Pascal Bellard | 926031b | 2010-07-04 15:32:38 +0200 | [diff] [blame] | 492 | pid_t pid = xvfork(); |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 493 | if (pid != 0) { |
| 494 | /* parent */ |
| 495 | /* why _exit? the child may have changed the stack, |
| 496 | * so "return 0" may do bad things */ |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 497 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 498 | } |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 499 | /* Child */ |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 500 | setsid(); /* detach from controlling tty */ |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 501 | /* Redirect stdio to /dev/null, close extra FDs. |
| 502 | * We do not actually daemonize because of DAEMON_ONLY_SANITIZE */ |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 503 | bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO |
Denis Vlasenko | 148f67a | 2008-07-01 10:05:12 +0000 | [diff] [blame] | 504 | + DAEMON_CLOSE_EXTRA_FDS |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 505 | + DAEMON_ONLY_SANITIZE, |
| 506 | NULL /* argv, unused */ ); |
| 507 | #endif |
Eric Andersen | 53a2299 | 2002-01-26 09:04:45 +0000 | [diff] [blame] | 508 | } |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 509 | if (opt & OPT_MAKEPID) { |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 510 | /* User wants _us_ to make the pidfile */ |
Denis Vlasenko | 1caca34 | 2007-08-02 10:14:29 +0000 | [diff] [blame] | 511 | write_pidfile(pidfile); |
Eric Andersen | 625da9d | 2004-04-13 18:28:46 +0000 | [diff] [blame] | 512 | } |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 513 | if (opt & OPT_c) { |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 514 | struct bb_uidgid_t ugid = { -1, -1 }; |
Denis Vlasenko | cce3858 | 2007-02-26 22:47:42 +0000 | [diff] [blame] | 515 | parse_chown_usergroup_or_die(&ugid, chuid); |
Denys Vlasenko | 585541e | 2011-09-15 18:27:05 +0200 | [diff] [blame] | 516 | if (ugid.uid != (uid_t) -1) { |
| 517 | struct passwd *pw = xgetpwuid(ugid.uid); |
| 518 | if (ugid.gid != (gid_t) -1) |
| 519 | pw->pw_gid = ugid.gid; |
| 520 | /* initgroups, setgid, setuid: */ |
| 521 | change_identity(pw); |
| 522 | } else if (ugid.gid != (gid_t) -1) { |
| 523 | xsetgid(ugid.gid); |
| 524 | setgroups(1, &ugid.gid); |
| 525 | } |
Rob Landley | f0623a2 | 2006-07-17 00:35:07 +0000 | [diff] [blame] | 526 | } |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 527 | #if ENABLE_FEATURE_START_STOP_DAEMON_FANCY |
Denis Vlasenko | b8c77b5 | 2006-12-17 19:43:10 +0000 | [diff] [blame] | 528 | if (opt & OPT_NICELEVEL) { |
Denis Vlasenko | ca3c981 | 2006-10-08 23:36:17 +0000 | [diff] [blame] | 529 | /* Set process priority */ |
| 530 | int prio = getpriority(PRIO_PROCESS, 0) + xatoi_range(opt_N, INT_MIN/2, INT_MAX/2); |
| 531 | if (setpriority(PRIO_PROCESS, 0, prio) < 0) { |
| 532 | bb_perror_msg_and_die("setpriority(%d)", prio); |
| 533 | } |
| 534 | } |
| 535 | #endif |
Denis Vlasenko | 7987a18 | 2008-07-01 10:00:46 +0000 | [diff] [blame] | 536 | execvp(startas, argv); |
Denys Vlasenko | 41ddd9f | 2010-06-25 01:46:53 +0200 | [diff] [blame] | 537 | bb_perror_msg_and_die("can't execute '%s'", startas); |
Eric Andersen | c2af1ee | 2001-10-18 19:33:06 +0000 | [diff] [blame] | 538 | } |