]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
rpmsg: Fix kfree() of static memory on setting driver_override
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Tue, 31 Oct 2023 11:25:37 +0000 (11:25 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Nov 2023 16:26:44 +0000 (17:26 +0100)
commit 42cd402b8fd4672b692400fe5f9eecd55d2794ac upstream.

The driver_override field from platform driver should not be initialized
from static memory (string literal) because the core later kfree() it,
for example when driver_override is set via sysfs.

Use dedicated helper to set driver_override properly.

Fixes: 950a7388f02b ("rpmsg: Turn name service into a stand alone driver")
Fixes: c0cdc19f84a4 ("rpmsg: Driver for user space endpoint interface")
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220419113435.246203-13-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/rpmsg/rpmsg_internal.h
include/linux/rpmsg.h

index a76c344253bf58d2f3c9c5e99277ef55e3f1f4f3..5f4f3691bbf1e6ae6653e0d825a33a2981591371 100644 (file)
@@ -90,10 +90,19 @@ int rpmsg_release_channel(struct rpmsg_device *rpdev,
  */
 static inline int rpmsg_chrdev_register_device(struct rpmsg_device *rpdev)
 {
+       int ret;
+
        strcpy(rpdev->id.name, "rpmsg_chrdev");
-       rpdev->driver_override = "rpmsg_chrdev";
+       ret = driver_set_override(&rpdev->dev, &rpdev->driver_override,
+                                 rpdev->id.name, strlen(rpdev->id.name));
+       if (ret)
+               return ret;
+
+       ret = rpmsg_register_device(rpdev);
+       if (ret)
+               kfree(rpdev->driver_override);
 
-       return rpmsg_register_device(rpdev);
+       return ret;
 }
 
 #endif
index a8dcf8a9ae885a5ff2056e6e53fa27d841ab7d2f..1b7294cefb8078d65861616ebbb78c4caee7a01d 100644 (file)
@@ -41,7 +41,9 @@ struct rpmsg_channel_info {
  * rpmsg_device - device that belong to the rpmsg bus
  * @dev: the device struct
  * @id: device id (used to match between rpmsg drivers and devices)
- * @driver_override: driver name to force a match
+ * @driver_override: driver name to force a match; do not set directly,
+ *                   because core frees it; use driver_set_override() to
+ *                   set or clear it.
  * @src: local address
  * @dst: destination address
  * @ept: the rpmsg endpoint of this channel
@@ -51,7 +53,7 @@ struct rpmsg_channel_info {
 struct rpmsg_device {
        struct device dev;
        struct rpmsg_device_id id;
-       char *driver_override;
+       const char *driver_override;
        u32 src;
        u32 dst;
        struct rpmsg_endpoint *ept;