The PV superpage functionality in arch/x86/mm.c in Xen 3.4.0, 3.4.1, and 4.1.x through 4.6.x allows local PV guests to obtain sensitive information, cause a denial of service, gain privileges, or have unspecified other impact via a crafted page identifier (MFN) to the (1) MMUEXT_MARK_SUPER or (2) MMUEXT_UNMARK_SUPER sub-op in the HYPERVISOR_mmuext_op hypercall or (3) unknown vectors related to page table updates.
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 |
---|---|---|---|
Xen | Xen | 3.4.0 (including) | 3.4.0 (including) |
Xen | Xen | 3.4.1 (including) | 3.4.1 (including) |
Xen | Xen | 4.1.0 (including) | 4.1.0 (including) |
Xen | Xen | 4.1.1 (including) | 4.1.1 (including) |
Xen | Xen | 4.1.2 (including) | 4.1.2 (including) |
Xen | Xen | 4.1.3 (including) | 4.1.3 (including) |
Xen | Xen | 4.1.4 (including) | 4.1.4 (including) |
Xen | Xen | 4.1.5 (including) | 4.1.5 (including) |
Xen | Xen | 4.1.6 (including) | 4.1.6 (including) |
Xen | Xen | 4.1.6.1 (including) | 4.1.6.1 (including) |
Xen | Xen | 4.2.0 (including) | 4.2.0 (including) |
Xen | Xen | 4.2.1 (including) | 4.2.1 (including) |
Xen | Xen | 4.2.2 (including) | 4.2.2 (including) |
Xen | Xen | 4.2.3 (including) | 4.2.3 (including) |
Xen | Xen | 4.2.4 (including) | 4.2.4 (including) |
Xen | Xen | 4.2.5 (including) | 4.2.5 (including) |
Xen | Xen | 4.3.0 (including) | 4.3.0 (including) |
Xen | Xen | 4.3.1 (including) | 4.3.1 (including) |
Xen | Xen | 4.3.2 (including) | 4.3.2 (including) |
Xen | Xen | 4.3.3 (including) | 4.3.3 (including) |
Xen | Xen | 4.3.4 (including) | 4.3.4 (including) |
Xen | Xen | 4.4.0 (including) | 4.4.0 (including) |
Xen | Xen | 4.4.0-rc1 (including) | 4.4.0-rc1 (including) |
Xen | Xen | 4.4.1 (including) | 4.4.1 (including) |
Xen | Xen | 4.4.2 (including) | 4.4.2 (including) |
Xen | Xen | 4.4.3 (including) | 4.4.3 (including) |
Xen | Xen | 4.5.0 (including) | 4.5.0 (including) |
Xen | Xen | 4.5.1 (including) | 4.5.1 (including) |
Xen | Xen | 4.5.2 (including) | 4.5.2 (including) |
Xen | Xen | 4.6.0 (including) | 4.6.0 (including) |
Xen | Ubuntu | devel | * |
Xen | Ubuntu | precise | * |
Xen | Ubuntu | trusty | * |
Xen | Ubuntu | upstream | * |
Xen | Ubuntu | vivid | * |
Xen | Ubuntu | wily | * |
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.