]> git.baikalelectronics.ru Git - kernel.git/commitdiff
module: Show the last unloaded module's taint flag(s)
authorAaron Tomlin <atomlin@redhat.com>
Thu, 14 Jul 2022 15:39:33 +0000 (16:39 +0100)
committerLuis Chamberlain <mcgrof@kernel.org>
Fri, 15 Jul 2022 00:40:23 +0000 (17:40 -0700)
For diagnostic purposes, this patch, in addition to keeping a record/or
track of the last known unloaded module, we now will include the
module's taint flag(s) too e.g: " [last unloaded: fpga_mgr_mod(OE)]"

Signed-off-by: Aaron Tomlin <atomlin@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
kernel/module/main.c

index a776fdaf021dd48362634ce3bba9ec074e6b7c42..e696f56243779c4f480301e664611b06ded421df 100644 (file)
@@ -524,7 +524,10 @@ static struct module_attribute modinfo_##field = {                    \
 MODINFO_ATTR(version);
 MODINFO_ATTR(srcversion);
 
-static char last_unloaded_module[MODULE_NAME_LEN+1];
+static struct {
+       char name[MODULE_NAME_LEN + 1];
+       char taints[MODULE_FLAGS_BUF_SIZE];
+} last_unloaded_module;
 
 #ifdef CONFIG_MODULE_UNLOAD
 
@@ -694,6 +697,7 @@ SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
 {
        struct module *mod;
        char name[MODULE_NAME_LEN];
+       char buf[MODULE_FLAGS_BUF_SIZE];
        int ret, forced = 0;
 
        if (!capable(CAP_SYS_MODULE) || modules_disabled)
@@ -753,8 +757,9 @@ SYSCALL_DEFINE2(delete_module, const char __user *, name_user,
 
        async_synchronize_full();
 
-       /* Store the name of the last unloaded module for diagnostic purposes */
-       strscpy(last_unloaded_module, mod->name, sizeof(last_unloaded_module));
+       /* Store the name and taints of the last unloaded module for diagnostic purposes */
+       strscpy(last_unloaded_module.name, mod->name, sizeof(last_unloaded_module.name));
+       strscpy(last_unloaded_module.taints, module_flags(mod, buf, false), sizeof(last_unloaded_module.taints));
 
        free_module(mod);
        /* someone could wait for the module in add_unformed_module() */
@@ -3137,7 +3142,8 @@ void print_modules(void)
 
        print_unloaded_tainted_modules();
        preempt_enable();
-       if (last_unloaded_module[0])
-               pr_cont(" [last unloaded: %s]", last_unloaded_module);
+       if (last_unloaded_module.name[0])
+               pr_cont(" [last unloaded: %s%s]", last_unloaded_module.name,
+                       last_unloaded_module.taints);
        pr_cont("\n");
 }