NULL Pointer Dereference Affecting xen package, versions <4.9.0-r4
Threat Intelligence
Do your applications use this vulnerable package?
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applications- Snyk ID SNYK-ALPINE320-XEN-7012710
- published 23 May 2024
- disclosed 12 Sep 2017
Introduced: 12 Sep 2017
CVE-2017-14318 Open this link in a new tabHow to fix?
Upgrade Alpine:3.20
xen
to version 4.9.0-r4 or higher.
NVD Description
Note: Versions mentioned in the description apply only to the upstream xen
package and not the xen
package as distributed by Alpine
.
See How to fix?
for Alpine:3.20
relevant fixed versions and status.
An issue was discovered in Xen 4.5.x through 4.9.x. The function __gnttab_cache_flush
handles GNTTABOP_cache_flush grant table operations. It checks to see if the calling domain is the owner of the page that is to be operated on. If it is not, the owner's grant table is checked to see if a grant mapping to the calling domain exists for the page in question. However, the function does not check to see if the owning domain actually has a grant table or not. Some special domains, such as DOMID_XEN
, DOMID_IO
and DOMID_COW
are created without grant tables. Hence, if __gnttab_cache_flush operates on a page owned by these special domains, it will attempt to dereference a NULL pointer in the domain struct.