af49530
From 0f6eec5ca124baf1372fb4edeacd11a002378f5e 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
af49530
index 3daf2b3..082298a 100644
6a91557
--- a/include/linux/module.h
6a91557
+++ b/include/linux/module.h
af49530
@@ -655,6 +655,8 @@ static inline bool is_livepatch_module(struct module *mod)
76c11d9
 }
af49530
 #endif /* CONFIG_LIVEPATCH */
6a91557
 
6a91557
+extern bool secure_modules(void);
6a91557
+
6a91557
 #else /* !CONFIG_MODULES... */
6a91557
 
6a91557
 /* Given an address, look for it in the exception tables. */
af49530
@@ -771,6 +773,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
af49530
index 5f71aa6..3c38496 100644
6a91557
--- a/kernel/module.c
6a91557
+++ b/kernel/module.c
af49530
@@ -4199,3 +4199,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
-- 
af49530
2.5.5
18c8249