]> xenbits.xensource.com Git - xen.git/commitdiff
tools/dombuilder: Correct the length calculation in xc_dom_alloc_segment()
authorAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 4 Jul 2024 12:21:46 +0000 (14:21 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 4 Jul 2024 12:21:46 +0000 (14:21 +0200)
xc_dom_alloc_segment() is passed a size in bytes, calculates a size in pages
from it, then fills in the new segment information with a bytes value
re-calculated from the number of pages.

This causes the module information given to the guest (MB, or PVH) to have
incorrect sizes; specifically, sizes rounded up to the next page.

This in turn is problematic for Xen.  When Xen finds a gzipped module, it
peeks at the end metadata to judge the decompressed size, which is a -4
backreference from the reported end of the module.

Fill in seg->vend using the correct number of bytes.

Fixes: ea7c8a3d0e82 ("libxc: reorganize domain builder guest memory allocator")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Anthony PERARD <anthony.perard@vates.tech>
master commit: 4c3a618b0adaa0cd59e0fa0898bb60978b8b3a5f
master date: 2024-07-02 10:50:18 +0100

tools/libs/guest/xg_dom_core.c

index c4f4e7f3e27a13f4cb72eb96552c921c6b45e4c8..f5521d528be1c6fa72a64b5cdbef232801a25171 100644 (file)
@@ -601,7 +601,7 @@ int xc_dom_alloc_segment(struct xc_dom_image *dom,
     memset(ptr, 0, pages * page_size);
 
     seg->vstart = start;
-    seg->vend = dom->virt_alloc_end;
+    seg->vend = start + size;
 
     DOMPRINTF("%-20s:   %-12s : 0x%" PRIx64 " -> 0x%" PRIx64
               "  (pfn 0x%" PRIpfn " + 0x%" PRIpfn " pages)",