]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
HID: wacom: fix memory leak on kobject creation failure
authorQasim Ijaz <qasdev00@gmail.com>
Fri, 6 Jun 2025 18:49:57 +0000 (19:49 +0100)
committerJiri Kosina <jkosina@suse.com>
Tue, 10 Jun 2025 19:10:27 +0000 (21:10 +0200)
During wacom_initialize_remotes() a fifo buffer is allocated
with kfifo_alloc() and later a cleanup action is registered
during devm_add_action_or_reset() to clean it up.

However if the code fails to create a kobject and register it
with sysfs the code simply returns -ENOMEM before the cleanup
action is registered leading to a memory leak.

Fix this by ensuring the fifo is freed when the kobject creation
and registration process fails.

Fixes: 83e6b40e2de6 ("HID: wacom: EKR: have the wacom resources dynamically allocated")
Reviewed-by: Ping Cheng <ping.cheng@wacom.com>
Cc: stable@vger.kernel.org
Signed-off-by: Qasim Ijaz <qasdev00@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
drivers/hid/wacom_sys.c

index eaf099b2efdb0a7d3985ca92f35ca91ec6b02059..ec5282bc69d6b88988def2fa6edf21833348018c 100644 (file)
@@ -2048,8 +2048,10 @@ static int wacom_initialize_remotes(struct wacom *wacom)
 
        remote->remote_dir = kobject_create_and_add("wacom_remote",
                                                    &wacom->hdev->dev.kobj);
-       if (!remote->remote_dir)
+       if (!remote->remote_dir) {
+               kfifo_free(&remote->remote_fifo);
                return -ENOMEM;
+       }
 
        error = sysfs_create_files(remote->remote_dir, remote_unpair_attrs);