The ioapic_read_indirect function in virt/kvm/ioapic.c in the Linux kernel through 3.8.4 does not properly handle a certain combination of invalid IOAPIC_REG_SELECT and IOAPIC_REG_WINDOW operations, which allows guest OS users to obtain sensitive information from host OS memory or cause a denial of service (host OS OOPS) via a crafted application.
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Linux_kernel | Linux | * | 3.8.4 (including) |
Linux_kernel | Linux | 3.8.0 (including) | 3.8.0 (including) |
Linux_kernel | Linux | 3.8.1 (including) | 3.8.1 (including) |
Linux_kernel | Linux | 3.8.2 (including) | 3.8.2 (including) |
Linux_kernel | Linux | 3.8.3 (including) | 3.8.3 (including) |
Red Hat Enterprise Linux 5 | RedHat | kvm-0:83-262.el5_9.3 | * |
Red Hat Enterprise Linux 6 | RedHat | kernel-0:2.6.32-358.6.1.el6 | * |
Red Hat Enterprise Linux 6.2 EUS - Server and Compute Node Only | RedHat | kernel-0:2.6.32-220.39.1.el6 | * |
Red Hat Enterprise Linux 6.3 EUS - Server and Compute Node Only | RedHat | kernel-0:2.6.32-279.31.1.el6 | * |
RHEV 3.X Hypervisor and Agents for RHEL-6 | RedHat | rhev-hypervisor6-0:6.4-20130415.0.el6_4 | * |
Linux | Ubuntu | hardy | * |
Linux | Ubuntu | lucid | * |
Linux | Ubuntu | oneiric | * |
Linux | Ubuntu | precise | * |
Linux | Ubuntu | precise/esm | * |
Linux | Ubuntu | quantal | * |
Linux | Ubuntu | upstream | * |
Linux-armadaxp | Ubuntu | upstream | * |
Linux-aws | Ubuntu | upstream | * |
Linux-ec2 | Ubuntu | lucid | * |
Linux-ec2 | Ubuntu | upstream | * |
Linux-flo | Ubuntu | trusty | * |
Linux-flo | Ubuntu | trusty/esm | * |
Linux-flo | Ubuntu | upstream | * |
Linux-flo | Ubuntu | utopic | * |
Linux-flo | Ubuntu | vivid | * |
Linux-flo | Ubuntu | vivid/stable-phone-overlay | * |
Linux-flo | Ubuntu | wily | * |
Linux-flo | Ubuntu | xenial | * |
Linux-flo | Ubuntu | yakkety | * |
Linux-fsl-imx51 | Ubuntu | lucid | * |
Linux-fsl-imx51 | Ubuntu | upstream | * |
Linux-gke | Ubuntu | upstream | * |
Linux-goldfish | Ubuntu | saucy | * |
Linux-goldfish | Ubuntu | trusty | * |
Linux-goldfish | Ubuntu | trusty/esm | * |
Linux-goldfish | Ubuntu | upstream | * |
Linux-grouper | Ubuntu | saucy | * |
Linux-grouper | Ubuntu | trusty | * |
Linux-grouper | Ubuntu | upstream | * |
Linux-grouper | Ubuntu | utopic | * |
Linux-hwe | Ubuntu | upstream | * |
Linux-hwe-edge | Ubuntu | upstream | * |
Linux-linaro-omap | Ubuntu | oneiric | * |
Linux-linaro-omap | Ubuntu | precise | * |
Linux-linaro-omap | Ubuntu | quantal | * |
Linux-linaro-omap | Ubuntu | upstream | * |
Linux-linaro-shared | Ubuntu | oneiric | * |
Linux-linaro-shared | Ubuntu | precise | * |
Linux-linaro-shared | Ubuntu | quantal | * |
Linux-linaro-shared | Ubuntu | upstream | * |
Linux-linaro-vexpress | Ubuntu | oneiric | * |
Linux-linaro-vexpress | Ubuntu | precise | * |
Linux-linaro-vexpress | Ubuntu | quantal | * |
Linux-linaro-vexpress | Ubuntu | upstream | * |
Linux-lts-backport-maverick | Ubuntu | lucid | * |
Linux-lts-backport-maverick | Ubuntu | upstream | * |
Linux-lts-backport-oneiric | Ubuntu | lucid | * |
Linux-lts-backport-oneiric | Ubuntu | upstream | * |
Linux-lts-quantal | Ubuntu | precise | * |
Linux-lts-quantal | Ubuntu | upstream | * |
Linux-lts-raring | Ubuntu | upstream | * |
Linux-lts-trusty | Ubuntu | upstream | * |
Linux-lts-utopic | Ubuntu | upstream | * |
Linux-lts-vivid | Ubuntu | upstream | * |
Linux-lts-wily | Ubuntu | upstream | * |
Linux-lts-xenial | Ubuntu | upstream | * |
Linux-maguro | Ubuntu | saucy | * |
Linux-maguro | Ubuntu | trusty | * |
Linux-maguro | Ubuntu | upstream | * |
Linux-mako | Ubuntu | saucy | * |
Linux-mako | Ubuntu | trusty | * |
Linux-mako | Ubuntu | trusty/esm | * |
Linux-mako | Ubuntu | upstream | * |
Linux-mako | Ubuntu | utopic | * |
Linux-mako | Ubuntu | vivid | * |
Linux-mako | Ubuntu | vivid/stable-phone-overlay | * |
Linux-mako | Ubuntu | wily | * |
Linux-mako | Ubuntu | xenial | * |
Linux-mako | Ubuntu | yakkety | * |
Linux-manta | Ubuntu | saucy | * |
Linux-manta | Ubuntu | trusty | * |
Linux-manta | Ubuntu | trusty/esm | * |
Linux-manta | Ubuntu | upstream | * |
Linux-manta | Ubuntu | utopic | * |
Linux-manta | Ubuntu | vivid | * |
Linux-manta | Ubuntu | wily | * |
Linux-mvl-dove | Ubuntu | lucid | * |
Linux-mvl-dove | Ubuntu | upstream | * |
Linux-qcm-msm | Ubuntu | lucid | * |
Linux-qcm-msm | Ubuntu | oneiric | * |
Linux-qcm-msm | Ubuntu | precise | * |
Linux-qcm-msm | Ubuntu | quantal | * |
Linux-qcm-msm | Ubuntu | upstream | * |
Linux-raspi2 | Ubuntu | upstream | * |
Linux-raspi2 | Ubuntu | vivid/ubuntu-core | * |
Linux-snapdragon | Ubuntu | upstream | * |
Linux-ti-omap4 | Ubuntu | upstream | * |
Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. Input can consist of:
Data can be simple or structured. Structured data can be composed of many nested layers, composed of combinations of metadata and raw data, with other simple or structured data. Many properties of raw data or metadata may need to be validated upon entry into the code, such as:
Implied or derived properties of data must often be calculated or inferred by the code itself. Errors in deriving properties may be considered a contributing factor to improper input validation.