* [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
* Re: [PATCH] ipc/sem: check nsops overflow in do_semtimedop()
2026-06-29 6:57 [PATCH] ipc/sem: check nsops overflow in do_semtimedop() Yi Xie
@ 2026-06-29 10:16 ` Lorenzo Stoakes
0 siblings, 0 replies; 2+ messages in thread
From: Lorenzo Stoakes @ 2026-06-29 10:16 UTC (permalink / raw)
To: Yi Xie; +Cc: brauner, linux-kernel
On Mon, Jun 29, 2026 at 02:57:05PM +0800, Yi Xie wrote:
> 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.
This is just incorrect, becasue for copy_from_user() to happen kvmalloc_objs()
would be called -> __alloc_objs() -> size_mul() (saturates) -> -ENOMEM.
>
> 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;
Maybe just len or size?
> 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;
struct sembuf is 6 bytes is size, so you'd need some truly enormous
ns->sc_semopm (defaults to SEMOPM == 500) and nsops to get an overflow here, and
it'd only be the case on 32-bit systems also.
But in any case as per above,
kvmalloc_objs() -> __alloc_objs() -> size_mul() (saturates) -> -ENOMEM.
So this check is redundant.
>
> 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
>
Thanks, Lorenzo
^ permalink raw reply [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