diff options
author | khorben <khorben@pkgsrc.org> | 2015-05-16 03:19:54 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2015-05-16 03:19:54 +0000 |
commit | 8c87f724adf704494abc276a2a85639bb57d19d4 (patch) | |
tree | a37a194f3ba59f40835e64aa29c7639b49be57d5 /emulators/qemu/Makefile | |
parent | e71198c5cd6bc6ca09ca4bdf3000331598250f4c (diff) | |
download | pkgsrc-8c87f724adf704494abc276a2a85639bb57d19d4.tar.gz |
Add patch for CVE-2015-3456.
fdc: force the fifo access to be in bounds of the allocated buffer
During processing of certain commands such as FD_CMD_READ_ID and
FD_CMD_DRIVE_SPECIFICATION_COMMAND the fifo memory access could
get out of bounds leading to memory corruption with values coming
from the guest.
Fix this by making sure that the index is always bounded by the
allocated memory.
XXX pull-up where applicable
Diffstat (limited to 'emulators/qemu/Makefile')
-rw-r--r-- | emulators/qemu/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile index 21e0d28e6b4..6dfacc3fab1 100644 --- a/emulators/qemu/Makefile +++ b/emulators/qemu/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.137 2015/04/29 20:30:53 ryoon Exp $ +# $NetBSD: Makefile,v 1.138 2015/05/16 03:19:54 khorben Exp $ DISTNAME= qemu-2.3.0 +PKGREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/ EXTRACT_SUFX= .tar.bz2 |