fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / fs / ioprio.c
1 /*
2  * fs/ioprio.c
3  *
4  * Copyright (C) 2004 Jens Axboe <axboe@kernel.dk>
5  *
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>
25 #include <linux/capability.h>
26 #include <linux/syscalls.h>
27 #include <linux/security.h>
28 #include <linux/vs_base.h>
29
30 static int set_task_ioprio(struct task_struct *task, int ioprio)
31 {
32         int err;
33         struct io_context *ioc;
34
35         if (task->uid != current->euid &&
36             task->uid != current->uid && !capable(CAP_SYS_NICE))
37                 return -EPERM;
38
39         err = security_task_setioprio(task, ioprio);
40         if (err)
41                 return err;
42
43         task_lock(task);
44
45         task->ioprio = ioprio;
46
47         ioc = task->io_context;
48         /* see wmb() in current_io_context() */
49         smp_read_barrier_depends();
50
51         if (ioc)
52                 ioc->ioprio_changed = 1;
53
54         task_unlock(task);
55         return 0;
56 }
57
58 asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
59 {
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;
64         int ret;
65
66         switch (class) {
67                 case IOPRIO_CLASS_RT:
68                         if (!capable(CAP_SYS_ADMIN))
69                                 return -EPERM;
70                         /* fall through, rt has prio field too */
71                 case IOPRIO_CLASS_BE:
72                         if (data >= IOPRIO_BE_NR || data < 0)
73                                 return -EINVAL;
74
75                         break;
76                 case IOPRIO_CLASS_IDLE:
77                         if (!capable(CAP_SYS_ADMIN))
78                                 return -EPERM;
79                         break;
80                 default:
81                         return -EINVAL;
82         }
83
84         ret = -ESRCH;
85         /*
86          * We want IOPRIO_WHO_PGRP/IOPRIO_WHO_USER to be "atomic",
87          * so we can't use rcu_read_lock(). See re-copy of ->ioprio
88          * in copy_process().
89          */
90         read_lock(&tasklist_lock);
91         switch (which) {
92                 case IOPRIO_WHO_PROCESS:
93                         if (!who)
94                                 p = current;
95                         else
96                                 p = find_task_by_pid(who);
97                         if (p)
98                                 ret = set_task_ioprio(p, ioprio);
99                         break;
100                 case IOPRIO_WHO_PGRP:
101                         if (!who)
102                                 who = process_group(current);
103                         do_each_task_pid(who, PIDTYPE_PGID, p) {
104                                 if (!vx_check(p->xid, VS_ADMIN_P | VS_IDENT))
105                                         continue;
106                                 ret = set_task_ioprio(p, ioprio);
107                                 if (ret)
108                                         break;
109                         } while_each_task_pid(who, PIDTYPE_PGID, p);
110                         break;
111                 case IOPRIO_WHO_USER:
112                         if (!who)
113                                 user = current->user;
114                         else
115                                 user = find_user(vx_current_xid(), who);
116
117                         if (!user)
118                                 break;
119
120                         do_each_thread(g, p) {
121                                 if (p->uid != who)
122                                         continue;
123                                 ret = set_task_ioprio(p, ioprio);
124                                 if (ret)
125                                         goto free_uid;
126                         } while_each_thread(g, p);
127 free_uid:
128                         if (who)
129                                 free_uid(user);
130                         break;
131                 default:
132                         ret = -EINVAL;
133         }
134
135         read_unlock(&tasklist_lock);
136         return ret;
137 }
138
139 static int get_task_ioprio(struct task_struct *p)
140 {
141         int ret;
142
143         ret = security_task_getioprio(p);
144         if (ret)
145                 goto out;
146         ret = p->ioprio;
147 out:
148         return ret;
149 }
150
151 int ioprio_best(unsigned short aprio, unsigned short bprio)
152 {
153         unsigned short aclass = IOPRIO_PRIO_CLASS(aprio);
154         unsigned short bclass = IOPRIO_PRIO_CLASS(bprio);
155
156         if (aclass == IOPRIO_CLASS_NONE)
157                 aclass = IOPRIO_CLASS_BE;
158         if (bclass == IOPRIO_CLASS_NONE)
159                 bclass = IOPRIO_CLASS_BE;
160
161         if (aclass == bclass)
162                 return min(aprio, bprio);
163         if (aclass > bclass)
164                 return bprio;
165         else
166                 return aprio;
167 }
168
169 asmlinkage long sys_ioprio_get(int which, int who)
170 {
171         struct task_struct *g, *p;
172         struct user_struct *user;
173         int ret = -ESRCH;
174         int tmpio;
175
176         read_lock(&tasklist_lock);
177         switch (which) {
178                 case IOPRIO_WHO_PROCESS:
179                         if (!who)
180                                 p = current;
181                         else
182                                 p = find_task_by_pid(who);
183                         if (p)
184                                 ret = get_task_ioprio(p);
185                         break;
186                 case IOPRIO_WHO_PGRP:
187                         if (!who)
188                                 who = process_group(current);
189                         do_each_task_pid(who, PIDTYPE_PGID, p) {
190                                 if (!vx_check(p->xid, VS_ADMIN_P | VS_IDENT))
191                                         continue;
192                                 tmpio = get_task_ioprio(p);
193                                 if (tmpio < 0)
194                                         continue;
195                                 if (ret == -ESRCH)
196                                         ret = tmpio;
197                                 else
198                                         ret = ioprio_best(ret, tmpio);
199                         } while_each_task_pid(who, PIDTYPE_PGID, p);
200                         break;
201                 case IOPRIO_WHO_USER:
202                         if (!who)
203                                 user = current->user;
204                         else
205                                 user = find_user(vx_current_xid(), who);
206
207                         if (!user)
208                                 break;
209
210                         do_each_thread(g, p) {
211                                 if (p->uid != user->uid)
212                                         continue;
213                                 tmpio = get_task_ioprio(p);
214                                 if (tmpio < 0)
215                                         continue;
216                                 if (ret == -ESRCH)
217                                         ret = tmpio;
218                                 else
219                                         ret = ioprio_best(ret, tmpio);
220                         } while_each_thread(g, p);
221
222                         if (who)
223                                 free_uid(user);
224                         break;
225                 default:
226                         ret = -EINVAL;
227         }
228
229         read_unlock(&tasklist_lock);
230         return ret;
231 }
232