git: a11c4f036c11 - stable/14 - linux_prlimit(): block execve for the target
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Jun 2026 00:30:13 UTC
The branch stable/14 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=a11c4f036c1136ba90fbfda5d2025d18116562d8
commit a11c4f036c1136ba90fbfda5d2025d18116562d8
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2026-06-07 19:21:40 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2026-06-28 00:29:02 +0000
linux_prlimit(): block execve for the target
(cherry picked from commit e41c28e67fac9cd22a85b160c5c9d0477ed03600)
---
sys/compat/linux/linux_misc.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index 00ab48e8781b..008f695de36b 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -2007,6 +2007,7 @@ linux_prlimit64(struct thread *td, struct linux_prlimit64_args *args)
u_int which;
int flags;
int error;
+ bool exec_blocked;
if (args->new == NULL && args->old != NULL) {
if (linux_get_dummy_limit(args->resource, &rlim)) {
@@ -2034,6 +2035,7 @@ linux_prlimit64(struct thread *td, struct linux_prlimit64_args *args)
return (error);
}
+ exec_blocked = false;
flags = PGET_HOLD | PGET_NOTWEXIT;
if (args->new != NULL)
flags |= PGET_CANDEBUG;
@@ -2046,6 +2048,14 @@ linux_prlimit64(struct thread *td, struct linux_prlimit64_args *args)
error = pget(args->pid, flags, &p);
if (error != 0)
return (error);
+ exec_blocked = true;
+ PROC_LOCK(p);
+ execve_block_wait(td, p);
+ error = args->new != NULL ? p_candebug(td, p) :
+ p_cansee(td, p);
+ PROC_UNLOCK(p);
+ if (error != 0)
+ goto out;
}
if (args->old != NULL) {
PROC_LOCK(p);
@@ -2068,6 +2078,11 @@ linux_prlimit64(struct thread *td, struct linux_prlimit64_args *args)
error = kern_proc_setrlimit(td, p, which, &nrlim);
out:
+ if (exec_blocked) {
+ PROC_LOCK(p);
+ execve_unblock(td, p);
+ PROC_UNLOCK(p);
+ }
PRELE(p);
return (error);
}