#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;
/* 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)
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;
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(