2007-04-05 16:48:42 +05:30
|
|
|
/*
|
|
|
|
rc-status
|
|
|
|
Display the status of the services in runlevels
|
|
|
|
Copyright 2007 Gentoo Foundation
|
|
|
|
Released under the GPLv2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
2007-04-05 16:48:42 +05:30
|
|
|
#include "einfo.h"
|
|
|
|
#include "rc.h"
|
|
|
|
#include "rc-misc.h"
|
|
|
|
#include "strlist.h"
|
|
|
|
|
2007-07-31 21:35:56 +05:30
|
|
|
#define APPLET "rc-status"
|
|
|
|
|
2007-10-15 16:47:57 +05:30
|
|
|
static char const *types[] = { "ineed", "iuse", "iafter", NULL };
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
static void print_level (char *level)
|
|
|
|
{
|
2007-04-17 15:02:18 +05:30
|
|
|
printf ("Runlevel: %s%s%s\n",
|
2007-09-28 17:59:23 +05:30
|
|
|
ecolor (ECOLOR_HILITE),
|
2007-04-17 15:02:18 +05:30
|
|
|
level,
|
2007-09-28 17:59:23 +05:30
|
|
|
ecolor (ECOLOR_NORMAL));
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void print_service (char *service)
|
|
|
|
{
|
2007-04-11 18:14:47 +05:30
|
|
|
char status[10];
|
2007-10-03 17:23:20 +05:30
|
|
|
int cols = printf (" %s", service);
|
2007-09-28 20:23:38 +05:30
|
|
|
rc_service_state_t state = rc_service_state (service);
|
2007-09-28 17:59:23 +05:30
|
|
|
einfo_color_t color = ECOLOR_BAD;
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-09-28 20:23:38 +05:30
|
|
|
if (state & RC_SERVICE_STOPPING)
|
2007-09-28 20:34:15 +05:30
|
|
|
snprintf (status, sizeof (status), "stopping ");
|
2007-09-28 20:23:38 +05:30
|
|
|
else if (state & RC_SERVICE_STARTING) {
|
2007-04-11 18:14:47 +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) {
|
2007-04-11 18:14:47 +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) {
|
|
|
|
if (geteuid () == 0 && rc_service_daemons_crashed (service))
|
|
|
|
snprintf (status, sizeof (status), " crashed ");
|
|
|
|
else {
|
|
|
|
snprintf (status, sizeof (status), " started ");
|
|
|
|
color = ECOLOR_GOOD;
|
|
|
|
}
|
2007-09-28 20:23:38 +05:30
|
|
|
} else if (state & RC_SERVICE_SCHEDULED) {
|
2007-04-11 18:14:47 +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
|
2007-09-28 20:34:15 +05:30
|
|
|
snprintf (status, sizeof (status), " stopped ");
|
2007-10-03 17:23:20 +05:30
|
|
|
|
2007-10-03 18:15:57 +05:30
|
|
|
if (isatty (fileno (stdout)) && ! rc_env_bool ("RC_NOCOLOR"))
|
2007-10-03 17:23:20 +05:30
|
|
|
printf ("\n");
|
2007-04-11 18:14:47 +05:30
|
|
|
ebracket (cols, color, status);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2007-06-28 21:14:14 +05:30
|
|
|
#include "_usage.h"
|
2007-09-21 17:22:37 +05:30
|
|
|
#define extraopts "[runlevel1] [runlevel2] ..."
|
2007-06-28 21:14:14 +05:30
|
|
|
#define getoptstring "alsu" 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'},
|
|
|
|
{"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",
|
|
|
|
"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"
|
|
|
|
|
2007-07-31 21:35:56 +05:30
|
|
|
int rc_status (int argc, char **argv)
|
2007-04-05 16:48:42 +05:30
|
|
|
{
|
2007-10-15 16:47:57 +05:30
|
|
|
rc_depinfo_t *deptree = NULL;
|
2007-04-17 18:14:32 +05:30
|
|
|
char **levels = NULL;
|
2007-04-11 18:14:47 +05:30
|
|
|
char **services = NULL;
|
2007-10-15 16:47:57 +05:30
|
|
|
char **ordered = NULL;
|
2007-04-11 18:14:47 +05:30
|
|
|
char *level;
|
|
|
|
char *service;
|
2007-05-14 17:54:18 +05:30
|
|
|
int opt;
|
2007-04-11 18:14:47 +05:30
|
|
|
int i;
|
|
|
|
int j;
|
2007-10-15 16:50:27 +05:30
|
|
|
int depopts = RC_DEP_STRICT | RC_DEP_START | RC_DEP_TRACE;
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-05-14 17:54:18 +05:30
|
|
|
while ((opt = getopt_long(argc, argv, getoptstring, longopts, (int *) 0)) != -1)
|
|
|
|
switch (opt) {
|
2007-04-11 18:14:47 +05:30
|
|
|
case 'a':
|
2007-10-03 19:41:55 +05:30
|
|
|
levels = rc_runlevel_list ();
|
2007-04-11 18:14:47 +05:30
|
|
|
break;
|
|
|
|
case 'l':
|
2007-10-03 19:41:55 +05:30
|
|
|
levels = rc_runlevel_list ();
|
2007-04-11 18:14:47 +05:30
|
|
|
STRLIST_FOREACH (levels, level, i)
|
|
|
|
printf ("%s\n", level);
|
|
|
|
rc_strlist_free (levels);
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
case 's':
|
|
|
|
services = rc_services_in_runlevel (NULL);
|
|
|
|
STRLIST_FOREACH (services, service, i)
|
|
|
|
print_service (service);
|
|
|
|
rc_strlist_free (services);
|
|
|
|
exit (EXIT_SUCCESS);
|
|
|
|
case 'u':
|
|
|
|
services = rc_services_in_runlevel (NULL);
|
2007-10-03 19:41:55 +05:30
|
|
|
levels = rc_runlevel_list ();
|
2007-04-11 18:14:47 +05:30
|
|
|
STRLIST_FOREACH (services, service, i) {
|
|
|
|
bool found = false;
|
|
|
|
STRLIST_FOREACH (levels, level, j)
|
2007-09-25 23:00:07 +05:30
|
|
|
if (rc_service_in_runlevel (service, level)) {
|
2007-04-11 18:14:47 +05:30
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (! found)
|
|
|
|
print_service (service);
|
|
|
|
}
|
|
|
|
rc_strlist_free (levels);
|
|
|
|
rc_strlist_free (services);
|
|
|
|
exit (EXIT_SUCCESS);
|
2007-04-17 18:14:32 +05:30
|
|
|
|
|
|
|
case_RC_COMMON_GETOPT
|
2007-04-11 18:14:47 +05:30
|
|
|
}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-04-11 18:14:47 +05:30
|
|
|
while (optind < argc)
|
2007-09-18 17:06:55 +05:30
|
|
|
rc_strlist_add (&levels, argv[optind++]);
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-09-25 21:08:21 +05:30
|
|
|
if (! levels) {
|
2007-10-02 15:27:23 +05:30
|
|
|
level = rc_runlevel_get ();
|
2007-09-25 21:08:21 +05:30
|
|
|
rc_strlist_add (&levels, level);
|
|
|
|
free (level);
|
|
|
|
}
|
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 */
|
|
|
|
deptree = rc_deptree_load ();
|
2007-04-11 18:14:47 +05:30
|
|
|
STRLIST_FOREACH (levels, level, i) {
|
|
|
|
print_level (level);
|
|
|
|
services = rc_services_in_runlevel (level);
|
2007-10-15 16:47:57 +05:30
|
|
|
if (deptree) {
|
|
|
|
ordered = rc_deptree_depends (deptree, (char **) types, services,
|
2007-10-15 16:50:27 +05:30
|
|
|
level, depopts);
|
2007-10-15 16:47:57 +05:30
|
|
|
rc_strlist_free (services);
|
|
|
|
services = ordered;
|
|
|
|
ordered = NULL;
|
|
|
|
}
|
2007-04-11 18:14:47 +05:30
|
|
|
STRLIST_FOREACH (services, service, j)
|
2007-10-15 16:47:57 +05:30
|
|
|
if (rc_service_in_runlevel (service, level))
|
|
|
|
print_service (service);
|
2007-04-11 18:14:47 +05:30
|
|
|
rc_strlist_free (services);
|
|
|
|
}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-04-11 18:14:47 +05:30
|
|
|
rc_strlist_free (levels);
|
2007-10-15 16:47:57 +05:30
|
|
|
rc_deptree_free (deptree);
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-04-11 18:14:47 +05:30
|
|
|
return (EXIT_SUCCESS);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|