18c8249
From a1aaf20cffb1a949c5d6b1198690c7c30cfda4d5 Mon Sep 17 00:00:00 2001
6a91557
From: Matthew Garrett <matthew.garrett@nebula.com>
6a91557
Date: Fri, 9 Aug 2013 17:58:15 -0400
18c8249
Subject: [PATCH 01/20] 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
18c8249
index 3a19c79918e0..db386349cd01 100644
6a91557
--- a/include/linux/module.h
6a91557
+++ b/include/linux/module.h
18c8249
@@ -635,6 +635,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. */
18c8249
@@ -751,6 +753,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
18c8249
index b86b7bf1be38..7f045246e123 100644
6a91557
--- a/kernel/module.c
6a91557
+++ b/kernel/module.c
18c8249
@@ -4087,3 +4087,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);
18c8249
-- 
18c8249
2.4.3
18c8249