blob: df4c3a8f5df918d6112cee54556bf11d84832cce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/sys.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
8#include <linux/mm.h>
9#include <linux/utsname.h>
10#include <linux/mman.h>
11#include <linux/smp_lock.h>
12#include <linux/notifier.h>
13#include <linux/reboot.h>
14#include <linux/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/highuid.h>
16#include <linux/fs.h>
Daniel Walker3e88c552007-05-10 22:22:53 -070017#include <linux/resource.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070018#include <linux/kernel.h>
19#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/workqueue.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/device.h>
23#include <linux/key.h>
24#include <linux/times.h>
25#include <linux/posix-timers.h>
26#include <linux/security.h>
27#include <linux/dcookies.h>
28#include <linux/suspend.h>
29#include <linux/tty.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070030#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080031#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020032#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070033#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <linux/compat.h>
36#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080037#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/uaccess.h>
40#include <asm/io.h>
41#include <asm/unistd.h>
42
43#ifndef SET_UNALIGN_CTL
44# define SET_UNALIGN_CTL(a,b) (-EINVAL)
45#endif
46#ifndef GET_UNALIGN_CTL
47# define GET_UNALIGN_CTL(a,b) (-EINVAL)
48#endif
49#ifndef SET_FPEMU_CTL
50# define SET_FPEMU_CTL(a,b) (-EINVAL)
51#endif
52#ifndef GET_FPEMU_CTL
53# define GET_FPEMU_CTL(a,b) (-EINVAL)
54#endif
55#ifndef SET_FPEXC_CTL
56# define SET_FPEXC_CTL(a,b) (-EINVAL)
57#endif
58#ifndef GET_FPEXC_CTL
59# define GET_FPEXC_CTL(a,b) (-EINVAL)
60#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100061#ifndef GET_ENDIAN
62# define GET_ENDIAN(a,b) (-EINVAL)
63#endif
64#ifndef SET_ENDIAN
65# define SET_ENDIAN(a,b) (-EINVAL)
66#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 * this is where the system-wide overflow UID and GID are defined, for
70 * architectures that now have 32-bit UID/GID but didn't in the past
71 */
72
73int overflowuid = DEFAULT_OVERFLOWUID;
74int overflowgid = DEFAULT_OVERFLOWGID;
75
76#ifdef CONFIG_UID16
77EXPORT_SYMBOL(overflowuid);
78EXPORT_SYMBOL(overflowgid);
79#endif
80
81/*
82 * the same as above, but for filesystems which can only store a 16-bit
83 * UID and GID. as such, this is needed on all architectures
84 */
85
86int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
87int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
88
89EXPORT_SYMBOL(fs_overflowuid);
90EXPORT_SYMBOL(fs_overflowgid);
91
92/*
93 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
94 */
95
96int C_A_D = 1;
Cedric Le Goater9ec52092006-10-02 02:19:00 -070097struct pid *cad_pid;
98EXPORT_SYMBOL(cad_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * Notifier list for kernel code which wants to be called
102 * at shutdown. This is used to stop any idling DMA operations
103 * and the like.
104 */
105
Alan Sterne041c682006-03-27 01:16:30 -0800106static BLOCKING_NOTIFIER_HEAD(reboot_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Alan Sterne041c682006-03-27 01:16:30 -0800108/*
109 * Notifier chain core routines. The exported routines below
110 * are layered on top of these, with appropriate locking added.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Alan Sterne041c682006-03-27 01:16:30 -0800112
113static int notifier_chain_register(struct notifier_block **nl,
114 struct notifier_block *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Alan Sterne041c682006-03-27 01:16:30 -0800116 while ((*nl) != NULL) {
117 if (n->priority > (*nl)->priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 break;
Alan Sterne041c682006-03-27 01:16:30 -0800119 nl = &((*nl)->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
Alan Sterne041c682006-03-27 01:16:30 -0800121 n->next = *nl;
122 rcu_assign_pointer(*nl, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return 0;
124}
125
Alan Sterne041c682006-03-27 01:16:30 -0800126static int notifier_chain_unregister(struct notifier_block **nl,
127 struct notifier_block *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Alan Sterne041c682006-03-27 01:16:30 -0800129 while ((*nl) != NULL) {
130 if ((*nl) == n) {
131 rcu_assign_pointer(*nl, n->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return 0;
133 }
Alan Sterne041c682006-03-27 01:16:30 -0800134 nl = &((*nl)->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -ENOENT;
137}
138
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700139/**
140 * notifier_call_chain - Informs the registered notifiers about an event.
141 * @nl: Pointer to head of the blocking notifier chain
142 * @val: Value passed unmodified to notifier function
143 * @v: Pointer passed unmodified to notifier function
144 * @nr_to_call: Number of notifier functions to be called. Don't care
145 * value of this parameter is -1.
146 * @nr_calls: Records the number of notifications sent. Don't care
147 * value of this field is NULL.
148 * @returns: notifier_call_chain returns the value returned by the
149 * last notifier function called.
150 */
151
Alan Sterne041c682006-03-27 01:16:30 -0800152static int __kprobes notifier_call_chain(struct notifier_block **nl,
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700153 unsigned long val, void *v,
154 int nr_to_call, int *nr_calls)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Alan Sterne041c682006-03-27 01:16:30 -0800156 int ret = NOTIFY_DONE;
Alan Sternbbb17472006-06-25 05:47:15 -0700157 struct notifier_block *nb, *next_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Alan Sterne041c682006-03-27 01:16:30 -0800159 nb = rcu_dereference(*nl);
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700160
161 while (nb && nr_to_call) {
Alan Sternbbb17472006-06-25 05:47:15 -0700162 next_nb = rcu_dereference(nb->next);
Alan Sterne041c682006-03-27 01:16:30 -0800163 ret = nb->notifier_call(nb, val, v);
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700164
165 if (nr_calls)
166 (*nr_calls)++;
167
Alan Sterne041c682006-03-27 01:16:30 -0800168 if ((ret & NOTIFY_STOP_MASK) == NOTIFY_STOP_MASK)
169 break;
Alan Sternbbb17472006-06-25 05:47:15 -0700170 nb = next_nb;
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700171 nr_to_call--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173 return ret;
174}
175
Alan Sterne041c682006-03-27 01:16:30 -0800176/*
177 * Atomic notifier chain routines. Registration and unregistration
Alan Sterneabc0692006-10-04 02:17:04 -0700178 * use a spinlock, and call_chain is synchronized by RCU (no locks).
Alan Sterne041c682006-03-27 01:16:30 -0800179 */
180
181/**
182 * atomic_notifier_chain_register - Add notifier to an atomic notifier chain
183 * @nh: Pointer to head of the atomic notifier chain
184 * @n: New entry in notifier chain
185 *
186 * Adds a notifier to an atomic notifier chain.
187 *
188 * Currently always returns zero.
189 */
190
191int atomic_notifier_chain_register(struct atomic_notifier_head *nh,
192 struct notifier_block *n)
193{
194 unsigned long flags;
195 int ret;
196
197 spin_lock_irqsave(&nh->lock, flags);
198 ret = notifier_chain_register(&nh->head, n);
199 spin_unlock_irqrestore(&nh->lock, flags);
200 return ret;
201}
202
203EXPORT_SYMBOL_GPL(atomic_notifier_chain_register);
204
205/**
206 * atomic_notifier_chain_unregister - Remove notifier from an atomic notifier chain
207 * @nh: Pointer to head of the atomic notifier chain
208 * @n: Entry to remove from notifier chain
209 *
210 * Removes a notifier from an atomic notifier chain.
211 *
212 * Returns zero on success or %-ENOENT on failure.
213 */
214int atomic_notifier_chain_unregister(struct atomic_notifier_head *nh,
215 struct notifier_block *n)
216{
217 unsigned long flags;
218 int ret;
219
220 spin_lock_irqsave(&nh->lock, flags);
221 ret = notifier_chain_unregister(&nh->head, n);
222 spin_unlock_irqrestore(&nh->lock, flags);
223 synchronize_rcu();
224 return ret;
225}
226
227EXPORT_SYMBOL_GPL(atomic_notifier_chain_unregister);
228
229/**
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700230 * __atomic_notifier_call_chain - Call functions in an atomic notifier chain
Alan Sterne041c682006-03-27 01:16:30 -0800231 * @nh: Pointer to head of the atomic notifier chain
232 * @val: Value passed unmodified to notifier function
233 * @v: Pointer passed unmodified to notifier function
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700234 * @nr_to_call: See the comment for notifier_call_chain.
235 * @nr_calls: See the comment for notifier_call_chain.
Alan Sterne041c682006-03-27 01:16:30 -0800236 *
237 * Calls each function in a notifier chain in turn. The functions
238 * run in an atomic context, so they must not block.
239 * This routine uses RCU to synchronize with changes to the chain.
240 *
241 * If the return value of the notifier can be and'ed
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800242 * with %NOTIFY_STOP_MASK then atomic_notifier_call_chain()
Alan Sterne041c682006-03-27 01:16:30 -0800243 * will return immediately, with the return value of
244 * the notifier function which halted execution.
245 * Otherwise the return value is the return value
246 * of the last notifier function called.
247 */
248
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700249int __kprobes __atomic_notifier_call_chain(struct atomic_notifier_head *nh,
250 unsigned long val, void *v,
251 int nr_to_call, int *nr_calls)
Alan Sterne041c682006-03-27 01:16:30 -0800252{
253 int ret;
254
255 rcu_read_lock();
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700256 ret = notifier_call_chain(&nh->head, val, v, nr_to_call, nr_calls);
Alan Sterne041c682006-03-27 01:16:30 -0800257 rcu_read_unlock();
258 return ret;
259}
260
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700261EXPORT_SYMBOL_GPL(__atomic_notifier_call_chain);
Alan Sterne041c682006-03-27 01:16:30 -0800262
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700263int __kprobes atomic_notifier_call_chain(struct atomic_notifier_head *nh,
264 unsigned long val, void *v)
265{
266 return __atomic_notifier_call_chain(nh, val, v, -1, NULL);
267}
268
269EXPORT_SYMBOL_GPL(atomic_notifier_call_chain);
Alan Sterne041c682006-03-27 01:16:30 -0800270/*
271 * Blocking notifier chain routines. All access to the chain is
272 * synchronized by an rwsem.
273 */
274
275/**
276 * blocking_notifier_chain_register - Add notifier to a blocking notifier chain
277 * @nh: Pointer to head of the blocking notifier chain
278 * @n: New entry in notifier chain
279 *
280 * Adds a notifier to a blocking notifier chain.
281 * Must be called in process context.
282 *
283 * Currently always returns zero.
284 */
285
286int blocking_notifier_chain_register(struct blocking_notifier_head *nh,
287 struct notifier_block *n)
288{
289 int ret;
290
291 /*
292 * This code gets used during boot-up, when task switching is
293 * not yet working and interrupts must remain disabled. At
294 * such times we must not call down_write().
295 */
296 if (unlikely(system_state == SYSTEM_BOOTING))
297 return notifier_chain_register(&nh->head, n);
298
299 down_write(&nh->rwsem);
300 ret = notifier_chain_register(&nh->head, n);
301 up_write(&nh->rwsem);
302 return ret;
303}
304
305EXPORT_SYMBOL_GPL(blocking_notifier_chain_register);
306
307/**
308 * blocking_notifier_chain_unregister - Remove notifier from a blocking notifier chain
309 * @nh: Pointer to head of the blocking notifier chain
310 * @n: Entry to remove from notifier chain
311 *
312 * Removes a notifier from a blocking notifier chain.
313 * Must be called from process context.
314 *
315 * Returns zero on success or %-ENOENT on failure.
316 */
317int blocking_notifier_chain_unregister(struct blocking_notifier_head *nh,
318 struct notifier_block *n)
319{
320 int ret;
321
322 /*
323 * This code gets used during boot-up, when task switching is
324 * not yet working and interrupts must remain disabled. At
325 * such times we must not call down_write().
326 */
327 if (unlikely(system_state == SYSTEM_BOOTING))
328 return notifier_chain_unregister(&nh->head, n);
329
330 down_write(&nh->rwsem);
331 ret = notifier_chain_unregister(&nh->head, n);
332 up_write(&nh->rwsem);
333 return ret;
334}
335
336EXPORT_SYMBOL_GPL(blocking_notifier_chain_unregister);
337
338/**
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700339 * __blocking_notifier_call_chain - Call functions in a blocking notifier chain
Alan Sterne041c682006-03-27 01:16:30 -0800340 * @nh: Pointer to head of the blocking notifier chain
341 * @val: Value passed unmodified to notifier function
342 * @v: Pointer passed unmodified to notifier function
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700343 * @nr_to_call: See comment for notifier_call_chain.
344 * @nr_calls: See comment for notifier_call_chain.
Alan Sterne041c682006-03-27 01:16:30 -0800345 *
346 * Calls each function in a notifier chain in turn. The functions
347 * run in a process context, so they are allowed to block.
348 *
349 * If the return value of the notifier can be and'ed
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800350 * with %NOTIFY_STOP_MASK then blocking_notifier_call_chain()
Alan Sterne041c682006-03-27 01:16:30 -0800351 * will return immediately, with the return value of
352 * the notifier function which halted execution.
353 * Otherwise the return value is the return value
354 * of the last notifier function called.
355 */
356
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700357int __blocking_notifier_call_chain(struct blocking_notifier_head *nh,
358 unsigned long val, void *v,
359 int nr_to_call, int *nr_calls)
Alan Sterne041c682006-03-27 01:16:30 -0800360{
Ingo Molnar1b5180b2007-01-23 10:45:50 +0100361 int ret = NOTIFY_DONE;
Alan Sterne041c682006-03-27 01:16:30 -0800362
Ingo Molnar1b5180b2007-01-23 10:45:50 +0100363 /*
364 * We check the head outside the lock, but if this access is
365 * racy then it does not matter what the result of the test
366 * is, we re-check the list after having taken the lock anyway:
367 */
368 if (rcu_dereference(nh->head)) {
369 down_read(&nh->rwsem);
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700370 ret = notifier_call_chain(&nh->head, val, v, nr_to_call,
371 nr_calls);
Ingo Molnar1b5180b2007-01-23 10:45:50 +0100372 up_read(&nh->rwsem);
373 }
Alan Sterne041c682006-03-27 01:16:30 -0800374 return ret;
375}
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700376EXPORT_SYMBOL_GPL(__blocking_notifier_call_chain);
Alan Sterne041c682006-03-27 01:16:30 -0800377
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700378int blocking_notifier_call_chain(struct blocking_notifier_head *nh,
379 unsigned long val, void *v)
380{
381 return __blocking_notifier_call_chain(nh, val, v, -1, NULL);
382}
Alan Sterne041c682006-03-27 01:16:30 -0800383EXPORT_SYMBOL_GPL(blocking_notifier_call_chain);
384
385/*
386 * Raw notifier chain routines. There is no protection;
387 * the caller must provide it. Use at your own risk!
388 */
389
390/**
391 * raw_notifier_chain_register - Add notifier to a raw notifier chain
392 * @nh: Pointer to head of the raw notifier chain
393 * @n: New entry in notifier chain
394 *
395 * Adds a notifier to a raw notifier chain.
396 * All locking must be provided by the caller.
397 *
398 * Currently always returns zero.
399 */
400
401int raw_notifier_chain_register(struct raw_notifier_head *nh,
402 struct notifier_block *n)
403{
404 return notifier_chain_register(&nh->head, n);
405}
406
407EXPORT_SYMBOL_GPL(raw_notifier_chain_register);
408
409/**
410 * raw_notifier_chain_unregister - Remove notifier from a raw notifier chain
411 * @nh: Pointer to head of the raw notifier chain
412 * @n: Entry to remove from notifier chain
413 *
414 * Removes a notifier from a raw notifier chain.
415 * All locking must be provided by the caller.
416 *
417 * Returns zero on success or %-ENOENT on failure.
418 */
419int raw_notifier_chain_unregister(struct raw_notifier_head *nh,
420 struct notifier_block *n)
421{
422 return notifier_chain_unregister(&nh->head, n);
423}
424
425EXPORT_SYMBOL_GPL(raw_notifier_chain_unregister);
426
427/**
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700428 * __raw_notifier_call_chain - Call functions in a raw notifier chain
Alan Sterne041c682006-03-27 01:16:30 -0800429 * @nh: Pointer to head of the raw notifier chain
430 * @val: Value passed unmodified to notifier function
431 * @v: Pointer passed unmodified to notifier function
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700432 * @nr_to_call: See comment for notifier_call_chain.
433 * @nr_calls: See comment for notifier_call_chain
Alan Sterne041c682006-03-27 01:16:30 -0800434 *
435 * Calls each function in a notifier chain in turn. The functions
436 * run in an undefined context.
437 * All locking must be provided by the caller.
438 *
439 * If the return value of the notifier can be and'ed
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800440 * with %NOTIFY_STOP_MASK then raw_notifier_call_chain()
Alan Sterne041c682006-03-27 01:16:30 -0800441 * will return immediately, with the return value of
442 * the notifier function which halted execution.
443 * Otherwise the return value is the return value
444 * of the last notifier function called.
445 */
446
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700447int __raw_notifier_call_chain(struct raw_notifier_head *nh,
448 unsigned long val, void *v,
449 int nr_to_call, int *nr_calls)
450{
451 return notifier_call_chain(&nh->head, val, v, nr_to_call, nr_calls);
452}
453
454EXPORT_SYMBOL_GPL(__raw_notifier_call_chain);
455
Alan Sterne041c682006-03-27 01:16:30 -0800456int raw_notifier_call_chain(struct raw_notifier_head *nh,
457 unsigned long val, void *v)
458{
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700459 return __raw_notifier_call_chain(nh, val, v, -1, NULL);
Alan Sterne041c682006-03-27 01:16:30 -0800460}
461
462EXPORT_SYMBOL_GPL(raw_notifier_call_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Alan Sterneabc0692006-10-04 02:17:04 -0700464/*
465 * SRCU notifier chain routines. Registration and unregistration
466 * use a mutex, and call_chain is synchronized by SRCU (no locks).
467 */
468
469/**
470 * srcu_notifier_chain_register - Add notifier to an SRCU notifier chain
471 * @nh: Pointer to head of the SRCU notifier chain
472 * @n: New entry in notifier chain
473 *
474 * Adds a notifier to an SRCU notifier chain.
475 * Must be called in process context.
476 *
477 * Currently always returns zero.
478 */
479
480int srcu_notifier_chain_register(struct srcu_notifier_head *nh,
481 struct notifier_block *n)
482{
483 int ret;
484
485 /*
486 * This code gets used during boot-up, when task switching is
487 * not yet working and interrupts must remain disabled. At
488 * such times we must not call mutex_lock().
489 */
490 if (unlikely(system_state == SYSTEM_BOOTING))
491 return notifier_chain_register(&nh->head, n);
492
493 mutex_lock(&nh->mutex);
494 ret = notifier_chain_register(&nh->head, n);
495 mutex_unlock(&nh->mutex);
496 return ret;
497}
498
499EXPORT_SYMBOL_GPL(srcu_notifier_chain_register);
500
501/**
502 * srcu_notifier_chain_unregister - Remove notifier from an SRCU notifier chain
503 * @nh: Pointer to head of the SRCU notifier chain
504 * @n: Entry to remove from notifier chain
505 *
506 * Removes a notifier from an SRCU notifier chain.
507 * Must be called from process context.
508 *
509 * Returns zero on success or %-ENOENT on failure.
510 */
511int srcu_notifier_chain_unregister(struct srcu_notifier_head *nh,
512 struct notifier_block *n)
513{
514 int ret;
515
516 /*
517 * This code gets used during boot-up, when task switching is
518 * not yet working and interrupts must remain disabled. At
519 * such times we must not call mutex_lock().
520 */
521 if (unlikely(system_state == SYSTEM_BOOTING))
522 return notifier_chain_unregister(&nh->head, n);
523
524 mutex_lock(&nh->mutex);
525 ret = notifier_chain_unregister(&nh->head, n);
526 mutex_unlock(&nh->mutex);
527 synchronize_srcu(&nh->srcu);
528 return ret;
529}
530
531EXPORT_SYMBOL_GPL(srcu_notifier_chain_unregister);
532
533/**
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700534 * __srcu_notifier_call_chain - Call functions in an SRCU notifier chain
Alan Sterneabc0692006-10-04 02:17:04 -0700535 * @nh: Pointer to head of the SRCU notifier chain
536 * @val: Value passed unmodified to notifier function
537 * @v: Pointer passed unmodified to notifier function
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700538 * @nr_to_call: See comment for notifier_call_chain.
539 * @nr_calls: See comment for notifier_call_chain
Alan Sterneabc0692006-10-04 02:17:04 -0700540 *
541 * Calls each function in a notifier chain in turn. The functions
542 * run in a process context, so they are allowed to block.
543 *
544 * If the return value of the notifier can be and'ed
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800545 * with %NOTIFY_STOP_MASK then srcu_notifier_call_chain()
Alan Sterneabc0692006-10-04 02:17:04 -0700546 * will return immediately, with the return value of
547 * the notifier function which halted execution.
548 * Otherwise the return value is the return value
549 * of the last notifier function called.
550 */
551
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700552int __srcu_notifier_call_chain(struct srcu_notifier_head *nh,
553 unsigned long val, void *v,
554 int nr_to_call, int *nr_calls)
Alan Sterneabc0692006-10-04 02:17:04 -0700555{
556 int ret;
557 int idx;
558
559 idx = srcu_read_lock(&nh->srcu);
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700560 ret = notifier_call_chain(&nh->head, val, v, nr_to_call, nr_calls);
Alan Sterneabc0692006-10-04 02:17:04 -0700561 srcu_read_unlock(&nh->srcu, idx);
562 return ret;
563}
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700564EXPORT_SYMBOL_GPL(__srcu_notifier_call_chain);
Alan Sterneabc0692006-10-04 02:17:04 -0700565
Gautham R Shenoy6f7cc112007-05-09 02:34:02 -0700566int srcu_notifier_call_chain(struct srcu_notifier_head *nh,
567 unsigned long val, void *v)
568{
569 return __srcu_notifier_call_chain(nh, val, v, -1, NULL);
570}
Alan Sterneabc0692006-10-04 02:17:04 -0700571EXPORT_SYMBOL_GPL(srcu_notifier_call_chain);
572
573/**
574 * srcu_init_notifier_head - Initialize an SRCU notifier head
575 * @nh: Pointer to head of the srcu notifier chain
576 *
577 * Unlike other sorts of notifier heads, SRCU notifier heads require
578 * dynamic initialization. Be sure to call this routine before
579 * calling any of the other SRCU notifier routines for this head.
580 *
581 * If an SRCU notifier head is deallocated, it must first be cleaned
582 * up by calling srcu_cleanup_notifier_head(). Otherwise the head's
583 * per-cpu data (used by the SRCU mechanism) will leak.
584 */
585
586void srcu_init_notifier_head(struct srcu_notifier_head *nh)
587{
588 mutex_init(&nh->mutex);
Alan Sterne6a92012006-10-04 02:17:05 -0700589 if (init_srcu_struct(&nh->srcu) < 0)
590 BUG();
Alan Sterneabc0692006-10-04 02:17:04 -0700591 nh->head = NULL;
592}
593
594EXPORT_SYMBOL_GPL(srcu_init_notifier_head);
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/**
597 * register_reboot_notifier - Register function to be called at reboot time
598 * @nb: Info about notifier function to be called
599 *
600 * Registers a function with the list of functions
601 * to be called at reboot time.
602 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800603 * Currently always returns zero, as blocking_notifier_chain_register()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * always returns zero.
605 */
606
607int register_reboot_notifier(struct notifier_block * nb)
608{
Alan Sterne041c682006-03-27 01:16:30 -0800609 return blocking_notifier_chain_register(&reboot_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
612EXPORT_SYMBOL(register_reboot_notifier);
613
614/**
615 * unregister_reboot_notifier - Unregister previously registered reboot notifier
616 * @nb: Hook to be unregistered
617 *
618 * Unregisters a previously registered reboot
619 * notifier function.
620 *
621 * Returns zero on success, or %-ENOENT on failure.
622 */
623
624int unregister_reboot_notifier(struct notifier_block * nb)
625{
Alan Sterne041c682006-03-27 01:16:30 -0800626 return blocking_notifier_chain_unregister(&reboot_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629EXPORT_SYMBOL(unregister_reboot_notifier);
630
631static int set_one_prio(struct task_struct *p, int niceval, int error)
632{
633 int no_nice;
634
635 if (p->uid != current->euid &&
636 p->euid != current->euid && !capable(CAP_SYS_NICE)) {
637 error = -EPERM;
638 goto out;
639 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700640 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 error = -EACCES;
642 goto out;
643 }
644 no_nice = security_task_setnice(p, niceval);
645 if (no_nice) {
646 error = no_nice;
647 goto out;
648 }
649 if (error == -ESRCH)
650 error = 0;
651 set_user_nice(p, niceval);
652out:
653 return error;
654}
655
656asmlinkage long sys_setpriority(int which, int who, int niceval)
657{
658 struct task_struct *g, *p;
659 struct user_struct *user;
660 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800661 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Daniel Walker3e88c552007-05-10 22:22:53 -0700663 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 goto out;
665
666 /* normalize: avoid signed division (rounding problems) */
667 error = -ESRCH;
668 if (niceval < -20)
669 niceval = -20;
670 if (niceval > 19)
671 niceval = 19;
672
673 read_lock(&tasklist_lock);
674 switch (which) {
675 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800676 if (who)
677 p = find_task_by_pid(who);
678 else
679 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (p)
681 error = set_one_prio(p, niceval, error);
682 break;
683 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800684 if (who)
685 pgrp = find_pid(who);
686 else
687 pgrp = task_pgrp(current);
688 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 error = set_one_prio(p, niceval, error);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800690 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 break;
692 case PRIO_USER:
693 user = current->user;
694 if (!who)
695 who = current->uid;
696 else
697 if ((who != current->uid) && !(user = find_user(who)))
698 goto out_unlock; /* No processes for this user */
699
700 do_each_thread(g, p)
701 if (p->uid == who)
702 error = set_one_prio(p, niceval, error);
703 while_each_thread(g, p);
704 if (who != current->uid)
705 free_uid(user); /* For find_user() */
706 break;
707 }
708out_unlock:
709 read_unlock(&tasklist_lock);
710out:
711 return error;
712}
713
714/*
715 * Ugh. To avoid negative return values, "getpriority()" will
716 * not return the normal nice-value, but a negated value that
717 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
718 * to stay compatible.
719 */
720asmlinkage long sys_getpriority(int which, int who)
721{
722 struct task_struct *g, *p;
723 struct user_struct *user;
724 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800725 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Daniel Walker3e88c552007-05-10 22:22:53 -0700727 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return -EINVAL;
729
730 read_lock(&tasklist_lock);
731 switch (which) {
732 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800733 if (who)
734 p = find_task_by_pid(who);
735 else
736 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (p) {
738 niceval = 20 - task_nice(p);
739 if (niceval > retval)
740 retval = niceval;
741 }
742 break;
743 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800744 if (who)
745 pgrp = find_pid(who);
746 else
747 pgrp = task_pgrp(current);
748 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 niceval = 20 - task_nice(p);
750 if (niceval > retval)
751 retval = niceval;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800752 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
754 case PRIO_USER:
755 user = current->user;
756 if (!who)
757 who = current->uid;
758 else
759 if ((who != current->uid) && !(user = find_user(who)))
760 goto out_unlock; /* No processes for this user */
761
762 do_each_thread(g, p)
763 if (p->uid == who) {
764 niceval = 20 - task_nice(p);
765 if (niceval > retval)
766 retval = niceval;
767 }
768 while_each_thread(g, p);
769 if (who != current->uid)
770 free_uid(user); /* for find_user() */
771 break;
772 }
773out_unlock:
774 read_unlock(&tasklist_lock);
775
776 return retval;
777}
778
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700779/**
780 * emergency_restart - reboot the system
781 *
782 * Without shutting down any hardware or taking any locks
783 * reboot the system. This is called when we know we are in
784 * trouble so this is our best effort to reboot. This is
785 * safe to call in interrupt context.
786 */
Eric W. Biederman7c903472005-07-26 11:29:55 -0600787void emergency_restart(void)
788{
789 machine_emergency_restart();
790}
791EXPORT_SYMBOL_GPL(emergency_restart);
792
Adrian Bunk83cc5ed2006-06-25 05:47:41 -0700793static void kernel_restart_prepare(char *cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600794{
Alan Sterne041c682006-03-27 01:16:30 -0800795 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600796 system_state = SYSTEM_RESTART;
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600797 device_shutdown();
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700798}
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800799
800/**
801 * kernel_restart - reboot the system
802 * @cmd: pointer to buffer containing command to execute for restart
Randy Dunlapb8887e62005-11-07 01:01:07 -0800803 * or %NULL
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800804 *
805 * Shutdown everything and perform a clean reboot.
806 * This is not safe to call in interrupt context.
807 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700808void kernel_restart(char *cmd)
809{
810 kernel_restart_prepare(cmd);
Cal Peake756184b2006-09-30 23:27:24 -0700811 if (!cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600812 printk(KERN_EMERG "Restarting system.\n");
Cal Peake756184b2006-09-30 23:27:24 -0700813 else
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600814 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600815 machine_restart(cmd);
816}
817EXPORT_SYMBOL_GPL(kernel_restart);
818
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700819/**
820 * kernel_kexec - reboot the system
821 *
822 * Move into place and start executing a preloaded standalone
823 * executable. If nothing was preloaded return an error.
824 */
Adrian Bunk83cc5ed2006-06-25 05:47:41 -0700825static void kernel_kexec(void)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600826{
827#ifdef CONFIG_KEXEC
828 struct kimage *image;
Al Viro4bb80892006-02-01 05:57:32 -0500829 image = xchg(&kexec_image, NULL);
Cal Peake756184b2006-09-30 23:27:24 -0700830 if (!image)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600831 return;
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700832 kernel_restart_prepare(NULL);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600833 printk(KERN_EMERG "Starting new kernel\n");
834 machine_shutdown();
835 machine_kexec(image);
836#endif
837}
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600838
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500839void kernel_shutdown_prepare(enum system_states state)
840{
Alan Sterne041c682006-03-27 01:16:30 -0800841 blocking_notifier_call_chain(&reboot_notifier_list,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500842 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
843 system_state = state;
844 device_shutdown();
845}
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700846/**
847 * kernel_halt - halt the system
848 *
849 * Shutdown everything and perform a clean system halt.
850 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700851void kernel_halt(void)
852{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500853 kernel_shutdown_prepare(SYSTEM_HALT);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600854 printk(KERN_EMERG "System halted.\n");
855 machine_halt();
856}
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500857
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600858EXPORT_SYMBOL_GPL(kernel_halt);
859
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700860/**
861 * kernel_power_off - power_off the system
862 *
863 * Shutdown everything and perform a clean system power_off.
864 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700865void kernel_power_off(void)
866{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500867 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600868 printk(KERN_EMERG "Power down.\n");
869 machine_power_off();
870}
871EXPORT_SYMBOL_GPL(kernel_power_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872/*
873 * Reboot system call: for obvious reasons only root may call it,
874 * and even root needs to set up some magic numbers in the registers
875 * so that some mistake won't make this reboot the whole machine.
876 * You can also set the meaning of the ctrl-alt-del-key here.
877 *
878 * reboot doesn't sync: do that yourself before calling this.
879 */
880asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd, void __user * arg)
881{
882 char buffer[256];
883
884 /* We only trust the superuser with rebooting the system. */
885 if (!capable(CAP_SYS_BOOT))
886 return -EPERM;
887
888 /* For safety, we require "magic" arguments. */
889 if (magic1 != LINUX_REBOOT_MAGIC1 ||
890 (magic2 != LINUX_REBOOT_MAGIC2 &&
891 magic2 != LINUX_REBOOT_MAGIC2A &&
892 magic2 != LINUX_REBOOT_MAGIC2B &&
893 magic2 != LINUX_REBOOT_MAGIC2C))
894 return -EINVAL;
895
Eric W. Biederman5e382912006-01-08 01:03:46 -0800896 /* Instead of trying to make the power_off code look like
897 * halt when pm_power_off is not set do it the easy way.
898 */
899 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
900 cmd = LINUX_REBOOT_CMD_HALT;
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 lock_kernel();
903 switch (cmd) {
904 case LINUX_REBOOT_CMD_RESTART:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600905 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
907
908 case LINUX_REBOOT_CMD_CAD_ON:
909 C_A_D = 1;
910 break;
911
912 case LINUX_REBOOT_CMD_CAD_OFF:
913 C_A_D = 0;
914 break;
915
916 case LINUX_REBOOT_CMD_HALT:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600917 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 unlock_kernel();
919 do_exit(0);
920 break;
921
922 case LINUX_REBOOT_CMD_POWER_OFF:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600923 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 unlock_kernel();
925 do_exit(0);
926 break;
927
928 case LINUX_REBOOT_CMD_RESTART2:
929 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
930 unlock_kernel();
931 return -EFAULT;
932 }
933 buffer[sizeof(buffer) - 1] = '\0';
934
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600935 kernel_restart(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
937
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700938 case LINUX_REBOOT_CMD_KEXEC:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600939 kernel_kexec();
940 unlock_kernel();
941 return -EINVAL;
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943#ifdef CONFIG_SOFTWARE_SUSPEND
944 case LINUX_REBOOT_CMD_SW_SUSPEND:
945 {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700946 int ret = hibernate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 unlock_kernel();
948 return ret;
949 }
950#endif
951
952 default:
953 unlock_kernel();
954 return -EINVAL;
955 }
956 unlock_kernel();
957 return 0;
958}
959
David Howells65f27f32006-11-22 14:55:48 +0000960static void deferred_cad(struct work_struct *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Eric W. Biedermanabcd9e52005-07-26 11:27:34 -0600962 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
965/*
966 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
967 * As it's called within an interrupt, it may NOT sync: the only choice
968 * is whether to reboot at once, or just ignore the ctrl-alt-del.
969 */
970void ctrl_alt_del(void)
971{
David Howells65f27f32006-11-22 14:55:48 +0000972 static DECLARE_WORK(cad_work, deferred_cad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 if (C_A_D)
975 schedule_work(&cad_work);
976 else
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700977 kill_cad_pid(SIGINT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980/*
981 * Unprivileged users may change the real gid to the effective gid
982 * or vice versa. (BSD-style)
983 *
984 * If you set the real gid at all, or set the effective gid to a value not
985 * equal to the real gid, then the saved gid is set to the new effective gid.
986 *
987 * This makes it possible for a setgid program to completely drop its
988 * privileges, which is often a useful assertion to make when you are doing
989 * a security audit over a program.
990 *
991 * The general idea is that a program which uses just setregid() will be
992 * 100% compatible with BSD. A program which uses just setgid() will be
993 * 100% compatible with POSIX with saved IDs.
994 *
995 * SMP: There are not races, the GIDs are checked only by filesystem
996 * operations (as far as semantic preservation is concerned).
997 */
998asmlinkage long sys_setregid(gid_t rgid, gid_t egid)
999{
1000 int old_rgid = current->gid;
1001 int old_egid = current->egid;
1002 int new_rgid = old_rgid;
1003 int new_egid = old_egid;
1004 int retval;
1005
1006 retval = security_task_setgid(rgid, egid, (gid_t)-1, LSM_SETID_RE);
1007 if (retval)
1008 return retval;
1009
1010 if (rgid != (gid_t) -1) {
1011 if ((old_rgid == rgid) ||
1012 (current->egid==rgid) ||
1013 capable(CAP_SETGID))
1014 new_rgid = rgid;
1015 else
1016 return -EPERM;
1017 }
1018 if (egid != (gid_t) -1) {
1019 if ((old_rgid == egid) ||
1020 (current->egid == egid) ||
1021 (current->sgid == egid) ||
1022 capable(CAP_SETGID))
1023 new_egid = egid;
Cal Peake756184b2006-09-30 23:27:24 -07001024 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Cal Peake756184b2006-09-30 23:27:24 -07001027 if (new_egid != old_egid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001028 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001029 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 if (rgid != (gid_t) -1 ||
1032 (egid != (gid_t) -1 && egid != old_rgid))
1033 current->sgid = new_egid;
1034 current->fsgid = new_egid;
1035 current->egid = new_egid;
1036 current->gid = new_rgid;
1037 key_fsgid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001038 proc_id_connector(current, PROC_EVENT_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return 0;
1040}
1041
1042/*
1043 * setgid() is implemented like SysV w/ SAVED_IDS
1044 *
1045 * SMP: Same implicit races as above.
1046 */
1047asmlinkage long sys_setgid(gid_t gid)
1048{
1049 int old_egid = current->egid;
1050 int retval;
1051
1052 retval = security_task_setgid(gid, (gid_t)-1, (gid_t)-1, LSM_SETID_ID);
1053 if (retval)
1054 return retval;
1055
Cal Peake756184b2006-09-30 23:27:24 -07001056 if (capable(CAP_SETGID)) {
1057 if (old_egid != gid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001058 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001059 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061 current->gid = current->egid = current->sgid = current->fsgid = gid;
Cal Peake756184b2006-09-30 23:27:24 -07001062 } else if ((gid == current->gid) || (gid == current->sgid)) {
1063 if (old_egid != gid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001064 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001065 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067 current->egid = current->fsgid = gid;
1068 }
1069 else
1070 return -EPERM;
1071
1072 key_fsgid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001073 proc_id_connector(current, PROC_EVENT_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return 0;
1075}
1076
1077static int set_user(uid_t new_ruid, int dumpclear)
1078{
1079 struct user_struct *new_user;
1080
1081 new_user = alloc_uid(new_ruid);
1082 if (!new_user)
1083 return -EAGAIN;
1084
1085 if (atomic_read(&new_user->processes) >=
1086 current->signal->rlim[RLIMIT_NPROC].rlim_cur &&
1087 new_user != &root_user) {
1088 free_uid(new_user);
1089 return -EAGAIN;
1090 }
1091
1092 switch_uid(new_user);
1093
Cal Peake756184b2006-09-30 23:27:24 -07001094 if (dumpclear) {
Alan Coxd6e71142005-06-23 00:09:43 -07001095 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001096 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 current->uid = new_ruid;
1099 return 0;
1100}
1101
1102/*
1103 * Unprivileged users may change the real uid to the effective uid
1104 * or vice versa. (BSD-style)
1105 *
1106 * If you set the real uid at all, or set the effective uid to a value not
1107 * equal to the real uid, then the saved uid is set to the new effective uid.
1108 *
1109 * This makes it possible for a setuid program to completely drop its
1110 * privileges, which is often a useful assertion to make when you are doing
1111 * a security audit over a program.
1112 *
1113 * The general idea is that a program which uses just setreuid() will be
1114 * 100% compatible with BSD. A program which uses just setuid() will be
1115 * 100% compatible with POSIX with saved IDs.
1116 */
1117asmlinkage long sys_setreuid(uid_t ruid, uid_t euid)
1118{
1119 int old_ruid, old_euid, old_suid, new_ruid, new_euid;
1120 int retval;
1121
1122 retval = security_task_setuid(ruid, euid, (uid_t)-1, LSM_SETID_RE);
1123 if (retval)
1124 return retval;
1125
1126 new_ruid = old_ruid = current->uid;
1127 new_euid = old_euid = current->euid;
1128 old_suid = current->suid;
1129
1130 if (ruid != (uid_t) -1) {
1131 new_ruid = ruid;
1132 if ((old_ruid != ruid) &&
1133 (current->euid != ruid) &&
1134 !capable(CAP_SETUID))
1135 return -EPERM;
1136 }
1137
1138 if (euid != (uid_t) -1) {
1139 new_euid = euid;
1140 if ((old_ruid != euid) &&
1141 (current->euid != euid) &&
1142 (current->suid != euid) &&
1143 !capable(CAP_SETUID))
1144 return -EPERM;
1145 }
1146
1147 if (new_ruid != old_ruid && set_user(new_ruid, new_euid != old_euid) < 0)
1148 return -EAGAIN;
1149
Cal Peake756184b2006-09-30 23:27:24 -07001150 if (new_euid != old_euid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001151 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001152 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154 current->fsuid = current->euid = new_euid;
1155 if (ruid != (uid_t) -1 ||
1156 (euid != (uid_t) -1 && euid != old_ruid))
1157 current->suid = current->euid;
1158 current->fsuid = current->euid;
1159
1160 key_fsuid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001161 proc_id_connector(current, PROC_EVENT_UID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RE);
1164}
1165
1166
1167
1168/*
1169 * setuid() is implemented like SysV with SAVED_IDS
1170 *
1171 * Note that SAVED_ID's is deficient in that a setuid root program
1172 * like sendmail, for example, cannot set its uid to be a normal
1173 * user and then switch back, because if you're root, setuid() sets
1174 * the saved uid too. If you don't like this, blame the bright people
1175 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
1176 * will allow a root program to temporarily drop privileges and be able to
1177 * regain them by swapping the real and effective uid.
1178 */
1179asmlinkage long sys_setuid(uid_t uid)
1180{
1181 int old_euid = current->euid;
David Rientjesa09c17a2006-12-06 20:40:18 -08001182 int old_ruid, old_suid, new_suid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 int retval;
1184
1185 retval = security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_ID);
1186 if (retval)
1187 return retval;
1188
David Rientjesa09c17a2006-12-06 20:40:18 -08001189 old_ruid = current->uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 old_suid = current->suid;
1191 new_suid = old_suid;
1192
1193 if (capable(CAP_SETUID)) {
1194 if (uid != old_ruid && set_user(uid, old_euid != uid) < 0)
1195 return -EAGAIN;
1196 new_suid = uid;
1197 } else if ((uid != current->uid) && (uid != new_suid))
1198 return -EPERM;
1199
Cal Peake756184b2006-09-30 23:27:24 -07001200 if (old_euid != uid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001201 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001202 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204 current->fsuid = current->euid = uid;
1205 current->suid = new_suid;
1206
1207 key_fsuid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001208 proc_id_connector(current, PROC_EVENT_UID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_ID);
1211}
1212
1213
1214/*
1215 * This function implements a generic ability to update ruid, euid,
1216 * and suid. This allows you to implement the 4.4 compatible seteuid().
1217 */
1218asmlinkage long sys_setresuid(uid_t ruid, uid_t euid, uid_t suid)
1219{
1220 int old_ruid = current->uid;
1221 int old_euid = current->euid;
1222 int old_suid = current->suid;
1223 int retval;
1224
1225 retval = security_task_setuid(ruid, euid, suid, LSM_SETID_RES);
1226 if (retval)
1227 return retval;
1228
1229 if (!capable(CAP_SETUID)) {
1230 if ((ruid != (uid_t) -1) && (ruid != current->uid) &&
1231 (ruid != current->euid) && (ruid != current->suid))
1232 return -EPERM;
1233 if ((euid != (uid_t) -1) && (euid != current->uid) &&
1234 (euid != current->euid) && (euid != current->suid))
1235 return -EPERM;
1236 if ((suid != (uid_t) -1) && (suid != current->uid) &&
1237 (suid != current->euid) && (suid != current->suid))
1238 return -EPERM;
1239 }
1240 if (ruid != (uid_t) -1) {
1241 if (ruid != current->uid && set_user(ruid, euid != current->euid) < 0)
1242 return -EAGAIN;
1243 }
1244 if (euid != (uid_t) -1) {
Cal Peake756184b2006-09-30 23:27:24 -07001245 if (euid != current->euid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001246 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001247 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
1249 current->euid = euid;
1250 }
1251 current->fsuid = current->euid;
1252 if (suid != (uid_t) -1)
1253 current->suid = suid;
1254
1255 key_fsuid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001256 proc_id_connector(current, PROC_EVENT_UID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RES);
1259}
1260
1261asmlinkage long sys_getresuid(uid_t __user *ruid, uid_t __user *euid, uid_t __user *suid)
1262{
1263 int retval;
1264
1265 if (!(retval = put_user(current->uid, ruid)) &&
1266 !(retval = put_user(current->euid, euid)))
1267 retval = put_user(current->suid, suid);
1268
1269 return retval;
1270}
1271
1272/*
1273 * Same as above, but for rgid, egid, sgid.
1274 */
1275asmlinkage long sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid)
1276{
1277 int retval;
1278
1279 retval = security_task_setgid(rgid, egid, sgid, LSM_SETID_RES);
1280 if (retval)
1281 return retval;
1282
1283 if (!capable(CAP_SETGID)) {
1284 if ((rgid != (gid_t) -1) && (rgid != current->gid) &&
1285 (rgid != current->egid) && (rgid != current->sgid))
1286 return -EPERM;
1287 if ((egid != (gid_t) -1) && (egid != current->gid) &&
1288 (egid != current->egid) && (egid != current->sgid))
1289 return -EPERM;
1290 if ((sgid != (gid_t) -1) && (sgid != current->gid) &&
1291 (sgid != current->egid) && (sgid != current->sgid))
1292 return -EPERM;
1293 }
1294 if (egid != (gid_t) -1) {
Cal Peake756184b2006-09-30 23:27:24 -07001295 if (egid != current->egid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001296 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001297 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 current->egid = egid;
1300 }
1301 current->fsgid = current->egid;
1302 if (rgid != (gid_t) -1)
1303 current->gid = rgid;
1304 if (sgid != (gid_t) -1)
1305 current->sgid = sgid;
1306
1307 key_fsgid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001308 proc_id_connector(current, PROC_EVENT_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310}
1311
1312asmlinkage long sys_getresgid(gid_t __user *rgid, gid_t __user *egid, gid_t __user *sgid)
1313{
1314 int retval;
1315
1316 if (!(retval = put_user(current->gid, rgid)) &&
1317 !(retval = put_user(current->egid, egid)))
1318 retval = put_user(current->sgid, sgid);
1319
1320 return retval;
1321}
1322
1323
1324/*
1325 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
1326 * is used for "access()" and for the NFS daemon (letting nfsd stay at
1327 * whatever uid it wants to). It normally shadows "euid", except when
1328 * explicitly set by setfsuid() or for access..
1329 */
1330asmlinkage long sys_setfsuid(uid_t uid)
1331{
1332 int old_fsuid;
1333
1334 old_fsuid = current->fsuid;
1335 if (security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS))
1336 return old_fsuid;
1337
1338 if (uid == current->uid || uid == current->euid ||
1339 uid == current->suid || uid == current->fsuid ||
Cal Peake756184b2006-09-30 23:27:24 -07001340 capable(CAP_SETUID)) {
1341 if (uid != old_fsuid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001342 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001343 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345 current->fsuid = uid;
1346 }
1347
1348 key_fsuid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001349 proc_id_connector(current, PROC_EVENT_UID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 security_task_post_setuid(old_fsuid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS);
1352
1353 return old_fsuid;
1354}
1355
1356/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +02001357 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 */
1359asmlinkage long sys_setfsgid(gid_t gid)
1360{
1361 int old_fsgid;
1362
1363 old_fsgid = current->fsgid;
1364 if (security_task_setgid(gid, (gid_t)-1, (gid_t)-1, LSM_SETID_FS))
1365 return old_fsgid;
1366
1367 if (gid == current->gid || gid == current->egid ||
1368 gid == current->sgid || gid == current->fsgid ||
Cal Peake756184b2006-09-30 23:27:24 -07001369 capable(CAP_SETGID)) {
1370 if (gid != old_fsgid) {
Alan Coxd6e71142005-06-23 00:09:43 -07001371 current->mm->dumpable = suid_dumpable;
akpm@osdl.orgd59dd462005-05-01 08:58:47 -07001372 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 current->fsgid = gid;
1375 key_fsgid_changed(current);
Matt Helsley9f460802005-11-07 00:59:16 -08001376 proc_id_connector(current, PROC_EVENT_GID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378 return old_fsgid;
1379}
1380
1381asmlinkage long sys_times(struct tms __user * tbuf)
1382{
1383 /*
1384 * In the SMP world we might just be unlucky and have one of
1385 * the times increment as we use it. Since the value is an
1386 * atomically safe type this is just fine. Conceptually its
1387 * as if the syscall took an instant longer to occur.
1388 */
1389 if (tbuf) {
1390 struct tms tmp;
Oleg Nesterov35f5cad2006-03-28 16:11:19 -08001391 struct task_struct *tsk = current;
1392 struct task_struct *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 cputime_t utime, stime, cutime, cstime;
1394
Oleg Nesterov7d7185c2006-03-28 16:11:21 -08001395 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesterov35f5cad2006-03-28 16:11:19 -08001396 utime = tsk->signal->utime;
1397 stime = tsk->signal->stime;
1398 t = tsk;
1399 do {
1400 utime = cputime_add(utime, t->utime);
1401 stime = cputime_add(stime, t->stime);
1402 t = next_thread(t);
1403 } while (t != tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Oleg Nesterov35f5cad2006-03-28 16:11:19 -08001405 cutime = tsk->signal->cutime;
1406 cstime = tsk->signal->cstime;
1407 spin_unlock_irq(&tsk->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 tmp.tms_utime = cputime_to_clock_t(utime);
1410 tmp.tms_stime = cputime_to_clock_t(stime);
1411 tmp.tms_cutime = cputime_to_clock_t(cutime);
1412 tmp.tms_cstime = cputime_to_clock_t(cstime);
1413 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
1414 return -EFAULT;
1415 }
1416 return (long) jiffies_64_to_clock_t(get_jiffies_64());
1417}
1418
1419/*
1420 * This needs some heavy checking ...
1421 * I just haven't the stomach for it. I also don't fully
1422 * understand sessions/pgrp etc. Let somebody who does explain it.
1423 *
1424 * OK, I think I have the protection semantics right.... this is really
1425 * only important on a multi-user system anyway, to make sure one user
1426 * can't send a signal to a process owned by another. -TYT, 12/12/91
1427 *
1428 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
1429 * LBT 04.03.94
1430 */
1431
1432asmlinkage long sys_setpgid(pid_t pid, pid_t pgid)
1433{
1434 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001435 struct task_struct *group_leader = current->group_leader;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 int err = -EINVAL;
1437
1438 if (!pid)
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001439 pid = group_leader->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (!pgid)
1441 pgid = pid;
1442 if (pgid < 0)
1443 return -EINVAL;
1444
1445 /* From this point forward we keep holding onto the tasklist lock
1446 * so that our parent does not change from under us. -DaveM
1447 */
1448 write_lock_irq(&tasklist_lock);
1449
1450 err = -ESRCH;
1451 p = find_task_by_pid(pid);
1452 if (!p)
1453 goto out;
1454
1455 err = -EINVAL;
1456 if (!thread_group_leader(p))
1457 goto out;
1458
Oleg Nesterovf7dd7952006-01-08 01:03:59 -08001459 if (p->real_parent == group_leader) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -08001461 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 goto out;
1463 err = -EACCES;
1464 if (p->did_exec)
1465 goto out;
1466 } else {
1467 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001468 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 goto out;
1470 }
1471
1472 err = -EPERM;
1473 if (p->signal->leader)
1474 goto out;
1475
1476 if (pgid != pid) {
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001477 struct task_struct *g =
1478 find_task_by_pid_type(PIDTYPE_PGID, pgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Eric W. Biederman41487c62007-02-12 00:53:01 -08001480 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001481 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 err = security_task_setpgid(p, pgid);
1485 if (err)
1486 goto out;
1487
1488 if (process_group(p) != pgid) {
1489 detach_pid(p, PIDTYPE_PGID);
1490 p->signal->pgrp = pgid;
1491 attach_pid(p, PIDTYPE_PGID, pgid);
1492 }
1493
1494 err = 0;
1495out:
1496 /* All paths lead to here, thus we are safe. -DaveM */
1497 write_unlock_irq(&tasklist_lock);
1498 return err;
1499}
1500
1501asmlinkage long sys_getpgid(pid_t pid)
1502{
Cal Peake756184b2006-09-30 23:27:24 -07001503 if (!pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return process_group(current);
Cal Peake756184b2006-09-30 23:27:24 -07001505 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 int retval;
1507 struct task_struct *p;
1508
1509 read_lock(&tasklist_lock);
1510 p = find_task_by_pid(pid);
1511
1512 retval = -ESRCH;
1513 if (p) {
1514 retval = security_task_getpgid(p);
1515 if (!retval)
1516 retval = process_group(p);
1517 }
1518 read_unlock(&tasklist_lock);
1519 return retval;
1520 }
1521}
1522
1523#ifdef __ARCH_WANT_SYS_GETPGRP
1524
1525asmlinkage long sys_getpgrp(void)
1526{
1527 /* SMP - assuming writes are word atomic this is fine */
1528 return process_group(current);
1529}
1530
1531#endif
1532
1533asmlinkage long sys_getsid(pid_t pid)
1534{
Cal Peake756184b2006-09-30 23:27:24 -07001535 if (!pid)
Cedric Le Goater937949d2006-12-08 02:37:54 -08001536 return process_session(current);
Cal Peake756184b2006-09-30 23:27:24 -07001537 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 int retval;
1539 struct task_struct *p;
1540
1541 read_lock(&tasklist_lock);
1542 p = find_task_by_pid(pid);
1543
1544 retval = -ESRCH;
Cal Peake756184b2006-09-30 23:27:24 -07001545 if (p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 retval = security_task_getsid(p);
1547 if (!retval)
Cedric Le Goater937949d2006-12-08 02:37:54 -08001548 retval = process_session(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
1550 read_unlock(&tasklist_lock);
1551 return retval;
1552 }
1553}
1554
1555asmlinkage long sys_setsid(void)
1556{
Oren Laadane19f2472006-01-08 01:03:58 -08001557 struct task_struct *group_leader = current->group_leader;
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001558 pid_t session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 int err = -EPERM;
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 write_lock_irq(&tasklist_lock);
1562
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001563 /* Fail if I am already a session leader */
1564 if (group_leader->signal->leader)
1565 goto out;
1566
1567 session = group_leader->pid;
1568 /* Fail if a process group id already exists that equals the
1569 * proposed session id.
1570 *
1571 * Don't check if session id == 1 because kernel threads use this
1572 * session id and so the check will always fail and make it so
1573 * init cannot successfully call setsid.
1574 */
1575 if (session > 1 && find_task_by_pid_type(PIDTYPE_PGID, session))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 goto out;
1577
Oren Laadane19f2472006-01-08 01:03:58 -08001578 group_leader->signal->leader = 1;
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001579 __set_special_pids(session, session);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001580
1581 spin_lock(&group_leader->sighand->siglock);
Oren Laadane19f2472006-01-08 01:03:58 -08001582 group_leader->signal->tty = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001583 spin_unlock(&group_leader->sighand->siglock);
1584
Oren Laadane19f2472006-01-08 01:03:58 -08001585 err = process_group(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586out:
1587 write_unlock_irq(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return err;
1589}
1590
1591/*
1592 * Supplementary group IDs
1593 */
1594
1595/* init to 2 - one for init_task, one to ensure it is never freed */
1596struct group_info init_groups = { .usage = ATOMIC_INIT(2) };
1597
1598struct group_info *groups_alloc(int gidsetsize)
1599{
1600 struct group_info *group_info;
1601 int nblocks;
1602 int i;
1603
1604 nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;
1605 /* Make sure we always allocate at least one indirect block pointer */
1606 nblocks = nblocks ? : 1;
1607 group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);
1608 if (!group_info)
1609 return NULL;
1610 group_info->ngroups = gidsetsize;
1611 group_info->nblocks = nblocks;
1612 atomic_set(&group_info->usage, 1);
1613
Cal Peake756184b2006-09-30 23:27:24 -07001614 if (gidsetsize <= NGROUPS_SMALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 group_info->blocks[0] = group_info->small_block;
Cal Peake756184b2006-09-30 23:27:24 -07001616 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 for (i = 0; i < nblocks; i++) {
1618 gid_t *b;
1619 b = (void *)__get_free_page(GFP_USER);
1620 if (!b)
1621 goto out_undo_partial_alloc;
1622 group_info->blocks[i] = b;
1623 }
1624 }
1625 return group_info;
1626
1627out_undo_partial_alloc:
1628 while (--i >= 0) {
1629 free_page((unsigned long)group_info->blocks[i]);
1630 }
1631 kfree(group_info);
1632 return NULL;
1633}
1634
1635EXPORT_SYMBOL(groups_alloc);
1636
1637void groups_free(struct group_info *group_info)
1638{
1639 if (group_info->blocks[0] != group_info->small_block) {
1640 int i;
1641 for (i = 0; i < group_info->nblocks; i++)
1642 free_page((unsigned long)group_info->blocks[i]);
1643 }
1644 kfree(group_info);
1645}
1646
1647EXPORT_SYMBOL(groups_free);
1648
1649/* export the group_info to a user-space array */
1650static int groups_to_user(gid_t __user *grouplist,
1651 struct group_info *group_info)
1652{
1653 int i;
1654 int count = group_info->ngroups;
1655
1656 for (i = 0; i < group_info->nblocks; i++) {
1657 int cp_count = min(NGROUPS_PER_BLOCK, count);
1658 int off = i * NGROUPS_PER_BLOCK;
1659 int len = cp_count * sizeof(*grouplist);
1660
1661 if (copy_to_user(grouplist+off, group_info->blocks[i], len))
1662 return -EFAULT;
1663
1664 count -= cp_count;
1665 }
1666 return 0;
1667}
1668
1669/* fill a group_info from a user-space array - it must be allocated already */
1670static int groups_from_user(struct group_info *group_info,
1671 gid_t __user *grouplist)
Cal Peake756184b2006-09-30 23:27:24 -07001672{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 int i;
1674 int count = group_info->ngroups;
1675
1676 for (i = 0; i < group_info->nblocks; i++) {
1677 int cp_count = min(NGROUPS_PER_BLOCK, count);
1678 int off = i * NGROUPS_PER_BLOCK;
1679 int len = cp_count * sizeof(*grouplist);
1680
1681 if (copy_from_user(group_info->blocks[i], grouplist+off, len))
1682 return -EFAULT;
1683
1684 count -= cp_count;
1685 }
1686 return 0;
1687}
1688
Domen Puncerebe8b542005-05-05 16:16:19 -07001689/* a simple Shell sort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690static void groups_sort(struct group_info *group_info)
1691{
1692 int base, max, stride;
1693 int gidsetsize = group_info->ngroups;
1694
1695 for (stride = 1; stride < gidsetsize; stride = 3 * stride + 1)
1696 ; /* nothing */
1697 stride /= 3;
1698
1699 while (stride) {
1700 max = gidsetsize - stride;
1701 for (base = 0; base < max; base++) {
1702 int left = base;
1703 int right = left + stride;
1704 gid_t tmp = GROUP_AT(group_info, right);
1705
1706 while (left >= 0 && GROUP_AT(group_info, left) > tmp) {
1707 GROUP_AT(group_info, right) =
1708 GROUP_AT(group_info, left);
1709 right = left;
1710 left -= stride;
1711 }
1712 GROUP_AT(group_info, right) = tmp;
1713 }
1714 stride /= 3;
1715 }
1716}
1717
1718/* a simple bsearch */
David Howells3e301482005-06-23 22:00:56 -07001719int groups_search(struct group_info *group_info, gid_t grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Eric Dumazetd74beb9f2006-03-25 03:08:19 -08001721 unsigned int left, right;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if (!group_info)
1724 return 0;
1725
1726 left = 0;
1727 right = group_info->ngroups;
1728 while (left < right) {
Eric Dumazetd74beb9f2006-03-25 03:08:19 -08001729 unsigned int mid = (left+right)/2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 int cmp = grp - GROUP_AT(group_info, mid);
1731 if (cmp > 0)
1732 left = mid + 1;
1733 else if (cmp < 0)
1734 right = mid;
1735 else
1736 return 1;
1737 }
1738 return 0;
1739}
1740
1741/* validate and set current->group_info */
1742int set_current_groups(struct group_info *group_info)
1743{
1744 int retval;
1745 struct group_info *old_info;
1746
1747 retval = security_task_setgroups(group_info);
1748 if (retval)
1749 return retval;
1750
1751 groups_sort(group_info);
1752 get_group_info(group_info);
1753
1754 task_lock(current);
1755 old_info = current->group_info;
1756 current->group_info = group_info;
1757 task_unlock(current);
1758
1759 put_group_info(old_info);
1760
1761 return 0;
1762}
1763
1764EXPORT_SYMBOL(set_current_groups);
1765
1766asmlinkage long sys_getgroups(int gidsetsize, gid_t __user *grouplist)
1767{
1768 int i = 0;
1769
1770 /*
1771 * SMP: Nobody else can change our grouplist. Thus we are
1772 * safe.
1773 */
1774
1775 if (gidsetsize < 0)
1776 return -EINVAL;
1777
1778 /* no need to grab task_lock here; it cannot change */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 i = current->group_info->ngroups;
1780 if (gidsetsize) {
1781 if (i > gidsetsize) {
1782 i = -EINVAL;
1783 goto out;
1784 }
1785 if (groups_to_user(grouplist, current->group_info)) {
1786 i = -EFAULT;
1787 goto out;
1788 }
1789 }
1790out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return i;
1792}
1793
1794/*
1795 * SMP: Our groups are copy-on-write. We can set them safely
1796 * without another task interfering.
1797 */
1798
1799asmlinkage long sys_setgroups(int gidsetsize, gid_t __user *grouplist)
1800{
1801 struct group_info *group_info;
1802 int retval;
1803
1804 if (!capable(CAP_SETGID))
1805 return -EPERM;
1806 if ((unsigned)gidsetsize > NGROUPS_MAX)
1807 return -EINVAL;
1808
1809 group_info = groups_alloc(gidsetsize);
1810 if (!group_info)
1811 return -ENOMEM;
1812 retval = groups_from_user(group_info, grouplist);
1813 if (retval) {
1814 put_group_info(group_info);
1815 return retval;
1816 }
1817
1818 retval = set_current_groups(group_info);
1819 put_group_info(group_info);
1820
1821 return retval;
1822}
1823
1824/*
1825 * Check whether we're fsgid/egid or in the supplemental group..
1826 */
1827int in_group_p(gid_t grp)
1828{
1829 int retval = 1;
Cal Peake756184b2006-09-30 23:27:24 -07001830 if (grp != current->fsgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 retval = groups_search(current->group_info, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return retval;
1833}
1834
1835EXPORT_SYMBOL(in_group_p);
1836
1837int in_egroup_p(gid_t grp)
1838{
1839 int retval = 1;
Cal Peake756184b2006-09-30 23:27:24 -07001840 if (grp != current->egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 retval = groups_search(current->group_info, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return retval;
1843}
1844
1845EXPORT_SYMBOL(in_egroup_p);
1846
1847DECLARE_RWSEM(uts_sem);
1848
David S. Miller393b0722005-11-10 12:47:50 -08001849EXPORT_SYMBOL(uts_sem);
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851asmlinkage long sys_newuname(struct new_utsname __user * name)
1852{
1853 int errno = 0;
1854
1855 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001856 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 errno = -EFAULT;
1858 up_read(&uts_sem);
1859 return errno;
1860}
1861
1862asmlinkage long sys_sethostname(char __user *name, int len)
1863{
1864 int errno;
1865 char tmp[__NEW_UTS_LEN];
1866
1867 if (!capable(CAP_SYS_ADMIN))
1868 return -EPERM;
1869 if (len < 0 || len > __NEW_UTS_LEN)
1870 return -EINVAL;
1871 down_write(&uts_sem);
1872 errno = -EFAULT;
1873 if (!copy_from_user(tmp, name, len)) {
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001874 memcpy(utsname()->nodename, tmp, len);
1875 utsname()->nodename[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 errno = 0;
1877 }
1878 up_write(&uts_sem);
1879 return errno;
1880}
1881
1882#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1883
1884asmlinkage long sys_gethostname(char __user *name, int len)
1885{
1886 int i, errno;
1887
1888 if (len < 0)
1889 return -EINVAL;
1890 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001891 i = 1 + strlen(utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (i > len)
1893 i = len;
1894 errno = 0;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001895 if (copy_to_user(name, utsname()->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 errno = -EFAULT;
1897 up_read(&uts_sem);
1898 return errno;
1899}
1900
1901#endif
1902
1903/*
1904 * Only setdomainname; getdomainname can be implemented by calling
1905 * uname()
1906 */
1907asmlinkage long sys_setdomainname(char __user *name, int len)
1908{
1909 int errno;
1910 char tmp[__NEW_UTS_LEN];
1911
1912 if (!capable(CAP_SYS_ADMIN))
1913 return -EPERM;
1914 if (len < 0 || len > __NEW_UTS_LEN)
1915 return -EINVAL;
1916
1917 down_write(&uts_sem);
1918 errno = -EFAULT;
1919 if (!copy_from_user(tmp, name, len)) {
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001920 memcpy(utsname()->domainname, tmp, len);
1921 utsname()->domainname[len] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 errno = 0;
1923 }
1924 up_write(&uts_sem);
1925 return errno;
1926}
1927
1928asmlinkage long sys_getrlimit(unsigned int resource, struct rlimit __user *rlim)
1929{
1930 if (resource >= RLIM_NLIMITS)
1931 return -EINVAL;
1932 else {
1933 struct rlimit value;
1934 task_lock(current->group_leader);
1935 value = current->signal->rlim[resource];
1936 task_unlock(current->group_leader);
1937 return copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1938 }
1939}
1940
1941#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1942
1943/*
1944 * Back compatibility for getrlimit. Needed for some apps.
1945 */
1946
1947asmlinkage long sys_old_getrlimit(unsigned int resource, struct rlimit __user *rlim)
1948{
1949 struct rlimit x;
1950 if (resource >= RLIM_NLIMITS)
1951 return -EINVAL;
1952
1953 task_lock(current->group_leader);
1954 x = current->signal->rlim[resource];
1955 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001956 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001958 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 x.rlim_max = 0x7FFFFFFF;
1960 return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
1961}
1962
1963#endif
1964
1965asmlinkage long sys_setrlimit(unsigned int resource, struct rlimit __user *rlim)
1966{
1967 struct rlimit new_rlim, *old_rlim;
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001968 unsigned long it_prof_secs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 int retval;
1970
1971 if (resource >= RLIM_NLIMITS)
1972 return -EINVAL;
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001973 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return -EFAULT;
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001975 if (new_rlim.rlim_cur > new_rlim.rlim_max)
1976 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 old_rlim = current->signal->rlim + resource;
1978 if ((new_rlim.rlim_max > old_rlim->rlim_max) &&
1979 !capable(CAP_SYS_RESOURCE))
1980 return -EPERM;
1981 if (resource == RLIMIT_NOFILE && new_rlim.rlim_max > NR_OPEN)
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001982 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 retval = security_task_setrlimit(resource, &new_rlim);
1985 if (retval)
1986 return retval;
1987
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001988 if (resource == RLIMIT_CPU && new_rlim.rlim_cur == 0) {
1989 /*
1990 * The caller is asking for an immediate RLIMIT_CPU
1991 * expiry. But we use the zero value to mean "it was
1992 * never set". So let's cheat and make it one second
1993 * instead
1994 */
1995 new_rlim.rlim_cur = 1;
1996 }
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 task_lock(current->group_leader);
1999 *old_rlim = new_rlim;
2000 task_unlock(current->group_leader);
2001
Andrew Mortonec9e16b2006-03-24 03:18:34 -08002002 if (resource != RLIMIT_CPU)
2003 goto out;
Andrew Mortond3561f72006-03-24 03:18:36 -08002004
2005 /*
2006 * RLIMIT_CPU handling. Note that the kernel fails to return an error
2007 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
2008 * very long-standing error, and fixing it now risks breakage of
2009 * applications, so we live with it
2010 */
Andrew Mortonec9e16b2006-03-24 03:18:34 -08002011 if (new_rlim.rlim_cur == RLIM_INFINITY)
2012 goto out;
2013
2014 it_prof_secs = cputime_to_secs(current->signal->it_prof_expires);
2015 if (it_prof_secs == 0 || new_rlim.rlim_cur <= it_prof_secs) {
Andrew Mortone0661112006-03-24 03:18:35 -08002016 unsigned long rlim_cur = new_rlim.rlim_cur;
2017 cputime_t cputime;
Andrew Mortonec9e16b2006-03-24 03:18:34 -08002018
Andrew Mortone0661112006-03-24 03:18:35 -08002019 cputime = secs_to_cputime(rlim_cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 read_lock(&tasklist_lock);
2021 spin_lock_irq(&current->sighand->siglock);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08002022 set_process_cpu_timer(current, CPUCLOCK_PROF, &cputime, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 spin_unlock_irq(&current->sighand->siglock);
2024 read_unlock(&tasklist_lock);
2025 }
Andrew Mortonec9e16b2006-03-24 03:18:34 -08002026out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return 0;
2028}
2029
2030/*
2031 * It would make sense to put struct rusage in the task_struct,
2032 * except that would make the task_struct be *really big*. After
2033 * task_struct gets moved into malloc'ed memory, it would
2034 * make sense to do this. It will make moving the rest of the information
2035 * a lot simpler! (Which we're not doing right now because we're not
2036 * measuring them yet).
2037 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
2039 * races with threads incrementing their own counters. But since word
2040 * reads are atomic, we either get new values or old values and we don't
2041 * care which for the sums. We always take the siglock to protect reading
2042 * the c* fields from p->signal from races with exit.c updating those
2043 * fields when reaping, so a sample either gets all the additions of a
2044 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08002045 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07002046 * Locking:
2047 * We need to take the siglock for CHILDEREN, SELF and BOTH
2048 * for the cases current multithreaded, non-current single threaded
2049 * non-current multithreaded. Thread traversal is now safe with
2050 * the siglock held.
2051 * Strictly speaking, we donot need to take the siglock if we are current and
2052 * single threaded, as no one else can take our signal_struct away, no one
2053 * else can reap the children to update signal->c* counters, and no one else
2054 * can race with the signal-> fields. If we do not take any lock, the
2055 * signal-> fields could be read out of order while another thread was just
2056 * exiting. So we should place a read memory barrier when we avoid the lock.
2057 * On the writer side, write memory barrier is implied in __exit_signal
2058 * as __exit_signal releases the siglock spinlock after updating the signal->
2059 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08002060 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 */
2062
2063static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
2064{
2065 struct task_struct *t;
2066 unsigned long flags;
2067 cputime_t utime, stime;
2068
2069 memset((char *) r, 0, sizeof *r);
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08002070 utime = stime = cputime_zero;
2071
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07002072 rcu_read_lock();
2073 if (!lock_task_sighand(p, &flags)) {
2074 rcu_read_unlock();
2075 return;
2076 }
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 switch (who) {
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08002079 case RUSAGE_BOTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 case RUSAGE_CHILDREN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 utime = p->signal->cutime;
2082 stime = p->signal->cstime;
2083 r->ru_nvcsw = p->signal->cnvcsw;
2084 r->ru_nivcsw = p->signal->cnivcsw;
2085 r->ru_minflt = p->signal->cmin_flt;
2086 r->ru_majflt = p->signal->cmaj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07002087 r->ru_inblock = p->signal->cinblock;
2088 r->ru_oublock = p->signal->coublock;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08002089
2090 if (who == RUSAGE_CHILDREN)
2091 break;
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 case RUSAGE_SELF:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 utime = cputime_add(utime, p->signal->utime);
2095 stime = cputime_add(stime, p->signal->stime);
2096 r->ru_nvcsw += p->signal->nvcsw;
2097 r->ru_nivcsw += p->signal->nivcsw;
2098 r->ru_minflt += p->signal->min_flt;
2099 r->ru_majflt += p->signal->maj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07002100 r->ru_inblock += p->signal->inblock;
2101 r->ru_oublock += p->signal->oublock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 t = p;
2103 do {
2104 utime = cputime_add(utime, t->utime);
2105 stime = cputime_add(stime, t->stime);
2106 r->ru_nvcsw += t->nvcsw;
2107 r->ru_nivcsw += t->nivcsw;
2108 r->ru_minflt += t->min_flt;
2109 r->ru_majflt += t->maj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07002110 r->ru_inblock += task_io_get_inblock(t);
2111 r->ru_oublock += task_io_get_oublock(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 t = next_thread(t);
2113 } while (t != p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08002115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 default:
2117 BUG();
2118 }
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08002119
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07002120 unlock_task_sighand(p, &flags);
2121 rcu_read_unlock();
2122
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08002123 cputime_to_timeval(utime, &r->ru_utime);
2124 cputime_to_timeval(stime, &r->ru_stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
2127int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
2128{
2129 struct rusage r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 k_getrusage(p, who, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
2132}
2133
2134asmlinkage long sys_getrusage(int who, struct rusage __user *ru)
2135{
2136 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
2137 return -EINVAL;
2138 return getrusage(current, who, ru);
2139}
2140
2141asmlinkage long sys_umask(int mask)
2142{
2143 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
2144 return mask;
2145}
2146
2147asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3,
2148 unsigned long arg4, unsigned long arg5)
2149{
2150 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
2153 if (error)
2154 return error;
2155
2156 switch (option) {
2157 case PR_SET_PDEATHSIG:
Jesper Juhl0730ded2005-09-06 15:17:37 -07002158 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 error = -EINVAL;
2160 break;
2161 }
Jesper Juhl0730ded2005-09-06 15:17:37 -07002162 current->pdeath_signal = arg2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164 case PR_GET_PDEATHSIG:
2165 error = put_user(current->pdeath_signal, (int __user *)arg2);
2166 break;
2167 case PR_GET_DUMPABLE:
Michael Kerrisk2030c0f2005-09-16 19:28:02 -07002168 error = current->mm->dumpable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 break;
2170 case PR_SET_DUMPABLE:
Marcel Holtmannabf75a52006-07-12 13:12:00 +02002171 if (arg2 < 0 || arg2 > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 error = -EINVAL;
2173 break;
2174 }
2175 current->mm->dumpable = arg2;
2176 break;
2177
2178 case PR_SET_UNALIGN:
2179 error = SET_UNALIGN_CTL(current, arg2);
2180 break;
2181 case PR_GET_UNALIGN:
2182 error = GET_UNALIGN_CTL(current, arg2);
2183 break;
2184 case PR_SET_FPEMU:
2185 error = SET_FPEMU_CTL(current, arg2);
2186 break;
2187 case PR_GET_FPEMU:
2188 error = GET_FPEMU_CTL(current, arg2);
2189 break;
2190 case PR_SET_FPEXC:
2191 error = SET_FPEXC_CTL(current, arg2);
2192 break;
2193 case PR_GET_FPEXC:
2194 error = GET_FPEXC_CTL(current, arg2);
2195 break;
2196 case PR_GET_TIMING:
2197 error = PR_TIMING_STATISTICAL;
2198 break;
2199 case PR_SET_TIMING:
2200 if (arg2 == PR_TIMING_STATISTICAL)
2201 error = 0;
2202 else
2203 error = -EINVAL;
2204 break;
2205
2206 case PR_GET_KEEPCAPS:
2207 if (current->keep_capabilities)
2208 error = 1;
2209 break;
2210 case PR_SET_KEEPCAPS:
2211 if (arg2 != 0 && arg2 != 1) {
2212 error = -EINVAL;
2213 break;
2214 }
2215 current->keep_capabilities = arg2;
2216 break;
2217 case PR_SET_NAME: {
2218 struct task_struct *me = current;
2219 unsigned char ncomm[sizeof(me->comm)];
2220
2221 ncomm[sizeof(me->comm)-1] = 0;
2222 if (strncpy_from_user(ncomm, (char __user *)arg2,
2223 sizeof(me->comm)-1) < 0)
2224 return -EFAULT;
2225 set_task_comm(me, ncomm);
2226 return 0;
2227 }
2228 case PR_GET_NAME: {
2229 struct task_struct *me = current;
2230 unsigned char tcomm[sizeof(me->comm)];
2231
2232 get_task_comm(tcomm, me);
2233 if (copy_to_user((char __user *)arg2, tcomm, sizeof(tcomm)))
2234 return -EFAULT;
2235 return 0;
2236 }
Anton Blanchard651d7652006-06-07 16:10:19 +10002237 case PR_GET_ENDIAN:
2238 error = GET_ENDIAN(current, arg2);
2239 break;
2240 case PR_SET_ENDIAN:
2241 error = SET_ENDIAN(current, arg2);
2242 break;
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 default:
2245 error = -EINVAL;
2246 break;
2247 }
2248 return error;
2249}
Andi Kleen3cfc3482006-09-26 10:52:28 +02002250
2251asmlinkage long sys_getcpu(unsigned __user *cpup, unsigned __user *nodep,
2252 struct getcpu_cache __user *cache)
2253{
2254 int err = 0;
2255 int cpu = raw_smp_processor_id();
2256 if (cpup)
2257 err |= put_user(cpu, cpup);
2258 if (nodep)
2259 err |= put_user(cpu_to_node(cpu), nodep);
2260 if (cache) {
2261 /*
2262 * The cache is not needed for this implementation,
2263 * but make sure user programs pass something
2264 * valid. vsyscall implementations can instead make
2265 * good use of the cache. Only use t0 and t1 because
2266 * these are available in both 32bit and 64bit ABI (no
2267 * need for a compat_getcpu). 32bit has enough
2268 * padding
2269 */
2270 unsigned long t0, t1;
Andi Kleen34596dc2006-09-30 01:47:55 +02002271 get_user(t0, &cache->blob[0]);
2272 get_user(t1, &cache->blob[1]);
Andi Kleen3cfc3482006-09-26 10:52:28 +02002273 t0++;
2274 t1++;
Andi Kleen34596dc2006-09-30 01:47:55 +02002275 put_user(t0, &cache->blob[0]);
2276 put_user(t1, &cache->blob[1]);
Andi Kleen3cfc3482006-09-26 10:52:28 +02002277 }
2278 return err ? -EFAULT : 0;
2279}