4 * Copyright (C) 2004 Jens Axboe <axboe@kernel.dk>
6 * Helper functions for setting/querying io priorities of processes. The
7 * system calls closely mimmick getpriority/setpriority, see the man page for
8 * those. The prio argument is a composite of prio class and prio data, where
9 * the data argument has meaning within that class. The standard scheduling
10 * classes have 8 distinct prio levels, with 0 being the highest prio and 7
13 * IOW, setting BE scheduling class with prio 2 is done ala:
15 * unsigned int prio = (IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT) | 2;
17 * ioprio_set(PRIO_PROCESS, pid, prio);
19 * See also Documentation/block/ioprio.txt
22 #include <linux/gfp.h>
23 #include <linux/kernel.h>
24 #include <linux/export.h>
25 #include <linux/ioprio.h>
26 #include <linux/blkdev.h>
27 #include <linux/capability.h>
28 #include <linux/syscalls.h>
29 #include <linux/security.h>
30 #include <linux/pid_namespace.h>
32 int set_task_ioprio(struct task_struct *task, int ioprio)
35 struct io_context *ioc;
36 const struct cred *cred = current_cred(), *tcred;
39 tcred = __task_cred(task);
40 if (tcred->uid != cred->euid &&
41 tcred->uid != cred->uid && !capable(CAP_SYS_NICE)) {
47 err = security_task_setioprio(task, ioprio);
51 ioc = get_task_io_context(task, GFP_ATOMIC, NUMA_NO_NODE);
53 ioc_ioprio_changed(ioc, ioprio);
54 put_io_context(ioc, NULL);
59 EXPORT_SYMBOL_GPL(set_task_ioprio);
61 SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio)
63 int class = IOPRIO_PRIO_CLASS(ioprio);
64 int data = IOPRIO_PRIO_DATA(ioprio);
65 struct task_struct *p, *g;
66 struct user_struct *user;
72 if (!capable(CAP_SYS_ADMIN))
74 /* fall through, rt has prio field too */
76 if (data >= IOPRIO_BE_NR || data < 0)
80 case IOPRIO_CLASS_IDLE:
82 case IOPRIO_CLASS_NONE:
93 case IOPRIO_WHO_PROCESS:
97 p = find_task_by_vpid(who);
99 ret = set_task_ioprio(p, ioprio);
101 case IOPRIO_WHO_PGRP:
103 pgrp = task_pgrp(current);
105 pgrp = find_vpid(who);
106 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
107 ret = set_task_ioprio(p, ioprio);
110 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
112 case IOPRIO_WHO_USER:
114 user = current_user();
116 user = find_user(who);
121 do_each_thread(g, p) {
122 if (__task_cred(p)->uid != who)
124 ret = set_task_ioprio(p, ioprio);
127 } while_each_thread(g, p);
140 static int get_task_ioprio(struct task_struct *p)
144 ret = security_task_getioprio(p);
147 ret = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE, IOPRIO_NORM);
149 ret = p->io_context->ioprio;
154 int ioprio_best(unsigned short aprio, unsigned short bprio)
156 unsigned short aclass = IOPRIO_PRIO_CLASS(aprio);
157 unsigned short bclass = IOPRIO_PRIO_CLASS(bprio);
159 if (aclass == IOPRIO_CLASS_NONE)
160 aclass = IOPRIO_CLASS_BE;
161 if (bclass == IOPRIO_CLASS_NONE)
162 bclass = IOPRIO_CLASS_BE;
164 if (aclass == bclass)
165 return min(aprio, bprio);
172 SYSCALL_DEFINE2(ioprio_get, int, which, int, who)
174 struct task_struct *g, *p;
175 struct user_struct *user;
182 case IOPRIO_WHO_PROCESS:
186 p = find_task_by_vpid(who);
188 ret = get_task_ioprio(p);
190 case IOPRIO_WHO_PGRP:
192 pgrp = task_pgrp(current);
194 pgrp = find_vpid(who);
195 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
196 tmpio = get_task_ioprio(p);
202 ret = ioprio_best(ret, tmpio);
203 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
205 case IOPRIO_WHO_USER:
207 user = current_user();
209 user = find_user(who);
214 do_each_thread(g, p) {
215 if (__task_cred(p)->uid != user->uid)
217 tmpio = get_task_ioprio(p);
223 ret = ioprio_best(ret, tmpio);
224 } while_each_thread(g, p);