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-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",
|
|
|
|
ecolor (ecolor_hilite),
|
|
|
|
level,
|
|
|
|
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];
|
|
|
|
int cols = printf (" %s\n", service);
|
2007-04-17 15:02:18 +05:30
|
|
|
einfo_color_t color = ecolor_bad;
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-09-25 22:49:02 +05:30
|
|
|
if (rc_service_state (service, rc_service_stopping) == 0)
|
2007-04-11 18:14:47 +05:30
|
|
|
snprintf (status, sizeof (status), "stopping ");
|
2007-09-25 22:49:02 +05:30
|
|
|
else if (rc_service_state (service, rc_service_starting) == 0) {
|
2007-04-11 18:14:47 +05:30
|
|
|
snprintf (status, sizeof (status), "starting ");
|
2007-04-17 15:02:18 +05:30
|
|
|
color = ecolor_warn;
|
2007-09-25 22:49:02 +05:30
|
|
|
} else if (rc_service_state (service, rc_service_inactive) == 0) {
|
2007-04-11 18:14:47 +05:30
|
|
|
snprintf (status, sizeof (status), "inactive ");
|
2007-04-17 15:02:18 +05:30
|
|
|
color = ecolor_warn;
|
2007-09-25 22:49:02 +05:30
|
|
|
} else if (geteuid () == 0 &&
|
|
|
|
rc_service_state (service, rc_service_crashed) == 0)
|
2007-04-11 18:14:47 +05:30
|
|
|
snprintf (status, sizeof (status), " crashed ");
|
2007-09-25 22:49:02 +05:30
|
|
|
else if (rc_service_state (service, rc_service_started) == 0) {
|
2007-04-11 18:14:47 +05:30
|
|
|
snprintf (status, sizeof (status), " started ");
|
2007-04-17 15:02:18 +05:30
|
|
|
color = ecolor_good;
|
2007-09-25 22:49:02 +05:30
|
|
|
} else if (rc_service_state (service, rc_service_scheduled) == 0) {
|
2007-04-11 18:14:47 +05:30
|
|
|
snprintf (status, sizeof (status), "scheduled");
|
2007-04-17 15:02:18 +05:30
|
|
|
color = ecolor_warn;
|
2007-04-11 18:14:47 +05:30
|
|
|
} else
|
|
|
|
snprintf (status, sizeof (status), " stopped ");
|
|
|
|
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
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
};
|
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",
|
|
|
|
"Show services not assigned to any run level",
|
|
|
|
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-04-17 18:14:32 +05:30
|
|
|
char **levels = NULL;
|
2007-04-11 18:14:47 +05:30
|
|
|
char **services = NULL;
|
|
|
|
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-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':
|
|
|
|
levels = rc_get_runlevels ();
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
levels = rc_get_runlevels ();
|
|
|
|
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);
|
|
|
|
levels = rc_get_runlevels ();
|
|
|
|
STRLIST_FOREACH (services, service, i) {
|
|
|
|
bool found = false;
|
|
|
|
STRLIST_FOREACH (levels, level, j)
|
2007-09-25 22:49:02 +05:30
|
|
|
if (rc_service_in_runlevel (service, level) == 0) {
|
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) {
|
|
|
|
level = rc_get_runlevel ();
|
|
|
|
rc_strlist_add (&levels, level);
|
|
|
|
free (level);
|
|
|
|
}
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-04-11 18:14:47 +05:30
|
|
|
STRLIST_FOREACH (levels, level, i) {
|
|
|
|
print_level (level);
|
|
|
|
services = rc_services_in_runlevel (level);
|
|
|
|
STRLIST_FOREACH (services, service, j)
|
|
|
|
print_service (service);
|
|
|
|
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-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
|
|
|
}
|