2007-04-05 16:48:42 +05:30
|
|
|
/*
|
|
|
|
rc-status
|
|
|
|
Display the status of the services in runlevels
|
|
|
|
*/
|
|
|
|
|
2007-11-14 20:52:04 +05:30
|
|
|
/*
|
|
|
|
* Copyright 2007 Roy Marples
|
|
|
|
* 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"
|
2007-04-05 16:48:42 +05:30
|
|
|
#include "einfo.h"
|
|
|
|
#include "rc.h"
|
|
|
|
#include "rc-misc.h"
|
|
|
|
#include "strlist.h"
|
|
|
|
|
2007-12-18 23:31:05 +05:30
|
|
|
static const char *applet;
|
2007-07-31 21:35:56 +05:30
|
|
|
|
2007-10-15 20:10:53 +05:30
|
|
|
static const char *types_nua[] = { "ineed", "iuse", "iafter", NULL };
|
2007-10-15 16:47:57 +05:30
|
|
|
|
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-12-07 20:02:28 +05:30
|
|
|
const char *c = ecolor (ECOLOR_GOOD);
|
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-12-06 16:18:00 +05:30
|
|
|
errno = 0;
|
2007-12-07 20:02:28 +05:30
|
|
|
if (c && *c && isatty (fileno (stdout)))
|
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-10-22 21:49:12 +05:30
|
|
|
while ((opt = getopt_long (argc, argv, getoptstring, longopts,
|
|
|
|
(int *) 0)) != -1)
|
2007-05-14 17:54:18 +05:30
|
|
|
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 */
|
2007-10-15 21:47:33 +05:30
|
|
|
if (geteuid () == 0)
|
2007-12-14 17:54:16 +05:30
|
|
|
deptree = _rc_deptree_load (NULL);
|
2007-10-15 21:47:33 +05:30
|
|
|
else
|
|
|
|
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) {
|
2007-10-15 20:10:53 +05:30
|
|
|
ordered = rc_deptree_depends (deptree, types_nua,
|
|
|
|
(const char **) 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
|
|
|
}
|