1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * kernel/sched/syscalls.c
4 *
5 * Core kernel scheduler syscalls related code
6 *
7 * Copyright (C) 1991-2002 Linus Torvalds
8 * Copyright (C) 1998-2024 Ingo Molnar, Red Hat
9 */
10 #include <linux/sched.h>
11 #include <linux/cpuset.h>
12 #include <linux/sched/debug.h>
13
14 #include <uapi/linux/sched/types.h>
15
16 #include "sched.h"
17 #include "autogroup.h"
18
__normal_prio(int policy,int rt_prio,int nice)19 static inline int __normal_prio(int policy, int rt_prio, int nice)
20 {
21 int prio;
22
23 if (dl_policy(policy))
24 prio = MAX_DL_PRIO - 1;
25 else if (rt_policy(policy))
26 prio = MAX_RT_PRIO - 1 - rt_prio;
27 else
28 prio = NICE_TO_PRIO(nice);
29
30 return prio;
31 }
32
33 /*
34 * Calculate the expected normal priority: i.e. priority
35 * without taking RT-inheritance into account. Might be
36 * boosted by interactivity modifiers. Changes upon fork,
37 * setprio syscalls, and whenever the interactivity
38 * estimator recalculates.
39 */
normal_prio(struct task_struct * p)40 static inline int normal_prio(struct task_struct *p)
41 {
42 return __normal_prio(p->policy, p->rt_priority, PRIO_TO_NICE(p->static_prio));
43 }
44
45 /*
46 * Calculate the current priority, i.e. the priority
47 * taken into account by the scheduler. This value might
48 * be boosted by RT tasks, or might be boosted by
49 * interactivity modifiers. Will be RT if the task got
50 * RT-boosted. If not then it returns p->normal_prio.
51 */
effective_prio(struct task_struct * p)52 static int effective_prio(struct task_struct *p)
53 {
54 p->normal_prio = normal_prio(p);
55 /*
56 * If we are RT tasks or we were boosted to RT priority,
57 * keep the priority unchanged. Otherwise, update priority
58 * to the normal priority:
59 */
60 if (!rt_or_dl_prio(p->prio))
61 return p->normal_prio;
62 return p->prio;
63 }
64
set_user_nice(struct task_struct * p,long nice)65 void set_user_nice(struct task_struct *p, long nice)
66 {
67 int old_prio;
68
69 if (task_nice(p) == nice || nice < MIN_NICE || nice > MAX_NICE)
70 return;
71 /*
72 * We have to be careful, if called from sys_setpriority(),
73 * the task might be in the middle of scheduling on another CPU.
74 */
75 guard(task_rq_lock)(p);
76
77 /*
78 * The RT priorities are set via sched_setscheduler(), but we still
79 * allow the 'normal' nice value to be set - but as expected
80 * it won't have any effect on scheduling until the task is
81 * SCHED_DEADLINE, SCHED_FIFO or SCHED_RR:
82 */
83 if (task_has_dl_policy(p) || task_has_rt_policy(p)) {
84 p->static_prio = NICE_TO_PRIO(nice);
85 return;
86 }
87
88 scoped_guard (sched_change, p, DEQUEUE_SAVE) {
89 p->static_prio = NICE_TO_PRIO(nice);
90 set_load_weight(p, true);
91 old_prio = p->prio;
92 p->prio = effective_prio(p);
93 }
94 }
95 EXPORT_SYMBOL(set_user_nice);
96
97 /*
98 * is_nice_reduction - check if nice value is an actual reduction
99 *
100 * Similar to can_nice() but does not perform a capability check.
101 *
102 * @p: task
103 * @nice: nice value
104 */
is_nice_reduction(const struct task_struct * p,const int nice)105 static bool is_nice_reduction(const struct task_struct *p, const int nice)
106 {
107 /* Convert nice value [19,-20] to rlimit style value [1,40]: */
108 int nice_rlim = nice_to_rlimit(nice);
109
110 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE));
111 }
112
113 /*
114 * can_nice - check if a task can reduce its nice value
115 * @p: task
116 * @nice: nice value
117 */
can_nice(const struct task_struct * p,const int nice)118 int can_nice(const struct task_struct *p, const int nice)
119 {
120 return is_nice_reduction(p, nice) || capable(CAP_SYS_NICE);
121 }
122
123 #ifdef __ARCH_WANT_SYS_NICE
124
125 /*
126 * sys_nice - change the priority of the current process.
127 * @increment: priority increment
128 *
129 * sys_setpriority is a more generic, but much slower function that
130 * does similar things.
131 */
SYSCALL_DEFINE1(nice,int,increment)132 SYSCALL_DEFINE1(nice, int, increment)
133 {
134 long nice, retval;
135
136 /*
137 * Setpriority might change our priority at the same moment.
138 * We don't have to worry. Conceptually one call occurs first
139 * and we have a single winner.
140 */
141 increment = clamp(increment, -NICE_WIDTH, NICE_WIDTH);
142 nice = task_nice(current) + increment;
143
144 nice = clamp_val(nice, MIN_NICE, MAX_NICE);
145 if (increment < 0 && !can_nice(current, nice))
146 return -EPERM;
147
148 retval = security_task_setnice(current, nice);
149 if (retval)
150 return retval;
151
152 set_user_nice(current, nice);
153 return 0;
154 }
155
156 #endif /* __ARCH_WANT_SYS_NICE */
157
158 /**
159 * task_prio - return the priority value of a given task.
160 * @p: the task in question.
161 *
162 * Return: The priority value as seen by users in /proc.
163 *
164 * sched policy return value kernel prio user prio/nice
165 *
166 * normal, batch, idle [0 ... 39] [100 ... 139] 0/[-20 ... 19]
167 * fifo, rr [-2 ... -100] [98 ... 0] [1 ... 99]
168 * deadline -101 -1 0
169 */
task_prio(const struct task_struct * p)170 int task_prio(const struct task_struct *p)
171 {
172 return p->prio - MAX_RT_PRIO;
173 }
174
175 /**
176 * idle_cpu - is a given CPU idle currently?
177 * @cpu: the processor in question.
178 *
179 * Return: 1 if the CPU is currently idle. 0 otherwise.
180 */
idle_cpu(int cpu)181 int idle_cpu(int cpu)
182 {
183 return idle_rq(cpu_rq(cpu));
184 }
185
186 /**
187 * idle_task - return the idle task for a given CPU.
188 * @cpu: the processor in question.
189 *
190 * Return: The idle task for the CPU @cpu.
191 */
idle_task(int cpu)192 struct task_struct *idle_task(int cpu)
193 {
194 return cpu_rq(cpu)->idle;
195 }
196
197 #ifdef CONFIG_SCHED_CORE
sched_core_idle_cpu(int cpu)198 int sched_core_idle_cpu(int cpu)
199 {
200 struct rq *rq = cpu_rq(cpu);
201
202 if (sched_core_enabled(rq) && rq->curr == rq->idle)
203 return 1;
204
205 return idle_cpu(cpu);
206 }
207 #endif /* CONFIG_SCHED_CORE */
208
209 /**
210 * find_process_by_pid - find a process with a matching PID value.
211 * @pid: the pid in question.
212 *
213 * The task of @pid, if found. %NULL otherwise.
214 */
find_process_by_pid(pid_t pid)215 static struct task_struct *find_process_by_pid(pid_t pid)
216 {
217 return pid ? find_task_by_vpid(pid) : current;
218 }
219
find_get_task(pid_t pid)220 static struct task_struct *find_get_task(pid_t pid)
221 {
222 struct task_struct *p;
223 guard(rcu)();
224
225 p = find_process_by_pid(pid);
226 if (likely(p))
227 get_task_struct(p);
228
229 return p;
230 }
231
DEFINE_CLASS(find_get_task,struct task_struct *,if (_T)put_task_struct (_T),find_get_task (pid),pid_t pid)232 DEFINE_CLASS(find_get_task, struct task_struct *, if (_T) put_task_struct(_T),
233 find_get_task(pid), pid_t pid)
234
235 /*
236 * sched_setparam() passes in -1 for its policy, to let the functions
237 * it calls know not to change it.
238 */
239 #define SETPARAM_POLICY -1
240
241 static void __setscheduler_params(struct task_struct *p,
242 const struct sched_attr *attr)
243 {
244 int policy = attr->sched_policy;
245
246 if (policy == SETPARAM_POLICY)
247 policy = p->policy;
248
249 p->policy = policy;
250
251 if (dl_policy(policy))
252 __setparam_dl(p, attr);
253 else if (fair_policy(policy))
254 __setparam_fair(p, attr);
255
256 /* rt-policy tasks do not have a timerslack */
257 if (rt_or_dl_task_policy(p)) {
258 p->timer_slack_ns = 0;
259 } else if (p->timer_slack_ns == 0) {
260 /* when switching back to non-rt policy, restore timerslack */
261 p->timer_slack_ns = p->default_timer_slack_ns;
262 }
263
264 /*
265 * __sched_setscheduler() ensures attr->sched_priority == 0 when
266 * !rt_policy. Always setting this ensures that things like
267 * getparam()/getattr() don't report silly values for !rt tasks.
268 */
269 p->rt_priority = attr->sched_priority;
270 p->normal_prio = normal_prio(p);
271 set_load_weight(p, true);
272 }
273
274 /*
275 * Check the target process has a UID that matches the current process's:
276 */
check_same_owner(struct task_struct * p)277 static bool check_same_owner(struct task_struct *p)
278 {
279 const struct cred *cred = current_cred(), *pcred;
280 guard(rcu)();
281
282 pcred = __task_cred(p);
283 return (uid_eq(cred->euid, pcred->euid) ||
284 uid_eq(cred->euid, pcred->uid));
285 }
286
287 #ifdef CONFIG_RT_MUTEXES
__setscheduler_dl_pi(int newprio,int policy,struct task_struct * p,struct sched_change_ctx * scope)288 static inline void __setscheduler_dl_pi(int newprio, int policy,
289 struct task_struct *p,
290 struct sched_change_ctx *scope)
291 {
292 /*
293 * In case a DEADLINE task (either proper or boosted) gets
294 * setscheduled to a lower priority class, check if it neeeds to
295 * inherit parameters from a potential pi_task. In that case make
296 * sure replenishment happens with the next enqueue.
297 */
298
299 if (dl_prio(newprio) && !dl_policy(policy)) {
300 struct task_struct *pi_task = rt_mutex_get_top_task(p);
301
302 if (pi_task) {
303 p->dl.pi_se = pi_task->dl.pi_se;
304 scope->flags |= ENQUEUE_REPLENISH;
305 }
306 }
307 }
308 #else /* !CONFIG_RT_MUTEXES */
__setscheduler_dl_pi(int newprio,int policy,struct task_struct * p,struct sched_change_ctx * scope)309 static inline void __setscheduler_dl_pi(int newprio, int policy,
310 struct task_struct *p,
311 struct sched_change_ctx *scope)
312 {
313 }
314 #endif /* !CONFIG_RT_MUTEXES */
315
316 #ifdef CONFIG_UCLAMP_TASK
317
uclamp_validate(struct task_struct * p,const struct sched_attr * attr)318 static int uclamp_validate(struct task_struct *p,
319 const struct sched_attr *attr)
320 {
321 int util_min = p->uclamp_req[UCLAMP_MIN].value;
322 int util_max = p->uclamp_req[UCLAMP_MAX].value;
323
324 if (attr->sched_flags & SCHED_FLAG_UTIL_CLAMP_MIN) {
325 util_min = attr->sched_util_min;
326
327 if (util_min + 1 > SCHED_CAPACITY_SCALE + 1)
328 return -EINVAL;
329 }
330
331 if (attr->sched_flags & SCHED_FLAG_UTIL_CLAMP_MAX) {
332 util_max = attr->sched_util_max;
333
334 if (util_max + 1 > SCHED_CAPACITY_SCALE + 1)
335 return -EINVAL;
336 }
337
338 if (util_min != -1 && util_max != -1 && util_min > util_max)
339 return -EINVAL;
340
341 /*
342 * We have valid uclamp attributes; make sure uclamp is enabled.
343 *
344 * We need to do that here, because enabling static branches is a
345 * blocking operation which obviously cannot be done while holding
346 * scheduler locks.
347 */
348 sched_uclamp_enable();
349
350 return 0;
351 }
352
uclamp_reset(const struct sched_attr * attr,enum uclamp_id clamp_id,struct uclamp_se * uc_se)353 static bool uclamp_reset(const struct sched_attr *attr,
354 enum uclamp_id clamp_id,
355 struct uclamp_se *uc_se)
356 {
357 /* Reset on sched class change for a non user-defined clamp value. */
358 if (likely(!(attr->sched_flags & SCHED_FLAG_UTIL_CLAMP)) &&
359 !uc_se->user_defined)
360 return true;
361
362 /* Reset on sched_util_{min,max} == -1. */
363 if (clamp_id == UCLAMP_MIN &&
364 attr->sched_flags & SCHED_FLAG_UTIL_CLAMP_MIN &&
365 attr->sched_util_min == -1) {
366 return true;
367 }
368
369 if (clamp_id == UCLAMP_MAX &&
370 attr->sched_flags & SCHED_FLAG_UTIL_CLAMP_MAX &&
371 attr->sched_util_max == -1) {
372 return true;
373 }
374
375 return false;
376 }
377
__setscheduler_uclamp(struct task_struct * p,const struct sched_attr * attr)378 static void __setscheduler_uclamp(struct task_struct *p,
379 const struct sched_attr *attr)
380 {
381 enum uclamp_id clamp_id;
382
383 for_each_clamp_id(clamp_id) {
384 struct uclamp_se *uc_se = &p->uclamp_req[clamp_id];
385 unsigned int value;
386
387 if (!uclamp_reset(attr, clamp_id, uc_se))
388 continue;
389
390 /*
391 * RT by default have a 100% boost value that could be modified
392 * at runtime.
393 */
394 if (unlikely(rt_task(p) && clamp_id == UCLAMP_MIN))
395 value = sysctl_sched_uclamp_util_min_rt_default;
396 else
397 value = uclamp_none(clamp_id);
398
399 uclamp_se_set(uc_se, value, false);
400
401 }
402
403 if (likely(!(attr->sched_flags & SCHED_FLAG_UTIL_CLAMP)))
404 return;
405
406 if (attr->sched_flags & SCHED_FLAG_UTIL_CLAMP_MIN &&
407 attr->sched_util_min != -1) {
408 uclamp_se_set(&p->uclamp_req[UCLAMP_MIN],
409 attr->sched_util_min, true);
410 }
411
412 if (attr->sched_flags & SCHED_FLAG_UTIL_CLAMP_MAX &&
413 attr->sched_util_max != -1) {
414 uclamp_se_set(&p->uclamp_req[UCLAMP_MAX],
415 attr->sched_util_max, true);
416 }
417 }
418
419 #else /* !CONFIG_UCLAMP_TASK: */
420
uclamp_validate(struct task_struct * p,const struct sched_attr * attr)421 static inline int uclamp_validate(struct task_struct *p,
422 const struct sched_attr *attr)
423 {
424 return -EOPNOTSUPP;
425 }
__setscheduler_uclamp(struct task_struct * p,const struct sched_attr * attr)426 static void __setscheduler_uclamp(struct task_struct *p,
427 const struct sched_attr *attr) { }
428 #endif /* !CONFIG_UCLAMP_TASK */
429
430 /*
431 * Allow unprivileged RT tasks to decrease priority.
432 * Only issue a capable test if needed and only once to avoid an audit
433 * event on permitted non-privileged operations:
434 */
user_check_sched_setscheduler(struct task_struct * p,const struct sched_attr * attr,int policy,int reset_on_fork)435 static int user_check_sched_setscheduler(struct task_struct *p,
436 const struct sched_attr *attr,
437 int policy, int reset_on_fork)
438 {
439 if (fair_policy(policy)) {
440 if (attr->sched_nice < task_nice(p) &&
441 !is_nice_reduction(p, attr->sched_nice))
442 goto req_priv;
443 }
444
445 if (rt_policy(policy)) {
446 unsigned long rlim_rtprio = task_rlimit(p, RLIMIT_RTPRIO);
447
448 /* Can't set/change the rt policy: */
449 if (policy != p->policy && !rlim_rtprio)
450 goto req_priv;
451
452 /* Can't increase priority: */
453 if (attr->sched_priority > p->rt_priority &&
454 attr->sched_priority > rlim_rtprio)
455 goto req_priv;
456 }
457
458 /*
459 * Can't set/change SCHED_DEADLINE policy at all for now
460 * (safest behavior); in the future we would like to allow
461 * unprivileged DL tasks to increase their relative deadline
462 * or reduce their runtime (both ways reducing utilization)
463 */
464 if (dl_policy(policy))
465 goto req_priv;
466
467 /*
468 * Treat SCHED_IDLE as nice 20. Only allow a switch to
469 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
470 */
471 if (task_has_idle_policy(p) && !idle_policy(policy)) {
472 if (!is_nice_reduction(p, task_nice(p)))
473 goto req_priv;
474 }
475
476 /* Can't change other user's priorities: */
477 if (!check_same_owner(p))
478 goto req_priv;
479
480 /* Normal users shall not reset the sched_reset_on_fork flag: */
481 if (p->sched_reset_on_fork && !reset_on_fork)
482 goto req_priv;
483
484 return 0;
485
486 req_priv:
487 if (!capable(CAP_SYS_NICE))
488 return -EPERM;
489
490 return 0;
491 }
492
__sched_setscheduler(struct task_struct * p,const struct sched_attr * attr,bool user,bool pi)493 int __sched_setscheduler(struct task_struct *p,
494 const struct sched_attr *attr,
495 bool user, bool pi)
496 {
497 int oldpolicy = -1, policy = attr->sched_policy;
498 int retval, oldprio, newprio;
499 const struct sched_class *prev_class, *next_class;
500 struct balance_callback *head;
501 struct rq_flags rf;
502 int reset_on_fork;
503 int queue_flags = DEQUEUE_SAVE | DEQUEUE_MOVE | DEQUEUE_NOCLOCK;
504 struct rq *rq;
505 bool cpuset_locked = false;
506
507 /* The pi code expects interrupts enabled */
508 BUG_ON(pi && in_interrupt());
509 recheck:
510 /* Double check policy once rq lock held: */
511 if (policy < 0) {
512 reset_on_fork = p->sched_reset_on_fork;
513 policy = oldpolicy = p->policy;
514 } else {
515 reset_on_fork = !!(attr->sched_flags & SCHED_FLAG_RESET_ON_FORK);
516
517 if (!valid_policy(policy))
518 return -EINVAL;
519 }
520
521 if (attr->sched_flags & ~(SCHED_FLAG_ALL | SCHED_FLAG_SUGOV))
522 return -EINVAL;
523
524 /*
525 * Valid priorities for SCHED_FIFO and SCHED_RR are
526 * 1..MAX_RT_PRIO-1, valid priority for SCHED_NORMAL,
527 * SCHED_BATCH and SCHED_IDLE is 0.
528 */
529 if (attr->sched_priority > MAX_RT_PRIO-1)
530 return -EINVAL;
531 if ((dl_policy(policy) && !__checkparam_dl(attr)) ||
532 (rt_policy(policy) != (attr->sched_priority != 0)))
533 return -EINVAL;
534
535 if (user) {
536 retval = user_check_sched_setscheduler(p, attr, policy, reset_on_fork);
537 if (retval)
538 return retval;
539
540 if (attr->sched_flags & SCHED_FLAG_SUGOV)
541 return -EINVAL;
542
543 retval = security_task_setscheduler(p);
544 if (retval)
545 return retval;
546 }
547
548 /* Update task specific "requested" clamps */
549 if (attr->sched_flags & SCHED_FLAG_UTIL_CLAMP) {
550 retval = uclamp_validate(p, attr);
551 if (retval)
552 return retval;
553 }
554
555 /*
556 * SCHED_DEADLINE bandwidth accounting relies on stable cpusets
557 * information.
558 */
559 if (dl_policy(policy) || dl_policy(p->policy)) {
560 cpuset_locked = true;
561 cpuset_lock();
562 }
563
564 /*
565 * Make sure no PI-waiters arrive (or leave) while we are
566 * changing the priority of the task:
567 *
568 * To be able to change p->policy safely, the appropriate
569 * runqueue lock must be held.
570 */
571 rq = task_rq_lock(p, &rf);
572 update_rq_clock(rq);
573
574 /*
575 * Changing the policy of the stop threads its a very bad idea:
576 */
577 if (p == rq->stop) {
578 retval = -EINVAL;
579 goto unlock;
580 }
581
582 retval = scx_check_setscheduler(p, policy);
583 if (retval)
584 goto unlock;
585
586 /*
587 * If not changing anything there's no need to proceed further,
588 * but store a possible modification of reset_on_fork.
589 */
590 if (unlikely(policy == p->policy)) {
591 if (fair_policy(policy) &&
592 (attr->sched_nice != task_nice(p) ||
593 (attr->sched_runtime != p->se.slice)))
594 goto change;
595 if (rt_policy(policy) && attr->sched_priority != p->rt_priority)
596 goto change;
597 if (dl_policy(policy) && dl_param_changed(p, attr))
598 goto change;
599 if (attr->sched_flags & SCHED_FLAG_UTIL_CLAMP)
600 goto change;
601
602 p->sched_reset_on_fork = reset_on_fork;
603 retval = 0;
604 goto unlock;
605 }
606 change:
607
608 if (user) {
609 #ifdef CONFIG_RT_GROUP_SCHED
610 /*
611 * Do not allow real-time tasks into groups that have no runtime
612 * assigned.
613 */
614 if (rt_group_sched_enabled() &&
615 rt_bandwidth_enabled() && rt_policy(policy) &&
616 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
617 !task_group_is_autogroup(task_group(p))) {
618 retval = -EPERM;
619 goto unlock;
620 }
621 #endif /* CONFIG_RT_GROUP_SCHED */
622 if (dl_bandwidth_enabled() && dl_policy(policy) &&
623 !(attr->sched_flags & SCHED_FLAG_SUGOV)) {
624 cpumask_t *span = rq->rd->span;
625
626 /*
627 * Don't allow tasks with an affinity mask smaller than
628 * the entire root_domain to become SCHED_DEADLINE. We
629 * will also fail if there's no bandwidth available.
630 */
631 if (!cpumask_subset(span, p->cpus_ptr) ||
632 rq->rd->dl_bw.bw == 0) {
633 retval = -EPERM;
634 goto unlock;
635 }
636 }
637 }
638
639 /* Re-check policy now with rq lock held: */
640 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
641 policy = oldpolicy = -1;
642 task_rq_unlock(rq, p, &rf);
643 if (cpuset_locked)
644 cpuset_unlock();
645 goto recheck;
646 }
647
648 /*
649 * If setscheduling to SCHED_DEADLINE (or changing the parameters
650 * of a SCHED_DEADLINE task) we need to check if enough bandwidth
651 * is available.
652 */
653 if ((dl_policy(policy) || dl_task(p)) && sched_dl_overflow(p, policy, attr)) {
654 retval = -EBUSY;
655 goto unlock;
656 }
657
658 p->sched_reset_on_fork = reset_on_fork;
659 oldprio = p->prio;
660
661 newprio = __normal_prio(policy, attr->sched_priority, attr->sched_nice);
662 if (pi) {
663 /*
664 * Take priority boosted tasks into account. If the new
665 * effective priority is unchanged, we just store the new
666 * normal parameters and do not touch the scheduler class and
667 * the runqueue. This will be done when the task deboost
668 * itself.
669 */
670 newprio = rt_effective_prio(p, newprio);
671 if (newprio == oldprio && !dl_prio(newprio))
672 queue_flags &= ~DEQUEUE_MOVE;
673 }
674
675 prev_class = p->sched_class;
676 next_class = __setscheduler_class(policy, newprio);
677
678 if (prev_class != next_class)
679 queue_flags |= DEQUEUE_CLASS;
680
681 scoped_guard (sched_change, p, queue_flags) {
682
683 if (!(attr->sched_flags & SCHED_FLAG_KEEP_PARAMS)) {
684 __setscheduler_params(p, attr);
685 p->sched_class = next_class;
686 p->prio = newprio;
687 __setscheduler_dl_pi(newprio, policy, p, scope);
688 }
689 __setscheduler_uclamp(p, attr);
690
691 if (scope->queued) {
692 /*
693 * We enqueue to tail when the priority of a task is
694 * increased (user space view).
695 */
696 if (oldprio < p->prio)
697 scope->flags |= ENQUEUE_HEAD;
698 }
699 }
700
701 /* Avoid rq from going away on us: */
702 preempt_disable();
703 head = splice_balance_callbacks(rq);
704 task_rq_unlock(rq, p, &rf);
705
706 if (pi) {
707 if (cpuset_locked)
708 cpuset_unlock();
709 rt_mutex_adjust_pi(p);
710 }
711
712 /* Run balance callbacks after we've adjusted the PI chain: */
713 balance_callbacks(rq, head);
714 preempt_enable();
715
716 return 0;
717
718 unlock:
719 task_rq_unlock(rq, p, &rf);
720 if (cpuset_locked)
721 cpuset_unlock();
722 return retval;
723 }
724
_sched_setscheduler(struct task_struct * p,int policy,const struct sched_param * param,bool check)725 static int _sched_setscheduler(struct task_struct *p, int policy,
726 const struct sched_param *param, bool check)
727 {
728 struct sched_attr attr = {
729 .sched_policy = policy,
730 .sched_priority = param->sched_priority,
731 .sched_nice = PRIO_TO_NICE(p->static_prio),
732 };
733
734 if (p->se.custom_slice)
735 attr.sched_runtime = p->se.slice;
736
737 /* Fixup the legacy SCHED_RESET_ON_FORK hack. */
738 if ((policy != SETPARAM_POLICY) && (policy & SCHED_RESET_ON_FORK)) {
739 attr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
740 policy &= ~SCHED_RESET_ON_FORK;
741 attr.sched_policy = policy;
742 }
743
744 return __sched_setscheduler(p, &attr, check, true);
745 }
746 /**
747 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
748 * @p: the task in question.
749 * @policy: new policy.
750 * @param: structure containing the new RT priority.
751 *
752 * Use sched_set_fifo(), read its comment.
753 *
754 * Return: 0 on success. An error code otherwise.
755 *
756 * NOTE that the task may be already dead.
757 */
sched_setscheduler(struct task_struct * p,int policy,const struct sched_param * param)758 int sched_setscheduler(struct task_struct *p, int policy,
759 const struct sched_param *param)
760 {
761 return _sched_setscheduler(p, policy, param, true);
762 }
763
sched_setattr(struct task_struct * p,const struct sched_attr * attr)764 int sched_setattr(struct task_struct *p, const struct sched_attr *attr)
765 {
766 return __sched_setscheduler(p, attr, true, true);
767 }
768
sched_setattr_nocheck(struct task_struct * p,const struct sched_attr * attr)769 int sched_setattr_nocheck(struct task_struct *p, const struct sched_attr *attr)
770 {
771 return __sched_setscheduler(p, attr, false, true);
772 }
773 EXPORT_SYMBOL_GPL(sched_setattr_nocheck);
774
775 /**
776 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernel-space.
777 * @p: the task in question.
778 * @policy: new policy.
779 * @param: structure containing the new RT priority.
780 *
781 * Just like sched_setscheduler, only don't bother checking if the
782 * current context has permission. For example, this is needed in
783 * stop_machine(): we create temporary high priority worker threads,
784 * but our caller might not have that capability.
785 *
786 * Return: 0 on success. An error code otherwise.
787 */
sched_setscheduler_nocheck(struct task_struct * p,int policy,const struct sched_param * param)788 int sched_setscheduler_nocheck(struct task_struct *p, int policy,
789 const struct sched_param *param)
790 {
791 return _sched_setscheduler(p, policy, param, false);
792 }
793
794 /*
795 * SCHED_FIFO is a broken scheduler model; that is, it is fundamentally
796 * incapable of resource management, which is the one thing an OS really should
797 * be doing.
798 *
799 * This is of course the reason it is limited to privileged users only.
800 *
801 * Worse still; it is fundamentally impossible to compose static priority
802 * workloads. You cannot take two correctly working static prio workloads
803 * and smash them together and still expect them to work.
804 *
805 * For this reason 'all' FIFO tasks the kernel creates are basically at:
806 *
807 * MAX_RT_PRIO / 2
808 *
809 * The administrator _MUST_ configure the system, the kernel simply doesn't
810 * know enough information to make a sensible choice.
811 */
sched_set_fifo(struct task_struct * p)812 void sched_set_fifo(struct task_struct *p)
813 {
814 struct sched_param sp = { .sched_priority = MAX_RT_PRIO / 2 };
815 WARN_ON_ONCE(sched_setscheduler_nocheck(p, SCHED_FIFO, &sp) != 0);
816 }
817 EXPORT_SYMBOL_GPL(sched_set_fifo);
818
819 /*
820 * For when you don't much care about FIFO, but want to be above SCHED_NORMAL.
821 */
sched_set_fifo_low(struct task_struct * p)822 void sched_set_fifo_low(struct task_struct *p)
823 {
824 struct sched_param sp = { .sched_priority = 1 };
825 WARN_ON_ONCE(sched_setscheduler_nocheck(p, SCHED_FIFO, &sp) != 0);
826 }
827 EXPORT_SYMBOL_GPL(sched_set_fifo_low);
828
829 /*
830 * Used when the primary interrupt handler is forced into a thread, in addition
831 * to the (always threaded) secondary handler. The secondary handler gets a
832 * slightly lower priority so that the primary handler can preempt it, thereby
833 * emulating the behavior of a non-PREEMPT_RT system where the primary handler
834 * runs in hard interrupt context.
835 */
sched_set_fifo_secondary(struct task_struct * p)836 void sched_set_fifo_secondary(struct task_struct *p)
837 {
838 struct sched_param sp = { .sched_priority = MAX_RT_PRIO / 2 - 1 };
839 WARN_ON_ONCE(sched_setscheduler_nocheck(p, SCHED_FIFO, &sp) != 0);
840 }
841
sched_set_normal(struct task_struct * p,int nice)842 void sched_set_normal(struct task_struct *p, int nice)
843 {
844 struct sched_attr attr = {
845 .sched_policy = SCHED_NORMAL,
846 .sched_nice = nice,
847 };
848 WARN_ON_ONCE(sched_setattr_nocheck(p, &attr) != 0);
849 }
850 EXPORT_SYMBOL_GPL(sched_set_normal);
851
852 static int
do_sched_setscheduler(pid_t pid,int policy,struct sched_param __user * param)853 do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
854 {
855 struct sched_param lparam;
856
857 if (unlikely(!param || pid < 0))
858 return -EINVAL;
859 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
860 return -EFAULT;
861
862 CLASS(find_get_task, p)(pid);
863 if (!p)
864 return -ESRCH;
865
866 return sched_setscheduler(p, policy, &lparam);
867 }
868
869 /*
870 * Mimics kernel/events/core.c perf_copy_attr().
871 */
sched_copy_attr(struct sched_attr __user * uattr,struct sched_attr * attr)872 static int sched_copy_attr(struct sched_attr __user *uattr, struct sched_attr *attr)
873 {
874 u32 size;
875 int ret;
876
877 /* Zero the full structure, so that a short copy will be nice: */
878 memset(attr, 0, sizeof(*attr));
879
880 ret = get_user(size, &uattr->size);
881 if (ret)
882 return ret;
883
884 /* ABI compatibility quirk: */
885 if (!size)
886 size = SCHED_ATTR_SIZE_VER0;
887 if (size < SCHED_ATTR_SIZE_VER0 || size > PAGE_SIZE)
888 goto err_size;
889
890 ret = copy_struct_from_user(attr, sizeof(*attr), uattr, size);
891 if (ret) {
892 if (ret == -E2BIG)
893 goto err_size;
894 return ret;
895 }
896
897 if ((attr->sched_flags & SCHED_FLAG_UTIL_CLAMP) &&
898 size < SCHED_ATTR_SIZE_VER1)
899 return -EINVAL;
900
901 /*
902 * XXX: Do we want to be lenient like existing syscalls; or do we want
903 * to be strict and return an error on out-of-bounds values?
904 */
905 attr->sched_nice = clamp(attr->sched_nice, MIN_NICE, MAX_NICE);
906
907 return 0;
908
909 err_size:
910 put_user(sizeof(*attr), &uattr->size);
911 return -E2BIG;
912 }
913
get_params(struct task_struct * p,struct sched_attr * attr,unsigned int flags)914 static void get_params(struct task_struct *p, struct sched_attr *attr, unsigned int flags)
915 {
916 if (task_has_dl_policy(p)) {
917 __getparam_dl(p, attr, flags);
918 } else if (task_has_rt_policy(p)) {
919 attr->sched_priority = p->rt_priority;
920 } else {
921 attr->sched_nice = task_nice(p);
922 attr->sched_runtime = p->se.slice;
923 }
924 }
925
926 /**
927 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
928 * @pid: the pid in question.
929 * @policy: new policy.
930 * @param: structure containing the new RT priority.
931 *
932 * Return: 0 on success. An error code otherwise.
933 */
SYSCALL_DEFINE3(sched_setscheduler,pid_t,pid,int,policy,struct sched_param __user *,param)934 SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy, struct sched_param __user *, param)
935 {
936 if (policy < 0)
937 return -EINVAL;
938
939 return do_sched_setscheduler(pid, policy, param);
940 }
941
942 /**
943 * sys_sched_setparam - set/change the RT priority of a thread
944 * @pid: the pid in question.
945 * @param: structure containing the new RT priority.
946 *
947 * Return: 0 on success. An error code otherwise.
948 */
SYSCALL_DEFINE2(sched_setparam,pid_t,pid,struct sched_param __user *,param)949 SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
950 {
951 return do_sched_setscheduler(pid, SETPARAM_POLICY, param);
952 }
953
954 /**
955 * sys_sched_setattr - same as above, but with extended sched_attr
956 * @pid: the pid in question.
957 * @uattr: structure containing the extended parameters.
958 * @flags: for future extension.
959 */
SYSCALL_DEFINE3(sched_setattr,pid_t,pid,struct sched_attr __user *,uattr,unsigned int,flags)960 SYSCALL_DEFINE3(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr,
961 unsigned int, flags)
962 {
963 struct sched_attr attr;
964 int retval;
965
966 if (unlikely(!uattr || pid < 0 || flags))
967 return -EINVAL;
968
969 retval = sched_copy_attr(uattr, &attr);
970 if (retval)
971 return retval;
972
973 if ((int)attr.sched_policy < 0)
974 return -EINVAL;
975 if (attr.sched_flags & SCHED_FLAG_KEEP_POLICY)
976 attr.sched_policy = SETPARAM_POLICY;
977
978 CLASS(find_get_task, p)(pid);
979 if (!p)
980 return -ESRCH;
981
982 if (attr.sched_flags & SCHED_FLAG_KEEP_PARAMS)
983 get_params(p, &attr, 0);
984
985 return sched_setattr(p, &attr);
986 }
987
988 /**
989 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
990 * @pid: the pid in question.
991 *
992 * Return: On success, the policy of the thread. Otherwise, a negative error
993 * code.
994 */
SYSCALL_DEFINE1(sched_getscheduler,pid_t,pid)995 SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
996 {
997 struct task_struct *p;
998 int retval;
999
1000 if (pid < 0)
1001 return -EINVAL;
1002
1003 guard(rcu)();
1004 p = find_process_by_pid(pid);
1005 if (!p)
1006 return -ESRCH;
1007
1008 retval = security_task_getscheduler(p);
1009 if (!retval) {
1010 retval = p->policy;
1011 if (p->sched_reset_on_fork)
1012 retval |= SCHED_RESET_ON_FORK;
1013 }
1014 return retval;
1015 }
1016
1017 /**
1018 * sys_sched_getparam - get the RT priority of a thread
1019 * @pid: the pid in question.
1020 * @param: structure containing the RT priority.
1021 *
1022 * Return: On success, 0 and the RT priority is in @param. Otherwise, an error
1023 * code.
1024 */
SYSCALL_DEFINE2(sched_getparam,pid_t,pid,struct sched_param __user *,param)1025 SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
1026 {
1027 struct sched_param lp = { .sched_priority = 0 };
1028 struct task_struct *p;
1029 int retval;
1030
1031 if (unlikely(!param || pid < 0))
1032 return -EINVAL;
1033
1034 scoped_guard (rcu) {
1035 p = find_process_by_pid(pid);
1036 if (!p)
1037 return -ESRCH;
1038
1039 retval = security_task_getscheduler(p);
1040 if (retval)
1041 return retval;
1042
1043 if (task_has_rt_policy(p))
1044 lp.sched_priority = p->rt_priority;
1045 }
1046
1047 /*
1048 * This one might sleep, we cannot do it with a spinlock held ...
1049 */
1050 return copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
1051 }
1052
1053 /**
1054 * sys_sched_getattr - similar to sched_getparam, but with sched_attr
1055 * @pid: the pid in question.
1056 * @uattr: structure containing the extended parameters.
1057 * @usize: sizeof(attr) for fwd/bwd comp.
1058 * @flags: for future extension.
1059 */
SYSCALL_DEFINE4(sched_getattr,pid_t,pid,struct sched_attr __user *,uattr,unsigned int,usize,unsigned int,flags)1060 SYSCALL_DEFINE4(sched_getattr, pid_t, pid, struct sched_attr __user *, uattr,
1061 unsigned int, usize, unsigned int, flags)
1062 {
1063 struct sched_attr kattr = { };
1064 struct task_struct *p;
1065 int retval;
1066
1067 if (unlikely(!uattr || pid < 0 || usize > PAGE_SIZE ||
1068 usize < SCHED_ATTR_SIZE_VER0))
1069 return -EINVAL;
1070
1071 scoped_guard (rcu) {
1072 p = find_process_by_pid(pid);
1073 if (!p)
1074 return -ESRCH;
1075
1076 if (flags) {
1077 if (!task_has_dl_policy(p) ||
1078 flags != SCHED_GETATTR_FLAG_DL_DYNAMIC)
1079 return -EINVAL;
1080 }
1081
1082 retval = security_task_getscheduler(p);
1083 if (retval)
1084 return retval;
1085
1086 kattr.sched_policy = p->policy;
1087 if (p->sched_reset_on_fork)
1088 kattr.sched_flags |= SCHED_FLAG_RESET_ON_FORK;
1089 get_params(p, &kattr, flags);
1090 kattr.sched_flags &= SCHED_FLAG_ALL;
1091
1092 #ifdef CONFIG_UCLAMP_TASK
1093 /*
1094 * This could race with another potential updater, but this is fine
1095 * because it'll correctly read the old or the new value. We don't need
1096 * to guarantee who wins the race as long as it doesn't return garbage.
1097 */
1098 kattr.sched_util_min = p->uclamp_req[UCLAMP_MIN].value;
1099 kattr.sched_util_max = p->uclamp_req[UCLAMP_MAX].value;
1100 #endif
1101 }
1102
1103 kattr.size = min(usize, sizeof(kattr));
1104 return copy_struct_to_user(uattr, usize, &kattr, sizeof(kattr), NULL);
1105 }
1106
dl_task_check_affinity(struct task_struct * p,const struct cpumask * mask)1107 int dl_task_check_affinity(struct task_struct *p, const struct cpumask *mask)
1108 {
1109 /*
1110 * If the task isn't a deadline task or admission control is
1111 * disabled then we don't care about affinity changes.
1112 */
1113 if (!task_has_dl_policy(p) || !dl_bandwidth_enabled())
1114 return 0;
1115
1116 /*
1117 * The special/sugov task isn't part of regular bandwidth/admission
1118 * control so let userspace change affinities.
1119 */
1120 if (dl_entity_is_special(&p->dl))
1121 return 0;
1122
1123 /*
1124 * Since bandwidth control happens on root_domain basis,
1125 * if admission test is enabled, we only admit -deadline
1126 * tasks allowed to run on all the CPUs in the task's
1127 * root_domain.
1128 */
1129 guard(rcu)();
1130 if (!cpumask_subset(task_rq(p)->rd->span, mask))
1131 return -EBUSY;
1132
1133 return 0;
1134 }
1135
__sched_setaffinity(struct task_struct * p,struct affinity_context * ctx)1136 int __sched_setaffinity(struct task_struct *p, struct affinity_context *ctx)
1137 {
1138 int retval;
1139 cpumask_var_t cpus_allowed, new_mask;
1140
1141 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL))
1142 return -ENOMEM;
1143
1144 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
1145 retval = -ENOMEM;
1146 goto out_free_cpus_allowed;
1147 }
1148
1149 cpuset_cpus_allowed(p, cpus_allowed);
1150 cpumask_and(new_mask, ctx->new_mask, cpus_allowed);
1151
1152 ctx->new_mask = new_mask;
1153 ctx->flags |= SCA_CHECK;
1154
1155 retval = dl_task_check_affinity(p, new_mask);
1156 if (retval)
1157 goto out_free_new_mask;
1158
1159 retval = __set_cpus_allowed_ptr(p, ctx);
1160 if (retval)
1161 goto out_free_new_mask;
1162
1163 cpuset_cpus_allowed(p, cpus_allowed);
1164 if (!cpumask_subset(new_mask, cpus_allowed)) {
1165 /*
1166 * We must have raced with a concurrent cpuset update.
1167 * Just reset the cpumask to the cpuset's cpus_allowed.
1168 */
1169 cpumask_copy(new_mask, cpus_allowed);
1170
1171 /*
1172 * If SCA_USER is set, a 2nd call to __set_cpus_allowed_ptr()
1173 * will restore the previous user_cpus_ptr value.
1174 *
1175 * In the unlikely event a previous user_cpus_ptr exists,
1176 * we need to further restrict the mask to what is allowed
1177 * by that old user_cpus_ptr.
1178 */
1179 if (unlikely((ctx->flags & SCA_USER) && ctx->user_mask)) {
1180 bool empty = !cpumask_and(new_mask, new_mask,
1181 ctx->user_mask);
1182
1183 if (empty)
1184 cpumask_copy(new_mask, cpus_allowed);
1185 }
1186 __set_cpus_allowed_ptr(p, ctx);
1187 retval = -EINVAL;
1188 }
1189
1190 out_free_new_mask:
1191 free_cpumask_var(new_mask);
1192 out_free_cpus_allowed:
1193 free_cpumask_var(cpus_allowed);
1194 return retval;
1195 }
1196
sched_setaffinity(pid_t pid,const struct cpumask * in_mask)1197 long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
1198 {
1199 struct affinity_context ac;
1200 struct cpumask *user_mask;
1201 int retval;
1202
1203 CLASS(find_get_task, p)(pid);
1204 if (!p)
1205 return -ESRCH;
1206
1207 if (p->flags & PF_NO_SETAFFINITY)
1208 return -EINVAL;
1209
1210 if (!check_same_owner(p)) {
1211 guard(rcu)();
1212 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE))
1213 return -EPERM;
1214 }
1215
1216 retval = security_task_setscheduler(p);
1217 if (retval)
1218 return retval;
1219
1220 /*
1221 * With non-SMP configs, user_cpus_ptr/user_mask isn't used and
1222 * alloc_user_cpus_ptr() returns NULL.
1223 */
1224 user_mask = alloc_user_cpus_ptr(NUMA_NO_NODE);
1225 if (user_mask) {
1226 cpumask_copy(user_mask, in_mask);
1227 } else {
1228 return -ENOMEM;
1229 }
1230
1231 ac = (struct affinity_context){
1232 .new_mask = in_mask,
1233 .user_mask = user_mask,
1234 .flags = SCA_USER,
1235 };
1236
1237 retval = __sched_setaffinity(p, &ac);
1238 kfree(ac.user_mask);
1239
1240 return retval;
1241 }
1242
get_user_cpu_mask(unsigned long __user * user_mask_ptr,unsigned len,struct cpumask * new_mask)1243 static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
1244 struct cpumask *new_mask)
1245 {
1246 if (len < cpumask_size())
1247 cpumask_clear(new_mask);
1248 else if (len > cpumask_size())
1249 len = cpumask_size();
1250
1251 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
1252 }
1253
1254 /**
1255 * sys_sched_setaffinity - set the CPU affinity of a process
1256 * @pid: pid of the process
1257 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
1258 * @user_mask_ptr: user-space pointer to the new CPU mask
1259 *
1260 * Return: 0 on success. An error code otherwise.
1261 */
SYSCALL_DEFINE3(sched_setaffinity,pid_t,pid,unsigned int,len,unsigned long __user *,user_mask_ptr)1262 SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
1263 unsigned long __user *, user_mask_ptr)
1264 {
1265 cpumask_var_t new_mask;
1266 int retval;
1267
1268 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
1269 return -ENOMEM;
1270
1271 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
1272 if (retval == 0)
1273 retval = sched_setaffinity(pid, new_mask);
1274 free_cpumask_var(new_mask);
1275 return retval;
1276 }
1277
sched_getaffinity(pid_t pid,struct cpumask * mask)1278 long sched_getaffinity(pid_t pid, struct cpumask *mask)
1279 {
1280 struct task_struct *p;
1281 int retval;
1282
1283 guard(rcu)();
1284 p = find_process_by_pid(pid);
1285 if (!p)
1286 return -ESRCH;
1287
1288 retval = security_task_getscheduler(p);
1289 if (retval)
1290 return retval;
1291
1292 guard(raw_spinlock_irqsave)(&p->pi_lock);
1293 cpumask_and(mask, &p->cpus_mask, cpu_active_mask);
1294
1295 return 0;
1296 }
1297
1298 /**
1299 * sys_sched_getaffinity - get the CPU affinity of a process
1300 * @pid: pid of the process
1301 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
1302 * @user_mask_ptr: user-space pointer to hold the current CPU mask
1303 *
1304 * Return: size of CPU mask copied to user_mask_ptr on success. An
1305 * error code otherwise.
1306 */
SYSCALL_DEFINE3(sched_getaffinity,pid_t,pid,unsigned int,len,unsigned long __user *,user_mask_ptr)1307 SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
1308 unsigned long __user *, user_mask_ptr)
1309 {
1310 int ret;
1311 cpumask_var_t mask;
1312
1313 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
1314 return -EINVAL;
1315 if (len & (sizeof(unsigned long)-1))
1316 return -EINVAL;
1317
1318 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
1319 return -ENOMEM;
1320
1321 ret = sched_getaffinity(pid, mask);
1322 if (ret == 0) {
1323 unsigned int retlen = min(len, cpumask_size());
1324
1325 if (copy_to_user(user_mask_ptr, cpumask_bits(mask), retlen))
1326 ret = -EFAULT;
1327 else
1328 ret = retlen;
1329 }
1330 free_cpumask_var(mask);
1331
1332 return ret;
1333 }
1334
do_sched_yield(void)1335 static void do_sched_yield(void)
1336 {
1337 struct rq_flags rf;
1338 struct rq *rq;
1339
1340 rq = this_rq_lock_irq(&rf);
1341
1342 schedstat_inc(rq->yld_count);
1343 rq->donor->sched_class->yield_task(rq);
1344
1345 preempt_disable();
1346 rq_unlock_irq(rq, &rf);
1347 sched_preempt_enable_no_resched();
1348
1349 schedule();
1350 }
1351
1352 /**
1353 * sys_sched_yield - yield the current processor to other threads.
1354 *
1355 * This function yields the current CPU to other tasks. If there are no
1356 * other threads running on this CPU then this function will return.
1357 *
1358 * Return: 0.
1359 */
SYSCALL_DEFINE0(sched_yield)1360 SYSCALL_DEFINE0(sched_yield)
1361 {
1362 do_sched_yield();
1363 return 0;
1364 }
1365
1366 /**
1367 * yield - yield the current processor to other threads.
1368 *
1369 * Do not ever use this function, there's a 99% chance you're doing it wrong.
1370 *
1371 * The scheduler is at all times free to pick the calling task as the most
1372 * eligible task to run, if removing the yield() call from your code breaks
1373 * it, it's already broken.
1374 *
1375 * Typical broken usage is:
1376 *
1377 * while (!event)
1378 * yield();
1379 *
1380 * where one assumes that yield() will let 'the other' process run that will
1381 * make event true. If the current task is a SCHED_FIFO task that will never
1382 * happen. Never use yield() as a progress guarantee!!
1383 *
1384 * If you want to use yield() to wait for something, use wait_event().
1385 * If you want to use yield() to be 'nice' for others, use cond_resched().
1386 * If you still want to use yield(), do not!
1387 */
yield(void)1388 void __sched yield(void)
1389 {
1390 set_current_state(TASK_RUNNING);
1391 do_sched_yield();
1392 }
1393 EXPORT_SYMBOL(yield);
1394
1395 /**
1396 * yield_to - yield the current processor to another thread in
1397 * your thread group, or accelerate that thread toward the
1398 * processor it's on.
1399 * @p: target task
1400 * @preempt: whether task preemption is allowed or not
1401 *
1402 * It's the caller's job to ensure that the target task struct
1403 * can't go away on us before we can do any checks.
1404 *
1405 * Return:
1406 * true (>0) if we indeed boosted the target task.
1407 * false (0) if we failed to boost the target.
1408 * -ESRCH if there's no task to yield to.
1409 */
yield_to(struct task_struct * p,bool preempt)1410 int __sched yield_to(struct task_struct *p, bool preempt)
1411 {
1412 struct task_struct *curr;
1413 struct rq *rq, *p_rq;
1414 int yielded = 0;
1415
1416 scoped_guard (raw_spinlock_irqsave, &p->pi_lock) {
1417 rq = this_rq();
1418 curr = rq->donor;
1419
1420 again:
1421 p_rq = task_rq(p);
1422 /*
1423 * If we're the only runnable task on the rq and target rq also
1424 * has only one task, there's absolutely no point in yielding.
1425 */
1426 if (rq->nr_running == 1 && p_rq->nr_running == 1)
1427 return -ESRCH;
1428
1429 guard(double_rq_lock)(rq, p_rq);
1430 if (task_rq(p) != p_rq)
1431 goto again;
1432
1433 if (!curr->sched_class->yield_to_task)
1434 return 0;
1435
1436 if (curr->sched_class != p->sched_class)
1437 return 0;
1438
1439 if (task_on_cpu(p_rq, p) || !task_is_running(p))
1440 return 0;
1441
1442 yielded = curr->sched_class->yield_to_task(rq, p);
1443 if (yielded) {
1444 schedstat_inc(rq->yld_count);
1445 /*
1446 * Make p's CPU reschedule; pick_next_entity
1447 * takes care of fairness.
1448 */
1449 if (preempt && rq != p_rq)
1450 resched_curr(p_rq);
1451 }
1452 }
1453
1454 if (yielded)
1455 schedule();
1456
1457 return yielded;
1458 }
1459 EXPORT_SYMBOL_GPL(yield_to);
1460
1461 /**
1462 * sys_sched_get_priority_max - return maximum RT priority.
1463 * @policy: scheduling class.
1464 *
1465 * Return: On success, this syscall returns the maximum
1466 * rt_priority that can be used by a given scheduling class.
1467 * On failure, a negative error code is returned.
1468 */
SYSCALL_DEFINE1(sched_get_priority_max,int,policy)1469 SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
1470 {
1471 int ret = -EINVAL;
1472
1473 switch (policy) {
1474 case SCHED_FIFO:
1475 case SCHED_RR:
1476 ret = MAX_RT_PRIO-1;
1477 break;
1478 case SCHED_DEADLINE:
1479 case SCHED_NORMAL:
1480 case SCHED_BATCH:
1481 case SCHED_IDLE:
1482 case SCHED_EXT:
1483 ret = 0;
1484 break;
1485 }
1486 return ret;
1487 }
1488
1489 /**
1490 * sys_sched_get_priority_min - return minimum RT priority.
1491 * @policy: scheduling class.
1492 *
1493 * Return: On success, this syscall returns the minimum
1494 * rt_priority that can be used by a given scheduling class.
1495 * On failure, a negative error code is returned.
1496 */
SYSCALL_DEFINE1(sched_get_priority_min,int,policy)1497 SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
1498 {
1499 int ret = -EINVAL;
1500
1501 switch (policy) {
1502 case SCHED_FIFO:
1503 case SCHED_RR:
1504 ret = 1;
1505 break;
1506 case SCHED_DEADLINE:
1507 case SCHED_NORMAL:
1508 case SCHED_BATCH:
1509 case SCHED_IDLE:
1510 case SCHED_EXT:
1511 ret = 0;
1512 }
1513 return ret;
1514 }
1515
sched_rr_get_interval(pid_t pid,struct timespec64 * t)1516 static int sched_rr_get_interval(pid_t pid, struct timespec64 *t)
1517 {
1518 unsigned int time_slice = 0;
1519 int retval;
1520
1521 if (pid < 0)
1522 return -EINVAL;
1523
1524 scoped_guard (rcu) {
1525 struct task_struct *p = find_process_by_pid(pid);
1526 if (!p)
1527 return -ESRCH;
1528
1529 retval = security_task_getscheduler(p);
1530 if (retval)
1531 return retval;
1532
1533 scoped_guard (task_rq_lock, p) {
1534 struct rq *rq = scope.rq;
1535 if (p->sched_class->get_rr_interval)
1536 time_slice = p->sched_class->get_rr_interval(rq, p);
1537 }
1538 }
1539
1540 jiffies_to_timespec64(time_slice, t);
1541 return 0;
1542 }
1543
1544 /**
1545 * sys_sched_rr_get_interval - return the default time-slice of a process.
1546 * @pid: pid of the process.
1547 * @interval: userspace pointer to the time-slice value.
1548 *
1549 * this syscall writes the default time-slice value of a given process
1550 * into the user-space timespec buffer. A value of '0' means infinity.
1551 *
1552 * Return: On success, 0 and the time-slice is in @interval. Otherwise,
1553 * an error code.
1554 */
SYSCALL_DEFINE2(sched_rr_get_interval,pid_t,pid,struct __kernel_timespec __user *,interval)1555 SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
1556 struct __kernel_timespec __user *, interval)
1557 {
1558 struct timespec64 t;
1559 int retval = sched_rr_get_interval(pid, &t);
1560
1561 if (retval == 0)
1562 retval = put_timespec64(&t, interval);
1563
1564 return retval;
1565 }
1566
1567 #ifdef CONFIG_COMPAT_32BIT_TIME
SYSCALL_DEFINE2(sched_rr_get_interval_time32,pid_t,pid,struct old_timespec32 __user *,interval)1568 SYSCALL_DEFINE2(sched_rr_get_interval_time32, pid_t, pid,
1569 struct old_timespec32 __user *, interval)
1570 {
1571 struct timespec64 t;
1572 int retval = sched_rr_get_interval(pid, &t);
1573
1574 if (retval == 0)
1575 retval = put_old_timespec32(&t, interval);
1576 return retval;
1577 }
1578 #endif
1579