sysv-generator.c revision 4e4885553447f6f4c014bfa3e5b5837a76a0e612
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2014 Thomas H.P. Andersen
Copyright 2010 Lennart Poettering
Copyright 2011 Michal Schmidt
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include "util.h"
#include "mkdir.h"
#include "strv.h"
#include "path-util.h"
#include "path-lookup.h"
#include "log.h"
#include "unit.h"
#include "unit-name.h"
#include "special.h"
#include "exit-status.h"
#include "def.h"
#include "env-util.h"
#include "fileio.h"
#include "hashmap.h"
typedef enum RunlevelType {
} RunlevelType;
static const struct {
const char *path;
const char *target;
const RunlevelType type;
} rcnd_table[] = {
/* Standard SysV runlevels for start-up */
/* Standard SysV runlevels for shutdown */
/* Note that the order here matters, as we read the
directories in this order, and we want to make sure that
sysv_start_priority is known when we first load the
unit. And that value we only know from S links. Hence
UP must be read before DOWN */
};
typedef struct SysvStub {
char *name;
char *path;
char *description;
int sysv_start_priority;
char *pid_file;
char **before;
char **after;
char **wants;
char **wanted_by;
char **conflicts;
bool has_lsb;
bool reload;
} SysvStub;
const char *arg_dest = "/tmp";
int r;
if (!from)
return log_oom();
if (!to)
return log_oom();
if (r < 0) {
return 0;
return -errno;
}
return 1;
}
int r;
return 0;
}
if (!link)
return log_oom();
if (r < 0) {
return 0;
return -errno;
}
return 1;
}
static int generate_unit_file(SysvStub *s) {
char **p;
int r;
if (!before)
return log_oom();
if (!after)
return log_oom();
if (!wants)
return log_oom();
if (!conflicts)
return log_oom();
if (!unit)
return log_oom();
/* We might already have a symlink with the same name from a Provides:,
* so remove an existing link */
}
if (!f)
fprintf(f,
"# Automatically generated by systemd-sysv-generator\n\n"
"[Unit]\n"
"Documentation=man:systemd-sysv-generator(8)\n"
"SourcePath=%s\n"
"Description=%s\n",
s->path, s->description);
fprintf(f,
"\n[Service]\n"
"Type=forking\n"
"Restart=no\n"
"TimeoutSec=5min\n"
"IgnoreSIGPIPE=no\n"
"KillMode=process\n"
"GuessMainPID=no\n"
"RemainAfterExit=%s\n",
if (s->pid_file)
fprintf(f,
"ExecStart=%s start\n"
"ExecStop=%s stop\n",
if (s->reload)
STRV_FOREACH(p, s->wanted_by) {
r = add_symlink(s->name, *p);
if (r < 0)
}
return 0;
}
static bool usage_contains_reload(const char *line) {
}
static char *sysv_translate_name(const char *name) {
char *r;
if (!r)
return NULL;
/* Drop .sh suffix */
else
/* Normal init script name */
return r;
}
/* We silently ignore the $ prefix here. According to the LSB
* spec it simply indicates whether something is a
* standardized name or a distribution-specific one. Since we
* just follow what already exists and do not introduce new
* uses or names we don't care who introduced a new name. */
static const char * const table[] = {
/* LSB defined facilities */
"local_fs", NULL,
"network", SPECIAL_NETWORK_ONLINE_TARGET,
"named", SPECIAL_NSS_LOOKUP_TARGET,
"portmap", SPECIAL_RPCBIND_TARGET,
"remote_fs", SPECIAL_REMOTE_FS_TARGET,
"syslog", NULL,
"time", SPECIAL_TIME_SYNC_TARGET,
};
char *filename_no_sh, *e, *r;
const char *n;
unsigned i;
continue;
if (!table[i+1])
return 0;
if (!r)
return log_oom();
goto finish;
}
/* strip ".sh" suffix from file name for comparison */
if (e) {
*e = '\0';
}
/* If we don't know this name, fallback heuristics to figure
* out whether something is a target or a service alias. */
if (*name == '$') {
if (!unit_prefix_is_valid(n))
return -EINVAL;
/* Facilities starting with $ are most likely targets */
/* Names equaling the file name of the services are redundant */
return 0;
else
/* Everything else we assume to be normal service names */
r = sysv_translate_name(n);
if (!r)
return -ENOMEM;
*_r = r;
return 1;
}
_cleanup_fclose_ FILE *f;
unsigned line = 0;
int r;
enum {
LSB,
_cleanup_free_ char *short_description = NULL, *long_description = NULL, *chkconfig_description = NULL;
char *description;
bool supports_reload = false;
assert(s);
if (!f)
while (!feof(f)) {
char l[LINE_MAX], *t;
if (!fgets(l, sizeof(l), f)) {
if (feof(f))
break;
log_unit_error(s->name,
"Failed to read configuration file '%s': %m",
s->path);
return -errno;
}
line++;
t = strstrip(l);
if (*t != '#') {
/* Try to figure out whether this init script supports
* the reload operation. This heuristic looks for
* "Usage" lines which include the reload option. */
if ( state == USAGE_CONTINUATION ||
if (usage_contains_reload(t)) {
supports_reload = true;
else
}
continue;
}
s->has_lsb = true;
continue;
}
continue;
}
t++;
t += strspn(t, WHITESPACE);
/* Try to parse Red Hat style description */
if (startswith_no_case(t, "description:")) {
char *d;
const char *j;
if (t[k-1] == '\\') {
state = DESCRIPTION;
t[k-1] = 0;
}
j = strstrip(t+12);
if (j && *j) {
d = strdup(j);
if (!d)
return -ENOMEM;
} else
d = NULL;
} else if (startswith_no_case(t, "pidfile:")) {
char *fn;
if (!path_is_absolute(fn)) {
log_unit_error(s->name,
"[%s:%u] PID file not absolute. Ignoring.",
continue;
}
if (!fn)
return -ENOMEM;
}
} else if (state == DESCRIPTION) {
/* Try to parse Red Hat style description
* continuation */
char *j;
if (t[k-1] == '\\')
t[k-1] = 0;
else
j = strstrip(t);
if (j && *j) {
char *d = NULL;
else
d = strdup(j);
if (!d)
return -ENOMEM;
}
if (startswith_no_case(t, "Provides:")) {
size_t z;
if (!n)
return -ENOMEM;
if (r < 0)
return r;
if (r == 0)
continue;
if (unit_name_to_type(m) == UNIT_SERVICE) {
} else {
/* NB: SysV targets
* which are provided
* by a service are
* pulled in by the
* services, as an
* indication that the
* generic service is
* now available. This
* is strictly
* one-way. The
* targets do NOT pull
* in the SysV
* services! */
r = strv_extend(&s->before, m);
if (r < 0)
return log_oom();
r = strv_extend(&s->wants, m);
if (r < 0)
return log_oom();
if (streq(m, SPECIAL_NETWORK_ONLINE_TARGET)) {
if (r < 0)
return log_oom();
}
}
if (r < 0)
log_unit_error(s->name,
"[%s:%u] Failed to add LSB Provides name %s, ignoring: %s",
}
log_unit_error(s->name,
"[%s:%u] Trailing garbage in Provides, ignoring.",
} else if (startswith_no_case(t, "Required-Start:") ||
startswith_no_case(t, "Should-Start:") ||
startswith_no_case(t, "X-Start-Before:") ||
startswith_no_case(t, "X-Start-After:")) {
size_t z;
bool is_before;
if (!n)
return -ENOMEM;
if (r < 0) {
log_unit_error(s->name,
"[%s:%u] Failed to translate LSB dependency %s, ignoring: %s",
continue;
}
if (r == 0)
continue;
/* the network-online target is special, as it needs to be actively pulled in */
r = strv_extend(&s->after, m);
if (r < 0)
return log_oom();
r = strv_extend(&s->wants, m);
if (r < 0)
return log_oom();
}
else {
if (is_before) {
r = strv_extend(&s->before, m);
if (r < 0)
return log_oom();
}
else {
r = strv_extend(&s->after, m);
if (r < 0)
return log_oom();
}
}
if (r < 0)
log_unit_error(s->name,
"[%s:%u] Failed to add dependency on %s, ignoring: %s",
}
log_unit_error(s->name,
"[%s:%u] Trailing garbage in %*s, ignoring.",
(int)(strchr(t, ':') - t), t);
} else if (startswith_no_case(t, "Description:")) {
char *d, *j;
j = strstrip(t+12);
if (j && *j) {
d = strdup(j);
if (!d)
return -ENOMEM;
} else
d = NULL;
long_description = d;
} else if (startswith_no_case(t, "Short-Description:")) {
char *d, *j;
j = strstrip(t+18);
if (j && *j) {
d = strdup(j);
if (!d)
return -ENOMEM;
} else
d = NULL;
short_description = d;
} else if (state == LSB_DESCRIPTION) {
char *j;
j = strstrip(t);
if (j && *j) {
char *d = NULL;
if (long_description)
else
d = strdup(j);
if (!d)
return -ENOMEM;
long_description = d;
}
} else
}
}
}
s->reload = supports_reload;
/* We use the long description only if
* no short description is set. */
if (short_description)
else if (chkconfig_description)
else if (long_description)
else
description = NULL;
if (description) {
char *d;
if (!d)
return -ENOMEM;
s->description = d;
}
return 0;
}
Iterator j;
int r;
assert(s);
if (s->sysv_start_priority < 0)
return 0;
if (s == other)
continue;
if (other->sysv_start_priority < 0)
continue;
/* If both units have modern headers we don't care
* about the priorities */
continue;
if (r < 0)
return log_oom();
}
if (r < 0)
return log_oom();
}
else
continue;
/* FIXME: Maybe we should compare the name here lexicographically? */
}
return 0;
}
char **path;
if (!d) {
continue;
}
int r;
dirent_ensure_type(d, de);
if (!dirent_is_file(de))
continue;
continue;
}
continue;
continue;
if (!name)
return log_oom();
if (!fpath)
return log_oom();
continue;
if (!service)
return log_oom();
if (r < 0)
return log_oom();
}
}
return 0;
}
char **p;
unsigned i;
Iterator j;
int r = 0;
for (i = 0; i < ELEMENTSOF(rcnd_table); i ++) {
if (!path)
return -ENOMEM;
if (d)
closedir(d);
if (!d) {
continue;
}
int a, b;
continue;
continue;
continue;
if (a < 0 || b < 0)
continue;
if (!fpath) {
r = -ENOMEM;
goto finish;
}
if (!name) {
r = log_oom();
goto finish;
}
if (!service){
continue;
}
}
if (r < 0)
goto finish;
if (r < 0)
goto finish;
if (r < 0)
goto finish;
if (r < 0)
goto finish;
}
}
}
for (i = 0; i < ELEMENTSOF(rcnd_table); i ++)
if (r < 0)
return log_oom();
if (r < 0)
return log_oom();
}
if (r < 0)
return log_oom();
if (r < 0)
return log_oom();
}
r = 0;
for (i = 0; i < ELEMENTSOF(rcnd_table); i++)
return r;
}
int r, q;
Iterator j;
log_error("This program takes three or no arguments.");
return EXIT_FAILURE;
}
if (argc > 1)
log_open();
umask(0022);
if (r < 0) {
log_error("Failed to find lookup paths.");
return EXIT_FAILURE;
}
if (!all_services) {
log_oom();
return EXIT_FAILURE;
}
if (r < 0) {
log_error("Failed to generate units for all init scripts.");
return EXIT_FAILURE;
}
if (r < 0) {
log_error("Failed to read runlevels from rcnd links.");
return EXIT_FAILURE;
}
if (q < 0)
continue;
}
if (q < 0)
continue;
q = generate_unit_file(service);
if (q < 0)
continue;
}
return EXIT_SUCCESS;
}