From: Chris Samuel <chris@csamuel.org>
To: linux-kernel@vger.kernel.org
Cc: Rusty Russell <rusty@rustcorp.com.au>, dhowells@redhat.com
Subject: [PATCH] MODSIGN: Warn when sign check fails due to -ENOKEY
Date: Fri, 11 Jan 2013 20:44:53 +1100 [thread overview]
Message-ID: <50EFDF15.4080606@csamuel.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1477 bytes --]
/* Please CC me in responses, I am not subscribed to LKML */
Currently if a signature check fails on module load due to not having
the appropriate key (-ENOKEY) and we are not doing strict checking
there is no information provided to the user other than the lock debug
taint warning:
Disabling lock debugging due to kernel taint
This patch causes a single warning to be emitted to explain why the
kernel is being tainted, before the above taint warning occurs.
Module verification failed, required key not present, tainting kernel
Found whilst trying to work out why all the 3.8 development kernels
I was building and testing were warning about taints and why all modules
were listed as forced load (F) in /proc/modules when that wasn't the
case in the 3.5, 3.6 or 3.7 kernels I'd tried.
Signed-off-by: Christopher Samuel <chris@csamuel.org>
---
kernel/module.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/kernel/module.c b/kernel/module.c
index 250092c..27de534 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2443,8 +2443,10 @@ static int module_sig_check(struct load_info *info)
if (err < 0 && fips_enabled)
panic("Module verification failed with error %d in FIPS mode\n",
err);
- if (err == -ENOKEY && !sig_enforce)
+ if (err == -ENOKEY && !sig_enforce) {
+ printk_once(KERN_DEBUG "Module verification failed, required key not
present, tainting kernel\n");
err = 0;
+ }
return err;
}
--
1.7.10.4
[-- Attachment #2: Attached Message Part --]
[-- Type: text/plain, Size: 0 bytes --]
next reply other threads:[~2013-01-11 9:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-11 9:44 Chris Samuel [this message]
2013-01-11 13:49 ` [PATCH] MODSIGN: Warn when sign check fails due to -ENOKEY Josh Boyer
2013-01-12 0:30 ` Rusty Russell
2013-01-12 7:50 ` Chris Samuel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50EFDF15.4080606@csamuel.org \
--to=chris@csamuel.org \
--cc=dhowells@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rusty@rustcorp.com.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox