]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
nvdimm/bus: Fix potential use after free in asynchronous initialization
authorIra Weiny <ira.weiny@intel.com>
Fri, 6 Mar 2026 18:33:05 +0000 (12:33 -0600)
committerIra Weiny <ira.weiny@intel.com>
Mon, 9 Mar 2026 14:38:22 +0000 (09:38 -0500)
Dingisoul with KASAN reports a use after free if device_add() fails in
nd_async_device_register().

Commit b6eae0f61db2 ("libnvdimm: Hold reference on parent while
scheduling async init") correctly added a reference on the parent device
to be held until asynchronous initialization was complete.  However, if
device_add() results in an allocation failure the ref count of the
device drops to 0 prior to the parent pointer being accessed.  Thus
resulting in use after free.

The bug bot AI correctly identified the fix.  Save a reference to the
parent pointer to be used to drop the parent reference regardless of the
outcome of device_add().

Reported-by: Dingisoul <dingiso.kernel@gmail.com>
Closes: http://lore.kernel.org/8855544b-be9e-4153-aa55-0bc328b13733@gmail.com
Fixes: b6eae0f61db2 ("libnvdimm: Hold reference on parent while scheduling async init")
Cc: stable@vger.kernel.org
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Link: https://patch.msgid.link/20260306-fix-uaf-async-init-v1-1-a28fd7526723@intel.com
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
drivers/nvdimm/bus.c

index bd9621d3f73cfc2585d4320c58a3af4c276f38fb..45b7d756e39a0401e7c63b9ee2d5f266a43ebfd9 100644 (file)
@@ -486,14 +486,15 @@ EXPORT_SYMBOL_GPL(nd_synchronize);
 static void nd_async_device_register(void *d, async_cookie_t cookie)
 {
        struct device *dev = d;
+       struct device *parent = dev->parent;
 
        if (device_add(dev) != 0) {
                dev_err(dev, "%s: failed\n", __func__);
                put_device(dev);
        }
        put_device(dev);
-       if (dev->parent)
-               put_device(dev->parent);
+       if (parent)
+               put_device(parent);
 }
 
 static void nd_async_device_unregister(void *d, async_cookie_t cookie)