1 // SPDX-License-Identifier: GPL-2.0
7 * Helper functions for setting/querying io priorities of processes. The
8 * system calls closely mimmick getpriority/setpriority, see the man page for
9 * those. The prio argument is a composite of prio class and prio data, where
10 * the data argument has meaning within that class. The standard scheduling
11 * classes have 8 distinct prio levels, with 0 being the highest prio and 7
14 * IOW, setting BE scheduling class with prio 2 is done ala:
16 * unsigned int prio = (IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT) | 2;
18 * ioprio_set(PRIO_PROCESS, pid, prio);
20 * See also Documentation/block/ioprio.rst
23 #include <linux/gfp.h>
24 #include <linux/kernel.h>
25 #include <linux/ioprio.h>
26 #include <linux/cred.h>
27 #include <linux/blkdev.h>
28 #include <linux/capability.h>
29 #include <linux/syscalls.h>
30 #include <linux/security.h>
31 #include <linux/pid_namespace.h>
33 int ioprio_check_cap(int ioprio)
35 int class = IOPRIO_PRIO_CLASS(ioprio);
36 int level = IOPRIO_PRIO_LEVEL(ioprio);
41 * Originally this only checked for CAP_SYS_ADMIN,
42 * which was implicitly allowed for pid 0 by security
43 * modules such as SELinux. Make sure we check
44 * CAP_SYS_ADMIN first to avoid a denial/avc for
45 * possibly missing CAP_SYS_NICE permission.
47 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_NICE))
50 /* rt has prio field too */
52 if (level >= IOPRIO_NR_LEVELS)
55 case IOPRIO_CLASS_IDLE:
57 case IOPRIO_CLASS_NONE:
61 case IOPRIO_CLASS_INVALID:
69 SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio)
71 struct task_struct *p, *g;
72 struct user_struct *user;
77 ret = ioprio_check_cap(ioprio);
84 case IOPRIO_WHO_PROCESS:
88 p = find_task_by_vpid(who);
90 ret = set_task_ioprio(p, ioprio);
94 pgrp = task_pgrp(current);
96 pgrp = find_vpid(who);
98 read_lock(&tasklist_lock);
99 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
100 ret = set_task_ioprio(p, ioprio);
102 read_unlock(&tasklist_lock);
105 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
106 read_unlock(&tasklist_lock);
109 case IOPRIO_WHO_USER:
110 uid = make_kuid(current_user_ns(), who);
114 user = current_user();
116 user = find_user(uid);
121 for_each_process_thread(g, p) {
122 if (!uid_eq(task_uid(p), uid) ||
125 ret = set_task_ioprio(p, ioprio);
142 static int get_task_ioprio(struct task_struct *p)
146 ret = security_task_getioprio(p);
150 ret = __get_task_ioprio(p);
157 * Return raw IO priority value as set by userspace. We use this for
158 * ioprio_get(pid, IOPRIO_WHO_PROCESS) so that we keep historical behavior and
159 * also so that userspace can distinguish unset IO priority (which just gets
160 * overriden based on task's nice value) from IO priority set to some value.
162 static int get_task_raw_ioprio(struct task_struct *p)
166 ret = security_task_getioprio(p);
171 ret = p->io_context->ioprio;
173 ret = IOPRIO_DEFAULT;
179 static int ioprio_best(unsigned short aprio, unsigned short bprio)
181 return min(aprio, bprio);
184 SYSCALL_DEFINE2(ioprio_get, int, which, int, who)
186 struct task_struct *g, *p;
187 struct user_struct *user;
195 case IOPRIO_WHO_PROCESS:
199 p = find_task_by_vpid(who);
201 ret = get_task_raw_ioprio(p);
203 case IOPRIO_WHO_PGRP:
205 pgrp = task_pgrp(current);
207 pgrp = find_vpid(who);
208 read_lock(&tasklist_lock);
209 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
210 tmpio = get_task_ioprio(p);
216 ret = ioprio_best(ret, tmpio);
217 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
218 read_unlock(&tasklist_lock);
221 case IOPRIO_WHO_USER:
222 uid = make_kuid(current_user_ns(), who);
224 user = current_user();
226 user = find_user(uid);
231 for_each_process_thread(g, p) {
232 if (!uid_eq(task_uid(p), user->uid) ||
235 tmpio = get_task_ioprio(p);
241 ret = ioprio_best(ret, tmpio);