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/kernel.h>
23 #include <linux/ioprio.h>
24 #include <linux/blkdev.h>
25 #include <linux/capability.h>
26 #include <linux/syscalls.h>
27 #include <linux/security.h>
28 #include <linux/pid_namespace.h>
30 static int set_task_ioprio(struct task_struct
*task
, int ioprio
)
33 struct io_context
*ioc
;
35 if (task
->uid
!= current
->euid
&&
36 task
->uid
!= current
->uid
&& !capable(CAP_SYS_NICE
))
39 err
= security_task_setioprio(task
, ioprio
);
45 task
->ioprio
= ioprio
;
47 ioc
= task
->io_context
;
48 /* see wmb() in current_io_context() */
49 smp_read_barrier_depends();
52 ioc
->ioprio_changed
= 1;
58 asmlinkage
long sys_ioprio_set(int which
, int who
, int ioprio
)
60 int class = IOPRIO_PRIO_CLASS(ioprio
);
61 int data
= IOPRIO_PRIO_DATA(ioprio
);
62 struct task_struct
*p
, *g
;
63 struct user_struct
*user
;
69 if (!capable(CAP_SYS_ADMIN
))
71 /* fall through, rt has prio field too */
73 if (data
>= IOPRIO_BE_NR
|| data
< 0)
77 case IOPRIO_CLASS_IDLE
:
78 if (!capable(CAP_SYS_ADMIN
))
81 case IOPRIO_CLASS_NONE
:
91 * We want IOPRIO_WHO_PGRP/IOPRIO_WHO_USER to be "atomic",
92 * so we can't use rcu_read_lock(). See re-copy of ->ioprio
95 read_lock(&tasklist_lock
);
97 case IOPRIO_WHO_PROCESS
:
101 p
= find_task_by_vpid(who
);
103 ret
= set_task_ioprio(p
, ioprio
);
105 case IOPRIO_WHO_PGRP
:
107 pgrp
= task_pgrp(current
);
109 pgrp
= find_vpid(who
);
110 do_each_pid_task(pgrp
, PIDTYPE_PGID
, p
) {
111 ret
= set_task_ioprio(p
, ioprio
);
114 } while_each_pid_task(pgrp
, PIDTYPE_PGID
, p
);
116 case IOPRIO_WHO_USER
:
118 user
= current
->user
;
120 user
= find_user(who
);
125 do_each_thread(g
, p
) {
128 ret
= set_task_ioprio(p
, ioprio
);
131 } while_each_thread(g
, p
);
140 read_unlock(&tasklist_lock
);
144 static int get_task_ioprio(struct task_struct
*p
)
148 ret
= security_task_getioprio(p
);
156 int ioprio_best(unsigned short aprio
, unsigned short bprio
)
158 unsigned short aclass
= IOPRIO_PRIO_CLASS(aprio
);
159 unsigned short bclass
= IOPRIO_PRIO_CLASS(bprio
);
161 if (aclass
== IOPRIO_CLASS_NONE
)
162 aclass
= IOPRIO_CLASS_BE
;
163 if (bclass
== IOPRIO_CLASS_NONE
)
164 bclass
= IOPRIO_CLASS_BE
;
166 if (aclass
== bclass
)
167 return min(aprio
, bprio
);
174 asmlinkage
long sys_ioprio_get(int which
, int who
)
176 struct task_struct
*g
, *p
;
177 struct user_struct
*user
;
182 read_lock(&tasklist_lock
);
184 case IOPRIO_WHO_PROCESS
:
188 p
= find_task_by_vpid(who
);
190 ret
= get_task_ioprio(p
);
192 case IOPRIO_WHO_PGRP
:
194 pgrp
= task_pgrp(current
);
196 pgrp
= find_vpid(who
);
197 do_each_pid_task(pgrp
, PIDTYPE_PGID
, p
) {
198 tmpio
= get_task_ioprio(p
);
204 ret
= ioprio_best(ret
, tmpio
);
205 } while_each_pid_task(pgrp
, PIDTYPE_PGID
, p
);
207 case IOPRIO_WHO_USER
:
209 user
= current
->user
;
211 user
= find_user(who
);
216 do_each_thread(g
, p
) {
217 if (p
->uid
!= user
->uid
)
219 tmpio
= get_task_ioprio(p
);
225 ret
= ioprio_best(ret
, tmpio
);
226 } while_each_thread(g
, p
);
235 read_unlock(&tasklist_lock
);