1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2004 Jens Axboe <axboe@kernel.dk>
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 data = IOPRIO_PRIO_DATA(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 (data >= IOPRIO_NR_LEVELS || data < 0)
55 case IOPRIO_CLASS_IDLE:
57 case IOPRIO_CLASS_NONE:
68 SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio)
70 struct task_struct *p, *g;
71 struct user_struct *user;
76 ret = ioprio_check_cap(ioprio);
83 case IOPRIO_WHO_PROCESS:
87 p = find_task_by_vpid(who);
89 ret = set_task_ioprio(p, ioprio);
93 pgrp = task_pgrp(current);
95 pgrp = find_vpid(who);
97 read_lock(&tasklist_lock);
98 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
99 ret = set_task_ioprio(p, ioprio);
101 read_unlock(&tasklist_lock);
104 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
105 read_unlock(&tasklist_lock);
108 case IOPRIO_WHO_USER:
109 uid = make_kuid(current_user_ns(), who);
113 user = current_user();
115 user = find_user(uid);
120 for_each_process_thread(g, p) {
121 if (!uid_eq(task_uid(p), uid) ||
124 ret = set_task_ioprio(p, ioprio);
141 static int get_task_ioprio(struct task_struct *p)
145 ret = security_task_getioprio(p);
148 ret = IOPRIO_DEFAULT;
151 ret = p->io_context->ioprio;
157 int ioprio_best(unsigned short aprio, unsigned short bprio)
159 if (!ioprio_valid(aprio))
160 aprio = IOPRIO_DEFAULT;
161 if (!ioprio_valid(bprio))
162 bprio = IOPRIO_DEFAULT;
164 return min(aprio, bprio);
167 SYSCALL_DEFINE2(ioprio_get, int, which, int, who)
169 struct task_struct *g, *p;
170 struct user_struct *user;
178 case IOPRIO_WHO_PROCESS:
182 p = find_task_by_vpid(who);
184 ret = get_task_ioprio(p);
186 case IOPRIO_WHO_PGRP:
188 pgrp = task_pgrp(current);
190 pgrp = find_vpid(who);
191 read_lock(&tasklist_lock);
192 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
193 tmpio = get_task_ioprio(p);
199 ret = ioprio_best(ret, tmpio);
200 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
201 read_unlock(&tasklist_lock);
204 case IOPRIO_WHO_USER:
205 uid = make_kuid(current_user_ns(), who);
207 user = current_user();
209 user = find_user(uid);
214 for_each_process_thread(g, p) {
215 if (!uid_eq(task_uid(p), user->uid) ||
218 tmpio = get_task_ioprio(p);
224 ret = ioprio_best(ret, tmpio);