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>
29 static int set_task_ioprio(struct task_struct *task, int ioprio)
32 struct io_context *ioc;
34 if (task->uid != current->euid &&
35 task->uid != current->uid && !capable(CAP_SYS_NICE))
38 err = security_task_setioprio(task, ioprio);
44 task->ioprio = ioprio;
46 ioc = task->io_context;
47 /* see wmb() in current_io_context() */
48 smp_read_barrier_depends();
51 ioc->ioprio_changed = 1;
57 asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
59 int class = IOPRIO_PRIO_CLASS(ioprio);
60 int data = IOPRIO_PRIO_DATA(ioprio);
61 struct task_struct *p, *g;
62 struct user_struct *user;
67 if (!capable(CAP_SYS_ADMIN))
69 /* fall through, rt has prio field too */
71 if (data >= IOPRIO_BE_NR || data < 0)
75 case IOPRIO_CLASS_IDLE:
76 if (!capable(CAP_SYS_ADMIN))
85 * We want IOPRIO_WHO_PGRP/IOPRIO_WHO_USER to be "atomic",
86 * so we can't use rcu_read_lock(). See re-copy of ->ioprio
89 read_lock(&tasklist_lock);
91 case IOPRIO_WHO_PROCESS:
95 p = find_task_by_pid(who);
97 ret = set_task_ioprio(p, ioprio);
101 who = process_group(current);
102 do_each_task_pid(who, PIDTYPE_PGID, p) {
103 ret = set_task_ioprio(p, ioprio);
106 } while_each_task_pid(who, PIDTYPE_PGID, p);
108 case IOPRIO_WHO_USER:
110 user = current->user;
112 user = find_user(who);
117 do_each_thread(g, p) {
120 ret = set_task_ioprio(p, ioprio);
123 } while_each_thread(g, p);
132 read_unlock(&tasklist_lock);
136 static int get_task_ioprio(struct task_struct *p)
140 ret = security_task_getioprio(p);
148 int ioprio_best(unsigned short aprio, unsigned short bprio)
150 unsigned short aclass = IOPRIO_PRIO_CLASS(aprio);
151 unsigned short bclass = IOPRIO_PRIO_CLASS(bprio);
153 if (!ioprio_valid(aprio))
155 if (!ioprio_valid(bprio))
158 if (aclass == IOPRIO_CLASS_NONE)
159 aclass = IOPRIO_CLASS_BE;
160 if (bclass == IOPRIO_CLASS_NONE)
161 bclass = IOPRIO_CLASS_BE;
163 if (aclass == bclass)
164 return min(aprio, bprio);
171 asmlinkage long sys_ioprio_get(int which, int who)
173 struct task_struct *g, *p;
174 struct user_struct *user;
178 read_lock(&tasklist_lock);
180 case IOPRIO_WHO_PROCESS:
184 p = find_task_by_pid(who);
186 ret = get_task_ioprio(p);
188 case IOPRIO_WHO_PGRP:
190 who = process_group(current);
191 do_each_task_pid(who, PIDTYPE_PGID, p) {
192 tmpio = get_task_ioprio(p);
198 ret = ioprio_best(ret, tmpio);
199 } while_each_task_pid(who, PIDTYPE_PGID, p);
201 case IOPRIO_WHO_USER:
203 user = current->user;
205 user = find_user(who);
210 do_each_thread(g, p) {
211 if (p->uid != user->uid)
213 tmpio = get_task_ioprio(p);
219 ret = ioprio_best(ret, tmpio);
220 } while_each_thread(g, p);
229 read_unlock(&tasklist_lock);