]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
module: Override -EEXIST module return
authorLucas De Marchi <demarchi@kernel.org>
Mon, 30 Mar 2026 13:13:51 +0000 (08:13 -0500)
committerSami Tolvanen <samitolvanen@google.com>
Sat, 4 Apr 2026 00:04:42 +0000 (00:04 +0000)
The -EEXIST errno is reserved by the module loading functionality. When
userspace calls [f]init_module(), it expects a -EEXIST to mean that the
module is already loaded in the kernel. If module_init() returns it,
that is not true anymore.

Override the error when returning to userspace: it doesn't make sense to
change potentially long error propagation call chains just because it's
will end up as the return of module_init().

Closes: https://lore.kernel.org/all/aKLzsAX14ybEjHfJ@orbyte.nwl.cc/
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Aaron Tomlin <atomlin@atomlin.com>
Cc: Petr Pavlu <petr.pavlu@suse.com>
Cc: Daniel Gomez <da.gomez@samsung.com>
Cc: Phil Sutter <phil@nwl.cc>
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Lucas De Marchi <demarchi@kernel.org>
[Sami: Fixed a typo.]
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
kernel/module/main.c

index c4f7689535165ac0f96742a7d214b256f9c2a76b..ef67425367009d3d7d3358b349cac99f97297e85 100644 (file)
@@ -3105,6 +3105,14 @@ static noinline int do_init_module(struct module *mod)
        if (mod->init != NULL)
                ret = do_one_initcall(mod->init);
        if (ret < 0) {
+               /*
+                * -EEXIST is reserved by [f]init_module() to signal to userspace that
+                * a module with this name is already loaded. Use something else if the
+                * module itself is returning that.
+                */
+               if (ret == -EEXIST)
+                       ret = -EBUSY;
+
                goto fail_free_freeinit;
        }
        if (ret > 0) {