2016-10-27 14:49:53 +00:00
|
|
|
From 80d2d273b36b33d46820ab128c7a5b068389f643 Mon Sep 17 00:00:00 2001
|
2014-08-20 17:22:24 +00:00
|
|
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
|
|
|
Date: Fri, 9 Aug 2013 17:58:15 -0400
|
2016-10-27 14:49:53 +00:00
|
|
|
Subject: [PATCH 01/20] Add secure_modules() call
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
Provide a single call to allow kernel code to determine whether the system
|
|
|
|
has been configured to either disable module loading entirely or to load
|
|
|
|
only modules signed with a trusted key.
|
|
|
|
|
|
|
|
Bugzilla: N/A
|
|
|
|
Upstream-status: Fedora mustard. Replaced by securelevels, but that was nak'd
|
|
|
|
|
|
|
|
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
|
|
|
|
---
|
2015-06-29 15:24:25 +00:00
|
|
|
include/linux/module.h | 6 ++++++
|
2014-08-20 17:22:24 +00:00
|
|
|
kernel/module.c | 10 ++++++++++
|
2015-06-29 15:24:25 +00:00
|
|
|
2 files changed, 16 insertions(+)
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
diff --git a/include/linux/module.h b/include/linux/module.h
|
2016-10-27 14:49:53 +00:00
|
|
|
index 0c3207d26ac0..05bd6c989a0c 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/include/linux/module.h
|
|
|
|
+++ b/include/linux/module.h
|
2016-08-05 08:20:51 +00:00
|
|
|
@@ -641,6 +641,8 @@ static inline bool is_livepatch_module(struct module *mod)
|
2015-06-29 15:24:25 +00:00
|
|
|
}
|
Linux v4.6-3623-g0b7962a
ata, regulator, gpio, HID, livepatching, networking, dm, block, vfs, fs,
timers, crypto merges
2016-05-18 15:28:46 +00:00
|
|
|
#endif /* CONFIG_LIVEPATCH */
|
2014-08-20 17:22:24 +00:00
|
|
|
|
|
|
|
+extern bool secure_modules(void);
|
|
|
|
+
|
|
|
|
#else /* !CONFIG_MODULES... */
|
|
|
|
|
2016-08-05 08:20:51 +00:00
|
|
|
static inline struct module *__module_address(unsigned long addr)
|
|
|
|
@@ -750,6 +752,10 @@ static inline bool module_requested_async_probing(struct module *module)
|
2015-06-29 15:24:25 +00:00
|
|
|
return false;
|
2014-08-20 17:22:24 +00:00
|
|
|
}
|
2015-06-29 15:24:25 +00:00
|
|
|
|
2014-08-20 17:22:24 +00:00
|
|
|
+static inline bool secure_modules(void)
|
|
|
|
+{
|
|
|
|
+ return false;
|
|
|
|
+}
|
|
|
|
#endif /* CONFIG_MODULES */
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
diff --git a/kernel/module.c b/kernel/module.c
|
2016-10-27 14:49:53 +00:00
|
|
|
index f57dd63186e6..cb864505d020 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/kernel/module.c
|
|
|
|
+++ b/kernel/module.c
|
2016-10-27 14:49:53 +00:00
|
|
|
@@ -4284,3 +4284,13 @@ void module_layout(struct module *mod,
|
2014-08-20 17:22:24 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(module_layout);
|
|
|
|
#endif
|
|
|
|
+
|
|
|
|
+bool secure_modules(void)
|
|
|
|
+{
|
|
|
|
+#ifdef CONFIG_MODULE_SIG
|
|
|
|
+ return (sig_enforce || modules_disabled);
|
|
|
|
+#else
|
|
|
|
+ return modules_disabled;
|
|
|
|
+#endif
|
|
|
|
+}
|
|
|
|
+EXPORT_SYMBOL(secure_modules);
|
2015-09-09 15:10:06 +00:00
|
|
|
--
|
2016-10-27 14:49:53 +00:00
|
|
|
2.9.3
|
2015-09-09 15:10:06 +00:00
|
|
|
|