blob: d6ff77e8e7ec563b273bd94d2458ba89b1355cee [file] [log] [blame]
Jens Axboe22e2c502005-06-27 10:55:12 +02001/*
2 * fs/ioprio.c
3 *
Jens Axboe0fe23472006-09-04 15:41:16 +02004 * Copyright (C) 2004 Jens Axboe <axboe@kernel.dk>
Jens Axboe22e2c502005-06-27 10:55:12 +02005 *
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
11 * being the lowest.
12 *
13 * IOW, setting BE scheduling class with prio 2 is done ala:
14 *
15 * unsigned int prio = (IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT) | 2;
16 *
17 * ioprio_set(PRIO_PROCESS, pid, prio);
18 *
19 * See also Documentation/block/ioprio.txt
20 *
21 */
22#include <linux/kernel.h>
23#include <linux/ioprio.h>
24#include <linux/blkdev.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080025#include <linux/capability.h>
Adrian Bunk9abdc4c2005-11-08 16:57:02 +010026#include <linux/syscalls.h>
James Morris03e68062006-06-23 02:03:58 -070027#include <linux/security.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070028#include <linux/pid_namespace.h>
Jens Axboe22e2c502005-06-27 10:55:12 +020029
30static int set_task_ioprio(struct task_struct *task, int ioprio)
31{
James Morris03e68062006-06-23 02:03:58 -070032 int err;
Jens Axboe22e2c502005-06-27 10:55:12 +020033 struct io_context *ioc;
34
35 if (task->uid != current->euid &&
36 task->uid != current->uid && !capable(CAP_SYS_NICE))
37 return -EPERM;
38
James Morris03e68062006-06-23 02:03:58 -070039 err = security_task_setioprio(task, ioprio);
40 if (err)
41 return err;
42
Jens Axboe22e2c502005-06-27 10:55:12 +020043 task_lock(task);
44
45 task->ioprio = ioprio;
46
47 ioc = task->io_context;
Oleg Nesterov9f83e452006-08-21 08:34:15 +020048 /* see wmb() in current_io_context() */
49 smp_read_barrier_depends();
50
Jens Axboefc463792006-08-29 09:05:44 +020051 if (ioc)
52 ioc->ioprio_changed = 1;
Jens Axboe22e2c502005-06-27 10:55:12 +020053
54 task_unlock(task);
55 return 0;
56}
57
Anton Blanchardcf366802005-07-07 17:56:13 -070058asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
Jens Axboe22e2c502005-06-27 10:55:12 +020059{
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;
Eric W. Biederman41487c62007-02-12 00:53:01 -080064 struct pid *pgrp;
Jens Axboe22e2c502005-06-27 10:55:12 +020065 int ret;
66
67 switch (class) {
68 case IOPRIO_CLASS_RT:
69 if (!capable(CAP_SYS_ADMIN))
70 return -EPERM;
71 /* fall through, rt has prio field too */
72 case IOPRIO_CLASS_BE:
73 if (data >= IOPRIO_BE_NR || data < 0)
74 return -EINVAL;
75
76 break;
77 case IOPRIO_CLASS_IDLE:
Linus Torvaldsf6fdd7d2005-08-20 18:51:29 -070078 if (!capable(CAP_SYS_ADMIN))
79 return -EPERM;
Jens Axboe22e2c502005-06-27 10:55:12 +020080 break;
81 default:
82 return -EINVAL;
83 }
84
85 ret = -ESRCH;
Oleg Nesterovcf342e52006-08-29 09:17:41 +020086 /*
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
89 * in copy_process().
90 */
91 read_lock(&tasklist_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +020092 switch (which) {
93 case IOPRIO_WHO_PROCESS:
94 if (!who)
95 p = current;
96 else
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -070097 p = find_task_by_vpid(who);
Jens Axboe22e2c502005-06-27 10:55:12 +020098 if (p)
99 ret = set_task_ioprio(p, ioprio);
100 break;
101 case IOPRIO_WHO_PGRP:
102 if (!who)
Eric W. Biederman41487c62007-02-12 00:53:01 -0800103 pgrp = task_pgrp(current);
104 else
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700105 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800106 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Jens Axboe22e2c502005-06-27 10:55:12 +0200107 ret = set_task_ioprio(p, ioprio);
108 if (ret)
109 break;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800110 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Jens Axboe22e2c502005-06-27 10:55:12 +0200111 break;
112 case IOPRIO_WHO_USER:
113 if (!who)
114 user = current->user;
115 else
116 user = find_user(who);
117
118 if (!user)
119 break;
120
121 do_each_thread(g, p) {
122 if (p->uid != who)
123 continue;
124 ret = set_task_ioprio(p, ioprio);
125 if (ret)
Oleg Nesterov78bd4d42006-08-21 08:33:23 +0200126 goto free_uid;
Jens Axboe22e2c502005-06-27 10:55:12 +0200127 } while_each_thread(g, p);
Oleg Nesterov78bd4d42006-08-21 08:33:23 +0200128free_uid:
Jens Axboe22e2c502005-06-27 10:55:12 +0200129 if (who)
130 free_uid(user);
131 break;
132 default:
133 ret = -EINVAL;
134 }
135
Oleg Nesterovcf342e52006-08-29 09:17:41 +0200136 read_unlock(&tasklist_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +0200137 return ret;
138}
139
David Quigleya1836a42006-06-30 01:55:49 -0700140static int get_task_ioprio(struct task_struct *p)
141{
142 int ret;
143
144 ret = security_task_getioprio(p);
145 if (ret)
146 goto out;
147 ret = p->ioprio;
148out:
149 return ret;
150}
151
Oleg Nesterove014ff82006-08-21 10:02:50 +0200152int ioprio_best(unsigned short aprio, unsigned short bprio)
153{
154 unsigned short aclass = IOPRIO_PRIO_CLASS(aprio);
155 unsigned short bclass = IOPRIO_PRIO_CLASS(bprio);
156
Oleg Nesterove014ff82006-08-21 10:02:50 +0200157 if (aclass == IOPRIO_CLASS_NONE)
158 aclass = IOPRIO_CLASS_BE;
159 if (bclass == IOPRIO_CLASS_NONE)
160 bclass = IOPRIO_CLASS_BE;
161
162 if (aclass == bclass)
163 return min(aprio, bprio);
164 if (aclass > bclass)
165 return bprio;
166 else
167 return aprio;
168}
169
Anton Blanchardcf366802005-07-07 17:56:13 -0700170asmlinkage long sys_ioprio_get(int which, int who)
Jens Axboe22e2c502005-06-27 10:55:12 +0200171{
172 struct task_struct *g, *p;
173 struct user_struct *user;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800174 struct pid *pgrp;
Jens Axboe22e2c502005-06-27 10:55:12 +0200175 int ret = -ESRCH;
David Quigleya1836a42006-06-30 01:55:49 -0700176 int tmpio;
Jens Axboe22e2c502005-06-27 10:55:12 +0200177
Oleg Nesterovcf342e52006-08-29 09:17:41 +0200178 read_lock(&tasklist_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +0200179 switch (which) {
180 case IOPRIO_WHO_PROCESS:
181 if (!who)
182 p = current;
183 else
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700184 p = find_task_by_vpid(who);
Jens Axboe22e2c502005-06-27 10:55:12 +0200185 if (p)
David Quigleya1836a42006-06-30 01:55:49 -0700186 ret = get_task_ioprio(p);
Jens Axboe22e2c502005-06-27 10:55:12 +0200187 break;
188 case IOPRIO_WHO_PGRP:
189 if (!who)
Eric W. Biederman41487c62007-02-12 00:53:01 -0800190 pgrp = task_pgrp(current);
191 else
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700192 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800193 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
David Quigleya1836a42006-06-30 01:55:49 -0700194 tmpio = get_task_ioprio(p);
195 if (tmpio < 0)
196 continue;
Jens Axboe22e2c502005-06-27 10:55:12 +0200197 if (ret == -ESRCH)
David Quigleya1836a42006-06-30 01:55:49 -0700198 ret = tmpio;
Jens Axboe22e2c502005-06-27 10:55:12 +0200199 else
David Quigleya1836a42006-06-30 01:55:49 -0700200 ret = ioprio_best(ret, tmpio);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800201 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Jens Axboe22e2c502005-06-27 10:55:12 +0200202 break;
203 case IOPRIO_WHO_USER:
204 if (!who)
205 user = current->user;
206 else
207 user = find_user(who);
208
209 if (!user)
210 break;
211
212 do_each_thread(g, p) {
213 if (p->uid != user->uid)
214 continue;
David Quigleya1836a42006-06-30 01:55:49 -0700215 tmpio = get_task_ioprio(p);
216 if (tmpio < 0)
217 continue;
Jens Axboe22e2c502005-06-27 10:55:12 +0200218 if (ret == -ESRCH)
David Quigleya1836a42006-06-30 01:55:49 -0700219 ret = tmpio;
Jens Axboe22e2c502005-06-27 10:55:12 +0200220 else
David Quigleya1836a42006-06-30 01:55:49 -0700221 ret = ioprio_best(ret, tmpio);
Jens Axboe22e2c502005-06-27 10:55:12 +0200222 } while_each_thread(g, p);
223
224 if (who)
225 free_uid(user);
226 break;
227 default:
228 ret = -EINVAL;
229 }
230
Oleg Nesterovcf342e52006-08-29 09:17:41 +0200231 read_unlock(&tasklist_lock);
Jens Axboe22e2c502005-06-27 10:55:12 +0200232 return ret;
233}
234