6a91557
From: Matthew Garrett <matthew.garrett@nebula.com>
6a91557
Date: Fri, 9 Aug 2013 17:58:15 -0400
6a91557
Subject: [PATCH] Add secure_modules() call
6a91557
6a91557
Provide a single call to allow kernel code to determine whether the system
6a91557
has been configured to either disable module loading entirely or to load
6a91557
only modules signed with a trusted key.
6a91557
6a91557
Bugzilla: N/A
6a91557
Upstream-status: Fedora mustard.  Replaced by securelevels, but that was nak'd
6a91557
6a91557
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
6a91557
---
76c11d9
 include/linux/module.h |  6 ++++++
6a91557
 kernel/module.c        | 10 ++++++++++
76c11d9
 2 files changed, 16 insertions(+)
6a91557
6a91557
diff --git a/include/linux/module.h b/include/linux/module.h
088a50c
index d67b1932cc59..57474384b66b 100644
6a91557
--- a/include/linux/module.h
6a91557
+++ b/include/linux/module.h
088a50c
@@ -551,6 +551,8 @@ static inline bool module_requested_async_probing(struct module *module)
76c11d9
 	return module && module->async_probe_requested;
76c11d9
 }
6a91557
 
6a91557
+extern bool secure_modules(void);
6a91557
+
6a91557
 #else /* !CONFIG_MODULES... */
6a91557
 
6a91557
 /* Given an address, look for it in the exception tables. */
088a50c
@@ -667,6 +669,10 @@ static inline bool module_requested_async_probing(struct module *module)
76c11d9
 	return false;
6a91557
 }
76c11d9
 
6a91557
+static inline bool secure_modules(void)
6a91557
+{
6a91557
+	return false;
6a91557
+}
6a91557
 #endif /* CONFIG_MODULES */
6a91557
 
6a91557
 #ifdef CONFIG_SYSFS
6a91557
diff --git a/kernel/module.c b/kernel/module.c
228ccc4
index 4d2b82e610e2..e9869c497175 100644
6a91557
--- a/kernel/module.c
6a91557
+++ b/kernel/module.c
228ccc4
@@ -4083,3 +4083,13 @@ void module_layout(struct module *mod,
6a91557
 }
6a91557
 EXPORT_SYMBOL(module_layout);
6a91557
 #endif
6a91557
+
6a91557
+bool secure_modules(void)
6a91557
+{
6a91557
+#ifdef CONFIG_MODULE_SIG
6a91557
+	return (sig_enforce || modules_disabled);
6a91557
+#else
6a91557
+	return modules_disabled;
6a91557
+#endif
6a91557
+}
6a91557
+EXPORT_SYMBOL(secure_modules);