Linux MM tree latest commits
 help / color / mirror / Atom feed
* + drivers-char-amiserialc-prevent-reading-uninitialized-stack-memory.patch added to -mm tree
@ 2010-09-16 21:02 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2010-09-16 21:02 UTC (permalink / raw)
  To: mm-commits; +Cc: drosenberg, alan, dan.j.rosenberg, greg


The patch titled
     drivers/char/amiserial.c: prevent reading uninitialized stack memory
has been added to the -mm tree.  Its filename is
     drivers-char-amiserialc-prevent-reading-uninitialized-stack-memory.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: drivers/char/amiserial.c: prevent reading uninitialized stack memory
From: Dan Rosenberg <drosenberg@vsecurity.com>

The TIOCGICOUNT device ioctl allows unprivileged users to read
uninitialized stack memory, because the "reserved" member of the
serial_icounter_struct struct declared on the stack is not altered or
zeroed before being copied back to the user.  This patch takes care of it.

Signed-off-by: Dan Rosenberg <dan.j.rosenberg@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/char/amiserial.c |    3 +++
 1 file changed, 3 insertions(+)

diff -puN drivers/char/amiserial.c~drivers-char-amiserialc-prevent-reading-uninitialized-stack-memory drivers/char/amiserial.c
--- a/drivers/char/amiserial.c~drivers-char-amiserialc-prevent-reading-uninitialized-stack-memory
+++ a/drivers/char/amiserial.c
@@ -1342,6 +1342,9 @@ static int rs_ioctl(struct tty_struct *t
 			local_irq_save(flags);
 			cnow = info->state->icount;
 			local_irq_restore(flags);
+
+			memset(&icount, 0, sizeof(struct serial_icounter_struct));
+
 			icount.cts = cnow.cts;
 			icount.dsr = cnow.dsr;
 			icount.rng = cnow.rng;
_

Patches currently in -mm which might be from drosenberg@vsecurity.com are

linux-next.patch
drivers-serial-serial_corec-prevent-reading-uninitialized-stack-memory.patch
drivers-char-amiserialc-prevent-reading-uninitialized-stack-memory.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-09-16 21:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-16 21:02 + drivers-char-amiserialc-prevent-reading-uninitialized-stack-memory.patch added to -mm tree akpm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox