move daemonized kernel threads into the swapper's session
[linux-block.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>
3e88c553 17#include <linux/resource.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>
3cfc348b 32#include <linux/getcpu.h>
6eaeeaba 33#include <linux/task_io_accounting_ops.h>
1d9d02fe 34#include <linux/seccomp.h>
4047727e 35#include <linux/cpu.h>
1da177e4
LT
36
37#include <linux/compat.h>
38#include <linux/syscalls.h>
00d7c05a 39#include <linux/kprobes.h>
acce292c 40#include <linux/user_namespace.h>
1da177e4
LT
41
42#include <asm/uaccess.h>
43#include <asm/io.h>
44#include <asm/unistd.h>
45
46#ifndef SET_UNALIGN_CTL
47# define SET_UNALIGN_CTL(a,b) (-EINVAL)
48#endif
49#ifndef GET_UNALIGN_CTL
50# define GET_UNALIGN_CTL(a,b) (-EINVAL)
51#endif
52#ifndef SET_FPEMU_CTL
53# define SET_FPEMU_CTL(a,b) (-EINVAL)
54#endif
55#ifndef GET_FPEMU_CTL
56# define GET_FPEMU_CTL(a,b) (-EINVAL)
57#endif
58#ifndef SET_FPEXC_CTL
59# define SET_FPEXC_CTL(a,b) (-EINVAL)
60#endif
61#ifndef GET_FPEXC_CTL
62# define GET_FPEXC_CTL(a,b) (-EINVAL)
63#endif
651d765d
AB
64#ifndef GET_ENDIAN
65# define GET_ENDIAN(a,b) (-EINVAL)
66#endif
67#ifndef SET_ENDIAN
68# define SET_ENDIAN(a,b) (-EINVAL)
69#endif
1da177e4
LT
70
71/*
72 * this is where the system-wide overflow UID and GID are defined, for
73 * architectures that now have 32-bit UID/GID but didn't in the past
74 */
75
76int overflowuid = DEFAULT_OVERFLOWUID;
77int overflowgid = DEFAULT_OVERFLOWGID;
78
79#ifdef CONFIG_UID16
80EXPORT_SYMBOL(overflowuid);
81EXPORT_SYMBOL(overflowgid);
82#endif
83
84/*
85 * the same as above, but for filesystems which can only store a 16-bit
86 * UID and GID. as such, this is needed on all architectures
87 */
88
89int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
90int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
91
92EXPORT_SYMBOL(fs_overflowuid);
93EXPORT_SYMBOL(fs_overflowgid);
94
95/*
96 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
97 */
98
99int C_A_D = 1;
9ec52099
CLG
100struct pid *cad_pid;
101EXPORT_SYMBOL(cad_pid);
1da177e4 102
bd804eba
RW
103/*
104 * If set, this is used for preparing the system to power off.
105 */
106
107void (*pm_power_off_prepare)(void);
bd804eba 108
1da177e4
LT
109static int set_one_prio(struct task_struct *p, int niceval, int error)
110{
111 int no_nice;
112
113 if (p->uid != current->euid &&
114 p->euid != current->euid && !capable(CAP_SYS_NICE)) {
115 error = -EPERM;
116 goto out;
117 }
e43379f1 118 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
1da177e4
LT
119 error = -EACCES;
120 goto out;
121 }
122 no_nice = security_task_setnice(p, niceval);
123 if (no_nice) {
124 error = no_nice;
125 goto out;
126 }
127 if (error == -ESRCH)
128 error = 0;
129 set_user_nice(p, niceval);
130out:
131 return error;
132}
133
134asmlinkage long sys_setpriority(int which, int who, int niceval)
135{
136 struct task_struct *g, *p;
137 struct user_struct *user;
138 int error = -EINVAL;
41487c65 139 struct pid *pgrp;
1da177e4 140
3e88c553 141 if (which > PRIO_USER || which < PRIO_PROCESS)
1da177e4
LT
142 goto out;
143
144 /* normalize: avoid signed division (rounding problems) */
145 error = -ESRCH;
146 if (niceval < -20)
147 niceval = -20;
148 if (niceval > 19)
149 niceval = 19;
150
151 read_lock(&tasklist_lock);
152 switch (which) {
153 case PRIO_PROCESS:
41487c65 154 if (who)
228ebcbe 155 p = find_task_by_vpid(who);
41487c65
EB
156 else
157 p = current;
1da177e4
LT
158 if (p)
159 error = set_one_prio(p, niceval, error);
160 break;
161 case PRIO_PGRP:
41487c65 162 if (who)
b488893a 163 pgrp = find_vpid(who);
41487c65
EB
164 else
165 pgrp = task_pgrp(current);
166 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
1da177e4 167 error = set_one_prio(p, niceval, error);
41487c65 168 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
1da177e4
LT
169 break;
170 case PRIO_USER:
171 user = current->user;
172 if (!who)
173 who = current->uid;
174 else
175 if ((who != current->uid) && !(user = find_user(who)))
176 goto out_unlock; /* No processes for this user */
177
178 do_each_thread(g, p)
179 if (p->uid == who)
180 error = set_one_prio(p, niceval, error);
181 while_each_thread(g, p);
182 if (who != current->uid)
183 free_uid(user); /* For find_user() */
184 break;
185 }
186out_unlock:
187 read_unlock(&tasklist_lock);
188out:
189 return error;
190}
191
192/*
193 * Ugh. To avoid negative return values, "getpriority()" will
194 * not return the normal nice-value, but a negated value that
195 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
196 * to stay compatible.
197 */
198asmlinkage long sys_getpriority(int which, int who)
199{
200 struct task_struct *g, *p;
201 struct user_struct *user;
202 long niceval, retval = -ESRCH;
41487c65 203 struct pid *pgrp;
1da177e4 204
3e88c553 205 if (which > PRIO_USER || which < PRIO_PROCESS)
1da177e4
LT
206 return -EINVAL;
207
208 read_lock(&tasklist_lock);
209 switch (which) {
210 case PRIO_PROCESS:
41487c65 211 if (who)
228ebcbe 212 p = find_task_by_vpid(who);
41487c65
EB
213 else
214 p = current;
1da177e4
LT
215 if (p) {
216 niceval = 20 - task_nice(p);
217 if (niceval > retval)
218 retval = niceval;
219 }
220 break;
221 case PRIO_PGRP:
41487c65 222 if (who)
b488893a 223 pgrp = find_vpid(who);
41487c65
EB
224 else
225 pgrp = task_pgrp(current);
226 do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
1da177e4
LT
227 niceval = 20 - task_nice(p);
228 if (niceval > retval)
229 retval = niceval;
41487c65 230 } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
1da177e4
LT
231 break;
232 case PRIO_USER:
233 user = current->user;
234 if (!who)
235 who = current->uid;
236 else
237 if ((who != current->uid) && !(user = find_user(who)))
238 goto out_unlock; /* No processes for this user */
239
240 do_each_thread(g, p)
241 if (p->uid == who) {
242 niceval = 20 - task_nice(p);
243 if (niceval > retval)
244 retval = niceval;
245 }
246 while_each_thread(g, p);
247 if (who != current->uid)
248 free_uid(user); /* for find_user() */
249 break;
250 }
251out_unlock:
252 read_unlock(&tasklist_lock);
253
254 return retval;
255}
256
e4c94330
EB
257/**
258 * emergency_restart - reboot the system
259 *
260 * Without shutting down any hardware or taking any locks
261 * reboot the system. This is called when we know we are in
262 * trouble so this is our best effort to reboot. This is
263 * safe to call in interrupt context.
264 */
7c903473
EB
265void emergency_restart(void)
266{
267 machine_emergency_restart();
268}
269EXPORT_SYMBOL_GPL(emergency_restart);
270
83cc5ed3 271static void kernel_restart_prepare(char *cmd)
4a00ea1e 272{
e041c683 273 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
4a00ea1e 274 system_state = SYSTEM_RESTART;
4a00ea1e 275 device_shutdown();
58b3b71d 276 sysdev_shutdown();
e4c94330 277}
1e5d5331
RD
278
279/**
280 * kernel_restart - reboot the system
281 * @cmd: pointer to buffer containing command to execute for restart
b8887e6e 282 * or %NULL
1e5d5331
RD
283 *
284 * Shutdown everything and perform a clean reboot.
285 * This is not safe to call in interrupt context.
286 */
e4c94330
EB
287void kernel_restart(char *cmd)
288{
289 kernel_restart_prepare(cmd);
756184b7 290 if (!cmd)
4a00ea1e 291 printk(KERN_EMERG "Restarting system.\n");
756184b7 292 else
4a00ea1e 293 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
4a00ea1e
EB
294 machine_restart(cmd);
295}
296EXPORT_SYMBOL_GPL(kernel_restart);
297
e4c94330
EB
298/**
299 * kernel_kexec - reboot the system
300 *
301 * Move into place and start executing a preloaded standalone
302 * executable. If nothing was preloaded return an error.
303 */
83cc5ed3 304static void kernel_kexec(void)
4a00ea1e
EB
305{
306#ifdef CONFIG_KEXEC
307 struct kimage *image;
4bb8089c 308 image = xchg(&kexec_image, NULL);
756184b7 309 if (!image)
4a00ea1e 310 return;
e4c94330 311 kernel_restart_prepare(NULL);
4a00ea1e
EB
312 printk(KERN_EMERG "Starting new kernel\n");
313 machine_shutdown();
314 machine_kexec(image);
315#endif
316}
4a00ea1e 317
4ef7229f 318static void kernel_shutdown_prepare(enum system_states state)
729b4d4c 319{
e041c683 320 blocking_notifier_call_chain(&reboot_notifier_list,
729b4d4c
AS
321 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
322 system_state = state;
323 device_shutdown();
324}
e4c94330
EB
325/**
326 * kernel_halt - halt the system
327 *
328 * Shutdown everything and perform a clean system halt.
329 */
e4c94330
EB
330void kernel_halt(void)
331{
729b4d4c 332 kernel_shutdown_prepare(SYSTEM_HALT);
58b3b71d 333 sysdev_shutdown();
4a00ea1e
EB
334 printk(KERN_EMERG "System halted.\n");
335 machine_halt();
336}
729b4d4c 337
4a00ea1e
EB
338EXPORT_SYMBOL_GPL(kernel_halt);
339
e4c94330
EB
340/**
341 * kernel_power_off - power_off the system
342 *
343 * Shutdown everything and perform a clean system power_off.
344 */
e4c94330
EB
345void kernel_power_off(void)
346{
729b4d4c 347 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
bd804eba
RW
348 if (pm_power_off_prepare)
349 pm_power_off_prepare();
4047727e 350 disable_nonboot_cpus();
58b3b71d 351 sysdev_shutdown();
4a00ea1e
EB
352 printk(KERN_EMERG "Power down.\n");
353 machine_power_off();
354}
355EXPORT_SYMBOL_GPL(kernel_power_off);
1da177e4
LT
356/*
357 * Reboot system call: for obvious reasons only root may call it,
358 * and even root needs to set up some magic numbers in the registers
359 * so that some mistake won't make this reboot the whole machine.
360 * You can also set the meaning of the ctrl-alt-del-key here.
361 *
362 * reboot doesn't sync: do that yourself before calling this.
363 */
364asmlinkage long sys_reboot(int magic1, int magic2, unsigned int cmd, void __user * arg)
365{
366 char buffer[256];
367
368 /* We only trust the superuser with rebooting the system. */
369 if (!capable(CAP_SYS_BOOT))
370 return -EPERM;
371
372 /* For safety, we require "magic" arguments. */
373 if (magic1 != LINUX_REBOOT_MAGIC1 ||
374 (magic2 != LINUX_REBOOT_MAGIC2 &&
375 magic2 != LINUX_REBOOT_MAGIC2A &&
376 magic2 != LINUX_REBOOT_MAGIC2B &&
377 magic2 != LINUX_REBOOT_MAGIC2C))
378 return -EINVAL;
379
5e38291d
EB
380 /* Instead of trying to make the power_off code look like
381 * halt when pm_power_off is not set do it the easy way.
382 */
383 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
384 cmd = LINUX_REBOOT_CMD_HALT;
385
1da177e4
LT
386 lock_kernel();
387 switch (cmd) {
388 case LINUX_REBOOT_CMD_RESTART:
4a00ea1e 389 kernel_restart(NULL);
1da177e4
LT
390 break;
391
392 case LINUX_REBOOT_CMD_CAD_ON:
393 C_A_D = 1;
394 break;
395
396 case LINUX_REBOOT_CMD_CAD_OFF:
397 C_A_D = 0;
398 break;
399
400 case LINUX_REBOOT_CMD_HALT:
4a00ea1e 401 kernel_halt();
1da177e4
LT
402 unlock_kernel();
403 do_exit(0);
404 break;
405
406 case LINUX_REBOOT_CMD_POWER_OFF:
4a00ea1e 407 kernel_power_off();
1da177e4
LT
408 unlock_kernel();
409 do_exit(0);
410 break;
411
412 case LINUX_REBOOT_CMD_RESTART2:
413 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
414 unlock_kernel();
415 return -EFAULT;
416 }
417 buffer[sizeof(buffer) - 1] = '\0';
418
4a00ea1e 419 kernel_restart(buffer);
1da177e4
LT
420 break;
421
dc009d92 422 case LINUX_REBOOT_CMD_KEXEC:
4a00ea1e
EB
423 kernel_kexec();
424 unlock_kernel();
425 return -EINVAL;
426
b0cb1a19 427#ifdef CONFIG_HIBERNATION
1da177e4
LT
428 case LINUX_REBOOT_CMD_SW_SUSPEND:
429 {
a3d25c27 430 int ret = hibernate();
1da177e4
LT
431 unlock_kernel();
432 return ret;
433 }
434#endif
435
436 default:
437 unlock_kernel();
438 return -EINVAL;
439 }
440 unlock_kernel();
441 return 0;
442}
443
65f27f38 444static void deferred_cad(struct work_struct *dummy)
1da177e4 445{
abcd9e51 446 kernel_restart(NULL);
1da177e4
LT
447}
448
449/*
450 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
451 * As it's called within an interrupt, it may NOT sync: the only choice
452 * is whether to reboot at once, or just ignore the ctrl-alt-del.
453 */
454void ctrl_alt_del(void)
455{
65f27f38 456 static DECLARE_WORK(cad_work, deferred_cad);
1da177e4
LT
457
458 if (C_A_D)
459 schedule_work(&cad_work);
460 else
9ec52099 461 kill_cad_pid(SIGINT, 1);
1da177e4
LT
462}
463
1da177e4
LT
464/*
465 * Unprivileged users may change the real gid to the effective gid
466 * or vice versa. (BSD-style)
467 *
468 * If you set the real gid at all, or set the effective gid to a value not
469 * equal to the real gid, then the saved gid is set to the new effective gid.
470 *
471 * This makes it possible for a setgid program to completely drop its
472 * privileges, which is often a useful assertion to make when you are doing
473 * a security audit over a program.
474 *
475 * The general idea is that a program which uses just setregid() will be
476 * 100% compatible with BSD. A program which uses just setgid() will be
477 * 100% compatible with POSIX with saved IDs.
478 *
479 * SMP: There are not races, the GIDs are checked only by filesystem
480 * operations (as far as semantic preservation is concerned).
481 */
482asmlinkage long sys_setregid(gid_t rgid, gid_t egid)
483{
484 int old_rgid = current->gid;
485 int old_egid = current->egid;
486 int new_rgid = old_rgid;
487 int new_egid = old_egid;
488 int retval;
489
490 retval = security_task_setgid(rgid, egid, (gid_t)-1, LSM_SETID_RE);
491 if (retval)
492 return retval;
493
494 if (rgid != (gid_t) -1) {
495 if ((old_rgid == rgid) ||
496 (current->egid==rgid) ||
497 capable(CAP_SETGID))
498 new_rgid = rgid;
499 else
500 return -EPERM;
501 }
502 if (egid != (gid_t) -1) {
503 if ((old_rgid == egid) ||
504 (current->egid == egid) ||
505 (current->sgid == egid) ||
506 capable(CAP_SETGID))
507 new_egid = egid;
756184b7 508 else
1da177e4 509 return -EPERM;
1da177e4 510 }
756184b7 511 if (new_egid != old_egid) {
6c5d5238 512 set_dumpable(current->mm, suid_dumpable);
d59dd462 513 smp_wmb();
1da177e4
LT
514 }
515 if (rgid != (gid_t) -1 ||
516 (egid != (gid_t) -1 && egid != old_rgid))
517 current->sgid = new_egid;
518 current->fsgid = new_egid;
519 current->egid = new_egid;
520 current->gid = new_rgid;
521 key_fsgid_changed(current);
9f46080c 522 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
523 return 0;
524}
525
526/*
527 * setgid() is implemented like SysV w/ SAVED_IDS
528 *
529 * SMP: Same implicit races as above.
530 */
531asmlinkage long sys_setgid(gid_t gid)
532{
533 int old_egid = current->egid;
534 int retval;
535
536 retval = security_task_setgid(gid, (gid_t)-1, (gid_t)-1, LSM_SETID_ID);
537 if (retval)
538 return retval;
539
756184b7
CP
540 if (capable(CAP_SETGID)) {
541 if (old_egid != gid) {
6c5d5238 542 set_dumpable(current->mm, suid_dumpable);
d59dd462 543 smp_wmb();
1da177e4
LT
544 }
545 current->gid = current->egid = current->sgid = current->fsgid = gid;
756184b7
CP
546 } else if ((gid == current->gid) || (gid == current->sgid)) {
547 if (old_egid != gid) {
6c5d5238 548 set_dumpable(current->mm, suid_dumpable);
d59dd462 549 smp_wmb();
1da177e4
LT
550 }
551 current->egid = current->fsgid = gid;
552 }
553 else
554 return -EPERM;
555
556 key_fsgid_changed(current);
9f46080c 557 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
558 return 0;
559}
560
561static int set_user(uid_t new_ruid, int dumpclear)
562{
563 struct user_struct *new_user;
564
acce292c 565 new_user = alloc_uid(current->nsproxy->user_ns, new_ruid);
1da177e4
LT
566 if (!new_user)
567 return -EAGAIN;
568
569 if (atomic_read(&new_user->processes) >=
570 current->signal->rlim[RLIMIT_NPROC].rlim_cur &&
acce292c 571 new_user != current->nsproxy->user_ns->root_user) {
1da177e4
LT
572 free_uid(new_user);
573 return -EAGAIN;
574 }
575
576 switch_uid(new_user);
577
756184b7 578 if (dumpclear) {
6c5d5238 579 set_dumpable(current->mm, suid_dumpable);
d59dd462 580 smp_wmb();
1da177e4
LT
581 }
582 current->uid = new_ruid;
583 return 0;
584}
585
586/*
587 * Unprivileged users may change the real uid to the effective uid
588 * or vice versa. (BSD-style)
589 *
590 * If you set the real uid at all, or set the effective uid to a value not
591 * equal to the real uid, then the saved uid is set to the new effective uid.
592 *
593 * This makes it possible for a setuid program to completely drop its
594 * privileges, which is often a useful assertion to make when you are doing
595 * a security audit over a program.
596 *
597 * The general idea is that a program which uses just setreuid() will be
598 * 100% compatible with BSD. A program which uses just setuid() will be
599 * 100% compatible with POSIX with saved IDs.
600 */
601asmlinkage long sys_setreuid(uid_t ruid, uid_t euid)
602{
603 int old_ruid, old_euid, old_suid, new_ruid, new_euid;
604 int retval;
605
606 retval = security_task_setuid(ruid, euid, (uid_t)-1, LSM_SETID_RE);
607 if (retval)
608 return retval;
609
610 new_ruid = old_ruid = current->uid;
611 new_euid = old_euid = current->euid;
612 old_suid = current->suid;
613
614 if (ruid != (uid_t) -1) {
615 new_ruid = ruid;
616 if ((old_ruid != ruid) &&
617 (current->euid != ruid) &&
618 !capable(CAP_SETUID))
619 return -EPERM;
620 }
621
622 if (euid != (uid_t) -1) {
623 new_euid = euid;
624 if ((old_ruid != euid) &&
625 (current->euid != euid) &&
626 (current->suid != euid) &&
627 !capable(CAP_SETUID))
628 return -EPERM;
629 }
630
631 if (new_ruid != old_ruid && set_user(new_ruid, new_euid != old_euid) < 0)
632 return -EAGAIN;
633
756184b7 634 if (new_euid != old_euid) {
6c5d5238 635 set_dumpable(current->mm, suid_dumpable);
d59dd462 636 smp_wmb();
1da177e4
LT
637 }
638 current->fsuid = current->euid = new_euid;
639 if (ruid != (uid_t) -1 ||
640 (euid != (uid_t) -1 && euid != old_ruid))
641 current->suid = current->euid;
642 current->fsuid = current->euid;
643
644 key_fsuid_changed(current);
9f46080c 645 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
646
647 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RE);
648}
649
650
651
652/*
653 * setuid() is implemented like SysV with SAVED_IDS
654 *
655 * Note that SAVED_ID's is deficient in that a setuid root program
656 * like sendmail, for example, cannot set its uid to be a normal
657 * user and then switch back, because if you're root, setuid() sets
658 * the saved uid too. If you don't like this, blame the bright people
659 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
660 * will allow a root program to temporarily drop privileges and be able to
661 * regain them by swapping the real and effective uid.
662 */
663asmlinkage long sys_setuid(uid_t uid)
664{
665 int old_euid = current->euid;
a09c17a6 666 int old_ruid, old_suid, new_suid;
1da177e4
LT
667 int retval;
668
669 retval = security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_ID);
670 if (retval)
671 return retval;
672
a09c17a6 673 old_ruid = current->uid;
1da177e4
LT
674 old_suid = current->suid;
675 new_suid = old_suid;
676
677 if (capable(CAP_SETUID)) {
678 if (uid != old_ruid && set_user(uid, old_euid != uid) < 0)
679 return -EAGAIN;
680 new_suid = uid;
681 } else if ((uid != current->uid) && (uid != new_suid))
682 return -EPERM;
683
756184b7 684 if (old_euid != uid) {
6c5d5238 685 set_dumpable(current->mm, suid_dumpable);
d59dd462 686 smp_wmb();
1da177e4
LT
687 }
688 current->fsuid = current->euid = uid;
689 current->suid = new_suid;
690
691 key_fsuid_changed(current);
9f46080c 692 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
693
694 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_ID);
695}
696
697
698/*
699 * This function implements a generic ability to update ruid, euid,
700 * and suid. This allows you to implement the 4.4 compatible seteuid().
701 */
702asmlinkage long sys_setresuid(uid_t ruid, uid_t euid, uid_t suid)
703{
704 int old_ruid = current->uid;
705 int old_euid = current->euid;
706 int old_suid = current->suid;
707 int retval;
708
709 retval = security_task_setuid(ruid, euid, suid, LSM_SETID_RES);
710 if (retval)
711 return retval;
712
713 if (!capable(CAP_SETUID)) {
714 if ((ruid != (uid_t) -1) && (ruid != current->uid) &&
715 (ruid != current->euid) && (ruid != current->suid))
716 return -EPERM;
717 if ((euid != (uid_t) -1) && (euid != current->uid) &&
718 (euid != current->euid) && (euid != current->suid))
719 return -EPERM;
720 if ((suid != (uid_t) -1) && (suid != current->uid) &&
721 (suid != current->euid) && (suid != current->suid))
722 return -EPERM;
723 }
724 if (ruid != (uid_t) -1) {
725 if (ruid != current->uid && set_user(ruid, euid != current->euid) < 0)
726 return -EAGAIN;
727 }
728 if (euid != (uid_t) -1) {
756184b7 729 if (euid != current->euid) {
6c5d5238 730 set_dumpable(current->mm, suid_dumpable);
d59dd462 731 smp_wmb();
1da177e4
LT
732 }
733 current->euid = euid;
734 }
735 current->fsuid = current->euid;
736 if (suid != (uid_t) -1)
737 current->suid = suid;
738
739 key_fsuid_changed(current);
9f46080c 740 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
741
742 return security_task_post_setuid(old_ruid, old_euid, old_suid, LSM_SETID_RES);
743}
744
745asmlinkage long sys_getresuid(uid_t __user *ruid, uid_t __user *euid, uid_t __user *suid)
746{
747 int retval;
748
749 if (!(retval = put_user(current->uid, ruid)) &&
750 !(retval = put_user(current->euid, euid)))
751 retval = put_user(current->suid, suid);
752
753 return retval;
754}
755
756/*
757 * Same as above, but for rgid, egid, sgid.
758 */
759asmlinkage long sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid)
760{
761 int retval;
762
763 retval = security_task_setgid(rgid, egid, sgid, LSM_SETID_RES);
764 if (retval)
765 return retval;
766
767 if (!capable(CAP_SETGID)) {
768 if ((rgid != (gid_t) -1) && (rgid != current->gid) &&
769 (rgid != current->egid) && (rgid != current->sgid))
770 return -EPERM;
771 if ((egid != (gid_t) -1) && (egid != current->gid) &&
772 (egid != current->egid) && (egid != current->sgid))
773 return -EPERM;
774 if ((sgid != (gid_t) -1) && (sgid != current->gid) &&
775 (sgid != current->egid) && (sgid != current->sgid))
776 return -EPERM;
777 }
778 if (egid != (gid_t) -1) {
756184b7 779 if (egid != current->egid) {
6c5d5238 780 set_dumpable(current->mm, suid_dumpable);
d59dd462 781 smp_wmb();
1da177e4
LT
782 }
783 current->egid = egid;
784 }
785 current->fsgid = current->egid;
786 if (rgid != (gid_t) -1)
787 current->gid = rgid;
788 if (sgid != (gid_t) -1)
789 current->sgid = sgid;
790
791 key_fsgid_changed(current);
9f46080c 792 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
793 return 0;
794}
795
796asmlinkage long sys_getresgid(gid_t __user *rgid, gid_t __user *egid, gid_t __user *sgid)
797{
798 int retval;
799
800 if (!(retval = put_user(current->gid, rgid)) &&
801 !(retval = put_user(current->egid, egid)))
802 retval = put_user(current->sgid, sgid);
803
804 return retval;
805}
806
807
808/*
809 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
810 * is used for "access()" and for the NFS daemon (letting nfsd stay at
811 * whatever uid it wants to). It normally shadows "euid", except when
812 * explicitly set by setfsuid() or for access..
813 */
814asmlinkage long sys_setfsuid(uid_t uid)
815{
816 int old_fsuid;
817
818 old_fsuid = current->fsuid;
819 if (security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS))
820 return old_fsuid;
821
822 if (uid == current->uid || uid == current->euid ||
823 uid == current->suid || uid == current->fsuid ||
756184b7
CP
824 capable(CAP_SETUID)) {
825 if (uid != old_fsuid) {
6c5d5238 826 set_dumpable(current->mm, suid_dumpable);
d59dd462 827 smp_wmb();
1da177e4
LT
828 }
829 current->fsuid = uid;
830 }
831
832 key_fsuid_changed(current);
9f46080c 833 proc_id_connector(current, PROC_EVENT_UID);
1da177e4
LT
834
835 security_task_post_setuid(old_fsuid, (uid_t)-1, (uid_t)-1, LSM_SETID_FS);
836
837 return old_fsuid;
838}
839
840/*
f42df9e6 841 * Samma på svenska..
1da177e4
LT
842 */
843asmlinkage long sys_setfsgid(gid_t gid)
844{
845 int old_fsgid;
846
847 old_fsgid = current->fsgid;
848 if (security_task_setgid(gid, (gid_t)-1, (gid_t)-1, LSM_SETID_FS))
849 return old_fsgid;
850
851 if (gid == current->gid || gid == current->egid ||
852 gid == current->sgid || gid == current->fsgid ||
756184b7
CP
853 capable(CAP_SETGID)) {
854 if (gid != old_fsgid) {
6c5d5238 855 set_dumpable(current->mm, suid_dumpable);
d59dd462 856 smp_wmb();
1da177e4
LT
857 }
858 current->fsgid = gid;
859 key_fsgid_changed(current);
9f46080c 860 proc_id_connector(current, PROC_EVENT_GID);
1da177e4
LT
861 }
862 return old_fsgid;
863}
864
865asmlinkage long sys_times(struct tms __user * tbuf)
866{
867 /*
868 * In the SMP world we might just be unlucky and have one of
869 * the times increment as we use it. Since the value is an
870 * atomically safe type this is just fine. Conceptually its
871 * as if the syscall took an instant longer to occur.
872 */
873 if (tbuf) {
874 struct tms tmp;
35f5cad8
ON
875 struct task_struct *tsk = current;
876 struct task_struct *t;
1da177e4
LT
877 cputime_t utime, stime, cutime, cstime;
878
7d7185c8 879 spin_lock_irq(&tsk->sighand->siglock);
35f5cad8
ON
880 utime = tsk->signal->utime;
881 stime = tsk->signal->stime;
882 t = tsk;
883 do {
884 utime = cputime_add(utime, t->utime);
885 stime = cputime_add(stime, t->stime);
886 t = next_thread(t);
887 } while (t != tsk);
888
35f5cad8
ON
889 cutime = tsk->signal->cutime;
890 cstime = tsk->signal->cstime;
891 spin_unlock_irq(&tsk->sighand->siglock);
1da177e4
LT
892
893 tmp.tms_utime = cputime_to_clock_t(utime);
894 tmp.tms_stime = cputime_to_clock_t(stime);
895 tmp.tms_cutime = cputime_to_clock_t(cutime);
896 tmp.tms_cstime = cputime_to_clock_t(cstime);
897 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
898 return -EFAULT;
899 }
900 return (long) jiffies_64_to_clock_t(get_jiffies_64());
901}
902
903/*
904 * This needs some heavy checking ...
905 * I just haven't the stomach for it. I also don't fully
906 * understand sessions/pgrp etc. Let somebody who does explain it.
907 *
908 * OK, I think I have the protection semantics right.... this is really
909 * only important on a multi-user system anyway, to make sure one user
910 * can't send a signal to a process owned by another. -TYT, 12/12/91
911 *
912 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
913 * LBT 04.03.94
914 */
1da177e4
LT
915asmlinkage long sys_setpgid(pid_t pid, pid_t pgid)
916{
917 struct task_struct *p;
ee0acf90 918 struct task_struct *group_leader = current->group_leader;
4e021306
ON
919 struct pid *pgrp;
920 int err;
1da177e4
LT
921
922 if (!pid)
b488893a 923 pid = task_pid_vnr(group_leader);
1da177e4
LT
924 if (!pgid)
925 pgid = pid;
926 if (pgid < 0)
927 return -EINVAL;
928
929 /* From this point forward we keep holding onto the tasklist lock
930 * so that our parent does not change from under us. -DaveM
931 */
932 write_lock_irq(&tasklist_lock);
933
934 err = -ESRCH;
4e021306 935 p = find_task_by_vpid(pid);
1da177e4
LT
936 if (!p)
937 goto out;
938
939 err = -EINVAL;
940 if (!thread_group_leader(p))
941 goto out;
942
4e021306 943 if (same_thread_group(p->real_parent, group_leader)) {
1da177e4 944 err = -EPERM;
41487c65 945 if (task_session(p) != task_session(group_leader))
1da177e4
LT
946 goto out;
947 err = -EACCES;
948 if (p->did_exec)
949 goto out;
950 } else {
951 err = -ESRCH;
ee0acf90 952 if (p != group_leader)
1da177e4
LT
953 goto out;
954 }
955
956 err = -EPERM;
957 if (p->signal->leader)
958 goto out;
959
4e021306 960 pgrp = task_pid(p);
1da177e4 961 if (pgid != pid) {
b488893a 962 struct task_struct *g;
1da177e4 963
4e021306
ON
964 pgrp = find_vpid(pgid);
965 g = pid_task(pgrp, PIDTYPE_PGID);
41487c65 966 if (!g || task_session(g) != task_session(group_leader))
f020bc46 967 goto out;
1da177e4
LT
968 }
969
1da177e4
LT
970 err = security_task_setpgid(p, pgid);
971 if (err)
972 goto out;
973
4e021306 974 if (task_pgrp(p) != pgrp) {
1da177e4 975 detach_pid(p, PIDTYPE_PGID);
4e021306
ON
976 attach_pid(p, PIDTYPE_PGID, pgrp);
977 set_task_pgrp(p, pid_nr(pgrp));
1da177e4
LT
978 }
979
980 err = 0;
981out:
982 /* All paths lead to here, thus we are safe. -DaveM */
983 write_unlock_irq(&tasklist_lock);
984 return err;
985}
986
987asmlinkage long sys_getpgid(pid_t pid)
988{
756184b7 989 if (!pid)
b488893a 990 return task_pgrp_vnr(current);
756184b7 991 else {
1da177e4
LT
992 int retval;
993 struct task_struct *p;
b488893a 994 struct pid_namespace *ns;
1da177e4 995
b488893a 996 ns = current->nsproxy->pid_ns;
1da177e4 997
b488893a
PE
998 read_lock(&tasklist_lock);
999 p = find_task_by_pid_ns(pid, ns);
1da177e4
LT
1000 retval = -ESRCH;
1001 if (p) {
1002 retval = security_task_getpgid(p);
1003 if (!retval)
b488893a 1004 retval = task_pgrp_nr_ns(p, ns);
1da177e4
LT
1005 }
1006 read_unlock(&tasklist_lock);
1007 return retval;
1008 }
1009}
1010
1011#ifdef __ARCH_WANT_SYS_GETPGRP
1012
1013asmlinkage long sys_getpgrp(void)
1014{
1015 /* SMP - assuming writes are word atomic this is fine */
b488893a 1016 return task_pgrp_vnr(current);
1da177e4
LT
1017}
1018
1019#endif
1020
1021asmlinkage long sys_getsid(pid_t pid)
1022{
756184b7 1023 if (!pid)
b488893a 1024 return task_session_vnr(current);
756184b7 1025 else {
1da177e4
LT
1026 int retval;
1027 struct task_struct *p;
b488893a 1028 struct pid_namespace *ns;
1da177e4 1029
b488893a 1030 ns = current->nsproxy->pid_ns;
1da177e4 1031
b488893a
PE
1032 read_lock(&tasklist_lock);
1033 p = find_task_by_pid_ns(pid, ns);
1da177e4 1034 retval = -ESRCH;
756184b7 1035 if (p) {
1da177e4
LT
1036 retval = security_task_getsid(p);
1037 if (!retval)
b488893a 1038 retval = task_session_nr_ns(p, ns);
1da177e4
LT
1039 }
1040 read_unlock(&tasklist_lock);
1041 return retval;
1042 }
1043}
1044
1045asmlinkage long sys_setsid(void)
1046{
e19f247a 1047 struct task_struct *group_leader = current->group_leader;
e4cc0a9c
ON
1048 struct pid *sid = task_pid(group_leader);
1049 pid_t session = pid_vnr(sid);
1da177e4
LT
1050 int err = -EPERM;
1051
1da177e4 1052 write_lock_irq(&tasklist_lock);
390e2ff0
EB
1053 /* Fail if I am already a session leader */
1054 if (group_leader->signal->leader)
1055 goto out;
1056
e4cc0a9c
ON
1057 /* Fail if a process group id already exists that equals the proposed
1058 * session id.
390e2ff0 1059 *
e4cc0a9c
ON
1060 * Don't check if session == 1 because kernel threads and CLONE_NEWPID
1061 * tasks use this session id and so the check will always fail and make
1062 * it so init cannot successfully call setsid.
390e2ff0 1063 */
e4cc0a9c 1064 if (session != 1 && pid_task(sid, PIDTYPE_PGID))
1da177e4
LT
1065 goto out;
1066
e19f247a 1067 group_leader->signal->leader = 1;
8520d7c7 1068 __set_special_pids(sid);
24ec839c
PZ
1069
1070 spin_lock(&group_leader->sighand->siglock);
e19f247a 1071 group_leader->signal->tty = NULL;
24ec839c
PZ
1072 spin_unlock(&group_leader->sighand->siglock);
1073
e4cc0a9c 1074 err = session;
1da177e4
LT
1075out:
1076 write_unlock_irq(&tasklist_lock);
1da177e4
LT
1077 return err;
1078}
1079
1080/*
1081 * Supplementary group IDs
1082 */
1083
1084/* init to 2 - one for init_task, one to ensure it is never freed */
1085struct group_info init_groups = { .usage = ATOMIC_INIT(2) };
1086
1087struct group_info *groups_alloc(int gidsetsize)
1088{
1089 struct group_info *group_info;
1090 int nblocks;
1091 int i;
1092
1093 nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;
1094 /* Make sure we always allocate at least one indirect block pointer */
1095 nblocks = nblocks ? : 1;
1096 group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);
1097 if (!group_info)
1098 return NULL;
1099 group_info->ngroups = gidsetsize;
1100 group_info->nblocks = nblocks;
1101 atomic_set(&group_info->usage, 1);
1102
756184b7 1103 if (gidsetsize <= NGROUPS_SMALL)
1da177e4 1104 group_info->blocks[0] = group_info->small_block;
756184b7 1105 else {
1da177e4
LT
1106 for (i = 0; i < nblocks; i++) {
1107 gid_t *b;
1108 b = (void *)__get_free_page(GFP_USER);
1109 if (!b)
1110 goto out_undo_partial_alloc;
1111 group_info->blocks[i] = b;
1112 }
1113 }
1114 return group_info;
1115
1116out_undo_partial_alloc:
1117 while (--i >= 0) {
1118 free_page((unsigned long)group_info->blocks[i]);
1119 }
1120 kfree(group_info);
1121 return NULL;
1122}
1123
1124EXPORT_SYMBOL(groups_alloc);
1125
1126void groups_free(struct group_info *group_info)
1127{
1128 if (group_info->blocks[0] != group_info->small_block) {
1129 int i;
1130 for (i = 0; i < group_info->nblocks; i++)
1131 free_page((unsigned long)group_info->blocks[i]);
1132 }
1133 kfree(group_info);
1134}
1135
1136EXPORT_SYMBOL(groups_free);
1137
1138/* export the group_info to a user-space array */
1139static int groups_to_user(gid_t __user *grouplist,
1140 struct group_info *group_info)
1141{
1142 int i;
1bf47346 1143 unsigned int count = group_info->ngroups;
1da177e4
LT
1144
1145 for (i = 0; i < group_info->nblocks; i++) {
1bf47346
ED
1146 unsigned int cp_count = min(NGROUPS_PER_BLOCK, count);
1147 unsigned int len = cp_count * sizeof(*grouplist);
1da177e4 1148
1bf47346 1149 if (copy_to_user(grouplist, group_info->blocks[i], len))
1da177e4
LT
1150 return -EFAULT;
1151
1bf47346 1152 grouplist += NGROUPS_PER_BLOCK;
1da177e4
LT
1153 count -= cp_count;
1154 }
1155 return 0;
1156}
1157
1158/* fill a group_info from a user-space array - it must be allocated already */
1159static int groups_from_user(struct group_info *group_info,
1160 gid_t __user *grouplist)
756184b7 1161{
1da177e4 1162 int i;
1bf47346 1163 unsigned int count = group_info->ngroups;
1da177e4
LT
1164
1165 for (i = 0; i < group_info->nblocks; i++) {
1bf47346
ED
1166 unsigned int cp_count = min(NGROUPS_PER_BLOCK, count);
1167 unsigned int len = cp_count * sizeof(*grouplist);
1da177e4 1168
1bf47346 1169 if (copy_from_user(group_info->blocks[i], grouplist, len))
1da177e4
LT
1170 return -EFAULT;
1171
1bf47346 1172 grouplist += NGROUPS_PER_BLOCK;
1da177e4
LT
1173 count -= cp_count;
1174 }
1175 return 0;
1176}
1177
ebe8b541 1178/* a simple Shell sort */
1da177e4
LT
1179static void groups_sort(struct group_info *group_info)
1180{
1181 int base, max, stride;
1182 int gidsetsize = group_info->ngroups;
1183
1184 for (stride = 1; stride < gidsetsize; stride = 3 * stride + 1)
1185 ; /* nothing */
1186 stride /= 3;
1187
1188 while (stride) {
1189 max = gidsetsize - stride;
1190 for (base = 0; base < max; base++) {
1191 int left = base;
1192 int right = left + stride;
1193 gid_t tmp = GROUP_AT(group_info, right);
1194
1195 while (left >= 0 && GROUP_AT(group_info, left) > tmp) {
1196 GROUP_AT(group_info, right) =
1197 GROUP_AT(group_info, left);
1198 right = left;
1199 left -= stride;
1200 }
1201 GROUP_AT(group_info, right) = tmp;
1202 }
1203 stride /= 3;
1204 }
1205}
1206
1207/* a simple bsearch */
3e30148c 1208int groups_search(struct group_info *group_info, gid_t grp)
1da177e4 1209{
d74beb9f 1210 unsigned int left, right;
1da177e4
LT
1211
1212 if (!group_info)
1213 return 0;
1214
1215 left = 0;
1216 right = group_info->ngroups;
1217 while (left < right) {
d74beb9f 1218 unsigned int mid = (left+right)/2;
1da177e4
LT
1219 int cmp = grp - GROUP_AT(group_info, mid);
1220 if (cmp > 0)
1221 left = mid + 1;
1222 else if (cmp < 0)
1223 right = mid;
1224 else
1225 return 1;
1226 }
1227 return 0;
1228}
1229
1230/* validate and set current->group_info */
1231int set_current_groups(struct group_info *group_info)
1232{
1233 int retval;
1234 struct group_info *old_info;
1235
1236 retval = security_task_setgroups(group_info);
1237 if (retval)
1238 return retval;
1239
1240 groups_sort(group_info);
1241 get_group_info(group_info);
1242
1243 task_lock(current);
1244 old_info = current->group_info;
1245 current->group_info = group_info;
1246 task_unlock(current);
1247
1248 put_group_info(old_info);
1249
1250 return 0;
1251}
1252
1253EXPORT_SYMBOL(set_current_groups);
1254
1255asmlinkage long sys_getgroups(int gidsetsize, gid_t __user *grouplist)
1256{
1257 int i = 0;
1258
1259 /*
1260 * SMP: Nobody else can change our grouplist. Thus we are
1261 * safe.
1262 */
1263
1264 if (gidsetsize < 0)
1265 return -EINVAL;
1266
1267 /* no need to grab task_lock here; it cannot change */
1da177e4
LT
1268 i = current->group_info->ngroups;
1269 if (gidsetsize) {
1270 if (i > gidsetsize) {
1271 i = -EINVAL;
1272 goto out;
1273 }
1274 if (groups_to_user(grouplist, current->group_info)) {
1275 i = -EFAULT;
1276 goto out;
1277 }
1278 }
1279out:
1da177e4
LT
1280 return i;
1281}
1282
1283/*
1284 * SMP: Our groups are copy-on-write. We can set them safely
1285 * without another task interfering.
1286 */
1287
1288asmlinkage long sys_setgroups(int gidsetsize, gid_t __user *grouplist)
1289{
1290 struct group_info *group_info;
1291 int retval;
1292
1293 if (!capable(CAP_SETGID))
1294 return -EPERM;
1295 if ((unsigned)gidsetsize > NGROUPS_MAX)
1296 return -EINVAL;
1297
1298 group_info = groups_alloc(gidsetsize);
1299 if (!group_info)
1300 return -ENOMEM;
1301 retval = groups_from_user(group_info, grouplist);
1302 if (retval) {
1303 put_group_info(group_info);
1304 return retval;
1305 }
1306
1307 retval = set_current_groups(group_info);
1308 put_group_info(group_info);
1309
1310 return retval;
1311}
1312
1313/*
1314 * Check whether we're fsgid/egid or in the supplemental group..
1315 */
1316int in_group_p(gid_t grp)
1317{
1318 int retval = 1;
756184b7 1319 if (grp != current->fsgid)
1da177e4 1320 retval = groups_search(current->group_info, grp);
1da177e4
LT
1321 return retval;
1322}
1323
1324EXPORT_SYMBOL(in_group_p);
1325
1326int in_egroup_p(gid_t grp)
1327{
1328 int retval = 1;
756184b7 1329 if (grp != current->egid)
1da177e4 1330 retval = groups_search(current->group_info, grp);
1da177e4
LT
1331 return retval;
1332}
1333
1334EXPORT_SYMBOL(in_egroup_p);
1335
1336DECLARE_RWSEM(uts_sem);
1337
393b0725
DM
1338EXPORT_SYMBOL(uts_sem);
1339
1da177e4
LT
1340asmlinkage long sys_newuname(struct new_utsname __user * name)
1341{
1342 int errno = 0;
1343
1344 down_read(&uts_sem);
e9ff3990 1345 if (copy_to_user(name, utsname(), sizeof *name))
1da177e4
LT
1346 errno = -EFAULT;
1347 up_read(&uts_sem);
1348 return errno;
1349}
1350
1351asmlinkage long sys_sethostname(char __user *name, int len)
1352{
1353 int errno;
1354 char tmp[__NEW_UTS_LEN];
1355
1356 if (!capable(CAP_SYS_ADMIN))
1357 return -EPERM;
1358 if (len < 0 || len > __NEW_UTS_LEN)
1359 return -EINVAL;
1360 down_write(&uts_sem);
1361 errno = -EFAULT;
1362 if (!copy_from_user(tmp, name, len)) {
e9ff3990
SH
1363 memcpy(utsname()->nodename, tmp, len);
1364 utsname()->nodename[len] = 0;
1da177e4
LT
1365 errno = 0;
1366 }
1367 up_write(&uts_sem);
1368 return errno;
1369}
1370
1371#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1372
1373asmlinkage long sys_gethostname(char __user *name, int len)
1374{
1375 int i, errno;
1376
1377 if (len < 0)
1378 return -EINVAL;
1379 down_read(&uts_sem);
e9ff3990 1380 i = 1 + strlen(utsname()->nodename);
1da177e4
LT
1381 if (i > len)
1382 i = len;
1383 errno = 0;
e9ff3990 1384 if (copy_to_user(name, utsname()->nodename, i))
1da177e4
LT
1385 errno = -EFAULT;
1386 up_read(&uts_sem);
1387 return errno;
1388}
1389
1390#endif
1391
1392/*
1393 * Only setdomainname; getdomainname can be implemented by calling
1394 * uname()
1395 */
1396asmlinkage long sys_setdomainname(char __user *name, int len)
1397{
1398 int errno;
1399 char tmp[__NEW_UTS_LEN];
1400
1401 if (!capable(CAP_SYS_ADMIN))
1402 return -EPERM;
1403 if (len < 0 || len > __NEW_UTS_LEN)
1404 return -EINVAL;
1405
1406 down_write(&uts_sem);
1407 errno = -EFAULT;
1408 if (!copy_from_user(tmp, name, len)) {
e9ff3990
SH
1409 memcpy(utsname()->domainname, tmp, len);
1410 utsname()->domainname[len] = 0;
1da177e4
LT
1411 errno = 0;
1412 }
1413 up_write(&uts_sem);
1414 return errno;
1415}
1416
1417asmlinkage long sys_getrlimit(unsigned int resource, struct rlimit __user *rlim)
1418{
1419 if (resource >= RLIM_NLIMITS)
1420 return -EINVAL;
1421 else {
1422 struct rlimit value;
1423 task_lock(current->group_leader);
1424 value = current->signal->rlim[resource];
1425 task_unlock(current->group_leader);
1426 return copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1427 }
1428}
1429
1430#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1431
1432/*
1433 * Back compatibility for getrlimit. Needed for some apps.
1434 */
1435
1436asmlinkage long sys_old_getrlimit(unsigned int resource, struct rlimit __user *rlim)
1437{
1438 struct rlimit x;
1439 if (resource >= RLIM_NLIMITS)
1440 return -EINVAL;
1441
1442 task_lock(current->group_leader);
1443 x = current->signal->rlim[resource];
1444 task_unlock(current->group_leader);
756184b7 1445 if (x.rlim_cur > 0x7FFFFFFF)
1da177e4 1446 x.rlim_cur = 0x7FFFFFFF;
756184b7 1447 if (x.rlim_max > 0x7FFFFFFF)
1da177e4
LT
1448 x.rlim_max = 0x7FFFFFFF;
1449 return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
1450}
1451
1452#endif
1453
1454asmlinkage long sys_setrlimit(unsigned int resource, struct rlimit __user *rlim)
1455{
1456 struct rlimit new_rlim, *old_rlim;
ec9e16ba 1457 unsigned long it_prof_secs;
1da177e4
LT
1458 int retval;
1459
1460 if (resource >= RLIM_NLIMITS)
1461 return -EINVAL;
ec9e16ba 1462 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1da177e4 1463 return -EFAULT;
ec9e16ba
AM
1464 if (new_rlim.rlim_cur > new_rlim.rlim_max)
1465 return -EINVAL;
1da177e4
LT
1466 old_rlim = current->signal->rlim + resource;
1467 if ((new_rlim.rlim_max > old_rlim->rlim_max) &&
1468 !capable(CAP_SYS_RESOURCE))
1469 return -EPERM;
9cfe015a 1470 if (resource == RLIMIT_NOFILE && new_rlim.rlim_max > sysctl_nr_open)
ec9e16ba 1471 return -EPERM;
1da177e4
LT
1472
1473 retval = security_task_setrlimit(resource, &new_rlim);
1474 if (retval)
1475 return retval;
1476
9926e4c7
TA
1477 if (resource == RLIMIT_CPU && new_rlim.rlim_cur == 0) {
1478 /*
1479 * The caller is asking for an immediate RLIMIT_CPU
1480 * expiry. But we use the zero value to mean "it was
1481 * never set". So let's cheat and make it one second
1482 * instead
1483 */
1484 new_rlim.rlim_cur = 1;
1485 }
1486
1da177e4
LT
1487 task_lock(current->group_leader);
1488 *old_rlim = new_rlim;
1489 task_unlock(current->group_leader);
1490
ec9e16ba
AM
1491 if (resource != RLIMIT_CPU)
1492 goto out;
d3561f78
AM
1493
1494 /*
1495 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1496 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1497 * very long-standing error, and fixing it now risks breakage of
1498 * applications, so we live with it
1499 */
ec9e16ba
AM
1500 if (new_rlim.rlim_cur == RLIM_INFINITY)
1501 goto out;
1502
1503 it_prof_secs = cputime_to_secs(current->signal->it_prof_expires);
1504 if (it_prof_secs == 0 || new_rlim.rlim_cur <= it_prof_secs) {
e0661111
AM
1505 unsigned long rlim_cur = new_rlim.rlim_cur;
1506 cputime_t cputime;
ec9e16ba 1507
e0661111 1508 cputime = secs_to_cputime(rlim_cur);
1da177e4
LT
1509 read_lock(&tasklist_lock);
1510 spin_lock_irq(&current->sighand->siglock);
ec9e16ba 1511 set_process_cpu_timer(current, CPUCLOCK_PROF, &cputime, NULL);
1da177e4
LT
1512 spin_unlock_irq(&current->sighand->siglock);
1513 read_unlock(&tasklist_lock);
1514 }
ec9e16ba 1515out:
1da177e4
LT
1516 return 0;
1517}
1518
1519/*
1520 * It would make sense to put struct rusage in the task_struct,
1521 * except that would make the task_struct be *really big*. After
1522 * task_struct gets moved into malloc'ed memory, it would
1523 * make sense to do this. It will make moving the rest of the information
1524 * a lot simpler! (Which we're not doing right now because we're not
1525 * measuring them yet).
1526 *
1da177e4
LT
1527 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1528 * races with threads incrementing their own counters. But since word
1529 * reads are atomic, we either get new values or old values and we don't
1530 * care which for the sums. We always take the siglock to protect reading
1531 * the c* fields from p->signal from races with exit.c updating those
1532 * fields when reaping, so a sample either gets all the additions of a
1533 * given child after it's reaped, or none so this sample is before reaping.
2dd0ebcd 1534 *
de047c1b
RT
1535 * Locking:
1536 * We need to take the siglock for CHILDEREN, SELF and BOTH
1537 * for the cases current multithreaded, non-current single threaded
1538 * non-current multithreaded. Thread traversal is now safe with
1539 * the siglock held.
1540 * Strictly speaking, we donot need to take the siglock if we are current and
1541 * single threaded, as no one else can take our signal_struct away, no one
1542 * else can reap the children to update signal->c* counters, and no one else
1543 * can race with the signal-> fields. If we do not take any lock, the
1544 * signal-> fields could be read out of order while another thread was just
1545 * exiting. So we should place a read memory barrier when we avoid the lock.
1546 * On the writer side, write memory barrier is implied in __exit_signal
1547 * as __exit_signal releases the siglock spinlock after updating the signal->
1548 * fields. But we don't do this yet to keep things simple.
2dd0ebcd 1549 *
1da177e4
LT
1550 */
1551
1552static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1553{
1554 struct task_struct *t;
1555 unsigned long flags;
1556 cputime_t utime, stime;
1557
1558 memset((char *) r, 0, sizeof *r);
2dd0ebcd 1559 utime = stime = cputime_zero;
1da177e4 1560
de047c1b
RT
1561 rcu_read_lock();
1562 if (!lock_task_sighand(p, &flags)) {
1563 rcu_read_unlock();
1564 return;
1565 }
0f59cc4a 1566
1da177e4 1567 switch (who) {
0f59cc4a 1568 case RUSAGE_BOTH:
1da177e4 1569 case RUSAGE_CHILDREN:
1da177e4
LT
1570 utime = p->signal->cutime;
1571 stime = p->signal->cstime;
1572 r->ru_nvcsw = p->signal->cnvcsw;
1573 r->ru_nivcsw = p->signal->cnivcsw;
1574 r->ru_minflt = p->signal->cmin_flt;
1575 r->ru_majflt = p->signal->cmaj_flt;
6eaeeaba
ED
1576 r->ru_inblock = p->signal->cinblock;
1577 r->ru_oublock = p->signal->coublock;
0f59cc4a
ON
1578
1579 if (who == RUSAGE_CHILDREN)
1580 break;
1581
1da177e4 1582 case RUSAGE_SELF:
1da177e4
LT
1583 utime = cputime_add(utime, p->signal->utime);
1584 stime = cputime_add(stime, p->signal->stime);
1585 r->ru_nvcsw += p->signal->nvcsw;
1586 r->ru_nivcsw += p->signal->nivcsw;
1587 r->ru_minflt += p->signal->min_flt;
1588 r->ru_majflt += p->signal->maj_flt;
6eaeeaba
ED
1589 r->ru_inblock += p->signal->inblock;
1590 r->ru_oublock += p->signal->oublock;
1da177e4
LT
1591 t = p;
1592 do {
1593 utime = cputime_add(utime, t->utime);
1594 stime = cputime_add(stime, t->stime);
1595 r->ru_nvcsw += t->nvcsw;
1596 r->ru_nivcsw += t->nivcsw;
1597 r->ru_minflt += t->min_flt;
1598 r->ru_majflt += t->maj_flt;
6eaeeaba
ED
1599 r->ru_inblock += task_io_get_inblock(t);
1600 r->ru_oublock += task_io_get_oublock(t);
1da177e4
LT
1601 t = next_thread(t);
1602 } while (t != p);
1da177e4 1603 break;
0f59cc4a 1604
1da177e4
LT
1605 default:
1606 BUG();
1607 }
0f59cc4a 1608
de047c1b
RT
1609 unlock_task_sighand(p, &flags);
1610 rcu_read_unlock();
1611
0f59cc4a
ON
1612 cputime_to_timeval(utime, &r->ru_utime);
1613 cputime_to_timeval(stime, &r->ru_stime);
1da177e4
LT
1614}
1615
1616int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1617{
1618 struct rusage r;
1da177e4 1619 k_getrusage(p, who, &r);
1da177e4
LT
1620 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1621}
1622
1623asmlinkage long sys_getrusage(int who, struct rusage __user *ru)
1624{
1625 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
1626 return -EINVAL;
1627 return getrusage(current, who, ru);
1628}
1629
1630asmlinkage long sys_umask(int mask)
1631{
1632 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1633 return mask;
1634}
3b7391de 1635
1da177e4
LT
1636asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3,
1637 unsigned long arg4, unsigned long arg5)
1638{
1639 long error;
1da177e4
LT
1640
1641 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
1642 if (error)
1643 return error;
1644
1645 switch (option) {
1646 case PR_SET_PDEATHSIG:
0730ded5 1647 if (!valid_signal(arg2)) {
1da177e4
LT
1648 error = -EINVAL;
1649 break;
1650 }
0730ded5 1651 current->pdeath_signal = arg2;
1da177e4
LT
1652 break;
1653 case PR_GET_PDEATHSIG:
1654 error = put_user(current->pdeath_signal, (int __user *)arg2);
1655 break;
1656 case PR_GET_DUMPABLE:
6c5d5238 1657 error = get_dumpable(current->mm);
1da177e4
LT
1658 break;
1659 case PR_SET_DUMPABLE:
abf75a50 1660 if (arg2 < 0 || arg2 > 1) {
1da177e4
LT
1661 error = -EINVAL;
1662 break;
1663 }
6c5d5238 1664 set_dumpable(current->mm, arg2);
1da177e4
LT
1665 break;
1666
1667 case PR_SET_UNALIGN:
1668 error = SET_UNALIGN_CTL(current, arg2);
1669 break;
1670 case PR_GET_UNALIGN:
1671 error = GET_UNALIGN_CTL(current, arg2);
1672 break;
1673 case PR_SET_FPEMU:
1674 error = SET_FPEMU_CTL(current, arg2);
1675 break;
1676 case PR_GET_FPEMU:
1677 error = GET_FPEMU_CTL(current, arg2);
1678 break;
1679 case PR_SET_FPEXC:
1680 error = SET_FPEXC_CTL(current, arg2);
1681 break;
1682 case PR_GET_FPEXC:
1683 error = GET_FPEXC_CTL(current, arg2);
1684 break;
1685 case PR_GET_TIMING:
1686 error = PR_TIMING_STATISTICAL;
1687 break;
1688 case PR_SET_TIMING:
1689 if (arg2 == PR_TIMING_STATISTICAL)
1690 error = 0;
1691 else
1692 error = -EINVAL;
1693 break;
1694
1695 case PR_GET_KEEPCAPS:
1696 if (current->keep_capabilities)
1697 error = 1;
1698 break;
1699 case PR_SET_KEEPCAPS:
1700 if (arg2 != 0 && arg2 != 1) {
1701 error = -EINVAL;
1702 break;
1703 }
1704 current->keep_capabilities = arg2;
1705 break;
1706 case PR_SET_NAME: {
1707 struct task_struct *me = current;
1708 unsigned char ncomm[sizeof(me->comm)];
1709
1710 ncomm[sizeof(me->comm)-1] = 0;
1711 if (strncpy_from_user(ncomm, (char __user *)arg2,
1712 sizeof(me->comm)-1) < 0)
1713 return -EFAULT;
1714 set_task_comm(me, ncomm);
1715 return 0;
1716 }
1717 case PR_GET_NAME: {
1718 struct task_struct *me = current;
1719 unsigned char tcomm[sizeof(me->comm)];
1720
1721 get_task_comm(tcomm, me);
1722 if (copy_to_user((char __user *)arg2, tcomm, sizeof(tcomm)))
1723 return -EFAULT;
1724 return 0;
1725 }
651d765d
AB
1726 case PR_GET_ENDIAN:
1727 error = GET_ENDIAN(current, arg2);
1728 break;
1729 case PR_SET_ENDIAN:
1730 error = SET_ENDIAN(current, arg2);
1731 break;
1732
1d9d02fe
AA
1733 case PR_GET_SECCOMP:
1734 error = prctl_get_seccomp();
1735 break;
1736 case PR_SET_SECCOMP:
1737 error = prctl_set_seccomp(arg2);
1738 break;
1739
3b7391de
SH
1740 case PR_CAPBSET_READ:
1741 if (!cap_valid(arg2))
1742 return -EINVAL;
1743 return !!cap_raised(current->cap_bset, arg2);
1744 case PR_CAPBSET_DROP:
1745#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
1746 return cap_prctl_drop(arg2);
1747#else
1748 return -EINVAL;
1749#endif
1750
1da177e4
LT
1751 default:
1752 error = -EINVAL;
1753 break;
1754 }
1755 return error;
1756}
3cfc348b
AK
1757
1758asmlinkage long sys_getcpu(unsigned __user *cpup, unsigned __user *nodep,
4307d1e5 1759 struct getcpu_cache __user *unused)
3cfc348b
AK
1760{
1761 int err = 0;
1762 int cpu = raw_smp_processor_id();
1763 if (cpup)
1764 err |= put_user(cpu, cpup);
1765 if (nodep)
1766 err |= put_user(cpu_to_node(cpu), nodep);
3cfc348b
AK
1767 return err ? -EFAULT : 0;
1768}
10a0a8d4
JF
1769
1770char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
1771
1772static void argv_cleanup(char **argv, char **envp)
1773{
1774 argv_free(argv);
1775}
1776
1777/**
1778 * orderly_poweroff - Trigger an orderly system poweroff
1779 * @force: force poweroff if command execution fails
1780 *
1781 * This may be called from any context to trigger a system shutdown.
1782 * If the orderly shutdown fails, it will force an immediate shutdown.
1783 */
1784int orderly_poweroff(bool force)
1785{
1786 int argc;
1787 char **argv = argv_split(GFP_ATOMIC, poweroff_cmd, &argc);
1788 static char *envp[] = {
1789 "HOME=/",
1790 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
1791 NULL
1792 };
1793 int ret = -ENOMEM;
1794 struct subprocess_info *info;
1795
1796 if (argv == NULL) {
1797 printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
1798 __func__, poweroff_cmd);
1799 goto out;
1800 }
1801
1802 info = call_usermodehelper_setup(argv[0], argv, envp);
1803 if (info == NULL) {
1804 argv_free(argv);
1805 goto out;
1806 }
1807
1808 call_usermodehelper_setcleanup(info, argv_cleanup);
1809
86313c48 1810 ret = call_usermodehelper_exec(info, UMH_NO_WAIT);
10a0a8d4
JF
1811
1812 out:
1813 if (ret && force) {
1814 printk(KERN_WARNING "Failed to start orderly shutdown: "
1815 "forcing the issue\n");
1816
1817 /* I guess this should try to kick off some daemon to
1818 sync and poweroff asap. Or not even bother syncing
1819 if we're doing an emergency shutdown? */
1820 emergency_sync();
1821 kernel_power_off();
1822 }
1823
1824 return ret;
1825}
1826EXPORT_SYMBOL_GPL(orderly_poweroff);