2007-04-05 16:48:42 +05:30
|
|
|
/*
|
|
|
|
rc-status
|
|
|
|
Display the status of the services in runlevels
|
|
|
|
*/
|
|
|
|
|
2008-01-14 10:35:22 +05:30
|
|
|
/*
|
2008-03-26 23:23:37 +05:30
|
|
|
* Copyright 2007-2008 Roy Marples <roy@marples.name>
|
2007-11-14 20:52:04 +05:30
|
|
|
* All rights reserved
|
|
|
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-07-31 21:35:56 +05:30
|
|
|
#include "builtins.h"
|
2008-01-06 19:17:39 +05:30
|
|
|
#include "einfo.h"
|
2007-04-05 16:48:42 +05:30
|
|
|
#include "rc.h"
|
2008-01-06 19:17:39 +05:30
|
|
|
#include "rc-misc.h"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-02-12 01:44:09 +05:30
|
|
|
extern const char *applet;
|
2008-03-21 18:34:29 +05:30
|
|
|
static bool test_crashed = false;
|
2008-10-30 20:29:14 +05:30
|
|
|
static RC_DEPTREE *deptree;
|
|
|
|
static RC_STRINGLIST *types;
|
2007-10-15 16:47:57 +05:30
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
static RC_STRINGLIST *levels, *services, *tmp, *alist;
|
|
|
|
static RC_STRINGLIST *sservices, *nservices, *needsme;
|
|
|
|
|
|
|
|
bool
|
|
|
|
_rc_can_find_pids(void)
|
2008-03-21 18:34:29 +05:30
|
|
|
{
|
|
|
|
RC_PIDLIST *pids;
|
|
|
|
RC_PID *pid;
|
|
|
|
RC_PID *pid2;
|
|
|
|
bool retval = false;
|
|
|
|
|
2008-03-21 23:11:01 +05:30
|
|
|
if (geteuid() == 0)
|
|
|
|
return true;
|
|
|
|
|
2008-03-21 18:34:29 +05:30
|
|
|
/* If we cannot see process 1, then we don't test to see if
|
|
|
|
* services crashed or not */
|
|
|
|
pids = rc_find_pids(NULL, NULL, 0, 1);
|
|
|
|
if (pids) {
|
|
|
|
pid = LIST_FIRST(pids);
|
|
|
|
if (pid) {
|
|
|
|
retval = true;
|
|
|
|
while (pid) {
|
|
|
|
pid2 = LIST_NEXT(pid, entries);
|
|
|
|
free(pid);
|
|
|
|
pid = pid2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(pids);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
static void
|
|
|
|
print_level(const char *level)
|
2007-04-05 16:48:42 +05:30
|
|
|
{
|
2008-02-08 04:54:09 +05:30
|
|
|
printf ("Runlevel: ");
|
2008-03-16 22:30:56 +05:30
|
|
|
if (isatty(fileno(stdout)))
|
|
|
|
printf("%s%s%s\n",
|
|
|
|
ecolor(ECOLOR_HILITE),
|
|
|
|
level,
|
|
|
|
ecolor(ECOLOR_NORMAL));
|
2008-02-08 04:54:09 +05:30
|
|
|
else
|
2008-03-16 22:30:56 +05:30
|
|
|
printf("%s\n", level);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
static void
|
|
|
|
print_service(const char *service)
|
2007-04-05 16:48:42 +05:30
|
|
|
{
|
2007-04-11 18:14:47 +05:30
|
|
|
char status[10];
|
2008-03-16 22:30:56 +05:30
|
|
|
int cols = printf(" %s", service);
|
|
|
|
const char *c = ecolor(ECOLOR_GOOD);
|
|
|
|
RC_SERVICE state = rc_service_state(service);
|
|
|
|
ECOLOR color = ECOLOR_BAD;
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-09-28 20:23:38 +05:30
|
|
|
if (state & RC_SERVICE_STOPPING)
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), "stopping ");
|
2007-09-28 20:23:38 +05:30
|
|
|
else if (state & RC_SERVICE_STARTING) {
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), "starting ");
|
2007-09-28 17:59:23 +05:30
|
|
|
color = ECOLOR_WARN;
|
2007-09-28 20:23:38 +05:30
|
|
|
} else if (state & RC_SERVICE_INACTIVE) {
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), "inactive ");
|
2007-09-28 17:59:23 +05:30
|
|
|
color = ECOLOR_WARN;
|
2007-09-28 20:34:15 +05:30
|
|
|
} else if (state & RC_SERVICE_STARTED) {
|
2008-04-21 16:26:28 +05:30
|
|
|
errno = 0;
|
|
|
|
if (test_crashed &&
|
|
|
|
rc_service_daemons_crashed(service) &&
|
|
|
|
errno != EACCES)
|
|
|
|
{
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), " crashed ");
|
2008-04-21 16:26:28 +05:30
|
|
|
} else {
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), " started ");
|
2007-09-28 20:34:15 +05:30
|
|
|
color = ECOLOR_GOOD;
|
|
|
|
}
|
2007-09-28 20:23:38 +05:30
|
|
|
} else if (state & RC_SERVICE_SCHEDULED) {
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), "scheduled");
|
2007-09-28 17:59:23 +05:30
|
|
|
color = ECOLOR_WARN;
|
2007-04-11 18:14:47 +05:30
|
|
|
} else
|
2008-03-16 22:30:56 +05:30
|
|
|
snprintf(status, sizeof(status), " stopped ");
|
2007-10-03 17:23:20 +05:30
|
|
|
|
2007-12-06 16:18:00 +05:30
|
|
|
errno = 0;
|
2008-03-16 22:30:56 +05:30
|
|
|
if (c && *c && isatty(fileno(stdout)))
|
|
|
|
printf("\n");
|
|
|
|
ebracket(cols, color, status);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
static void
|
|
|
|
print_services(const char *runlevel, RC_STRINGLIST *svcs)
|
2008-04-10 04:26:32 +05:30
|
|
|
{
|
|
|
|
RC_STRINGLIST *l = NULL;
|
2008-09-18 20:58:20 +05:30
|
|
|
RC_STRING *s;
|
2008-04-10 04:26:32 +05:30
|
|
|
char *r = NULL;
|
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!svcs)
|
2008-04-10 04:26:32 +05:30
|
|
|
return;
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!deptree)
|
2008-04-10 04:26:32 +05:30
|
|
|
deptree = _rc_deptree_load(NULL);
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!deptree) {
|
|
|
|
TAILQ_FOREACH(s, svcs, entries)
|
2008-04-10 04:26:32 +05:30
|
|
|
if (!runlevel ||
|
|
|
|
rc_service_in_runlevel(s->value, runlevel))
|
|
|
|
print_service(s->value);
|
|
|
|
return;
|
|
|
|
}
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!types) {
|
2008-04-10 04:26:32 +05:30
|
|
|
types = rc_stringlist_new();
|
|
|
|
rc_stringlist_add(types, "ineed");
|
|
|
|
rc_stringlist_add(types, "iuse");
|
|
|
|
rc_stringlist_add(types, "iafter");
|
|
|
|
}
|
|
|
|
if (!runlevel)
|
|
|
|
r = rc_runlevel_get();
|
2008-10-30 20:29:14 +05:30
|
|
|
l = rc_deptree_depends(deptree, types, svcs, r ? r : runlevel,
|
2008-04-10 04:26:32 +05:30
|
|
|
RC_DEP_STRICT | RC_DEP_TRACE | RC_DEP_START);
|
|
|
|
free(r);
|
2008-04-17 05:55:08 +05:30
|
|
|
if (!l)
|
|
|
|
return;
|
2008-04-10 04:26:32 +05:30
|
|
|
TAILQ_FOREACH(s, l, entries) {
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!rc_stringlist_find(svcs, s->value))
|
2008-04-10 04:26:32 +05:30
|
|
|
continue;
|
|
|
|
if (!runlevel || rc_service_in_runlevel(s->value, runlevel))
|
|
|
|
print_service(s->value);
|
|
|
|
}
|
|
|
|
rc_stringlist_free(l);
|
|
|
|
}
|
|
|
|
|
2007-06-28 21:14:14 +05:30
|
|
|
#include "_usage.h"
|
2007-09-21 17:22:37 +05:30
|
|
|
#define extraopts "[runlevel1] [runlevel2] ..."
|
2008-02-09 02:41:44 +05:30
|
|
|
#define getoptstring "alrsu" getoptstring_COMMON
|
2007-07-31 21:35:56 +05:30
|
|
|
static const struct option longopts[] = {
|
2007-04-17 18:14:32 +05:30
|
|
|
{"all", 0, NULL, 'a'},
|
|
|
|
{"list", 0, NULL, 'l'},
|
2008-02-09 02:41:44 +05:30
|
|
|
{"runlevel", 0, NULL, 'r'},
|
2007-04-17 18:14:32 +05:30
|
|
|
{"servicelist", 0, NULL, 's'},
|
|
|
|
{"unused", 0, NULL, 'u'},
|
2007-06-28 21:14:14 +05:30
|
|
|
longopts_COMMON
|
2007-04-17 18:14:32 +05:30
|
|
|
};
|
2007-09-25 21:51:38 +05:30
|
|
|
static const char * const longopts_help[] = {
|
|
|
|
"Show services from all run levels",
|
|
|
|
"Show list of run levels",
|
2008-02-09 02:41:44 +05:30
|
|
|
"Show the name of the current runlevel",
|
2007-09-25 21:51:38 +05:30
|
|
|
"Show service list",
|
2007-10-09 23:11:53 +05:30
|
|
|
"Show services not assigned to any runlevel",
|
2007-09-25 21:51:38 +05:30
|
|
|
longopts_help_COMMON
|
|
|
|
};
|
2007-04-17 18:14:32 +05:30
|
|
|
#include "_usage.c"
|
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
int
|
|
|
|
rc_status(int argc, char **argv)
|
2007-04-05 16:48:42 +05:30
|
|
|
{
|
2008-04-10 04:26:32 +05:30
|
|
|
RC_STRING *s, *l, *t;
|
2008-10-30 20:29:14 +05:30
|
|
|
char *p, *runlevel = NULL;
|
|
|
|
int opt, aflag = 0;
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-03-21 23:11:01 +05:30
|
|
|
test_crashed = _rc_can_find_pids();
|
2008-03-21 18:34:29 +05:30
|
|
|
|
2008-03-16 22:30:56 +05:30
|
|
|
while ((opt = getopt_long(argc, argv, getoptstring, longopts,
|
|
|
|
(int *) 0)) != -1)
|
2007-05-14 17:54:18 +05:30
|
|
|
switch (opt) {
|
2008-03-16 22:30:56 +05:30
|
|
|
case 'a':
|
2008-10-30 20:29:14 +05:30
|
|
|
aflag++;
|
2008-03-16 22:30:56 +05:30
|
|
|
levels = rc_runlevel_list();
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
levels = rc_runlevel_list();
|
|
|
|
TAILQ_FOREACH (l, levels, entries)
|
|
|
|
printf("%s\n", l->value);
|
2008-04-10 04:26:32 +05:30
|
|
|
goto exit;
|
2008-03-16 22:30:56 +05:30
|
|
|
/* NOTREACHED */
|
|
|
|
case 'r':
|
2008-10-30 20:29:14 +05:30
|
|
|
runlevel = rc_runlevel_get();
|
|
|
|
printf("%s\n", runlevel);
|
2008-04-10 04:26:32 +05:30
|
|
|
goto exit;
|
2008-03-16 22:30:56 +05:30
|
|
|
/* NOTREACHED */
|
|
|
|
case 's':
|
|
|
|
services = rc_services_in_runlevel(NULL);
|
2008-04-10 04:26:32 +05:30
|
|
|
print_services(NULL, services);
|
|
|
|
goto exit;
|
2008-03-16 22:30:56 +05:30
|
|
|
/* NOTREACHED */
|
|
|
|
case 'u':
|
|
|
|
services = rc_services_in_runlevel(NULL);
|
|
|
|
levels = rc_runlevel_list();
|
2008-04-10 04:26:32 +05:30
|
|
|
TAILQ_FOREACH_SAFE(s, services, entries, t) {
|
2008-03-16 22:30:56 +05:30
|
|
|
TAILQ_FOREACH(l, levels, entries)
|
2008-04-10 04:26:32 +05:30
|
|
|
if (rc_service_in_runlevel(s->value, l->value)) {
|
|
|
|
TAILQ_REMOVE(services, s, entries);
|
|
|
|
free(s->value);
|
|
|
|
free(s);
|
2008-03-16 22:30:56 +05:30
|
|
|
break;
|
2008-04-10 04:26:32 +05:30
|
|
|
}
|
2008-03-16 22:30:56 +05:30
|
|
|
}
|
2008-04-10 04:26:32 +05:30
|
|
|
print_services(NULL, services);
|
|
|
|
goto exit;
|
2008-03-16 22:30:56 +05:30
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
case_RC_COMMON_GETOPT
|
2007-04-11 18:14:47 +05:30
|
|
|
}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!levels)
|
2008-03-16 22:30:56 +05:30
|
|
|
levels = rc_stringlist_new();
|
2008-12-04 22:47:09 +05:30
|
|
|
opt = (optind < argc) ? 0 : 1;
|
|
|
|
while (optind < argc) {
|
|
|
|
if (rc_runlevel_exists(argv[optind])) {
|
|
|
|
rc_stringlist_add(levels, argv[optind++]);
|
|
|
|
opt++;
|
|
|
|
} else
|
|
|
|
eerror("runlevel `%s' does not exist", argv[optind++]);
|
|
|
|
}
|
|
|
|
if (opt == 0)
|
|
|
|
exit(EXIT_FAILURE);
|
2008-10-30 20:29:14 +05:30
|
|
|
if (!TAILQ_FIRST(levels)) {
|
|
|
|
runlevel = rc_runlevel_get();
|
|
|
|
rc_stringlist_add(levels, runlevel);
|
2007-09-25 21:08:21 +05:30
|
|
|
}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-10-15 16:47:57 +05:30
|
|
|
/* Output the services in the order in which they would start */
|
2008-03-16 22:30:56 +05:30
|
|
|
deptree = _rc_deptree_load(NULL);
|
2007-10-15 21:47:33 +05:30
|
|
|
|
2008-03-16 22:30:56 +05:30
|
|
|
TAILQ_FOREACH(l, levels, entries) {
|
|
|
|
print_level(l->value);
|
|
|
|
services = rc_services_in_runlevel(l->value);
|
2008-04-10 04:26:32 +05:30
|
|
|
print_services(l->value, services);
|
|
|
|
rc_stringlist_free(services);
|
|
|
|
services = NULL;
|
|
|
|
}
|
|
|
|
|
2008-10-30 20:29:14 +05:30
|
|
|
if (aflag || argc < 2) {
|
|
|
|
/* Show hotplugged services */
|
|
|
|
print_level("hotplugged");
|
|
|
|
services = rc_services_in_state(RC_SERVICE_HOTPLUGGED);
|
2008-12-01 14:16:25 +05:30
|
|
|
print_services(NULL, services);
|
2008-10-30 20:29:14 +05:30
|
|
|
rc_stringlist_free(services);
|
|
|
|
services = NULL;
|
|
|
|
|
|
|
|
/* Show manually started and unassigned depended services */
|
|
|
|
if (aflag) {
|
|
|
|
rc_stringlist_free(levels);
|
|
|
|
levels = rc_stringlist_new();
|
|
|
|
if (!runlevel)
|
|
|
|
runlevel = rc_runlevel_get();
|
|
|
|
rc_stringlist_add(levels, runlevel);
|
|
|
|
}
|
|
|
|
rc_stringlist_add(levels, RC_LEVEL_SYSINIT);
|
|
|
|
rc_stringlist_add(levels, RC_LEVEL_BOOT);
|
|
|
|
services = rc_services_in_runlevel(NULL);
|
|
|
|
sservices = rc_stringlist_new();
|
|
|
|
TAILQ_FOREACH(l, levels, entries) {
|
|
|
|
nservices = rc_services_in_runlevel(l->value);
|
|
|
|
TAILQ_CONCAT(sservices, nservices, entries);
|
|
|
|
free(nservices);
|
|
|
|
}
|
|
|
|
TAILQ_FOREACH_SAFE(s, services, entries, t) {
|
|
|
|
if (rc_stringlist_find(sservices, s->value) ||
|
|
|
|
rc_service_state(s->value) & RC_SERVICE_STOPPED)
|
|
|
|
{
|
|
|
|
TAILQ_REMOVE(services, s, entries);
|
|
|
|
free(s->value);
|
|
|
|
free(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
needsme = rc_stringlist_new();
|
|
|
|
rc_stringlist_add(needsme, "needsme");
|
|
|
|
nservices = rc_stringlist_new();
|
|
|
|
alist = rc_stringlist_new();
|
|
|
|
l = rc_stringlist_add(alist, "");
|
|
|
|
p = l->value;
|
|
|
|
if (!runlevel)
|
|
|
|
runlevel = rc_runlevel_get();
|
2008-04-10 04:26:32 +05:30
|
|
|
TAILQ_FOREACH_SAFE(s, services, entries, t) {
|
2008-10-30 20:29:14 +05:30
|
|
|
l->value = s->value;
|
|
|
|
unsetenv("RC_SVCNAME");
|
|
|
|
setenv("RC_SVCNAME", l->value, 1);
|
|
|
|
tmp = rc_deptree_depends(deptree, needsme, alist, runlevel, RC_DEP_TRACE);
|
|
|
|
if (TAILQ_FIRST(tmp)) {
|
|
|
|
TAILQ_REMOVE(services, s, entries);
|
|
|
|
TAILQ_INSERT_TAIL(nservices, s, entries);
|
2008-03-16 22:30:56 +05:30
|
|
|
}
|
2008-10-30 20:29:14 +05:30
|
|
|
rc_stringlist_free(tmp);
|
2007-10-15 16:47:57 +05:30
|
|
|
}
|
2008-10-30 20:29:14 +05:30
|
|
|
l->value = p;
|
|
|
|
print_level("needed");
|
|
|
|
print_services(NULL, nservices);
|
|
|
|
print_level("manual");
|
2008-04-10 04:26:32 +05:30
|
|
|
print_services(NULL, services);
|
2007-04-11 18:14:47 +05:30
|
|
|
}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-04-10 04:26:32 +05:30
|
|
|
exit:
|
2008-10-30 20:29:14 +05:30
|
|
|
free(runlevel);
|
|
|
|
#ifdef DEBUG_MEMORY
|
|
|
|
rc_stringlist_free(alist);
|
|
|
|
rc_stringlist_free(needsme);
|
|
|
|
rc_stringlist_free(sservices);
|
|
|
|
rc_stringlist_free(nservices);
|
2008-04-10 04:26:32 +05:30
|
|
|
rc_stringlist_free(services);
|
2008-03-16 22:30:56 +05:30
|
|
|
rc_stringlist_free(types);
|
|
|
|
rc_stringlist_free(levels);
|
|
|
|
rc_deptree_free(deptree);
|
2008-10-30 20:29:14 +05:30
|
|
|
#endif
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2008-09-18 18:39:51 +05:30
|
|
|
return(EXIT_SUCCESS);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|