]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: mctp i3c: clean up notifier and buses if driver register fails
authorMyeonghun Pak <mhun512@gmail.com>
Wed, 15 Jul 2026 07:25:17 +0000 (16:25 +0900)
committerJakub Kicinski <kuba@kernel.org>
Tue, 21 Jul 2026 21:09:57 +0000 (14:09 -0700)
mctp_i3c_mod_init() registers the I3C bus notifier and then walks the
existing buses with i3c_for_each_bus_locked(mctp_i3c_bus_add_new, NULL)
before registering the I3C device driver.  If i3c_driver_register()
fails, the function returns the error directly, leaving the notifier
registered and every mctp_i3c_bus object created for the existing buses
allocated.  The notifier is left pointing into the module that failed to
load and the bus list is leaked.

Mirror the module exit path on this failure: unregister the notifier and
tear down the buses that were added before returning the error.

This issue was identified during our ongoing static-analysis research while
reviewing kernel code.

Fixes: c8755b29b58e ("mctp i3c: MCTP I3C driver")
Co-developed-by: Ijae Kim <ae878000@gmail.com>
Signed-off-by: Ijae Kim <ae878000@gmail.com>
Signed-off-by: Myeonghun Pak <mhun512@gmail.com>
Acked-by: Jeremy Kerr <jk@codeconstruct.com.au>
Link: https://patch.msgid.link/20260715072517.13216-1-mhun512@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/mctp/mctp-i3c.c

index 6d2bbae7477b3947d660b6beb805dd4b9b1f448f..88d9e36cd4a2bc9ccb667403679d6652ec30fcb3 100644 (file)
@@ -731,18 +731,21 @@ static __init int mctp_i3c_mod_init(void)
        int rc;
 
        rc = i3c_register_notifier(&mctp_i3c_notifier);
-       if (rc < 0) {
-               i3c_driver_unregister(&mctp_i3c_driver);
+       if (rc < 0)
                return rc;
-       }
 
        i3c_for_each_bus_locked(mctp_i3c_bus_add_new, NULL);
 
        rc = i3c_driver_register(&mctp_i3c_driver);
        if (rc < 0)
-               return rc;
+               goto err_unregister_notifier;
 
        return 0;
+
+err_unregister_notifier:
+       i3c_unregister_notifier(&mctp_i3c_notifier);
+       mctp_i3c_bus_remove_all();
+       return rc;
 }
 
 static __exit void mctp_i3c_mod_exit(void)