aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Walpen <dev@submerge.ch>2024-02-14 13:50:44 +0000
committerOlivier Certner <olce@FreeBSD.org>2024-02-20 08:27:08 +0000
commit0f0bf1e880c6854859a6e8c2ad97b46a688ee025 (patch)
treee57ed791c478e3e3d20964afcfaa964ad875d2be
parenta6d066d0120f0b83efca4e618050557a91259a30 (diff)
downloadsrc-0f0bf1e880c6854859a6e8c2ad97b46a688ee025.tar.gz
src-0f0bf1e880c6854859a6e8c2ad97b46a688ee025.zip
sched_setscheduler(2): Change realtime privilege check
Check for privilege PRIV_SCHED_SETPOLICY instead of PRIV_SCHED_SET, to at least make it coherent with what is done at thread creation when a realtime policy is requested, and have users authorized by mac_priority(4) pass it. This change is good enough in practice since it only allows 'root' (as before) and mac_priority(4)'s authorized users in (the point of this change), without other side effects. More changes in this area, to generally ensure that all privilege checks are consistent, are going to come as olce's priority revamp project lands. (olce: Expanded the explanations.) PR: 276962 Reported by: jbeich Reviewed by: olce Approved by: emaste (mentor) MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D43835 (cherry picked from commit 2198221bd9df0ceb69945120bc477309a5729241) Approved by: markj (mentor)
-rw-r--r--sys/kern/p1003_1b.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/p1003_1b.c b/sys/kern/p1003_1b.c
index 21c9e3a27039..6259f7092487 100644
--- a/sys/kern/p1003_1b.c
+++ b/sys/kern/p1003_1b.c
@@ -233,8 +233,8 @@ kern_sched_setscheduler(struct thread *td, struct thread *targettd,
targetp = targettd->td_proc;
PROC_LOCK_ASSERT(targetp, MA_OWNED);
- /* Don't allow non root user to set a scheduler policy. */
- error = priv_check(td, PRIV_SCHED_SET);
+ /* Only privileged users are allowed to set a scheduler policy. */
+ error = priv_check(td, PRIV_SCHED_SETPOLICY);
if (error)
return (error);