2007-04-05 16:48:42 +05:30
|
|
|
/*
|
|
|
|
rc-update
|
|
|
|
Manage init scripts and 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-08-09 04:05:32 +05:30
|
|
|
#define APPLET "rc-update"
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
#include <errno.h>
|
2007-08-09 15:23:47 +05:30
|
|
|
#include <getopt.h>
|
2007-04-05 16:48:42 +05:30
|
|
|
#include <limits.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-08-04 20:35:12 +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"
|
|
|
|
|
|
|
|
static char *applet = NULL;
|
|
|
|
|
2007-09-25 22:33:19 +05:30
|
|
|
/* Return the number of changes made:
|
|
|
|
* -1 = no changes (error)
|
|
|
|
* 0 = no changes (nothing to do)
|
|
|
|
* 1+ = number of runlevels updated
|
|
|
|
*/
|
|
|
|
static ssize_t add (const char *runlevel, const char *service)
|
2007-04-05 16:48:42 +05:30
|
|
|
{
|
2007-09-25 22:33:19 +05:30
|
|
|
ssize_t retval = -1;
|
2007-04-11 18:14:47 +05:30
|
|
|
|
2007-09-25 23:00:07 +05:30
|
|
|
if (! rc_service_exists (service))
|
2007-08-09 15:23:47 +05:30
|
|
|
eerror ("%s: service `%s' does not exist", applet, service);
|
2007-09-25 23:00:07 +05:30
|
|
|
else if (rc_service_in_runlevel (service, runlevel)) {
|
2007-08-09 15:23:47 +05:30
|
|
|
ewarn ("%s: %s already installed in runlevel `%s'; skipping",
|
|
|
|
applet, service, runlevel);
|
2007-09-25 22:33:19 +05:30
|
|
|
retval = 0;
|
2007-09-25 23:00:07 +05:30
|
|
|
} else if (rc_service_add (runlevel, service)) {
|
2007-04-11 18:14:47 +05:30
|
|
|
einfo ("%s added to runlevel %s", service, runlevel);
|
2007-09-25 22:33:19 +05:30
|
|
|
retval = 1;
|
2007-08-09 04:05:32 +05:30
|
|
|
} else
|
2007-04-11 18:14:47 +05:30
|
|
|
eerror ("%s: failed to add service `%s' to runlevel `%s': %s",
|
|
|
|
applet, service, runlevel, strerror (errno));
|
|
|
|
|
|
|
|
return (retval);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2007-09-25 22:33:19 +05:30
|
|
|
static ssize_t delete (const char *runlevel, const char *service)
|
2007-08-09 04:05:32 +05:30
|
|
|
{
|
2007-09-25 22:33:19 +05:30
|
|
|
ssize_t retval = -1;
|
2007-08-09 04:05:32 +05:30
|
|
|
|
2007-12-14 17:54:16 +05:30
|
|
|
errno = 0;
|
|
|
|
if (rc_service_delete (runlevel, service)) {
|
|
|
|
einfo ("%s removed from runlevel %s", service, runlevel);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (errno == ENOENT)
|
|
|
|
eerror ("%s: service `%s' is not in the runlevel `%s'",
|
|
|
|
applet, service, runlevel);
|
|
|
|
else
|
|
|
|
eerror ("%s: failed to remove service `%s' from runlevel `%s': %s",
|
|
|
|
applet, service, runlevel, strerror (errno));
|
2007-09-25 22:33:19 +05:30
|
|
|
|
2007-08-09 04:05:32 +05:30
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
2007-08-09 15:23:47 +05:30
|
|
|
static void show (char **runlevels, bool verbose)
|
2007-04-05 16:48:42 +05:30
|
|
|
{
|
2007-08-09 15:23:47 +05:30
|
|
|
char *service;
|
|
|
|
char **services = rc_services_in_runlevel (NULL);
|
|
|
|
char *runlevel;
|
2007-04-11 18:14:47 +05:30
|
|
|
int i;
|
|
|
|
int j;
|
2007-08-09 15:23:47 +05:30
|
|
|
|
|
|
|
STRLIST_FOREACH (services, service, i) {
|
|
|
|
char **in = NULL;
|
|
|
|
bool inone = false;
|
|
|
|
|
|
|
|
STRLIST_FOREACH (runlevels, runlevel, j) {
|
2007-09-25 23:00:07 +05:30
|
|
|
if (rc_service_in_runlevel (service, runlevel)) {
|
2007-09-18 17:06:55 +05:30
|
|
|
rc_strlist_add (&in, runlevel);
|
2007-08-09 15:23:47 +05:30
|
|
|
inone = true;
|
|
|
|
} else {
|
|
|
|
char buffer[PATH_MAX];
|
|
|
|
memset (buffer, ' ', strlen (runlevel));
|
|
|
|
buffer[strlen (runlevel)] = 0;
|
2007-09-18 17:06:55 +05:30
|
|
|
rc_strlist_add (&in, buffer);
|
2007-08-09 15:23:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! inone && ! verbose)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printf (" %20s |", service);
|
|
|
|
STRLIST_FOREACH (in, runlevel, j)
|
|
|
|
printf (" %s", runlevel);
|
|
|
|
printf ("\n");
|
|
|
|
rc_strlist_free (in);
|
|
|
|
}
|
|
|
|
|
|
|
|
rc_strlist_free (services);
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "_usage.h"
|
2007-09-26 04:47:25 +05:30
|
|
|
#define getoptstring "ads" getoptstring_COMMON
|
2007-08-09 15:23:47 +05:30
|
|
|
static struct option longopts[] = {
|
|
|
|
{ "add", 0, NULL, 'a'},
|
|
|
|
{ "delete", 0, NULL, 'd'},
|
|
|
|
{ "show", 0, NULL, 's'},
|
|
|
|
longopts_COMMON
|
|
|
|
};
|
2007-09-25 21:51:38 +05:30
|
|
|
static const char * const longopts_help[] = {
|
|
|
|
"Add the init.d to runlevels",
|
|
|
|
"Delete init.d from runlevels",
|
|
|
|
"Show init.d's in runlevels",
|
|
|
|
longopts_help_COMMON
|
|
|
|
};
|
2007-08-09 15:23:47 +05:30
|
|
|
#include "_usage.c"
|
|
|
|
|
2007-09-25 21:51:38 +05:30
|
|
|
#define DOADD (1 << 0)
|
2007-08-09 15:23:47 +05:30
|
|
|
#define DODELETE (1 << 1)
|
|
|
|
#define DOSHOW (1 << 2)
|
|
|
|
|
|
|
|
int rc_update (int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *service = NULL;
|
2007-04-11 18:14:47 +05:30
|
|
|
char **runlevels = NULL;
|
|
|
|
char *runlevel;
|
2007-08-09 15:23:47 +05:30
|
|
|
int action = 0;
|
|
|
|
bool verbose = false;
|
|
|
|
int opt;
|
|
|
|
int retval = EXIT_FAILURE;
|
2007-04-11 18:14:47 +05:30
|
|
|
|
|
|
|
applet = argv[0];
|
|
|
|
|
2007-08-09 15:23:47 +05:30
|
|
|
while ((opt = getopt_long (argc, argv, getoptstring,
|
|
|
|
longopts, (int *) 0)) != -1)
|
|
|
|
{
|
|
|
|
switch (opt) {
|
|
|
|
case 'a':
|
|
|
|
action |= DOADD;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
action |= DODELETE;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
action |= DOSHOW;
|
|
|
|
break;
|
|
|
|
|
2007-09-26 04:47:25 +05:30
|
|
|
case_RC_COMMON_GETOPT
|
2007-08-09 15:23:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-06 16:18:00 +05:30
|
|
|
verbose = rc_yesno (getenv ("EINFO_VERBOSE"));
|
2007-09-26 04:47:25 +05:30
|
|
|
|
2007-08-09 15:23:47 +05:30
|
|
|
if ((action & DOSHOW && action != DOSHOW) ||
|
|
|
|
(action & DOADD && action != DOADD) ||
|
|
|
|
(action & DODELETE && action != DODELETE))
|
|
|
|
eerrorx ("%s: cannot mix commands", applet);
|
|
|
|
|
|
|
|
/* We need to be backwards compatible */
|
|
|
|
if (! action) {
|
|
|
|
if (optind < argc) {
|
|
|
|
if (strcmp (argv[optind], "add") == 0)
|
|
|
|
action = DOADD;
|
2007-08-17 15:16:01 +05:30
|
|
|
else if (strcmp (argv[optind], "delete") == 0 ||
|
|
|
|
strcmp (argv[optind], "del") == 0)
|
2007-08-09 15:23:47 +05:30
|
|
|
action = DODELETE;
|
|
|
|
else if (strcmp (argv[optind], "show") == 0)
|
|
|
|
action = DOSHOW;
|
|
|
|
if (action)
|
|
|
|
optind++;
|
2007-04-11 18:14:47 +05:30
|
|
|
else
|
2007-08-09 15:23:47 +05:30
|
|
|
eerrorx ("%s: invalid command `%s'", applet, argv[optind]);
|
2007-04-11 18:14:47 +05:30
|
|
|
}
|
2007-08-09 15:23:47 +05:30
|
|
|
if (! action && opt)
|
|
|
|
action = DOSHOW;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind >= argc) {
|
|
|
|
if (! action & DOSHOW)
|
|
|
|
eerrorx ("%s: no service specified", applet);
|
|
|
|
} else {
|
|
|
|
service = argv[optind];
|
|
|
|
optind++;
|
|
|
|
|
|
|
|
while (optind < argc)
|
2007-09-25 23:00:07 +05:30
|
|
|
if (rc_runlevel_exists (argv[optind]))
|
2007-09-18 17:06:55 +05:30
|
|
|
rc_strlist_add (&runlevels, argv[optind++]);
|
2007-08-09 15:23:47 +05:30
|
|
|
else {
|
|
|
|
rc_strlist_free (runlevels);
|
|
|
|
eerrorx ("%s: `%s' is not a valid runlevel", applet, argv[optind]);
|
|
|
|
}
|
|
|
|
}
|
2007-04-11 18:14:47 +05:30
|
|
|
|
2007-09-25 22:33:19 +05:30
|
|
|
retval = EXIT_SUCCESS;
|
2007-08-09 15:23:47 +05:30
|
|
|
if (action & DOSHOW) {
|
|
|
|
if (service)
|
2007-09-18 17:06:55 +05:30
|
|
|
rc_strlist_add (&runlevels, service);
|
2007-04-11 18:14:47 +05:30
|
|
|
if (! runlevels)
|
2007-10-03 19:41:55 +05:30
|
|
|
runlevels = rc_runlevel_list ();
|
2007-04-11 18:14:47 +05:30
|
|
|
|
2007-08-09 15:23:47 +05:30
|
|
|
show (runlevels, verbose);
|
|
|
|
} else {
|
|
|
|
if (! service)
|
|
|
|
eerror ("%s: no service specified", applet);
|
|
|
|
else {
|
2007-09-25 22:33:19 +05:30
|
|
|
ssize_t num_updated = 0;
|
2007-10-09 18:22:09 +05:30
|
|
|
ssize_t (*actfunc)(const char *, const char *);
|
2007-12-14 17:54:16 +05:30
|
|
|
size_t ret;
|
2007-12-08 17:40:45 +05:30
|
|
|
|
|
|
|
if (action & DOADD) {
|
2007-09-25 22:33:19 +05:30
|
|
|
actfunc = add;
|
2007-12-08 17:40:45 +05:30
|
|
|
if (! runlevels)
|
|
|
|
rc_strlist_add (&runlevels, rc_runlevel_get ());
|
|
|
|
} else if (action & DODELETE) {
|
2007-09-25 22:33:19 +05:30
|
|
|
actfunc = delete;
|
2007-12-08 17:40:45 +05:30
|
|
|
if (! runlevels)
|
|
|
|
runlevels = rc_runlevel_list ();
|
|
|
|
} else
|
2007-09-25 22:33:19 +05:30
|
|
|
eerrorx ("%s: invalid action", applet);
|
2007-12-08 17:40:45 +05:30
|
|
|
|
2007-09-25 22:12:59 +05:30
|
|
|
if (! runlevels)
|
2007-12-08 17:40:45 +05:30
|
|
|
eerrorx ("%s: no runlevels found", applet);
|
|
|
|
|
2007-08-09 15:23:47 +05:30
|
|
|
STRLIST_FOREACH (runlevels, runlevel, i) {
|
2007-12-14 17:54:16 +05:30
|
|
|
if (! rc_runlevel_exists (runlevel)) {
|
|
|
|
eerror ("%s: runlevel `%s' does not exist", applet, runlevel);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = actfunc (runlevel, service);
|
2007-09-25 22:33:19 +05:30
|
|
|
if (ret < 0)
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
num_updated += ret;
|
2007-04-11 18:14:47 +05:30
|
|
|
}
|
2007-12-08 17:40:45 +05:30
|
|
|
|
|
|
|
if (retval == EXIT_SUCCESS && num_updated == 0 && action & DODELETE)
|
2007-09-25 22:33:19 +05:30
|
|
|
ewarnx ("%s: service `%s' not found in any of the specified runlevels", applet, service);
|
2007-04-11 18:14:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-09 04:05:32 +05:30
|
|
|
rc_strlist_free (runlevels);
|
|
|
|
return (retval);
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|