Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Jan 2019 16:21:04 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r343261 - head/sys/compat/linux
Message-ID:  <201901211621.x0LGL4nA044196@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Jan 21 16:21:03 2019
New Revision: 343261
URL: https://svnweb.freebsd.org/changeset/base/343261

Log:
  linuxulator: fix stack memory disclosure in linux_ioctl_termio
  
  admbugs:	765
  Reported by:	Vlad Tsyrklevich <vlad@tsyrklevich.net>
  Reviewed by:	andrew
  MFC after:	1 day
  Security:	Kernel stack memory disclosure
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/compat/linux/linux_ioctl.c

Modified: head/sys/compat/linux/linux_ioctl.c
==============================================================================
--- head/sys/compat/linux/linux_ioctl.c	Mon Jan 21 16:19:02 2019	(r343260)
+++ head/sys/compat/linux/linux_ioctl.c	Mon Jan 21 16:21:03 2019	(r343261)
@@ -686,6 +686,7 @@ bsd_to_linux_termio(struct termios *bios, struct linux
 {
 	struct linux_termios lios;
 
+	memset(lio, 0, sizeof(*lio));
 	bsd_to_linux_termios(bios, &lios);
 	lio->c_iflag = lios.c_iflag;
 	lio->c_oflag = lios.c_oflag;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901211621.x0LGL4nA044196>