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