The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] ipc/sem: check nsops overflow in do_semtimedop()
@ 2026-06-29  6:57 Yi Xie
  2026-06-29 10:16 ` Lorenzo Stoakes
  0 siblings, 1 reply; 2+ messages in thread
From: Yi Xie @ 2026-06-29  6:57 UTC (permalink / raw)
  To: brauner, ljs; +Cc: linux-kernel, Yi Xie

do_semtimedop() caps nsops against sc_semopm, but still multiplies it by
sizeof(struct sembuf) when copying from userspace.  That product can
overflow, so copy_from_user() may not match what kvmalloc_objs() allocated.

Use check_mul_overflow() and return -E2BIG on overflow.

Signed-off-by: Yi Xie <xieyi@kylinos.cn>
---
 ipc/sem.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ipc/sem.c b/ipc/sem.c
index 5ec41de7e85b..791a0505923b 100644
--- a/ipc/sem.c
+++ b/ipc/sem.c
@@ -86,6 +86,7 @@
 #include <linux/ipc_namespace.h>
 #include <linux/sched/wake_q.h>
 #include <linux/nospec.h>
+#include <linux/overflow.h>
 #include <linux/rhashtable.h>
 
 #include <linux/uaccess.h>
@@ -2225,6 +2226,7 @@ static long do_semtimedop(int semid, struct sembuf __user *tsops,
 	struct sembuf fast_sops[SEMOPM_FAST];
 	struct sembuf *sops = fast_sops;
 	struct ipc_namespace *ns;
+	size_t sops_bytes;
 	int ret;
 
 	ns = current->nsproxy->ipc_ns;
@@ -2232,6 +2234,8 @@ static long do_semtimedop(int semid, struct sembuf __user *tsops,
 		return -E2BIG;
 	if (nsops < 1)
 		return -EINVAL;
+	if (check_mul_overflow(nsops, sizeof(*sops), &sops_bytes))
+		return -E2BIG;
 
 	if (nsops > SEMOPM_FAST) {
 		sops = kvmalloc_objs(*sops, nsops);
@@ -2239,7 +2243,7 @@ static long do_semtimedop(int semid, struct sembuf __user *tsops,
 			return -ENOMEM;
 	}
 
-	if (copy_from_user(sops, tsops, nsops * sizeof(*tsops))) {
+	if (copy_from_user(sops, tsops, sops_bytes)) {
 		ret =  -EFAULT;
 		goto out_free;
 	}
-- 
2.25.1


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

end of thread, other threads:[~2026-06-29 10:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-29  6:57 [PATCH] ipc/sem: check nsops overflow in do_semtimedop() Yi Xie
2026-06-29 10:16 ` Lorenzo Stoakes

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