[PATCH] char: briq_panel: fix TOCTOU bug

From: Vasiliy Kulikov
Date: Sat Apr 09 2011 - 08:41:51 EST


There is a TOCTOU bug in briq_panel_write() code:

if (vfd_cursor > 39) <<<
scroll_vfd();
vfd[vfd_cursor++] = c; <<<

It's possible to write to arbitrary memory location in case of more than
one process tries to call write() simultaneously.

Signed-off-by: Vasiliy Kulikov <segoon@xxxxxxxxxxxx>
---
drivers/char/briq_panel.c | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/drivers/char/briq_panel.c b/drivers/char/briq_panel.c
index 095ab90..afad0a4 100644
--- a/drivers/char/briq_panel.c
+++ b/drivers/char/briq_panel.c
@@ -9,6 +9,7 @@
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/tty.h>
+#include <linux/mutex.h>
#include <linux/timer.h>
#include <linux/kernel.h>
#include <linux/wait.h>
@@ -34,6 +35,7 @@ static int vfd_is_open;
static unsigned char vfd[40];
static int vfd_cursor;
static unsigned char ledpb, led;
+static DEFINE_MUTEX(vfd_mutex);

static void update_vfd(void)
{
@@ -140,12 +142,15 @@ static ssize_t briq_panel_write(struct file *file, const char __user *buf, size_
if (!vfd_is_open)
return -EBUSY;

+ mutex_lock(&vfd_mutex);
for (;;) {
char c;
if (!indx)
break;
- if (get_user(c, buf))
+ if (get_user(c, buf)) {
+ mutex_unlock(&vfd_mutex);
return -EFAULT;
+ }
if (esc) {
set_led(c);
esc = 0;
@@ -175,6 +180,7 @@ static ssize_t briq_panel_write(struct file *file, const char __user *buf, size_
buf++;
}
update_vfd();
+ mutex_unlock(&vfd_mutex);

return len;
}
--
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/