summaryrefslogtreecommitdiff
blob: 006121778a0bf37efbd43e8e9cc2af8e66bd5aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
   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>

#include "builtins.h"
#include "einfo.h"
#include "rc.h"
#include "rc-misc.h"
#include "strlist.h"

#define APPLET "rc-status"

static void print_level (char *level)
{
	printf ("Runlevel: %s%s%s\n",
			ecolor (ecolor_hilite),
			level,
			ecolor (ecolor_normal));
}

static void print_service (char *service)
{
	char status[10];
	int cols =  printf (" %s\n", service);
	einfo_color_t color = ecolor_bad;

	if (rc_service_state (service, rc_service_stopping) == 0)
		snprintf (status, sizeof (status),   "stopping ");
	else if (rc_service_state (service, rc_service_starting) == 0) {
		snprintf (status, sizeof (status), "starting ");
		color = ecolor_warn;
	} else if (rc_service_state (service, rc_service_inactive) == 0) {
		snprintf (status, sizeof (status), "inactive ");
		color = ecolor_warn;
	} else if (geteuid () == 0 &&
			   rc_service_state (service, rc_service_crashed) == 0)
		snprintf (status, sizeof (status),   " crashed ");
	else if (rc_service_state (service, rc_service_started) == 0) {
		snprintf (status, sizeof (status), " started ");
		color = ecolor_good;
	} else if (rc_service_state (service, rc_service_scheduled) == 0) {
		snprintf (status, sizeof (status), "scheduled");
		color = ecolor_warn;
	} else
		snprintf (status, sizeof (status),   " stopped ");
	ebracket (cols, color, status);
}

#include "_usage.h"
#define extraopts "[runlevel1] [runlevel2] ..."
#define getoptstring "alsu" getoptstring_COMMON
static const struct option longopts[] = {
	{"all",         0, NULL, 'a'},
	{"list",        0, NULL, 'l'},
	{"servicelist", 0, NULL, 's'},
	{"unused",      0, NULL, 'u'},
	longopts_COMMON
	{NULL,          0, NULL, 0}
};
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
};
#include "_usage.c"

int rc_status (int argc, char **argv)
{
	char **levels = NULL;
	char **services = NULL;
	char *level;
	char *service;
	int opt;
	int i;
	int j;

	while ((opt = getopt_long(argc, argv, getoptstring, longopts, (int *) 0)) != -1)
		switch (opt) {
			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)
						if (rc_service_in_runlevel (service, level) == 0) {
							found = true;
							break;
						}
					if (! found)
						print_service (service);
				}
				rc_strlist_free (levels);
				rc_strlist_free (services);
				exit (EXIT_SUCCESS);

			case_RC_COMMON_GETOPT
		}

	while (optind < argc)
		rc_strlist_add (&levels, argv[optind++]);

	if (! levels) {
		level = rc_get_runlevel ();
		rc_strlist_add (&levels, level);
		free (level);
	}

	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);
	}

	rc_strlist_free (levels);

	return (EXIT_SUCCESS);
}