From: Mostafa Saleh Date: Mon, 29 Jul 2024 12:34:18 +0000 (+0100) Subject: hw/arm/smmuv3: Assert input to oas2bits() is valid X-Git-Tag: qemu-xen-4.20.0~44^2~19 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8deba2f36e9f7e34bf1805b08e69699486481c8a;p=qemu-xen.git hw/arm/smmuv3: Assert input to oas2bits() is valid Coverity has spotted a possible problem with the OAS handling (CID 1558464), where the error return of oas2bits() -1 is not checked, which can cause an overflow in oas value. oas2bits() is only called with valid inputs, harden the function to assert that. Reported-By: Peter Maydell Signed-off-by: Mostafa Saleh Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Eric Auger Message-id: 20240722103531.2377348-1-smostafa@google.com Link: https://lore.kernel.org/qemu-devel/CAFEAcA-H=n-3mHC+eL6YjfL1m+x+b+Fk3mkgZbN74WNxifFVow@mail.gmail.com/ Signed-off-by: Mostafa Saleh Signed-off-by: Peter Maydell --- diff --git a/hw/arm/smmuv3-internal.h b/hw/arm/smmuv3-internal.h index 0ebf2eebcf..b6b7399347 100644 --- a/hw/arm/smmuv3-internal.h +++ b/hw/arm/smmuv3-internal.h @@ -599,7 +599,8 @@ static inline int oas2bits(int oas_field) case 5: return 48; } - return -1; + + g_assert_not_reached(); } /* CD fields */