sysv-generator.c revision 7b729f8686a83b24f3d9a891cde1c35a6aa37cf9
/*-*- 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-name.h"
#include "special.h"
#include "hashmap.h"
#include "set.h"
#include "install.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 */
};
const char *arg_dest = "/tmp";
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;
static void free_sysvstub(SysvStub *s) {
free(s->description);
free(s);
}
static void free_sysvstub_hashmapp(Hashmap **h) {
while ((stub = hashmap_steal_first(*h)))
hashmap_free(*h);
}
int r;
if (!from)
return log_oom();
if (!to)
return log_oom();
if (r < 0) {
return 0;
return -errno;
}
return 1;
}
int r;
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;
return log_oom();
/* We might already have a symlink with the same name from a Provides:,
* so remove an existing link */
if (is_symlink(unit) > 0) {
}
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)
log_error_errno(r, "Failed to create 'Wants' symlink to %s: %m", *p);
}
return 0;
}
static bool usage_contains_reload(const char *line) {
}
static char *sysv_translate_name(const char *name) {
_cleanup_free_ char *c = NULL;
char *res;
if (!c)
return NULL;
if (res)
*res = 0;
return NULL;
return res;
}
/* 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 == '$') {
int k;
/* Facilities starting with $ are most likely targets */
if (k < 0)
return k;
/* 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;
}
size_t z;
int r;
UnitType t;
if (!n)
return log_oom();
if (r < 0)
return r;
if (r == 0)
continue;
t = unit_name_to_type(m);
if (t == UNIT_SERVICE) {
if (r < 0)
} else if (t == UNIT_TARGET) {
/* 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 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();
}
} else if (t == _UNIT_TYPE_INVALID)
log_warning("Unit name '%s' is invalid", m);
else
log_warning("Unknown unit type for unit '%s'", m);
}
return 0;
}
static int handle_dependencies(SysvStub *s, unsigned line, const char *full_text, const char *text) {
size_t z;
int r;
bool is_before;
if (!n)
return log_oom();
if (r < 0) {
log_warning_errno(r, "[%s:%u] Failed to translate LSB dependency %s, ignoring: %m", s->path, line, n);
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);
} else
if (r < 0)
return log_oom();
}
log_warning("[%s:%u] Trailing garbage in %*s, ignoring.", s->path, line, (int)(strchr(full_text, ':') - full_text), full_text);
return 0;
}
_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;
}
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)) {
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:")) {
if (r < 0)
return r;
} 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:")) {
if (r < 0)
return r;
} 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;
continue;
continue;
}
continue;
continue;
if (!name)
return log_oom();
continue;
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){
log_debug("Ignoring %s symlink in %s, not generating %s.",
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;
}