Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
xen.5015
CVE-2016-8669-qemuu-char-divide-by-zero-error-i...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File CVE-2016-8669-qemuu-char-divide-by-zero-error-in-serial_update_parameters.patch of Package xen.5015
References: bsc#1005005 CVE-2016-8669 16550A UART device uses an oscillator to generate frequencies (baud base), which decide communication speed. This speed could be changed by dividing it by a divider. If the divider is greater than the baud base, speed is set to zero, leading to a divide by zero error. Add check to avoid it. Reported-by: Huawei PSIRT <address@hidden> Signed-off-by: Prasad J Pandit <address@hidden> --- hw/char/serial.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Update per -> https://lists.gnu.org/archive/html/qemu-devel/2016-10/msg02400.html Index: xen-4.4.4-testing/tools/qemu-xen-dir-remote/hw/char/serial.c =================================================================== --- xen-4.4.4-testing.orig/tools/qemu-xen-dir-remote/hw/char/serial.c +++ xen-4.4.4-testing/tools/qemu-xen-dir-remote/hw/char/serial.c @@ -149,8 +149,9 @@ static void serial_update_parameters(Ser int speed, parity, data_bits, stop_bits, frame_size; QEMUSerialSetParams ssp; - if (s->divider == 0) + if (s->divider == 0 || s->divider > s->baudbase) { return; + } /* Start bit. */ frame_size = 1;
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor