2014-08-20 17:22:24 +00:00
|
|
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
|
|
|
Date: Thu, 8 Mar 2012 10:35:59 -0500
|
|
|
|
Subject: [PATCH] x86: Lock down IO port access when module security is enabled
|
|
|
|
|
|
|
|
IO port access would permit users to gain access to PCI configuration
|
|
|
|
registers, which in turn (on a lot of hardware) give access to MMIO register
|
|
|
|
space. This would potentially permit root to trigger arbitrary DMA, so lock
|
|
|
|
it down by default.
|
|
|
|
|
|
|
|
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
|
|
|
|
---
|
|
|
|
arch/x86/kernel/ioport.c | 5 +++--
|
|
|
|
drivers/char/mem.c | 4 ++++
|
|
|
|
2 files changed, 7 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/arch/x86/kernel/ioport.c b/arch/x86/kernel/ioport.c
|
2015-04-14 13:54:01 +00:00
|
|
|
index 37dae792dbbe..1ecc03ca3c15 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/arch/x86/kernel/ioport.c
|
|
|
|
+++ b/arch/x86/kernel/ioport.c
|
|
|
|
@@ -15,6 +15,7 @@
|
|
|
|
#include <linux/thread_info.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <linux/bitmap.h>
|
|
|
|
+#include <linux/module.h>
|
|
|
|
#include <asm/syscalls.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
@@ -28,7 +29,7 @@ asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int turn_on)
|
|
|
|
|
|
|
|
if ((from + num <= from) || (from + num > IO_BITMAP_BITS))
|
|
|
|
return -EINVAL;
|
|
|
|
- if (turn_on && !capable(CAP_SYS_RAWIO))
|
|
|
|
+ if (turn_on && (!capable(CAP_SYS_RAWIO) || secure_modules()))
|
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
/*
|
|
|
|
@@ -103,7 +104,7 @@ SYSCALL_DEFINE1(iopl, unsigned int, level)
|
|
|
|
return -EINVAL;
|
|
|
|
/* Trying to gain more privileges? */
|
|
|
|
if (level > old) {
|
|
|
|
- if (!capable(CAP_SYS_RAWIO))
|
|
|
|
+ if (!capable(CAP_SYS_RAWIO) || secure_modules())
|
|
|
|
return -EPERM;
|
|
|
|
}
|
|
|
|
regs->flags = (regs->flags & ~X86_EFLAGS_IOPL) | (level << 12);
|
|
|
|
diff --git a/drivers/char/mem.c b/drivers/char/mem.c
|
2015-04-16 14:55:18 +00:00
|
|
|
index 6b1721f978c2..53fe675f9bd7 100644
|
2014-08-20 17:22:24 +00:00
|
|
|
--- a/drivers/char/mem.c
|
|
|
|
+++ b/drivers/char/mem.c
|
|
|
|
@@ -27,6 +27,7 @@
|
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/io.h>
|
2015-04-15 14:47:18 +00:00
|
|
|
#include <linux/uio.h>
|
2014-08-20 17:22:24 +00:00
|
|
|
+#include <linux/module.h>
|
|
|
|
|
2015-02-16 15:01:09 +00:00
|
|
|
#include <linux/uaccess.h>
|
2014-08-20 17:22:24 +00:00
|
|
|
|
2015-02-16 15:01:09 +00:00
|
|
|
@@ -577,6 +578,9 @@ static ssize_t write_port(struct file *file, const char __user *buf,
|
2014-08-20 17:22:24 +00:00
|
|
|
unsigned long i = *ppos;
|
|
|
|
const char __user *tmp = buf;
|
|
|
|
|
|
|
|
+ if (secure_modules())
|
|
|
|
+ return -EPERM;
|
|
|
|
+
|
|
|
|
if (!access_ok(VERIFY_READ, buf, count))
|
|
|
|
return -EFAULT;
|
|
|
|
while (count-- > 0 && i < 65536) {
|
|
|
|
--
|
2014-12-09 14:25:39 +00:00
|
|
|
2.1.0
|
2014-08-20 17:22:24 +00:00
|
|
|
|