diff options
author | Kay Sievers <kay@vrfy.org> | 2013-12-18 23:56:35 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-12-18 23:56:35 +0100 |
commit | 7491e6e7c5fcb3c445a0656a440bd1551adb6ba1 (patch) | |
tree | 1c6c1ba76c5ea75afafdf4da5e580aa8bf3617ea | |
parent | e8a3b2dcfbd2caa047489b52f7c874833831e5ca (diff) |
temporarily support "kdbus" keyword on the kernel commandline to load the module
-rw-r--r-- | src/core/kmod-setup.c | 58 |
1 files changed, 37 insertions, 21 deletions
diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index e4885fb212..bc3460a698 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -47,35 +47,51 @@ static void systemd_kmod_log( #pragma GCC diagnostic pop -int kmod_setup(void) { - - static const char kmod_table[] = - /* This one we need to load explicitly, since - * auto-loading on use doesn't work before udev - * created the ghost device nodes, and we need it - * earlier than that. */ - "autofs4\0" "/sys/class/misc/autofs\0" +static bool kmod_check_cmdline(void) { + _cleanup_free_ char *line = NULL; - /* This one we need to load explicitly, since - * auto-loading of IPv6 is not done when we try to - * configure ::1 on the loopback device. */ - "ipv6\0" "/sys/module/ipv6\0" + if (proc_cmdline(&line) < 0) + return false; - "unix\0" "/proc/net/unix\0"; + return strstr(line, "kdbus") == 0; +} +int kmod_setup(void) { + static const struct { + const char *module; + const char *path; + bool warn; + bool (*condition_fn)(void); + } kmod_table[] = { + /* auto-loading on use doesn't work before udev is up */ + { "autofs4", "/sys/class/misc/autofs", true, NULL }, + + /* early configure of ::1 on the loopback device */ + { "ipv6", "/sys/module/ipv6", true, NULL }, + + /* this should never be a module */ + { "unix", "/proc/net/unix", true, NULL }, + + /* IPC is needed before we bring up any other services */ + { "kdbus", "/sys/bus/kdbus", false, kmod_check_cmdline }, + }; struct kmod_ctx *ctx = NULL; - const char *name, *path; + unsigned int i; int r; - NULSTR_FOREACH_PAIR(name, path, kmod_table) { + for (i = 0; i < ELEMENTSOF(kmod_table); i++) { struct kmod_module *mod; - if (access(path, F_OK) >= 0) + if (kmod_table[i].condition_fn && kmod_table[i].condition_fn()) + continue; + + if (access(kmod_table[i].path, F_OK) >= 0) continue; - log_debug("Your kernel apparently lacks built-in %s support. Might be a good idea to compile it in. " - "We'll now try to work around this by loading the module...", - name); + if (kmod_table[i].warn) + log_debug("Your kernel apparently lacks built-in %s support. Might be " + "a good idea to compile it in. We'll now try to work around " + "this by loading the module...", kmod_table[i].module); if (!ctx) { ctx = kmod_new(NULL, NULL); @@ -86,9 +102,9 @@ int kmod_setup(void) { kmod_load_resources(ctx); } - r = kmod_module_new_from_name(ctx, name, &mod); + r = kmod_module_new_from_name(ctx, kmod_table[i].module, &mod); if (r < 0) { - log_error("Failed to lookup module '%s'", name); + log_error("Failed to lookup module '%s'", kmod_table[i].module); continue; } |