]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
firmware: arm_scmi: Fix double free in OPTEE transport
authorCristian Marussi <cristian.marussi@arm.com>
Mon, 12 Aug 2024 17:33:32 +0000 (18:33 +0100)
committerSudeep Holla <sudeep.holla@arm.com>
Tue, 13 Aug 2024 11:15:12 +0000 (12:15 +0100)
Channels can be shared between protocols, avoid freeing the same channel
descriptors twice when unloading the stack.

Fixes: 5f90f189a052 ("firmware: arm_scmi: Add optee transport")
Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
Tested-by: Peng Fan <peng.fan@nxp.com> #i.MX95 19x19 EVK
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Message-Id: <20240812173340.3912830-2-cristian.marussi@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/firmware/arm_scmi/optee.c

index 4e7944b91e3857a582b8d2f5cd40c29be31a7d37..0c8908d3b1d6787a26bc557c4ad2e55ce930df25 100644 (file)
@@ -473,6 +473,13 @@ static int scmi_optee_chan_free(int id, void *p, void *data)
        struct scmi_chan_info *cinfo = p;
        struct scmi_optee_channel *channel = cinfo->transport_info;
 
+       /*
+        * Different protocols might share the same chan info, so a previous
+        * call might have already freed the structure.
+        */
+       if (!channel)
+               return 0;
+
        mutex_lock(&scmi_optee_private->mu);
        list_del(&channel->link);
        mutex_unlock(&scmi_optee_private->mu);