/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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 <stdlib.h>
#include <string.h>
#include "alloc-util.h"
#include "install.h"
#include "log.h"
#include "macro.h"
#include "path-lookup.h"
#include "path-util.h"
#include "string-util.h"
#include "strv.h"
#include "util.h"
const char *e;
char *r;
e = getenv("XDG_CONFIG_HOME");
if (e) {
if (!r)
return -ENOMEM;
*config_home = r;
return 1;
} else {
const char *home;
if (home) {
if (!r)
return -ENOMEM;
*config_home = r;
return 1;
}
}
return 0;
}
const char *e;
char *r;
e = getenv("XDG_RUNTIME_DIR");
if (e) {
if (!r)
return -ENOMEM;
*runtime_dir = r;
return 1;
}
return 0;
}
const char *e;
char *res;
* suggests because we assume that that is a link to
e = getenv("XDG_DATA_HOME");
if (e)
else {
const char *home;
if (home)
else
return 0;
}
if (!res)
return -ENOMEM;
return 0;
}
static char** user_dirs(
const char *generator,
const char *generator_early,
const char *generator_late) {
const char * const config_unit_paths[] = {
};
const char * const data_unit_paths[] = {
};
const char *e;
char **tmp;
int r;
/* Implement the mechanisms defined in
*
*
* We look in both the config and the data dirs because we
* want to encourage that distributors ship their unit files
* as data, and allow overriding as configuration.
*/
if (user_config_home(&config_home) < 0)
return NULL;
if (user_runtime_dir(&runtime_dir) < 0)
return NULL;
e = getenv("XDG_CONFIG_DIRS");
if (e) {
if (!config_dirs)
return NULL;
}
if (r < 0)
return NULL;
e = getenv("XDG_DATA_DIRS");
if (e)
else
NULL);
if (!data_dirs)
return NULL;
/* Now merge everything we found. */
if (generator_early)
return NULL;
if (config_home)
return NULL;
if (!strv_isempty(config_dirs))
return NULL;
return NULL;
if (runtime_dir)
return NULL;
return NULL;
if (generator)
return NULL;
if (data_home)
return NULL;
if (!strv_isempty(data_dirs))
return NULL;
return NULL;
if (generator_late)
return NULL;
if (path_strv_make_absolute_cwd(res) < 0)
return NULL;
return tmp;
}
if (running_as == MANAGER_USER)
return strv_new("/run/systemd/user-generators",
NULL);
else
return strv_new("/run/systemd/system-generators",
NULL);
}
int lookup_paths_init(
LookupPaths *p,
bool personal,
const char *root_dir,
const char *generator,
const char *generator_early,
const char *generator_late) {
const char *e;
int r;
assert(p);
/* First priority is whatever has been passed to us via env
* vars */
e = getenv("SYSTEMD_UNIT_PATH");
if (e) {
if (endswith(e, ":")) {
append = true;
}
/* FIXME: empty components in other places should be
* rejected. */
r = path_split_and_make_absolute(e, &p->unit_path);
if (r < 0)
return r;
} else
/* Let's figure something out. */
/* For the user units we include share/ in the search
* path in order to comply with the XDG basedir spec.
* For the system stuff we avoid such nonsense. OTOH
* we include /lib in the search path for the system
* stuff but avoid it for user stuff. */
if (running_as == MANAGER_USER) {
if (personal)
else
/* If you modify this you also want to modify
* systemduserunitpath= in systemd.pc.in, and
* the arrays in user_dirs() above! */
NULL);
} else
/* If you modify this you also want to modify
* systemdsystemunitpath= in systemd.pc.in! */
#ifdef HAVE_SPLIT_USR
#endif
NULL);
if (!unit_path)
return -ENOMEM;
if (r < 0)
return r;
}
return -ENOMEM;
if (!strv_isempty(p->unit_path)) {
if (!t)
return -ENOMEM;
log_debug("Looking for unit files in (higher priority first):\n\t%s", t);
} else {
log_debug("Ignoring unit files.");
}
if (running_as == MANAGER_SYSTEM) {
#ifdef HAVE_SYSV_COMPAT
e = getenv("SYSTEMD_SYSVINIT_PATH");
if (e) {
r = path_split_and_make_absolute(e, &p->sysvinit_path);
if (r < 0)
return r;
} else
p->sysvinit_path = NULL;
if (strv_isempty(p->sysvinit_path)) {
strv_free(p->sysvinit_path);
p->sysvinit_path = strv_new(
SYSTEM_SYSVINIT_PATH, /* /etc/init.d/ */
NULL);
if (!p->sysvinit_path)
return -ENOMEM;
}
e = getenv("SYSTEMD_SYSVRCND_PATH");
if (e) {
r = path_split_and_make_absolute(e, &p->sysvrcnd_path);
if (r < 0)
return r;
} else
p->sysvrcnd_path = NULL;
if (strv_isempty(p->sysvrcnd_path)) {
strv_free(p->sysvrcnd_path);
p->sysvrcnd_path = strv_new(
SYSTEM_SYSVRCND_PATH, /* /etc/rcN.d/ */
NULL);
if (!p->sysvrcnd_path)
return -ENOMEM;
}
return -ENOMEM;
return -ENOMEM;
if (!strv_isempty(p->sysvinit_path)) {
if (!t)
return -ENOMEM;
log_debug("Looking for SysV init scripts in:\n\t%s", t);
} else {
log_debug("Ignoring SysV init scripts.");
}
if (!strv_isempty(p->sysvrcnd_path)) {
_cleanup_free_ char *t =
if (!t)
return -ENOMEM;
log_debug("Looking for SysV rcN.d links in:\n\t%s", t);
} else {
log_debug("Ignoring SysV rcN.d links.");
}
#else
log_debug("SysV init scripts and rcN.d links support disabled");
#endif
}
return 0;
}
assert(p);
#ifdef HAVE_SYSV_COMPAT
#endif
}
const char *root_dir) {
return lookup_paths_init(paths,
scope == UNIT_FILE_USER,
}