2001-10-19 01:03:06 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini start-stop-daemon implementation(s) for busybox
|
|
|
|
*
|
|
|
|
* Written by Marek Michalkiewicz <marekm@i17linuxb.ists.pwr.wroc.pl>,
|
|
|
|
* public domain.
|
|
|
|
* Adapted for busybox David Kimdon <dwhedon@gordian.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <unistd.h>
|
2005-09-11 06:35:30 +05:30
|
|
|
#include <getopt.h> /* struct option */
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
#include "busybox.h"
|
2002-07-04 04:49:26 +05:30
|
|
|
#include "pwd_.h"
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
static int signal_nr = 15;
|
|
|
|
static int user_id = -1;
|
2004-03-13 14:03:10 +05:30
|
|
|
static int quiet = 0;
|
2003-07-26 14:40:35 +05:30
|
|
|
static char *userspec = NULL;
|
|
|
|
static char *cmdname = NULL;
|
2001-10-19 01:03:06 +05:30
|
|
|
static char *execname = NULL;
|
2004-03-13 14:03:10 +05:30
|
|
|
static char *pidfile = NULL;
|
2001-10-19 01:03:06 +05:30
|
|
|
|
2004-03-13 14:03:10 +05:30
|
|
|
struct pid_list {
|
2001-10-19 01:03:06 +05:30
|
|
|
struct pid_list *next;
|
2004-03-13 14:03:10 +05:30
|
|
|
pid_t pid;
|
|
|
|
};
|
2001-10-19 01:03:06 +05:30
|
|
|
|
2004-03-13 14:03:10 +05:30
|
|
|
static struct pid_list *found = NULL;
|
2001-10-19 01:03:06 +05:30
|
|
|
|
2001-10-31 15:25:39 +05:30
|
|
|
static inline void
|
2004-03-13 14:03:10 +05:30
|
|
|
push(pid_t pid)
|
2001-10-19 01:03:06 +05:30
|
|
|
{
|
2004-03-13 14:03:10 +05:30
|
|
|
struct pid_list *p;
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
p = xmalloc(sizeof(*p));
|
2001-10-31 15:25:39 +05:30
|
|
|
p->next = found;
|
2001-10-19 01:03:06 +05:30
|
|
|
p->pid = pid;
|
2001-10-31 15:25:39 +05:30
|
|
|
found = p;
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2004-03-13 14:03:10 +05:30
|
|
|
pid_is_exec(pid_t pid, const char *name)
|
2001-10-19 01:03:06 +05:30
|
|
|
{
|
2004-03-13 14:03:10 +05:30
|
|
|
char buf[32];
|
|
|
|
struct stat sb, exec_stat;
|
2001-10-19 01:03:06 +05:30
|
|
|
|
2004-03-13 14:03:10 +05:30
|
|
|
if (name && stat(name, &exec_stat))
|
|
|
|
bb_perror_msg_and_die("stat %s", name);
|
|
|
|
|
|
|
|
sprintf(buf, "/proc/%d/exe", pid);
|
|
|
|
if (stat(buf, &sb) != 0)
|
|
|
|
return 0;
|
|
|
|
return (sb.st_dev == exec_stat.st_dev && sb.st_ino == exec_stat.st_ino);
|
|
|
|
}
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
static int
|
|
|
|
pid_is_user(int pid, int uid)
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
char buf[32];
|
|
|
|
|
|
|
|
sprintf(buf, "/proc/%d", pid);
|
|
|
|
if (stat(buf, &sb) != 0)
|
|
|
|
return 0;
|
|
|
|
return (sb.st_uid == uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2004-03-13 14:03:10 +05:30
|
|
|
pid_is_cmd(pid_t pid, const char *name)
|
2001-10-19 01:03:06 +05:30
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
FILE *f;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
sprintf(buf, "/proc/%d/stat", pid);
|
|
|
|
f = fopen(buf, "r");
|
|
|
|
if (!f)
|
|
|
|
return 0;
|
|
|
|
while ((c = getc(f)) != EOF && c != '(')
|
|
|
|
;
|
|
|
|
if (c != '(') {
|
|
|
|
fclose(f);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* this hopefully handles command names containing ')' */
|
|
|
|
while ((c = getc(f)) != EOF && c == *name)
|
|
|
|
name++;
|
|
|
|
fclose(f);
|
|
|
|
return (c == ')' && *name == '\0');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
check(int pid)
|
|
|
|
{
|
|
|
|
if (execname && !pid_is_exec(pid, execname)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (userspec && !pid_is_user(pid, user_id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (cmdname && !pid_is_cmd(pid, cmdname)) {
|
|
|
|
return;
|
|
|
|
}
|
2001-10-31 15:25:39 +05:30
|
|
|
push(pid);
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-13 14:03:10 +05:30
|
|
|
static void
|
2004-04-13 23:58:46 +05:30
|
|
|
do_pidfile(void)
|
2004-03-13 14:03:10 +05:30
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
pid_t pid;
|
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
f = fopen(pidfile, "r");
|
2004-03-13 14:03:10 +05:30
|
|
|
if (f) {
|
|
|
|
if (fscanf(f, "%d", &pid) == 1)
|
|
|
|
check(pid);
|
|
|
|
fclose(f);
|
|
|
|
} else if (errno != ENOENT)
|
2004-04-13 23:58:46 +05:30
|
|
|
bb_perror_msg_and_die("open pidfile %s", pidfile);
|
2004-03-13 14:03:10 +05:30
|
|
|
|
|
|
|
}
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
static void
|
2004-03-13 14:03:10 +05:30
|
|
|
do_procinit(void)
|
2001-10-19 01:03:06 +05:30
|
|
|
{
|
|
|
|
DIR *procdir;
|
|
|
|
struct dirent *entry;
|
|
|
|
int foundany, pid;
|
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
if (pidfile) {
|
|
|
|
do_pidfile();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-10-19 01:03:06 +05:30
|
|
|
procdir = opendir("/proc");
|
|
|
|
if (!procdir)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ("opendir /proc");
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
foundany = 0;
|
|
|
|
while ((entry = readdir(procdir)) != NULL) {
|
|
|
|
if (sscanf(entry->d_name, "%d", &pid) != 1)
|
|
|
|
continue;
|
|
|
|
foundany++;
|
|
|
|
check(pid);
|
|
|
|
}
|
|
|
|
closedir(procdir);
|
|
|
|
if (!foundany)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die ("nothing in /proc - not mounted?");
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_stop(void)
|
|
|
|
{
|
|
|
|
char what[1024];
|
2004-03-13 14:03:10 +05:30
|
|
|
struct pid_list *p;
|
2001-10-31 15:25:39 +05:30
|
|
|
int killed = 0;
|
2001-10-19 01:03:06 +05:30
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
do_procinit();
|
2004-03-13 14:03:10 +05:30
|
|
|
|
2001-10-19 01:03:06 +05:30
|
|
|
if (cmdname)
|
|
|
|
strcpy(what, cmdname);
|
|
|
|
else if (execname)
|
|
|
|
strcpy(what, execname);
|
2004-04-13 23:58:46 +05:30
|
|
|
else if (pidfile)
|
|
|
|
sprintf(what, "process in pidfile `%.200s'", pidfile);
|
2001-10-19 01:03:06 +05:30
|
|
|
else if (userspec)
|
|
|
|
sprintf(what, "process(es) owned by `%s'", userspec);
|
|
|
|
else
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die ("internal error, please report");
|
2001-10-19 01:03:06 +05:30
|
|
|
|
|
|
|
if (!found) {
|
2004-03-13 14:03:10 +05:30
|
|
|
if (!quiet)
|
|
|
|
printf("no %s found; none killed.\n", what);
|
2001-10-31 15:25:39 +05:30
|
|
|
return;
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
|
|
|
for (p = found; p; p = p->next) {
|
2001-10-31 15:25:39 +05:30
|
|
|
if (kill(p->pid, signal_nr) == 0) {
|
|
|
|
p->pid = -p->pid;
|
|
|
|
killed++;
|
|
|
|
} else {
|
2004-04-13 23:58:46 +05:30
|
|
|
bb_perror_msg("warning: failed to kill %d", p->pid);
|
2001-10-31 15:25:39 +05:30
|
|
|
}
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
2004-03-13 14:03:10 +05:30
|
|
|
if (!quiet && killed) {
|
2001-10-19 01:03:06 +05:30
|
|
|
printf("stopped %s (pid", what);
|
2001-10-31 15:25:39 +05:30
|
|
|
for (p = found; p; p = p->next)
|
|
|
|
if(p->pid < 0)
|
|
|
|
printf(" %d", -p->pid);
|
2001-10-19 01:03:06 +05:30
|
|
|
printf(").\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-26 14:40:35 +05:30
|
|
|
static const struct option ssd_long_options[] = {
|
2005-10-11 20:08:01 +05:30
|
|
|
{ "stop", 0, NULL, 'K' },
|
|
|
|
{ "start", 0, NULL, 'S' },
|
2004-04-13 23:58:46 +05:30
|
|
|
{ "background", 0, NULL, 'b' },
|
2005-10-11 20:08:01 +05:30
|
|
|
{ "quiet", 0, NULL, 'q' },
|
2004-04-13 23:58:46 +05:30
|
|
|
{ "make-pidfile", 0, NULL, 'm' },
|
|
|
|
{ "startas", 1, NULL, 'a' },
|
2005-10-11 20:08:01 +05:30
|
|
|
{ "name", 1, NULL, 'n' },
|
|
|
|
{ "signal", 1, NULL, 's' },
|
|
|
|
{ "user", 1, NULL, 'u' },
|
|
|
|
{ "exec", 1, NULL, 'x' },
|
2004-04-13 23:58:46 +05:30
|
|
|
{ "pidfile", 1, NULL, 'p' },
|
2005-10-11 20:08:01 +05:30
|
|
|
{ 0, 0, 0, 0 }
|
2003-07-26 14:40:35 +05:30
|
|
|
};
|
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
#define SSD_CTX_STOP 1
|
|
|
|
#define SSD_CTX_START 2
|
2004-01-22 14:34:58 +05:30
|
|
|
#define SSD_OPT_BACKGROUND 4
|
2004-04-13 23:58:46 +05:30
|
|
|
#define SSD_OPT_QUIET 8
|
|
|
|
#define SSD_OPT_MAKEPID 16
|
2004-01-22 14:34:58 +05:30
|
|
|
|
2001-10-19 01:03:06 +05:30
|
|
|
int
|
|
|
|
start_stop_daemon_main(int argc, char **argv)
|
|
|
|
{
|
2004-01-22 14:34:58 +05:30
|
|
|
unsigned long opt;
|
2003-07-30 13:59:56 +05:30
|
|
|
char *signame = NULL;
|
2004-01-22 14:34:58 +05:30
|
|
|
char *startas = NULL;
|
|
|
|
|
2003-07-26 14:40:35 +05:30
|
|
|
bb_applet_long_options = ssd_long_options;
|
|
|
|
|
2005-10-11 20:08:01 +05:30
|
|
|
/* Check required one context option was given */
|
2005-10-14 15:26:52 +05:30
|
|
|
bb_opt_complementally = "K:S:?:K--S:S--K";
|
2004-04-13 23:58:46 +05:30
|
|
|
opt = bb_getopt_ulflags(argc, argv, "KSbqma:n:s:u:x:p:",
|
2005-10-14 15:26:52 +05:30
|
|
|
&startas, &cmdname, &signame, &userspec, &execname, &pidfile);
|
2003-07-26 14:40:35 +05:30
|
|
|
|
2005-10-11 20:08:01 +05:30
|
|
|
|
|
|
|
quiet = opt & SSD_OPT_QUIET;
|
2005-07-29 20:28:09 +05:30
|
|
|
|
2003-07-30 13:59:56 +05:30
|
|
|
if (signame) {
|
|
|
|
signal_nr = bb_xgetlarg(signame, 10, 0, NSIG);
|
|
|
|
}
|
2003-07-26 14:40:35 +05:30
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
if (!execname && !pidfile && !userspec && !cmdname)
|
|
|
|
bb_error_msg_and_die ("need at least one of -x, -p, -u, or -n");
|
2003-07-26 14:40:35 +05:30
|
|
|
|
|
|
|
if (!startas)
|
|
|
|
startas = execname;
|
|
|
|
|
2004-01-22 14:34:58 +05:30
|
|
|
if ((opt & SSD_CTX_START) && !startas)
|
2003-07-26 14:40:35 +05:30
|
|
|
bb_error_msg_and_die ("-S needs -x or -a");
|
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
if ((opt & SSD_OPT_MAKEPID) && pidfile == NULL)
|
|
|
|
bb_error_msg_and_die ("-m needs -p");
|
|
|
|
|
2001-10-19 01:03:06 +05:30
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
2001-10-31 15:25:39 +05:30
|
|
|
if (userspec && sscanf(userspec, "%d", &user_id) != 1)
|
2005-09-21 02:36:17 +05:30
|
|
|
user_id = bb_xgetpwnam(userspec);
|
2001-10-19 01:03:06 +05:30
|
|
|
|
2004-01-22 14:34:58 +05:30
|
|
|
if (opt & SSD_CTX_STOP) {
|
2001-10-19 01:03:06 +05:30
|
|
|
do_stop();
|
2001-10-31 15:25:39 +05:30
|
|
|
return EXIT_SUCCESS;
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
|
|
|
|
2004-04-13 23:58:46 +05:30
|
|
|
do_procinit();
|
|
|
|
|
2001-10-19 01:03:06 +05:30
|
|
|
if (found) {
|
2004-03-13 14:03:10 +05:30
|
|
|
if (!quiet)
|
|
|
|
printf("%s already running.\n%d\n", execname ,found->pid);
|
2001-10-31 15:25:39 +05:30
|
|
|
return EXIT_SUCCESS;
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|
|
|
|
*--argv = startas;
|
2004-01-22 14:34:58 +05:30
|
|
|
if (opt & SSD_OPT_BACKGROUND) {
|
2002-01-26 14:34:45 +05:30
|
|
|
if (daemon(0, 0) == -1)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ("unable to fork");
|
2004-04-13 23:58:46 +05:30
|
|
|
setsid();
|
|
|
|
}
|
|
|
|
if (opt & SSD_OPT_MAKEPID) {
|
|
|
|
/* user wants _us_ to make the pidfile */
|
|
|
|
FILE *pidf = fopen(pidfile, "w");
|
|
|
|
pid_t pidt = getpid();
|
|
|
|
if (pidf == NULL)
|
|
|
|
bb_perror_msg_and_die("Unable to write pidfile '%s'", pidfile);
|
|
|
|
fprintf(pidf, "%d\n", pidt);
|
|
|
|
fclose(pidf);
|
2002-01-26 14:34:45 +05:30
|
|
|
}
|
2001-10-19 01:03:06 +05:30
|
|
|
execv(startas, argv);
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die ("unable to start %s", startas);
|
2001-10-19 01:03:06 +05:30
|
|
|
}
|