From 9a4f9e69e10886a45549264b83b1c02c345c572f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 20 Dec 2019 19:12:34 +0100 Subject: [PATCH] shared/unit-file: expose function to check .wants/.requires symlink validity No functional change. --- src/core/load-dropin.c | 23 +++-------------------- src/shared/unit-file.c | 18 ++++++++++++++++++ src/shared/unit-file.h | 1 + 3 files changed, 22 insertions(+), 20 deletions(-) diff --git a/src/core/load-dropin.c b/src/core/load-dropin.c index a50b200f5bd..492e816e91a 100644 --- a/src/core/load-dropin.c +++ b/src/core/load-dropin.c @@ -11,24 +11,6 @@ #include "unit-name.h" #include "unit.h" -static int unit_name_compatible(const char *a, const char *b) { - _cleanup_free_ char *template = NULL; - int r; - - /* The straightforward case: the symlink name matches the target */ - if (streq(a, b)) - return 1; - - r = unit_name_template(a, &template); - if (r == -EINVAL) - return 0; /* Not a template */ - if (r < 0) - return r; /* OOM, or some other failure. Just skip the warning. */ - - /* An instance name points to a target that is just the template name */ - return streq(template, b); -} - static int process_deps(Unit *u, UnitDependency dependency, const char *dir_suffix) { _cleanup_strv_free_ char **paths = NULL; char **p; @@ -83,9 +65,10 @@ static int process_deps(Unit *u, UnitDependency dependency, const char *dir_suff /* We don't treat this as an error, especially because we didn't check this for a * long time. Nevertheless, we warn, because such mismatch can be mighty confusing. */ - r = unit_name_compatible(entry, basename(target)); + r = unit_symlink_name_compatible(entry, basename(target)); if (r < 0) { - log_unit_warning_errno(u, r, "Can't check if names %s and %s are compatible, ignoring: %m", entry, basename(target)); + log_unit_warning_errno(u, r, "Can't check if names %s and %s are compatible, ignoring: %m", + entry, basename(target)); continue; } if (r == 0) diff --git a/src/shared/unit-file.c b/src/shared/unit-file.c index 28cd3c86009..dc0ec784640 100644 --- a/src/shared/unit-file.c +++ b/src/shared/unit-file.c @@ -31,6 +31,24 @@ bool unit_type_may_template(UnitType type) { UNIT_PATH); } +int unit_symlink_name_compatible(const char *symlink, const char *target) { + _cleanup_free_ char *template = NULL; + int r; + + /* The straightforward case: the symlink name matches the target */ + if (streq(symlink, target)) + return 1; + + r = unit_name_template(symlink, &template); + if (r == -EINVAL) + return 0; /* Not a template */ + if (r < 0) + return r; + + /* An instance name points to a target that is just the template name */ + return streq(template, target); +} + int unit_validate_alias_symlink_and_warn(const char *filename, const char *target) { const char *src, *dst; _cleanup_free_ char *src_instance = NULL, *dst_instance = NULL; diff --git a/src/shared/unit-file.h b/src/shared/unit-file.h index 98ba677f3f6..83f78618d30 100644 --- a/src/shared/unit-file.h +++ b/src/shared/unit-file.h @@ -39,6 +39,7 @@ enum UnitFileScope { bool unit_type_may_alias(UnitType type) _const_; bool unit_type_may_template(UnitType type) _const_; +int unit_symlink_name_compatible(const char *symlink, const char *target); int unit_validate_alias_symlink_and_warn(const char *filename, const char *target); int unit_file_build_name_map(