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
);
53 ioc
= task
->io_context
;
54 /* see wmb() in current_io_context() */
55 smp_read_barrier_depends();
59 ioc
= alloc_io_context(GFP_ATOMIC
, -1);
64 task
->io_context
= ioc
;
69 ioc
->ioprio_changed
= 1;
75 EXPORT_SYMBOL_GPL(set_task_ioprio
);
77 SYSCALL_DEFINE3(ioprio_set
, int, which
, int, who
, int, ioprio
)
79 int class = IOPRIO_PRIO_CLASS(ioprio
);
80 int data
= IOPRIO_PRIO_DATA(ioprio
);
81 struct task_struct
*p
, *g
;
82 struct user_struct
*user
;
88 if (!capable(CAP_SYS_ADMIN
))
90 /* fall through, rt has prio field too */
92 if (data
>= IOPRIO_BE_NR
|| data
< 0)
96 case IOPRIO_CLASS_IDLE
:
98 case IOPRIO_CLASS_NONE
:
109 case IOPRIO_WHO_PROCESS
:
113 p
= find_task_by_vpid(who
);
115 ret
= set_task_ioprio(p
, ioprio
);
117 case IOPRIO_WHO_PGRP
:
119 pgrp
= task_pgrp(current
);
121 pgrp
= find_vpid(who
);
122 do_each_pid_thread(pgrp
, PIDTYPE_PGID
, p
) {
123 ret
= set_task_ioprio(p
, ioprio
);
126 } while_each_pid_thread(pgrp
, PIDTYPE_PGID
, p
);
128 case IOPRIO_WHO_USER
:
130 user
= current_user();
132 user
= find_user(who
);
137 do_each_thread(g
, p
) {
138 if (__task_cred(p
)->uid
!= who
)
140 ret
= set_task_ioprio(p
, ioprio
);
143 } while_each_thread(g
, p
);
156 static int get_task_ioprio(struct task_struct
*p
)
160 ret
= security_task_getioprio(p
);
163 ret
= IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE
, IOPRIO_NORM
);
165 ret
= p
->io_context
->ioprio
;
170 int ioprio_best(unsigned short aprio
, unsigned short bprio
)
172 unsigned short aclass
= IOPRIO_PRIO_CLASS(aprio
);
173 unsigned short bclass
= IOPRIO_PRIO_CLASS(bprio
);
175 if (aclass
== IOPRIO_CLASS_NONE
)
176 aclass
= IOPRIO_CLASS_BE
;
177 if (bclass
== IOPRIO_CLASS_NONE
)
178 bclass
= IOPRIO_CLASS_BE
;
180 if (aclass
== bclass
)
181 return min(aprio
, bprio
);
188 SYSCALL_DEFINE2(ioprio_get
, int, which
, int, who
)
190 struct task_struct
*g
, *p
;
191 struct user_struct
*user
;
198 case IOPRIO_WHO_PROCESS
:
202 p
= find_task_by_vpid(who
);
204 ret
= get_task_ioprio(p
);
206 case IOPRIO_WHO_PGRP
:
208 pgrp
= task_pgrp(current
);
210 pgrp
= find_vpid(who
);
211 do_each_pid_thread(pgrp
, PIDTYPE_PGID
, p
) {
212 tmpio
= get_task_ioprio(p
);
218 ret
= ioprio_best(ret
, tmpio
);
219 } while_each_pid_thread(pgrp
, PIDTYPE_PGID
, p
);
221 case IOPRIO_WHO_USER
:
223 user
= current_user();
225 user
= find_user(who
);
230 do_each_thread(g
, p
) {
231 if (__task_cred(p
)->uid
!= user
->uid
)
233 tmpio
= get_task_ioprio(p
);
239 ret
= ioprio_best(ret
, tmpio
);
240 } while_each_thread(g
, p
);