[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LNX.2.00.1201021456120.24984@pobox.suse.cz>
Date: Mon, 2 Jan 2012 14:58:51 +0100 (CET)
From: Jiri Kosina <jkosina@...e.cz>
To: Andrew Morton <akpm@...ux-foundation.org>,
Rusty Russell <rusty@...tcorp.com.au>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] module: log OOT_MODULE tainting
Follow what we do with other taints and output a message into kernel ring
buffer once tainting a kernel because out-of-tree module is being loaded.
Signed-off-by: Jiri Kosina <jkosina@...e.cz>
diff --git a/kernel/module.c b/kernel/module.c
index b02d633..3f52b3e 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2478,8 +2478,11 @@ static int check_modinfo(struct module *mod, struct load_info *info)
return -ENOEXEC;
}
- if (!get_modinfo(info, "intree"))
+ if (!get_modinfo(info, "intree")) {
add_taint_module(mod, TAINT_OOT_MODULE);
+ printk(KERN_WARNING "%s: out of tree module taints kernel\n",
+ mod->name);
+ }
if (get_modinfo(info, "staging")) {
add_taint_module(mod, TAINT_CRAP);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists