]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - block/ioprio.c
block: Make ioprio_best() static
[thirdparty/kernel/stable.git] / block / ioprio.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
22e2c507
JA
2/*
3 * fs/ioprio.c
4 *
0fe23479 5 * Copyright (C) 2004 Jens Axboe <axboe@kernel.dk>
22e2c507
JA
6 *
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
12 * being the lowest.
13 *
14 * IOW, setting BE scheduling class with prio 2 is done ala:
15 *
16 * unsigned int prio = (IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT) | 2;
17 *
18 * ioprio_set(PRIO_PROCESS, pid, prio);
19 *
898bd37a 20 * See also Documentation/block/ioprio.rst
22e2c507
JA
21 *
22 */
5a0e3ad6 23#include <linux/gfp.h>
22e2c507
JA
24#include <linux/kernel.h>
25#include <linux/ioprio.h>
5b825c3a 26#include <linux/cred.h>
22e2c507 27#include <linux/blkdev.h>
16f7e0fe 28#include <linux/capability.h>
9abdc4cd 29#include <linux/syscalls.h>
03e68060 30#include <linux/security.h>
b488893a 31#include <linux/pid_namespace.h>
22e2c507 32
aa434577 33int ioprio_check_cap(int ioprio)
22e2c507
JA
34{
35 int class = IOPRIO_PRIO_CLASS(ioprio);
36 int data = IOPRIO_PRIO_DATA(ioprio);
22e2c507
JA
37
38 switch (class) {
39 case IOPRIO_CLASS_RT:
94c4b4fd
AD
40 /*
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.
46 */
47 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_NICE))
22e2c507 48 return -EPERM;
df561f66 49 fallthrough;
e29387eb 50 /* rt has prio field too */
22e2c507 51 case IOPRIO_CLASS_BE:
202bc942 52 if (data >= IOPRIO_NR_LEVELS || data < 0)
22e2c507 53 return -EINVAL;
22e2c507
JA
54 break;
55 case IOPRIO_CLASS_IDLE:
56 break;
8ec680e4
JA
57 case IOPRIO_CLASS_NONE:
58 if (data)
59 return -EINVAL;
60 break;
22e2c507
JA
61 default:
62 return -EINVAL;
63 }
64
aa434577
AM
65 return 0;
66}
67
68SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio)
69{
70 struct task_struct *p, *g;
71 struct user_struct *user;
72 struct pid *pgrp;
73 kuid_t uid;
74 int ret;
75
76 ret = ioprio_check_cap(ioprio);
77 if (ret)
78 return ret;
79
22e2c507 80 ret = -ESRCH;
d69b78ba 81 rcu_read_lock();
22e2c507
JA
82 switch (which) {
83 case IOPRIO_WHO_PROCESS:
84 if (!who)
85 p = current;
86 else
228ebcbe 87 p = find_task_by_vpid(who);
22e2c507
JA
88 if (p)
89 ret = set_task_ioprio(p, ioprio);
90 break;
91 case IOPRIO_WHO_PGRP:
92 if (!who)
41487c65
EB
93 pgrp = task_pgrp(current);
94 else
b488893a 95 pgrp = find_vpid(who);
40c7fd3f
PZ
96
97 read_lock(&tasklist_lock);
2d70b68d 98 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
22e2c507 99 ret = set_task_ioprio(p, ioprio);
40c7fd3f
PZ
100 if (ret) {
101 read_unlock(&tasklist_lock);
102 goto out;
103 }
2d70b68d 104 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
40c7fd3f
PZ
105 read_unlock(&tasklist_lock);
106
22e2c507
JA
107 break;
108 case IOPRIO_WHO_USER:
7b44ab97
EB
109 uid = make_kuid(current_user_ns(), who);
110 if (!uid_valid(uid))
111 break;
22e2c507 112 if (!who)
86a264ab 113 user = current_user();
22e2c507 114 else
7b44ab97 115 user = find_user(uid);
22e2c507
JA
116
117 if (!user)
118 break;
119
612dafab 120 for_each_process_thread(g, p) {
8639b461
BS
121 if (!uid_eq(task_uid(p), uid) ||
122 !task_pid_vnr(p))
22e2c507
JA
123 continue;
124 ret = set_task_ioprio(p, ioprio);
125 if (ret)
78bd4d48 126 goto free_uid;
612dafab 127 }
78bd4d48 128free_uid:
22e2c507
JA
129 if (who)
130 free_uid(user);
131 break;
132 default:
133 ret = -EINVAL;
134 }
135
40c7fd3f 136out:
d69b78ba 137 rcu_read_unlock();
22e2c507
JA
138 return ret;
139}
140
893e5d32
JK
141/*
142 * If the task has set an I/O priority, use that. Otherwise, return
143 * the default I/O priority.
144 *
145 * Expected to be called for current task or with task_lock() held to keep
146 * io_context stable.
147 */
148int __get_task_ioprio(struct task_struct *p)
149{
150 struct io_context *ioc = p->io_context;
151 int prio;
152
153 if (p != current)
154 lockdep_assert_held(&p->alloc_lock);
155 if (ioc)
156 prio = ioc->ioprio;
157 else
158 prio = IOPRIO_DEFAULT;
159
160 if (IOPRIO_PRIO_CLASS(prio) == IOPRIO_CLASS_NONE)
161 prio = IOPRIO_PRIO_VALUE(task_nice_ioclass(p),
162 task_nice_ioprio(p));
163 return prio;
164}
165EXPORT_SYMBOL_GPL(__get_task_ioprio);
166
a1836a42
DQ
167static int get_task_ioprio(struct task_struct *p)
168{
169 int ret;
170
171 ret = security_task_getioprio(p);
172 if (ret)
173 goto out;
e70344c0 174 ret = IOPRIO_DEFAULT;
8ba86821 175 task_lock(p);
fd0928df
JA
176 if (p->io_context)
177 ret = p->io_context->ioprio;
8ba86821 178 task_unlock(p);
a1836a42
DQ
179out:
180 return ret;
181}
182
fc25545e 183static int ioprio_best(unsigned short aprio, unsigned short bprio)
e014ff8d 184{
ece9c72a 185 if (!ioprio_valid(aprio))
e589f464 186 aprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, IOPRIO_BE_NORM);
ece9c72a 187 if (!ioprio_valid(bprio))
e589f464 188 bprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, IOPRIO_BE_NORM);
e014ff8d 189
9a87182c 190 return min(aprio, bprio);
e014ff8d
ON
191}
192
938bb9f5 193SYSCALL_DEFINE2(ioprio_get, int, which, int, who)
22e2c507
JA
194{
195 struct task_struct *g, *p;
196 struct user_struct *user;
41487c65 197 struct pid *pgrp;
7b44ab97 198 kuid_t uid;
22e2c507 199 int ret = -ESRCH;
a1836a42 200 int tmpio;
22e2c507 201
d69b78ba 202 rcu_read_lock();
22e2c507
JA
203 switch (which) {
204 case IOPRIO_WHO_PROCESS:
205 if (!who)
206 p = current;
207 else
228ebcbe 208 p = find_task_by_vpid(who);
22e2c507 209 if (p)
a1836a42 210 ret = get_task_ioprio(p);
22e2c507
JA
211 break;
212 case IOPRIO_WHO_PGRP:
213 if (!who)
41487c65
EB
214 pgrp = task_pgrp(current);
215 else
b488893a 216 pgrp = find_vpid(who);
e6a59aac 217 read_lock(&tasklist_lock);
2d70b68d 218 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
a1836a42
DQ
219 tmpio = get_task_ioprio(p);
220 if (tmpio < 0)
221 continue;
22e2c507 222 if (ret == -ESRCH)
a1836a42 223 ret = tmpio;
22e2c507 224 else
a1836a42 225 ret = ioprio_best(ret, tmpio);
2d70b68d 226 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
e6a59aac
DB
227 read_unlock(&tasklist_lock);
228
22e2c507
JA
229 break;
230 case IOPRIO_WHO_USER:
7b44ab97 231 uid = make_kuid(current_user_ns(), who);
22e2c507 232 if (!who)
86a264ab 233 user = current_user();
22e2c507 234 else
7b44ab97 235 user = find_user(uid);
22e2c507
JA
236
237 if (!user)
238 break;
239
612dafab 240 for_each_process_thread(g, p) {
8639b461
BS
241 if (!uid_eq(task_uid(p), user->uid) ||
242 !task_pid_vnr(p))
22e2c507 243 continue;
a1836a42
DQ
244 tmpio = get_task_ioprio(p);
245 if (tmpio < 0)
246 continue;
22e2c507 247 if (ret == -ESRCH)
a1836a42 248 ret = tmpio;
22e2c507 249 else
a1836a42 250 ret = ioprio_best(ret, tmpio);
612dafab 251 }
22e2c507
JA
252
253 if (who)
254 free_uid(user);
255 break;
256 default:
257 ret = -EINVAL;
258 }
259
d69b78ba 260 rcu_read_unlock();
22e2c507
JA
261 return ret;
262}