8163715
From 3213f1513a744fb21b6b9e4d4f2650a204855b3e 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
8163715
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
8163715
index 0c3207d..05bd6c9 100644
6a91557
--- a/include/linux/module.h
6a91557
+++ b/include/linux/module.h
8163715
@@ -641,6 +641,8 @@ static inline bool is_livepatch_module(struct module *mod)
76c11d9
 }
ec226c2
 #endif /* CONFIG_LIVEPATCH */
6a91557
 
6a91557
+extern bool secure_modules(void);
6a91557
+
6a91557
 #else /* !CONFIG_MODULES... */
6a91557
 
8163715
 static inline struct module *__module_address(unsigned long addr)
8163715
@@ -750,6 +752,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
8163715
index 529efae..0332fdd 100644
6a91557
--- a/kernel/module.c
6a91557
+++ b/kernel/module.c
8163715
@@ -4279,3 +4279,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);
48f65f6
-- 
8163715
2.9.2
48f65f6