]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/sys.c
[PATCH] tty: update the tty layer to work with struct pid
[mirror_ubuntu-artful-kernel.git] / kernel / sys.c
CommitLineData
1da177e4
LT
1/*
2 * linux/kernel/sys.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
1da177e4
LT
7#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>
1da177e4
LT
15#include <linux/highuid.h>
16#include <linux/fs.h>
dc009d92
EB
17#include <linux/kernel.h>
18#include <linux/kexec.h>
1da177e4 19#include <linux/workqueue.h>
c59ede7b 20#include <linux/capability.h>
1da177e4
LT
21#include <linux/device.h>
22#include <linux/key.h>
23#include <linux/times.h>
24#include <linux/posix-timers.h>
25#include <linux/security.h>
26#include <linux/dcookies.h>
27#include <linux/suspend.h>
28#include <linux/tty.h>
7ed20e1a 29#include <linux/signal.h>
9f46080c 30#include <linux/cn_proc.h>
3cfc348b 31#include <linux/getcpu.h>
1da177e4
LT
32
33#include <linux/compat.h>
34#include <linux/syscalls.h>
00d7c05a 35#include <linux/kprobes.h>
1da177e4
LT
36
37#include <asm/uaccess.h>
38#include <asm/io.h>
39#include <asm/unistd.h>
40
41#ifndef SET_UNALIGN_CTL
42# define SET_UNALIGN_CTL(a,b) (-EINVAL)
43#endif
44#ifndef GET_UNALIGN_CTL
45# define GET_UNALIGN_CTL(a,b) (-EINVAL)
46#endif
47#ifndef SET_FPEMU_CTL
48# define SET_FPEMU_CTL(a,b) (-EINVAL)
49#endif
50#ifndef GET_FPEMU_CTL
51# define GET_FPEMU_CTL(a,b) (-EINVAL)
52#endif
53#ifndef SET_FPEXC_CTL
54# define SET_FPEXC_CTL(a,b) (-EINVAL)
55#endif
56#ifndef GET_FPEXC_CTL
57# define GET_FPEXC_CTL(a,b) (-EINVAL)
58#endif
651d765d
AB
59#ifndef GET_ENDIAN
60# define GET_ENDIAN(a,b) (-EINVAL)
61#endif
62#ifndef SET_ENDIAN
63# define SET_ENDIAN(a,b) (-EINVAL)
64#endif
1da177e4
LT
65
66/*
67 * this is where the system-wide overflow UID and GID are defined, for
68 * architectures that now have 32-bit UID/GID but didn't in the past
69 */
70
71int overflowuid = DEFAULT_OVERFLOWUID;
72int overflowgid = DEFAULT_OVERFLOWGID;
73
74#ifdef CONFIG_UID16
75EXPORT_SYMBOL(overflowuid);
76EXPORT_SYMBOL(overflowgid);
77#endif
78
79/*
80 * the same as above, but for filesystems which can only store a 16-bit
81 * UID and GID. as such, this is needed on all architectures
82 */
83
84int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
85int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
86
87EXPORT_SYMBOL(fs_overflowuid);
88EXPORT_SYMBOL(fs_overflowgid);
89
90/*
91 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
92 */
93
94int C_A_D = 1;
9ec52099
CLG
95struct pid *cad_pid;
96EXPORT_SYMBOL(cad_pid);
1da177e4
LT
97
98/*
99 * Notifier list for kernel code which wants to be called
100 * at shutdown. This is used to stop any idling DMA operations
101 * and the like.
102 */
103
e041c683
AS
104static BLOCKING_NOTIFIER_HEAD(reboot_notifier_list);
105
106/*
107 * Notifier chain core routines. The exported routines below
108 * are layered on top of these, with appropriate locking added.
109 */
110
111static int notifier_chain_register(struct notifier_block **nl,
112 struct notifier_block *n)
113{
114 while ((*nl) != NULL) {
115 if (n->priority > (*nl)->priority)
116 break;
117 nl = &((*nl)->next);
118 }
119 n->next = *nl;
120 rcu_assign_pointer(*nl, n);
121 return 0;
122}
123
124static int notifier_chain_unregister(struct notifier_block **nl,
125 struct notifier_block *n)
126{
127 while ((*nl) != NULL) {
128 if ((*nl) == n) {
129 rcu_assign_pointer(*nl, n->next);
130 return 0;
131 }
132 nl = &((*nl)->next);
133 }
134 return -ENOENT;
135}
136
137static int __kprobes notifier_call_chain(struct notifier_block **nl,
138 unsigned long val, void *v)
139{
140 int ret = NOTIFY_DONE;
bbb1747d 141 struct notifier_block *nb, *next_nb;
e041c683
AS
142
143 nb = rcu_dereference(*nl);
144 while (nb) {
bbb1747d 145 next_nb = rcu_dereference(nb->next);
e041c683
AS
146 ret = nb->notifier_call(nb, val, v);
147 if ((ret & NOTIFY_STOP_MASK) == NOTIFY_STOP_MASK)
148 break;
bbb1747d 149 nb = next_nb;
e041c683
AS
150 }
151 return ret;
152}
153
154/*
155 * Atomic notifier chain routines. Registration and unregistration
eabc0694 156 * use a spinlock, and call_chain is synchronized by RCU (no locks).
e041c683 157 */
1da177e4
LT
158
159/**
e041c683
AS
160 * atomic_notifier_chain_register - Add notifier to an atomic notifier chain
161 * @nh: Pointer to head of the atomic notifier chain
1da177e4
LT
162 * @n: New entry in notifier chain
163 *
e041c683 164 * Adds a notifier to an atomic notifier chain.
1da177e4
LT
165 *
166 * Currently always returns zero.
167 */
e041c683
AS
168
169int atomic_notifier_chain_register(struct atomic_notifier_head *nh,
170 struct notifier_block *n)
171{
172 unsigned long flags;
173 int ret;
174
175 spin_lock_irqsave(&nh->lock, flags);
176 ret = notifier_chain_register(&nh->head, n);
177 spin_unlock_irqrestore(&nh->lock, flags);
178 return ret;
179}
180
181EXPORT_SYMBOL_GPL(atomic_notifier_chain_register);
182
183/**
184 * atomic_notifier_chain_unregister - Remove notifier from an atomic notifier chain
185 * @nh: Pointer to head of the atomic notifier chain
186 * @n: Entry to remove from notifier chain
187 *
188 * Removes a notifier from an atomic notifier chain.
189 *
190 * Returns zero on success or %-ENOENT on failure.
191 */
192int atomic_notifier_chain_unregister(struct atomic_notifier_head *nh,
193 struct notifier_block *n)
194{
195 unsigned long flags;
196 int ret;
197
198 spin_lock_irqsave(&nh->lock, flags);
199 ret = notifier_chain_unregister(&nh->head, n);
200 spin_unlock_irqrestore(&nh->lock, flags);
201 synchronize_rcu();
202 return ret;
203}
204
205EXPORT_SYMBOL_GPL(atomic_notifier_chain_unregister);
206
207/**
208 * atomic_notifier_call_chain - Call functions in an atomic notifier chain
209 * @nh: Pointer to head of the atomic notifier chain
210 * @val: Value passed unmodified to notifier function
211 * @v: Pointer passed unmodified to notifier function
212 *
213 * Calls each function in a notifier chain in turn. The functions
214 * run in an atomic context, so they must not block.
215 * This routine uses RCU to synchronize with changes to the chain.
216 *
217 * If the return value of the notifier can be and'ed
72fd4a35 218 * with %NOTIFY_STOP_MASK then atomic_notifier_call_chain()
e041c683
AS
219 * will return immediately, with the return value of
220 * the notifier function which halted execution.
221 * Otherwise the return value is the return value
222 * of the last notifier function called.
223 */
1da177e4 224
f2aa85a0 225int __kprobes atomic_notifier_call_chain(struct atomic_notifier_head *nh,
e041c683 226 unsigned long val, void *v)
1da177e4 227{
e041c683
AS
228 int ret;
229
230 rcu_read_lock();
231 ret = notifier_call_chain(&nh->head, val, v);
232 rcu_read_unlock();
233 return ret;
1da177e4
LT
234}
235
e041c683
AS
236EXPORT_SYMBOL_GPL(atomic_notifier_call_chain);
237
238/*
239 * Blocking notifier chain routines. All access to the chain is
240 * synchronized by an rwsem.
241 */
1da177e4
LT
242
243/**
e041c683
AS
244 * blocking_notifier_chain_register - Add notifier to a blocking notifier chain
245 * @nh: Pointer to head of the blocking notifier chain
1da177e4
LT
246 * @n: New entry in notifier chain
247 *
e041c683
AS
248 * Adds a notifier to a blocking notifier chain.
249 * Must be called in process context.
1da177e4 250 *
e041c683 251 * Currently always returns zero.
1da177e4
LT
252 */
253
e041c683
AS
254int blocking_notifier_chain_register(struct blocking_notifier_head *nh,
255 struct notifier_block *n)
1da177e4 256{
e041c683
AS
257 int ret;
258
259 /*
260 * This code gets used during boot-up, when task switching is
261 * not yet working and interrupts must remain disabled. At
262 * such times we must not call down_write().
263 */
264 if (unlikely(system_state == SYSTEM_BOOTING))
265 return notifier_chain_register(&nh->head, n);
266
267 down_write(&nh->rwsem);
268 ret = notifier_chain_register(&nh->head, n);
269 up_write(&nh->rwsem);
270 return ret;
1da177e4
LT
271}
272
e041c683 273EXPORT_SYMBOL_GPL(blocking_notifier_chain_register);
1da177e4
LT
274
275/**
e041c683
AS
276 * blocking_notifier_chain_unregister - Remove notifier from a blocking notifier chain
277 * @nh: Pointer to head of the blocking notifier chain
278 * @n: Entry to remove from notifier chain
279 *
280 * Removes a notifier from a blocking notifier chain.
281 * Must be called from process context.
282 *
283 * Returns zero on success or %-ENOENT on failure.
284 */
285int blocking_notifier_chain_unregister(struct blocking_notifier_head *nh,
286 struct notifier_block *n)
287{
288 int ret;
289
290 /*
291 * This code gets used during boot-up, when task switching is
292 * not yet working and interrupts must remain disabled. At
293 * such times we must not call down_write().
294 */
295 if (unlikely(system_state == SYSTEM_BOOTING))
296 return notifier_chain_unregister(&nh->head, n);
297
298 down_write(&nh->rwsem);
299 ret = notifier_chain_unregister(&nh->head, n);
300 up_write(&nh->rwsem);
301 return ret;
302}
303
304EXPORT_SYMBOL_GPL(blocking_notifier_chain_unregister);
305
306/**
307 * blocking_notifier_call_chain - Call functions in a blocking notifier chain
308 * @nh: Pointer to head of the blocking notifier chain
1da177e4
LT
309 * @val: Value passed unmodified to notifier function
310 * @v: Pointer passed unmodified to notifier function
311 *
e041c683
AS
312 * Calls each function in a notifier chain in turn. The functions
313 * run in a process context, so they are allowed to block.
1da177e4 314 *
e041c683 315 * If the return value of the notifier can be and'ed
72fd4a35 316 * with %NOTIFY_STOP_MASK then blocking_notifier_call_chain()
1da177e4
LT
317 * will return immediately, with the return value of
318 * the notifier function which halted execution.
e041c683 319 * Otherwise the return value is the return value
1da177e4
LT
320 * of the last notifier function called.
321 */
322
e041c683
AS
323int blocking_notifier_call_chain(struct blocking_notifier_head *nh,
324 unsigned long val, void *v)
1da177e4 325{
1b5180b6 326 int ret = NOTIFY_DONE;
e041c683 327
1b5180b6
IM
328 /*
329 * We check the head outside the lock, but if this access is
330 * racy then it does not matter what the result of the test
331 * is, we re-check the list after having taken the lock anyway:
332 */
333 if (rcu_dereference(nh->head)) {
334 down_read(&nh->rwsem);
335 ret = notifier_call_chain(&nh->head, val, v);
336 up_read(&nh->rwsem);
337 }
1da177e4
LT
338 return ret;
339}
340
e041c683
AS
341EXPORT_SYMBOL_GPL(blocking_notifier_call_chain);
342
343/*
344 * Raw notifier chain routines. There is no protection;
345 * the caller must provide it. Use at your own risk!
346 */
347
348/**
349 * raw_notifier_chain_register - Add notifier to a raw notifier chain
350 * @nh: Pointer to head of the raw notifier chain
351 * @n: New entry in notifier chain
352 *
353 * Adds a notifier to a raw notifier chain.
354 * All locking must be provided by the caller.
355 *
356 * Currently always returns zero.
357 */
358
359int raw_notifier_chain_register(struct raw_notifier_head *nh,
360 struct notifier_block *n)
361{
362 return notifier_chain_register(&nh->head, n);
363}
364
365EXPORT_SYMBOL_GPL(raw_notifier_chain_register);
366
367/**
368 * raw_notifier_chain_unregister - Remove notifier from a raw notifier chain
369 * @nh: Pointer to head of the raw notifier chain
370 * @n: Entry to remove from notifier chain
371 *
372 * Removes a notifier from a raw notifier chain.
373 * All locking must be provided by the caller.
374 *
375 * Returns zero on success or %-ENOENT on failure.
376 */
377int raw_notifier_chain_unregister(struct raw_notifier_head *nh,
378 struct notifier_block *n)
379{
380 return notifier_chain_unregister(&nh->head, n);
381}
382
383EXPORT_SYMBOL_GPL(raw_notifier_chain_unregister);
384
385/**
386 * raw_notifier_call_chain - Call functions in a raw notifier chain
387 * @nh: Pointer to head of the raw notifier chain
388 * @val: Value passed unmodified to notifier function
389 * @v: Pointer passed unmodified to notifier function
390 *
391 * Calls each function in a notifier chain in turn. The functions
392 * run in an undefined context.
393 * All locking must be provided by the caller.
394 *
395 * If the return value of the notifier can be and'ed
72fd4a35 396 * with %NOTIFY_STOP_MASK then raw_notifier_call_chain()
e041c683
AS
397 * will return immediately, with the return value of
398 * the notifier function which halted execution.
399 * Otherwise the return value is the return value
400 * of the last notifier function called.
401 */
402
403int raw_notifier_call_chain(struct raw_notifier_head *nh,
404 unsigned long val, void *v)
405{
406 return notifier_call_chain(&nh->head, val, v);
407}
408
409EXPORT_SYMBOL_GPL(raw_notifier_call_chain);
1da177e4 410
eabc0694
AS
411/*
412 * SRCU notifier chain routines. Registration and unregistration
413 * use a mutex, and call_chain is synchronized by SRCU (no locks).
414 */
415
416/**
417 * srcu_notifier_chain_register - Add notifier to an SRCU notifier chain
418 * @nh: Pointer to head of the SRCU notifier chain
419 * @n: New entry in notifier chain
420 *
421 * Adds a notifier to an SRCU notifier chain.
422 * Must be called in process context.
423 *
424 * Currently always returns zero.
425 */
426
427int srcu_notifier_chain_register(struct srcu_notifier_head *nh,
428 struct notifier_block *n)
429{
430 int ret;
431
432 /*
433 * This code gets used during boot-up, when task switching is
434 * not yet working and interrupts must remain disabled. At
435 * such times we must not call mutex_lock().
436 */
437 if (unlikely(system_state == SYSTEM_BOOTING))
438 return notifier_chain_register(&nh->head, n);
439
440 mutex_lock(&nh->mutex);
441 ret = notifier_chain_register(&nh->head, n);
442 mutex_unlock(&nh->mutex);
443 return ret;
444}
445
446EXPORT_SYMBOL_GPL(srcu_notifier_chain_register);
447
448/**
449 * srcu_notifier_chain_unregister - Remove notifier from an SRCU notifier chain
450 * @nh: Pointer to head of the SRCU notifier chain
451 * @n: Entry to remove from notifier chain
452 *
453 * Removes a notifier from an SRCU notifier chain.
454 * Must be called from process context.
455 *
456 * Returns zero on success or %-ENOENT on failure.
457 */
458int srcu_notifier_chain_unregister(struct srcu_notifier_head *nh,
459 struct notifier_block *n)
460{
461 int ret;
462
463 /*
464 * This code gets used during boot-up, when task switching is
465 * not yet working and interrupts must remain disabled. At
466 * such times we must not call mutex_lock().
467 */
468 if (unlikely(system_state == SYSTEM_BOOTING))
469 return notifier_chain_unregister(&nh->head, n);
470
471 mutex_lock(&nh->mutex);
472 ret = notifier_chain_unregister(&nh->head, n);
473 mutex_unlock(&nh->mutex);
474 synchronize_srcu(&nh->srcu);
475 return ret;
476}
477
478EXPORT_SYMBOL_GPL(srcu_notifier_chain_unregister);
479
480/**
481 * srcu_notifier_call_chain - Call functions in an SRCU notifier chain
482 * @nh: Pointer to head of the SRCU notifier chain
483 * @val: Value passed unmodified to notifier function
484 * @v: Pointer passed unmodified to notifier function
485 *
486 * Calls each function in a notifier chain in turn. The functions
487 * run in a process context, so they are allowed to block.
488 *
489 * If the return value of the notifier can be and'ed
72fd4a35 490 * with %NOTIFY_STOP_MASK then srcu_notifier_call_chain()
eabc0694
AS
491 * will return immediately, with the return value of
492 * the notifier function which halted execution.
493 * Otherwise the return value is the return value
494 * of the last notifier function called.
495 */
496
497int srcu_notifier_call_chain(struct srcu_notifier_head *nh,
498 unsigned long val, void *v)
499{
500 int ret;
501 int idx;
502
503 idx = srcu_read_lock(&nh->srcu);
504 ret = notifier_call_chain(&nh->head, val, v);
505 srcu_read_unlock(&nh->srcu, idx);
506 return ret;
507}
508
509EXPORT_SYMBOL_GPL(srcu_notifier_call_chain);
510
511/**
512 * srcu_init_notifier_head - Initialize an SRCU notifier head
513 * @nh: Pointer to head of the srcu notifier chain
514 *
515 * Unlike other sorts of notifier heads, SRCU notifier heads require
516 * dynamic initialization. Be sure to call this routine before
517 * calling any of the other SRCU notifier routines for this head.
518 *
519 * If an SRCU notifier head is deallocated, it must first be cleaned
520 * up by calling srcu_cleanup_notifier_head(). Otherwise the head's
521 * per-cpu data (used by the SRCU mechanism) will leak.
522 */
523
524void srcu_init_notifier_head(struct srcu_notifier_head *nh)
525{
526 mutex_init(&nh->mutex);
e6a92013
AS
527 if (init_srcu_struct(&nh->srcu) < 0)
528 BUG();
eabc0694
AS
529 nh->head = NULL;
530}
531
532EXPORT_SYMBOL_GPL(srcu_init_notifier_head);
533
1da177e4
LT
534/**
535 * register_reboot_notifier - Register function to be called at reboot time
536 * @nb: Info about notifier function to be called
537 *
538 * Registers a function with the list of functions
539 * to be called at reboot time.
540 *
72fd4a35 541 * Currently always returns zero, as blocking_notifier_chain_register()
1da177e4
LT
542 * always returns zero.
543 */
544
545int register_reboot_notifier(struct notifier_block * nb)
546{
e041c683 547 return blocking_notifier_chain_register(&reboot_notifier_list, nb);
1da177e4
LT
548}
549
550EXPORT_SYMBOL(register_reboot_notifier);
551
552/**
553 * unregister_reboot_notifier - Unregister previously registered reboot notifier
554 * @nb: Hook to be unregistered
555 *
556 * Unregisters a previously registered reboot
557 * notifier function.
558 *
559 * Returns zero on success, or %-ENOENT on failure.
560 */
561
562int unregister_reboot_notifier(struct notifier_block * nb)
563{
e041c683 564 return blocking_notifier_chain_unregister(&reboot_notifier_list, nb);
1da177e4
LT
565}
566
567EXPORT_SYMBOL(unregister_reboot_notifier);
568
569static int set_one_prio(struct task_struct *p, int niceval, int error)
570{
571 int no_nice;
572
573 if (p->uid != current->euid &&
574 p->euid != current->euid && !capable(CAP_SYS_NICE)) {
575 error = -EPERM;
576 goto out;
577 }
e43379f1 578 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
1da177e4
LT
579 error = -EACCES;
580 goto out;
581 }
582 no_nice = security_task_setnice(p, niceval);
583 if (no_nice) {
584 error = no_nice;
585 goto out;
586 }
587 if (error == -ESRCH)
588 error = 0;
589 set_user_nice(p, niceval);
590out:
591 return error;
592}
593
594asmlinkage long sys_setpriority(int which, int who, int niceval)
595{
596 struct task_struct *g, *p;
597 struct user_struct *user;
598 int error = -EINVAL;
599
600 if (which > 2 || which < 0)
601 goto out;
602
603 /* normalize: avoid signed division (rounding problems) */
604 error = -ESRCH;
605 if (niceval < -20)
606 niceval = -20;
607 if (niceval > 19)
608 niceval = 19;
609
610 read_lock(&tasklist_lock);
611 switch (which) {
612 case PRIO_PROCESS:
613 if (!who)
614 who = current->pid;
615 p = find_task_by_pid(who);
616 if (p)
617 error = set_one_prio(p, niceval, error);
618 break;
619 case PRIO_PGRP:
620 if (!who)
621 who = process_group(current);
622 do_each_task_pid(who, PIDTYPE_PGID, p) {
623 error = set_one_prio(p, niceval, error);
624 } while_each_task_pid(who, PIDTYPE_PGID, p);
625 break;
626 case PRIO_USER:
627 user = current->user;
628 if (!who)
629 who = current->uid;
630 else
631 if ((who != current->uid) && !(user = find_user(who)))
632 goto out_unlock; /* No processes for this user */
633
634 do_each_thread(g, p)
635 if (p->uid == who)
636 error = set_one_prio(p, niceval, error);
637 while_each_thread(g, p);
638 if (who != current->uid)
639 free_uid(user); /* For find_user() */
640 break;
641 }
642out_unlock:
643 read_unlock(&tasklist_lock);
644out:
645 return error;
646}
647
648/*
649 * Ugh. To avoid negative return values, "getpriority()" will
650 * not return the normal nice-value, but a negated value that
651 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
652 * to stay compatible.
653 */
654asmlinkage long sys_getpriority(int which, int who)
655{
656 struct task_struct *g, *p;
657 struct user_struct *user;
658 long niceval, retval = -ESRCH;
659
660 if (which > 2 || which < 0)
661 return -EINVAL;
662
663 read_lock(&tasklist_lock);
664 switch (which) {
665 case PRIO_PROCESS:
666 if (!who)
667 who = current->pid;
668 p = find_task_by_pid(who);
669 if (p) {
670 niceval = 20 - task_nice(p);
671 if (niceval > retval)
672 retval = niceval;
673 }
674 break;
675 case PRIO_PGRP:
676 if (!who)
677 who = process_group(current);
678 do_each_task_pid(who, PIDTYPE_PGID, p) {
679 niceval = 20 - task_nice(p);
680 if (niceval > retval)
681 retval = niceval;
682 } while_each_task_pid(who, PIDTYPE_PGID, p);
683 break;
684 case PRIO_USER:
685 user = current->user;
686 if (!who)
687 who = current->uid;
688 else
689 if ((who != current->uid) && !(user = find_user(who)))
690 goto out_unlock; /* No processes for this user */
691
692 do_each_thread(g, p)
693 if (p->uid == who) {
694 niceval = 20 - task_nice(p);
695 if (niceval > retval)
696 retval = niceval;
697 }
698 while_each_thread(g, p);
699 if (who != current->uid)
700 free_uid(user); /* for find_user() */
701 break;
702 }
703out_unlock:
704 read_unlock(&tasklist_lock);
705
706 return retval;
707}
708
e4c94330
EB
709/**
710 * emergency_restart - reboot the system
711 *
712 * Without shutting down any hardware or taking any locks
713 * reboot the system. This is called when we know we are in
714 * trouble so this is our best effort to reboot. This is
715 * safe to call in interrupt context.
716 */
7c903473
EB
717void emergency_restart(void)
718{
719 machine_emergency_restart();
720}
721EXPORT_SYMBOL_GPL(emergency_restart);
722
83cc5ed3 723static void kernel_restart_prepare(char *cmd)
4a00ea1e 724{
e041c683 725 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
4a00ea1e 726 system_state = SYSTEM_RESTART;
4a00ea1e 727 device_shutdown();
e4c94330 728}
1e5d5331
RD
729
730/**
731 * kernel_restart - reboot the system
732 * @cmd: pointer to buffer containing command to execute for restart
b8887e6e 733 * or %NULL
1e5d5331
RD
734 *
735 * Shutdown everything and perform a clean reboot.
736 * This is not safe to call in interrupt context.
737 */
e4c94330
EB
738void kernel_restart(char *cmd)
739{
740 kernel_restart_prepare(cmd);
756184b7 741 if (!cmd)
4a00ea1e 742 printk(KERN_EMERG "Restarting system.\n");
756184b7 743 else
4a00ea1e 744 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
4a00ea1e
EB
745 machine_restart(cmd);
746}
747EXPORT_SYMBOL_GPL(kernel_restart);
748
e4c94330
EB
749/**
750 * kernel_kexec - reboot the system
751 *
752 * Move into place and start executing a preloaded standalone
753 * executable. If nothing was preloaded return an error.
754 */
83cc5ed3 755static void kernel_kexec(void)
4a00ea1e
EB
756{
757#ifdef CONFIG_KEXEC
758 struct kimage *image;
4bb8089c 759 image = xchg(&kexec_image, NULL);
756184b7 760 if (!image)
4a00ea1e 761 return;
e4c94330 762 kernel_restart_prepare(NULL);
4a00ea1e
EB
763 printk(KERN_EMERG "Starting new kernel\n");
764 machine_shutdown();
765 machine_kexec(image);
766#endif
767}
4a00ea1e 768
729b4d4c
AS
769void kernel_shutdown_prepare(enum system_states state)
770{
e041c683 771 blocking_notifier_call_chain(&reboot_notifier_list,
729b4d4c
AS
772 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
773 system_state = state;
774 device_shutdown();
775}
e4c94330
EB
776/**
777 * kernel_halt - halt the system
778 *
779 * Shutdown everything and perform a clean system halt.
780 */
e4c94330
EB
781void kernel_halt(void)
782{
729b4d4c 783 kernel_shutdown_prepare(SYSTEM_HALT);
4a00ea1e
EB
784 printk(KERN_EMERG "System halted.\n");
785 machine_halt();
786}
729b4d4c 787
4a00ea1e
EB
788EXPORT_SYMBOL_GPL(kernel_halt);
789
e4c94330
EB
790/**
791 * kernel_power_off - power_off the system
792 *
793 * Shutdown everything and perform a clean system power_off.
794 */
e4c94330
EB
795void kernel_power_off(void)
796{
729b4d4c 797 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
4a00ea1e
EB
798 printk(KERN_EMERG "Power down.\n");
799 machine_power_off();
800}
801EXPORT_SYMBOL_GPL(kernel_power_off);
1da177e4
LT
802/*
803 * Reboot system call: for obvious reasons only root may call it,
804 * and even root needs to set up some magic numbers in the registers
805 * so that some mistake won't make this reboot the whole machine.
806 * You can also set the meaning of the ctrl-alt-del-key here.
807 *
808 * reboot doesn't sync: do that yourself before calling this.
809 */
810asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd, void __user * arg)
811{
812 char buffer[256];
813
814 /* We only trust the superuser with rebooting the system. */
815 if (!capable(CAP_SYS_BOOT))
816 return -EPERM;
817
818 /* For safety, we require "magic" arguments. */
819 if (magic1 != LINUX_REBOOT_MAGIC1 ||
820 (magic2 != LINUX_REBOOT_MAGIC2 &&
821 magic2 != LINUX_REBOOT_MAGIC2A &&
822 magic2 != LINUX_REBOOT_MAGIC2B &&
823 magic2 != LINUX_REBOOT_MAGIC2C))
824 return -EINVAL;
825
5e38291d
EB
826 /* Instead of trying to make the power_off code look like
827 * halt when pm_power_off is not set do it the easy way.
828 */
829 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
830 cmd = LINUX_REBOOT_CMD_HALT;
831
1da177e4
LT
832 lock_kernel();
833 switch (cmd) {
834 case LINUX_REBOOT_CMD_RESTART:
4a00ea1e 835 kernel_restart(NULL);
1da177e4
LT
836 break;
837
838 case LINUX_REBOOT_CMD_CAD_ON:
839 C_A_D = 1;
840 break;
841
842 case LINUX_REBOOT_CMD_CAD_OFF:
843 C_A_D = 0;
844 break;
845
846 case LINUX_REBOOT_CMD_HALT:
4a00ea1e 847 kernel_halt();
1da177e4
LT
848 unlock_kernel();
849 do_exit(0);
850 break;
851
852 case LINUX_REBOOT_CMD_POWER_OFF:
4a00ea1e 853 kernel_power_off();
1da177e4
LT
854 unlock_kernel();
855 do_exit(0);
856 break;
857
858 case LINUX_REBOOT_CMD_RESTART2:
859 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
860 unlock_kernel();
861 return -EFAULT;
862 }
863 buffer[sizeof(buffer) - 1] = '\0';
864
4a00ea1e 865 kernel_restart(buffer);
1da177e4
LT
866 break;
867
dc009d92 868 case LINUX_REBOOT_CMD_KEXEC:
4a00ea1e
EB
869 kernel_kexec();
870 unlock_kernel();
871 return -EINVAL;
872
1da177e4
LT
873#ifdef CONFIG_SOFTWARE_SUSPEND
874 case LINUX_REBOOT_CMD_SW_SUSPEND:
875 {
876 int ret = software_suspend();
877 unlock_kernel();
878 return ret;
879 }
880#endif
881
882 default:
883 unlock_kernel();
884 return -EINVAL;
885 }
886 unlock_kernel();
887 return 0;
888}
889
65f27f38 890static void deferred_cad(struct work_struct *dummy)
1da177e4 891{
abcd9e51 892 kernel_restart(NULL);
1da177e4
LT
893}
894
895/*
896 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
897 * As it's called within an interrupt, it may NOT sync: the only choice
898 * is whether to reboot at once, or just ignore the ctrl-alt-del.
899 */
900void ctrl_alt_del(void)
901{
65f27f38 902 static DECLARE_WORK(cad_work, deferred_cad);
1da177e4
LT
903
904 if (C_A_D)
905 schedule_work(&cad_work);
906 else
9ec52099 907 kill_cad_pid(SIGINT, 1);
1da177e4
LT
908}
909
1da177e4
LT
910/*
911 * Unprivileged users may change the real gid to the effective gid
912 * or vice versa. (BSD-style)
913 *
914 * If you set the real gid at all, or set the effective gid to a value not
915 * equal to the real gid, then the saved gid is set to the new effective gid.
916 *
917 * This makes it possible for a setgid program to completely drop its
918 * privileges, which is often a useful assertion to make when you are doing
919 * a security audit over a program.
920 *
921 * The general idea is that a program which uses just setregid() will be
922 * 100% compatible with BSD. A program which uses just setgid() will be
923 * 100% compatible with POSIX with saved IDs.
924 *
925 * SMP: There are not races, the GIDs are checked only by filesystem
926 * operations (as far as semantic preservation is concerned).
927 */
928asmlinkage long sys_setregid(gid_t rgid, gid_t egid)
929{
930 int old_rgid = current->gid;
931 int old_egid = current->egid;
932 int new_rgid = old_rgid;
933 int new_egid = old_egid;
934 int retval;
935
936 retval = security_task_setgid(rgid, egid, (gid_t)-1, LSM_SETID_RE);
937 if (retval)
938 return retval;
939
940 if (rgid != (gid_t) -1) {
941 if ((old_rgid == rgid) ||
942 (current->egid==rgid) ||
943 capable(CAP_SETGID))
944 new_rgid = rgid;
945 else
946 return -EPERM;
947 }
948 if (egid != (gid_t) -1) {
949 if ((old_rgid == egid) ||
950 (current->egid == egid) ||
951 (current->sgid == egid) ||
952 capable(CAP_SETGID))
953 new_egid = egid;
756184b7 954 else
1da177e4 955 return -EPERM;
1da177e4 956 }
756184b7 957 if (new_egid != old_egid) {
d6e71144 958 current->mm->dumpable = suid_dumpable;
d59dd462 959 smp_wmb();
1da177e4
LT
960 }
961 if (rgid != (gid_t) -1 ||
962 (egid != (gid_t) -1 && egid != old_rgid))
963 current->sgid = new_egid;
964 current->fsgid = new_egid;
965 current->egid = new_egid;
966 current->gid = new_rgid;
967 key_fsgid_changed(current);
9f46080c 968 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
969 return 0;
970}
971
972/*
973 * setgid() is implemented like SysV w/ SAVED_IDS
974 *
975 * SMP: Same implicit races as above.
976 */
977asmlinkage long sys_setgid(gid_t gid)
978{
979 int old_egid = current->egid;
980 int retval;
981
982 retval = security_task_setgid(gid, (gid_t)-1, (gid_t)-1, LSM_SETID_ID);
983 if (retval)
984 return retval;
985
756184b7
CP
986 if (capable(CAP_SETGID)) {
987 if (old_egid != gid) {
d6e71144 988 current->mm->dumpable = suid_dumpable;
d59dd462 989 smp_wmb();
1da177e4
LT
990 }
991 current->gid = current->egid = current->sgid = current->fsgid = gid;
756184b7
CP
992 } else if ((gid == current->gid) || (gid == current->sgid)) {
993 if (old_egid != gid) {
d6e71144 994 current->mm->dumpable = suid_dumpable;
d59dd462 995 smp_wmb();
1da177e4
LT
996 }
997 current->egid = current->fsgid = gid;
998 }
999 else
1000 return -EPERM;
1001
1002 key_fsgid_changed(current);
9f46080c 1003 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
1004 return 0;
1005}
1006
1007static int set_user(uid_t new_ruid, int dumpclear)
1008{
1009 struct user_struct *new_user;
1010
1011 new_user = alloc_uid(new_ruid);
1012 if (!new_user)
1013 return -EAGAIN;
1014
1015 if (atomic_read(&new_user->processes) >=
1016 current->signal->rlim[RLIMIT_NPROC].rlim_cur &&
1017 new_user != &root_user) {
1018 free_uid(new_user);
1019 return -EAGAIN;
1020 }
1021
1022 switch_uid(new_user);
1023
756184b7 1024 if (dumpclear) {
d6e71144 1025 current->mm->dumpable = suid_dumpable;
d59dd462 1026 smp_wmb();
1da177e4
LT
1027 }
1028 current->uid = new_ruid;
1029 return 0;
1030}
1031
1032/*
1033 * Unprivileged users may change the real uid to the effective uid
1034 * or vice versa. (BSD-style)
1035 *
1036 * If you set the real uid at all, or set the effective uid to a value not
1037 * equal to the real uid, then the saved uid is set to the new effective uid.
1038 *
1039 * This makes it possible for a setuid program to completely drop its
1040 * privileges, which is often a useful assertion to make when you are doing
1041 * a security audit over a program.
1042 *
1043 * The general idea is that a program which uses just setreuid() will be
1044 * 100% compatible with BSD. A program which uses just setuid() will be
1045 * 100% compatible with POSIX with saved IDs.
1046 */
1047asmlinkage long sys_setreuid(uid_t ruid, uid_t euid)
1048{
1049 int old_ruid, old_euid, old_suid, new_ruid, new_euid;
1050 int retval;
1051
1052 retval = security_task_setuid(ruid, euid, (uid_t)-1, LSM_SETID_RE);
1053 if (retval)
1054 return retval;
1055
1056 new_ruid = old_ruid = current->uid;
1057 new_euid = old_euid = current->euid;
1058 old_suid = current->suid;
1059
1060 if (ruid != (uid_t) -1) {
1061 new_ruid = ruid;
1062 if ((old_ruid != ruid) &&
1063 (current->euid != ruid) &&
1064 !capable(CAP_SETUID))
1065 return -EPERM;
1066 }
1067
1068 if (euid != (uid_t) -1) {
1069 new_euid = euid;
1070 if ((old_ruid != euid) &&
1071 (current->euid != euid) &&
1072 (current->suid != euid) &&
1073 !capable(CAP_SETUID))
1074 return -EPERM;
1075 }
1076
1077 if (new_ruid != old_ruid && set_user(new_ruid, new_euid != old_euid) < 0)
1078 return -EAGAIN;
1079
756184b7 1080 if (new_euid != old_euid) {
d6e71144 1081 current->mm->dumpable = suid_dumpable;
d59dd462 1082 smp_wmb();
1da177e4
LT
1083 }
1084 current->fsuid = current->euid = new_euid;
1085 if (ruid != (uid_t) -1 ||
1086 (euid != (uid_t) -1 && euid != old_ruid))
1087 current->suid = current->euid;
1088 current->fsuid = current->euid;
1089
1090 key_fsuid_changed(current);
9f46080c 1091 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
1092
1093 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RE);
1094}
1095
1096
1097
1098/*
1099 * setuid() is implemented like SysV with SAVED_IDS
1100 *
1101 * Note that SAVED_ID's is deficient in that a setuid root program
1102 * like sendmail, for example, cannot set its uid to be a normal
1103 * user and then switch back, because if you're root, setuid() sets
1104 * the saved uid too. If you don't like this, blame the bright people
1105 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
1106 * will allow a root program to temporarily drop privileges and be able to
1107 * regain them by swapping the real and effective uid.
1108 */
1109asmlinkage long sys_setuid(uid_t uid)
1110{
1111 int old_euid = current->euid;
a09c17a6 1112 int old_ruid, old_suid, new_suid;
1da177e4
LT
1113 int retval;
1114
1115 retval = security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_ID);
1116 if (retval)
1117 return retval;
1118
a09c17a6 1119 old_ruid = current->uid;
1da177e4
LT
1120 old_suid = current->suid;
1121 new_suid = old_suid;
1122
1123 if (capable(CAP_SETUID)) {
1124 if (uid != old_ruid && set_user(uid, old_euid != uid) < 0)
1125 return -EAGAIN;
1126 new_suid = uid;
1127 } else if ((uid != current->uid) && (uid != new_suid))
1128 return -EPERM;
1129
756184b7 1130 if (old_euid != uid) {
d6e71144 1131 current->mm->dumpable = suid_dumpable;
d59dd462 1132 smp_wmb();
1da177e4
LT
1133 }
1134 current->fsuid = current->euid = uid;
1135 current->suid = new_suid;
1136
1137 key_fsuid_changed(current);
9f46080c 1138 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
1139
1140 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_ID);
1141}
1142
1143
1144/*
1145 * This function implements a generic ability to update ruid, euid,
1146 * and suid. This allows you to implement the 4.4 compatible seteuid().
1147 */
1148asmlinkage long sys_setresuid(uid_t ruid, uid_t euid, uid_t suid)
1149{
1150 int old_ruid = current->uid;
1151 int old_euid = current->euid;
1152 int old_suid = current->suid;
1153 int retval;
1154
1155 retval = security_task_setuid(ruid, euid, suid, LSM_SETID_RES);
1156 if (retval)
1157 return retval;
1158
1159 if (!capable(CAP_SETUID)) {
1160 if ((ruid != (uid_t) -1) && (ruid != current->uid) &&
1161 (ruid != current->euid) && (ruid != current->suid))
1162 return -EPERM;
1163 if ((euid != (uid_t) -1) && (euid != current->uid) &&
1164 (euid != current->euid) && (euid != current->suid))
1165 return -EPERM;
1166 if ((suid != (uid_t) -1) && (suid != current->uid) &&
1167 (suid != current->euid) && (suid != current->suid))
1168 return -EPERM;
1169 }
1170 if (ruid != (uid_t) -1) {
1171 if (ruid != current->uid && set_user(ruid, euid != current->euid) < 0)
1172 return -EAGAIN;
1173 }
1174 if (euid != (uid_t) -1) {
756184b7 1175 if (euid != current->euid) {
d6e71144 1176 current->mm->dumpable = suid_dumpable;
d59dd462 1177 smp_wmb();
1da177e4
LT
1178 }
1179 current->euid = euid;
1180 }
1181 current->fsuid = current->euid;
1182 if (suid != (uid_t) -1)
1183 current->suid = suid;
1184
1185 key_fsuid_changed(current);
9f46080c 1186 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
1187
1188 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RES);
1189}
1190
1191asmlinkage long sys_getresuid(uid_t __user *ruid, uid_t __user *euid, uid_t __user *suid)
1192{
1193 int retval;
1194
1195 if (!(retval = put_user(current->uid, ruid)) &&
1196 !(retval = put_user(current->euid, euid)))
1197 retval = put_user(current->suid, suid);
1198
1199 return retval;
1200}
1201
1202/*
1203 * Same as above, but for rgid, egid, sgid.
1204 */
1205asmlinkage long sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid)
1206{
1207 int retval;
1208
1209 retval = security_task_setgid(rgid, egid, sgid, LSM_SETID_RES);
1210 if (retval)
1211 return retval;
1212
1213 if (!capable(CAP_SETGID)) {
1214 if ((rgid != (gid_t) -1) && (rgid != current->gid) &&
1215 (rgid != current->egid) && (rgid != current->sgid))
1216 return -EPERM;
1217 if ((egid != (gid_t) -1) && (egid != current->gid) &&
1218 (egid != current->egid) && (egid != current->sgid))
1219 return -EPERM;
1220 if ((sgid != (gid_t) -1) && (sgid != current->gid) &&
1221 (sgid != current->egid) && (sgid != current->sgid))
1222 return -EPERM;
1223 }
1224 if (egid != (gid_t) -1) {
756184b7 1225 if (egid != current->egid) {
d6e71144 1226 current->mm->dumpable = suid_dumpable;
d59dd462 1227 smp_wmb();
1da177e4
LT
1228 }
1229 current->egid = egid;
1230 }
1231 current->fsgid = current->egid;
1232 if (rgid != (gid_t) -1)
1233 current->gid = rgid;
1234 if (sgid != (gid_t) -1)
1235 current->sgid = sgid;
1236
1237 key_fsgid_changed(current);
9f46080c 1238 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
1239 return 0;
1240}
1241
1242asmlinkage long sys_getresgid(gid_t __user *rgid, gid_t __user *egid, gid_t __user *sgid)
1243{
1244 int retval;
1245
1246 if (!(retval = put_user(current->gid, rgid)) &&
1247 !(retval = put_user(current->egid, egid)))
1248 retval = put_user(current->sgid, sgid);
1249
1250 return retval;
1251}
1252
1253
1254/*
1255 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
1256 * is used for "access()" and for the NFS daemon (letting nfsd stay at
1257 * whatever uid it wants to). It normally shadows "euid", except when
1258 * explicitly set by setfsuid() or for access..
1259 */
1260asmlinkage long sys_setfsuid(uid_t uid)
1261{
1262 int old_fsuid;
1263
1264 old_fsuid = current->fsuid;
1265 if (security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS))
1266 return old_fsuid;
1267
1268 if (uid == current->uid || uid == current->euid ||
1269 uid == current->suid || uid == current->fsuid ||
756184b7
CP
1270 capable(CAP_SETUID)) {
1271 if (uid != old_fsuid) {
d6e71144 1272 current->mm->dumpable = suid_dumpable;
d59dd462 1273 smp_wmb();
1da177e4
LT
1274 }
1275 current->fsuid = uid;
1276 }
1277
1278 key_fsuid_changed(current);
9f46080c 1279 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
1280
1281 security_task_post_setuid(old_fsuid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS);
1282
1283 return old_fsuid;
1284}
1285
1286/*
1287