From: Oleksij Rempel <o.rempel@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Oleksij Rempel <o.rempel@pengutronix.de>
Subject: [PATCH v1 3/4] arm: boards: protonic-stm32mp: fix stack corruption by passing correct ctx to stm32_bsec_optee_ta_close()
Date: Mon, 31 Mar 2025 14:30:31 +0200 [thread overview]
Message-ID: <20250331123032.626219-3-o.rempel@pengutronix.de> (raw)
In-Reply-To: <20250331123032.626219-1-o.rempel@pengutronix.de>
The `stm32_bsec_optee_ta_open()` function initializes a `struct
tee_context *ctx` through a pointer-to-pointer. However, its counterpart
`stm32_bsec_optee_ta_close()` expects the context pointer directly - not
its address.
Passing `&ctx` (i.e., a `struct tee_context **`) caused incorrect access,
leading to stack corruption. This was detected by the refcounter infrastructure.
Fix this by passing `ctx` directly to `stm32_bsec_optee_ta_close()`.
This bug affected both STM32MP1 and STM32MP13 board implementations.
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
arch/arm/boards/protonic-stm32mp1/board.c | 4 ++--
arch/arm/boards/protonic-stm32mp13/board.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/boards/protonic-stm32mp1/board.c b/arch/arm/boards/protonic-stm32mp1/board.c
index 86cda1676b48..4c8ad9e53388 100644
--- a/arch/arm/boards/protonic-stm32mp1/board.c
+++ b/arch/arm/boards/protonic-stm32mp1/board.c
@@ -121,12 +121,12 @@ static int prt_stm32_read_serial(struct device *dev)
serial[PRT_STM32_SERIAL_LEN] = 0;
- stm32_bsec_optee_ta_close(&ctx);
+ stm32_bsec_optee_ta_close(ctx);
return prt_stm32_set_serial(dev, serial);
exit_pta_read:
- stm32_bsec_optee_ta_close(&ctx);
+ stm32_bsec_optee_ta_close(ctx);
dev_err(dev, "Failed to read serial: %pe\n", ERR_PTR(ret));
return ret;
}
diff --git a/arch/arm/boards/protonic-stm32mp13/board.c b/arch/arm/boards/protonic-stm32mp13/board.c
index d48a6dbf8e44..4268db2b384c 100644
--- a/arch/arm/boards/protonic-stm32mp13/board.c
+++ b/arch/arm/boards/protonic-stm32mp13/board.c
@@ -104,12 +104,12 @@ static int prt_stm32_read_serial(struct device *dev)
serial[PRT_STM32_SERIAL_LEN] = 0;
- stm32_bsec_optee_ta_close(&ctx);
+ stm32_bsec_optee_ta_close(ctx);
return prt_stm32_set_serial(dev, serial);
exit_pta_read:
- stm32_bsec_optee_ta_close(&ctx);
+ stm32_bsec_optee_ta_close(ctx);
dev_err(dev, "Failed to read serial: %pe\n", ERR_PTR(ret));
return ret;
}
--
2.39.5
next prev parent reply other threads:[~2025-03-31 12:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-31 12:30 [PATCH v1 1/4] arm: boards: protonic-stm32mp13: Add support for MECT1S board Oleksij Rempel
2025-03-31 12:30 ` [PATCH v1 2/4] arm: boards: protonic-stm32mp13: Use unique board driver name Oleksij Rempel
2025-03-31 12:30 ` Oleksij Rempel [this message]
2025-03-31 12:30 ` [PATCH v1 4/4] arm: boards: protonic-stm32mp: free shift register GPIOs after use Oleksij Rempel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250331123032.626219-3-o.rempel@pengutronix.de \
--to=o.rempel@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox