[PATCH] system/qdev: Remove pointless NULL check in qdev_device_add_from_qdict

Philippe Mathieu-Daudé posted 1 patch 12 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20250210121045.38908-1-philmd@linaro.org
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Eduardo Habkost <eduardo@habkost.net>
system/qdev-monitor.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
[PATCH] system/qdev: Remove pointless NULL check in qdev_device_add_from_qdict
Posted by Philippe Mathieu-Daudé 12 months ago
Coverity reported a unnecessary NULL check:

  qemu/system/qdev-monitor.c: 720 in qdev_device_add_from_qdict()
  683     /* create device */
  684     dev = qdev_new(driver);
  ...
  719     err_del_dev:
  >>>     CID 1590192:  Null pointer dereferences  (REVERSE_INULL)
  >>>     Null-checking "dev" suggests that it may be null, but it has already been dereferenced on all paths leading to the check.
  720         if (dev) {
  721             object_unparent(OBJECT(dev));
  722             object_unref(OBJECT(dev));
  723         }
  724         return NULL;
  725     }

Indeed, unlike qdev_try_new() which can return NULL,
qdev_new() always returns a heap pointer (or aborts).

Remove the unnecessary assignment and check.

Fixes: f3a85056569 ("qdev/qbus: add hidden device support")
Resolves: Coverity CID 1590192 (Null pointer dereferences)
Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 system/qdev-monitor.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/system/qdev-monitor.c b/system/qdev-monitor.c
index 861c25c855f..01d4b007322 100644
--- a/system/qdev-monitor.c
+++ b/system/qdev-monitor.c
@@ -628,7 +628,7 @@ DeviceState *qdev_device_add_from_qdict(const QDict *opts,
     DeviceClass *dc;
     const char *driver, *path;
     char *id;
-    DeviceState *dev = NULL;
+    DeviceState *dev;
     BusState *bus = NULL;
     QDict *properties;
 
@@ -717,10 +717,9 @@ DeviceState *qdev_device_add_from_qdict(const QDict *opts,
     return dev;
 
 err_del_dev:
-    if (dev) {
-        object_unparent(OBJECT(dev));
-        object_unref(OBJECT(dev));
-    }
+    object_unparent(OBJECT(dev));
+    object_unref(OBJECT(dev));
+
     return NULL;
 }
 
-- 
2.47.1


Re: [PATCH] system/qdev: Remove pointless NULL check in qdev_device_add_from_qdict
Posted by Peter Maydell 7 months ago
On Mon, 10 Feb 2025 at 12:10, Philippe Mathieu-Daudé <philmd@linaro.org> wrote:
>
> Coverity reported a unnecessary NULL check:
>
>   qemu/system/qdev-monitor.c: 720 in qdev_device_add_from_qdict()
>   683     /* create device */
>   684     dev = qdev_new(driver);
>   ...
>   719     err_del_dev:
>   >>>     CID 1590192:  Null pointer dereferences  (REVERSE_INULL)
>   >>>     Null-checking "dev" suggests that it may be null, but it has already been dereferenced on all paths leading to the check.
>   720         if (dev) {
>   721             object_unparent(OBJECT(dev));
>   722             object_unref(OBJECT(dev));
>   723         }
>   724         return NULL;
>   725     }
>
> Indeed, unlike qdev_try_new() which can return NULL,
> qdev_new() always returns a heap pointer (or aborts).
>
> Remove the unnecessary assignment and check.
>
> Fixes: f3a85056569 ("qdev/qbus: add hidden device support")
> Resolves: Coverity CID 1590192 (Null pointer dereferences)
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>

Looks like this got reviewed but never picked up by anybody.
I'll add it to my target-arm.next tree.

thanks
-- PMM
Re: [PATCH] system/qdev: Remove pointless NULL check in qdev_device_add_from_qdict
Posted by Philippe Mathieu-Daudé 6 months, 3 weeks ago
On 10/7/25 16:48, Peter Maydell wrote:
> On Mon, 10 Feb 2025 at 12:10, Philippe Mathieu-Daudé <philmd@linaro.org> wrote:
>>
>> Coverity reported a unnecessary NULL check:
>>
>>    qemu/system/qdev-monitor.c: 720 in qdev_device_add_from_qdict()
>>    683     /* create device */
>>    684     dev = qdev_new(driver);
>>    ...
>>    719     err_del_dev:
>>    >>>     CID 1590192:  Null pointer dereferences  (REVERSE_INULL)
>>    >>>     Null-checking "dev" suggests that it may be null, but it has already been dereferenced on all paths leading to the check.
>>    720         if (dev) {
>>    721             object_unparent(OBJECT(dev));
>>    722             object_unref(OBJECT(dev));
>>    723         }
>>    724         return NULL;
>>    725     }
>>
>> Indeed, unlike qdev_try_new() which can return NULL,
>> qdev_new() always returns a heap pointer (or aborts).
>>
>> Remove the unnecessary assignment and check.
>>
>> Fixes: f3a85056569 ("qdev/qbus: add hidden device support")
>> Resolves: Coverity CID 1590192 (Null pointer dereferences)
>> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> 
> Looks like this got reviewed but never picked up by anybody.
> I'll add it to my target-arm.next tree.

Thanks!


Re: [PATCH] system/qdev: Remove pointless NULL check in qdev_device_add_from_qdict
Posted by Richard Henderson 12 months ago
On 2/10/25 04:10, Philippe Mathieu-Daudé wrote:
> Coverity reported a unnecessary NULL check:
> 
>    qemu/system/qdev-monitor.c: 720 in qdev_device_add_from_qdict()
>    683     /* create device */
>    684     dev = qdev_new(driver);
>    ...
>    719     err_del_dev:
>    >>>     CID 1590192:  Null pointer dereferences  (REVERSE_INULL)
>    >>>     Null-checking "dev" suggests that it may be null, but it has already been dereferenced on all paths leading to the check.
>    720         if (dev) {
>    721             object_unparent(OBJECT(dev));
>    722             object_unref(OBJECT(dev));
>    723         }
>    724         return NULL;
>    725     }
> 
> Indeed, unlike qdev_try_new() which can return NULL,
> qdev_new() always returns a heap pointer (or aborts).
> 
> Remove the unnecessary assignment and check.
> 
> Fixes: f3a85056569 ("qdev/qbus: add hidden device support")
> Resolves: Coverity CID 1590192 (Null pointer dereferences)
> Suggested-by: Peter Maydell<peter.maydell@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé<philmd@linaro.org>
> ---
>   system/qdev-monitor.c | 9 ++++-----
>   1 file changed, 4 insertions(+), 5 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~