public inbox for op-tee@lists.trustedfirmware.org
 help / color / mirror / Atom feed
* [PATCH] tee: fix tee_ioctl_object_invoke_arg padding
@ 2025-12-04 10:17 Arnd Bergmann via OP-TEE
  2025-12-04 13:27 ` Jens Wiklander
  0 siblings, 1 reply; 12+ messages in thread
From: Arnd Bergmann via OP-TEE @ 2025-12-04 10:17 UTC (permalink / raw)
  To: Jens Wiklander, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	Amirreza Zarrabi, Sumit Garg
  Cc: Arnd Bergmann, Sumit Garg, Alexandre Ghiti, Etienne Carriere,
	Randy Dunlap, op-tee, linux-kernel, linux-riscv

From: Arnd Bergmann <arnd@arndb.de>

The tee_ioctl_object_invoke_arg structure has padding on some
architectures but not on x86-32 and a few others:

include/linux/tee.h:474:32: error: padding struct to align 'params' [-Werror=padded]

I expect that all current users of this are on architectures that do
have implicit padding here (arm64, arm, x86, riscv), so make the padding
explicit in order to avoid surprises if this later gets used elsewhere.

Fixes: d5b8b0fa1775 ("tee: add TEE_IOCTL_PARAM_ATTR_TYPE_OBJREF")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
The new interface showed up in 6.18, but I only came across this after
that was released. Changing it now is technically an ABI change on
architectures with unusual padding rules, so please consider carefully
whether we want to do it this way or not.

Working around the ABI differences without an ABI change is possible,
but adds a lot of complexity for compat handling.
---
 include/uapi/linux/tee.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/uapi/linux/tee.h b/include/uapi/linux/tee.h
index cab5cadca8ef..5203977ed35d 100644
--- a/include/uapi/linux/tee.h
+++ b/include/uapi/linux/tee.h
@@ -470,6 +470,7 @@ struct tee_ioctl_object_invoke_arg {
 	__u32 op;
 	__u32 ret;
 	__u32 num_params;
+	__u32 :32;
 	/* num_params tells the actual number of element in params */
 	struct tee_ioctl_param params[];
 };
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2025-12-16 13:18 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-04 10:17 [PATCH] tee: fix tee_ioctl_object_invoke_arg padding Arnd Bergmann via OP-TEE
2025-12-04 13:27 ` Jens Wiklander
2025-12-05 13:45   ` Harshal Dev via OP-TEE
2025-12-05 13:56     ` Arnd Bergmann
2025-12-05 14:11       ` Harshal Dev via OP-TEE
2025-12-08  5:24   ` Amirreza Zarrabi via OP-TEE
2025-12-08 12:20     ` Sumit Garg via OP-TEE
2025-12-08 12:54       ` Harshal Dev via OP-TEE
2025-12-09  3:54         ` Amirreza Zarrabi via OP-TEE
2025-12-16  7:48           ` Jens Wiklander
2025-12-16 10:55             ` Harshal Dev via OP-TEE
2025-12-16 13:17               ` Jens Wiklander

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox