From: Anthony PERARD Date: Tue, 12 Jul 2022 06:38:51 +0000 (+0200) Subject: libxl: check return value of libxl__xs_directory in name2bdf X-Git-Tag: 4.17.0-rc1~299 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d778089ac70e5b8e3bdea0c85fc8c0b9ed0eaf2f;p=xen.git libxl: check return value of libxl__xs_directory in name2bdf libxl__xs_directory() can potentially return NULL without setting `n`. As `n` isn't initialised, we need to check libxl__xs_directory() return value before checking `n`. Otherwise, `n` might be non-zero with `bdfs` NULL which would lead to a segv. Fixes: 57bff091f4 ("libxl: add 'name' field to 'libxl_device_pci' in the IDL...") Reported-by: "G.R." Signed-off-by: Anthony PERARD Reviewed-by: Juergen Gross Tested-by: "G.R." --- diff --git a/tools/libs/light/libxl_pci.c b/tools/libs/light/libxl_pci.c index 96f88795b6..f4c4f17545 100644 --- a/tools/libs/light/libxl_pci.c +++ b/tools/libs/light/libxl_pci.c @@ -859,7 +859,7 @@ static int name2bdf(libxl__gc *gc, libxl_device_pci *pci) int rc = ERROR_NOTFOUND; bdfs = libxl__xs_directory(gc, XBT_NULL, PCI_INFO_PATH, &n); - if (!n) + if (!bdfs || !n) goto out; for (i = 0; i < n; i++) {