summaryrefslogtreecommitdiff
path: root/src/nspawn/nspawn-util.c
blob: 6c3848916d2ec3cc96eb489bae743a52aaf2f63b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* SPDX-License-Identifier: LGPL-2.1-or-later */

#include "alloc-util.h"
#include "glob-util.h"
#include "log.h"
#include "nspawn-util.h"
#include "parse-util.h"
#include "path-util.h"
#include "string-util.h"

int systemd_installation_has_version(const char *root, const char *minimal_version) {
        int r;

        /* Try to guess if systemd installation is later than the specified version. This
         * is hacky and likely to yield false negatives, particularly if the installation
         * is non-standard. False positives should be relatively rare.
         */

        FOREACH_STRING(pattern,
                       /* /lib works for systems without usr-merge, and for systems with a sane
                        * usr-merge, where /lib is a symlink to /usr/lib. /usr/lib is necessary
                        * for Gentoo which does a merge without making /lib a symlink.
                        * Also support multiarch paths von Debian/Ubuntu; *-linux-* is a small
                        * optimization based on the naming scheme of existing multiarch tuples.
                        */
                       "/lib/systemd/libsystemd-shared-*.so",
                       "/lib64/systemd/libsystemd-shared-*.so",
                       "/usr/lib/*-linux-*/systemd/libsystemd-shared-*.so",
                       "/usr/lib/systemd/libsystemd-shared-*.so",
                       "/usr/lib64/systemd/libsystemd-shared-*.so") {

                _cleanup_strv_free_ char **names = NULL;
                _cleanup_free_ char *path = NULL;
                char *c;

                path = path_join(root, pattern);
                if (!path)
                        return -ENOMEM;

                r = glob_extend(&names, path, 0);
                if (r == -ENOENT)
                        continue;
                if (r < 0)
                        return r;

                assert_se(c = endswith(path, "*.so"));
                *c = '\0'; /* truncate the glob part */

                STRV_FOREACH(name, names) {
                        _cleanup_free_ char *bn = NULL;
                        /* This is most likely to run only once, hence let's not optimize anything. */
                        char *t, *t2;

                        if (path_extract_filename(*name, &bn) < 0)
                                continue;

                        t = startswith(bn, "libsystemd-shared-");
                        if (!t)
                                continue;

                        t2 = endswith(t, ".so");
                        if (!t2)
                                continue;
                        *t2 = '\0';

                        r = strverscmp_improved(t, minimal_version);
                        log_debug("Found libsystemd shared at \"%s.so\", version %s (%s).",
                                  *name, t,
                                  r >= 0 ? "OK" : "too old");
                        if (r >= 0)
                                return true;
                }
        }

        return false;
}