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))
87 * We want IOPRIO_WHO_PGRP/IOPRIO_WHO_USER to be "atomic",
88 * so we can't use rcu_read_lock(). See re-copy of ->ioprio
91 read_lock(&tasklist_lock);
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_task(pgrp, PIDTYPE_PGID, p) {
107 ret = set_task_ioprio(p, ioprio);
110 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
112 case IOPRIO_WHO_USER:
114 user = current->user;
116 user = find_user(who);
121 do_each_thread(g, p) {
124 ret = set_task_ioprio(p, ioprio);
127 } while_each_thread(g, p);
136 read_unlock(&tasklist_lock);
140 static int get_task_ioprio(struct task_struct *p)
144 ret = security_task_getioprio(p);
152 int ioprio_best(unsigned short aprio, unsigned short bprio)
154 unsigned short aclass = IOPRIO_PRIO_CLASS(aprio);
155 unsigned short bclass = IOPRIO_PRIO_CLASS(bprio);
157 if (aclass == IOPRIO_CLASS_NONE)
158 aclass = IOPRIO_CLASS_BE;
159 if (bclass == IOPRIO_CLASS_NONE)
160 bclass = IOPRIO_CLASS_BE;
162 if (aclass == bclass)
163 return min(aprio, bprio);
170 asmlinkage long sys_ioprio_get(int which, int who)
172 struct task_struct *g, *p;
173 struct user_struct *user;
178 read_lock(&tasklist_lock);
180 case IOPRIO_WHO_PROCESS:
184 p = find_task_by_vpid(who);
186 ret = get_task_ioprio(p);
188 case IOPRIO_WHO_PGRP:
190 pgrp = task_pgrp(current);
192 pgrp = find_vpid(who);
193 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
194 tmpio = get_task_ioprio(p);
200 ret = ioprio_best(ret, tmpio);
201 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
203 case IOPRIO_WHO_USER:
205 user = current->user;
207 user = find_user(who);
212 do_each_thread(g, p) {
213 if (p->uid != user->uid)
215 tmpio = get_task_ioprio(p);
221 ret = ioprio_best(ret, tmpio);
222 } while_each_thread(g, p);
231 read_unlock(&tasklist_lock);