4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/module.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>
15 #include <linux/init.h>
16 #include <linux/highuid.h>
18 #include <asm/uaccess.h>
22 * this is where the system-wide overflow UID and GID are defined, for
23 * architectures that now have 32-bit UID/GID but didn't in the past
26 int overflowuid
= DEFAULT_OVERFLOWUID
;
27 int overflowgid
= DEFAULT_OVERFLOWGID
;
30 * the same as above, but for filesystems which can only store a 16-bit
31 * UID and GID. as such, this is needed on all architectures
34 int fs_overflowuid
= DEFAULT_FS_OVERFLOWUID
;
35 int fs_overflowgid
= DEFAULT_FS_OVERFLOWUID
;
38 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
45 * Notifier list for kernel code which wants to be called
46 * at shutdown. This is used to stop any idling DMA operations
50 static struct notifier_block
*reboot_notifier_list
;
51 rwlock_t notifier_lock
= RW_LOCK_UNLOCKED
;
54 * notifier_chain_register - Add notifier to a notifier chain
55 * @list: Pointer to root list pointer
56 * @n: New entry in notifier chain
58 * Adds a notifier to a notifier chain.
60 * Currently always returns zero.
63 int notifier_chain_register(struct notifier_block
**list
, struct notifier_block
*n
)
65 write_lock(¬ifier_lock
);
68 if(n
->priority
> (*list
)->priority
)
70 list
= &((*list
)->next
);
74 write_unlock(¬ifier_lock
);
79 * notifier_chain_unregister - Remove notifier from a notifier chain
80 * @nl: Pointer to root list pointer
81 * @n: New entry in notifier chain
83 * Removes a notifier from a notifier chain.
85 * Returns zero on success, or %-ENOENT on failure.
88 int notifier_chain_unregister(struct notifier_block
**nl
, struct notifier_block
*n
)
90 write_lock(¬ifier_lock
);
96 write_unlock(¬ifier_lock
);
101 write_unlock(¬ifier_lock
);
106 * notifier_call_chain - Call functions in a notifier chain
107 * @n: Pointer to root pointer of notifier chain
108 * @val: Value passed unmodified to notifier function
109 * @v: Pointer passed unmodified to notifier function
111 * Calls each function in a notifier chain in turn.
113 * If the return value of the notifier can be and'd
114 * with %NOTIFY_STOP_MASK, then notifier_call_chain
115 * will return immediately, with the return value of
116 * the notifier function which halted execution.
117 * Otherwise, the return value is the return value
118 * of the last notifier function called.
121 int notifier_call_chain(struct notifier_block
**n
, unsigned long val
, void *v
)
124 struct notifier_block
*nb
= *n
;
128 ret
=nb
->notifier_call(nb
,val
,v
);
129 if(ret
&NOTIFY_STOP_MASK
)
139 * register_reboot_notifier - Register function to be called at reboot time
140 * @nb: Info about notifier function to be called
142 * Registers a function with the list of functions
143 * to be called at reboot time.
145 * Currently always returns zero, as notifier_chain_register
146 * always returns zero.
149 int register_reboot_notifier(struct notifier_block
* nb
)
151 return notifier_chain_register(&reboot_notifier_list
, nb
);
155 * unregister_reboot_notifier - Unregister previously registered reboot notifier
156 * @nb: Hook to be unregistered
158 * Unregisters a previously registered reboot
161 * Returns zero on success, or %-ENOENT on failure.
164 int unregister_reboot_notifier(struct notifier_block
* nb
)
166 return notifier_chain_unregister(&reboot_notifier_list
, nb
);
169 asmlinkage
long sys_ni_syscall(void)
174 static int proc_sel(struct task_struct
*p
, int which
, int who
)
180 if (!who
&& p
== current
)
182 return(p
->pid
== who
);
186 return(p
->pgrp
== who
);
190 return(p
->uid
== who
);
196 asmlinkage
long sys_setpriority(int which
, int who
, int niceval
)
198 struct task_struct
*p
;
201 if (which
> 2 || which
< 0)
204 /* normalize: avoid signed division (rounding problems) */
211 read_lock(&tasklist_lock
);
213 if (!proc_sel(p
, which
, who
))
215 if (p
->uid
!= current
->euid
&&
216 p
->uid
!= current
->uid
&& !capable(CAP_SYS_NICE
)) {
222 if (niceval
< p
->nice
&& !capable(CAP_SYS_NICE
))
227 read_unlock(&tasklist_lock
);
233 * Ugh. To avoid negative return values, "getpriority()" will
234 * not return the normal nice-value, but a negated value that
235 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
236 * to stay compatible.
238 asmlinkage
long sys_getpriority(int which
, int who
)
240 struct task_struct
*p
;
241 long retval
= -ESRCH
;
243 if (which
> 2 || which
< 0)
246 read_lock(&tasklist_lock
);
249 if (!proc_sel(p
, which
, who
))
251 niceval
= 20 - p
->nice
;
252 if (niceval
> retval
)
255 read_unlock(&tasklist_lock
);
262 * Reboot system call: for obvious reasons only root may call it,
263 * and even root needs to set up some magic numbers in the registers
264 * so that some mistake won't make this reboot the whole machine.
265 * You can also set the meaning of the ctrl-alt-del-key here.
267 * reboot doesn't sync: do that yourself before calling this.
269 asmlinkage
long sys_reboot(int magic1
, int magic2
, unsigned int cmd
, void * arg
)
273 /* We only trust the superuser with rebooting the system. */
274 if (!capable(CAP_SYS_BOOT
))
277 /* For safety, we require "magic" arguments. */
278 if (magic1
!= LINUX_REBOOT_MAGIC1
||
279 (magic2
!= LINUX_REBOOT_MAGIC2
&& magic2
!= LINUX_REBOOT_MAGIC2A
&&
280 magic2
!= LINUX_REBOOT_MAGIC2B
))
285 case LINUX_REBOOT_CMD_RESTART
:
286 notifier_call_chain(&reboot_notifier_list
, SYS_RESTART
, NULL
);
287 printk(KERN_EMERG
"Restarting system.\n");
288 machine_restart(NULL
);
291 case LINUX_REBOOT_CMD_CAD_ON
:
295 case LINUX_REBOOT_CMD_CAD_OFF
:
299 case LINUX_REBOOT_CMD_HALT
:
300 notifier_call_chain(&reboot_notifier_list
, SYS_HALT
, NULL
);
301 printk(KERN_EMERG
"System halted.\n");
306 case LINUX_REBOOT_CMD_POWER_OFF
:
307 notifier_call_chain(&reboot_notifier_list
, SYS_POWER_OFF
, NULL
);
308 printk(KERN_EMERG
"Power down.\n");
313 case LINUX_REBOOT_CMD_RESTART2
:
314 if (strncpy_from_user(&buffer
[0], (char *)arg
, sizeof(buffer
) - 1) < 0) {
318 buffer
[sizeof(buffer
) - 1] = '\0';
320 notifier_call_chain(&reboot_notifier_list
, SYS_RESTART
, buffer
);
321 printk(KERN_EMERG
"Restarting system with command '%s'.\n", buffer
);
322 machine_restart(buffer
);
334 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
335 * As it's called within an interrupt, it may NOT sync: the only choice
336 * is whether to reboot at once, or just ignore the ctrl-alt-del.
338 void ctrl_alt_del(void)
341 notifier_call_chain(&reboot_notifier_list
, SYS_RESTART
, NULL
);
342 machine_restart(NULL
);
344 kill_proc(1, SIGINT
, 1);
349 * Unprivileged users may change the real gid to the effective gid
350 * or vice versa. (BSD-style)
352 * If you set the real gid at all, or set the effective gid to a value not
353 * equal to the real gid, then the saved gid is set to the new effective gid.
355 * This makes it possible for a setgid program to completely drop its
356 * privileges, which is often a useful assertion to make when you are doing
357 * a security audit over a program.
359 * The general idea is that a program which uses just setregid() will be
360 * 100% compatible with BSD. A program which uses just setgid() will be
361 * 100% compatible with POSIX with saved IDs.
363 * SMP: There are not races, the GIDs are checked only by filesystem
364 * operations (as far as semantic preservation is concerned).
366 asmlinkage
long sys_setregid(gid_t rgid
, gid_t egid
)
368 int old_rgid
= current
->gid
;
369 int old_egid
= current
->egid
;
371 if (rgid
!= (gid_t
) -1) {
372 if ((old_rgid
== rgid
) ||
373 (current
->egid
==rgid
) ||
379 if (egid
!= (gid_t
) -1) {
380 if ((old_rgid
== egid
) ||
381 (current
->egid
== egid
) ||
382 (current
->sgid
== egid
) ||
384 current
->fsgid
= current
->egid
= egid
;
386 current
->gid
= old_rgid
;
390 if (rgid
!= (gid_t
) -1 ||
391 (egid
!= (gid_t
) -1 && egid
!= old_rgid
))
392 current
->sgid
= current
->egid
;
393 current
->fsgid
= current
->egid
;
394 if (current
->egid
!= old_egid
)
395 current
->dumpable
= 0;
400 * setgid() is implemented like SysV w/ SAVED_IDS
402 * SMP: Same implicit races as above.
404 asmlinkage
long sys_setgid(gid_t gid
)
406 int old_egid
= current
->egid
;
408 if (capable(CAP_SETGID
))
409 current
->gid
= current
->egid
= current
->sgid
= current
->fsgid
= gid
;
410 else if ((gid
== current
->gid
) || (gid
== current
->sgid
))
411 current
->egid
= current
->fsgid
= gid
;
415 if (current
->egid
!= old_egid
)
416 current
->dumpable
= 0;
421 * cap_emulate_setxuid() fixes the effective / permitted capabilities of
422 * a process after a call to setuid, setreuid, or setresuid.
424 * 1) When set*uiding _from_ one of {r,e,s}uid == 0 _to_ all of
425 * {r,e,s}uid != 0, the permitted and effective capabilities are
428 * 2) When set*uiding _from_ euid == 0 _to_ euid != 0, the effective
429 * capabilities of the process are cleared.
431 * 3) When set*uiding _from_ euid != 0 _to_ euid == 0, the effective
432 * capabilities are set to the permitted capabilities.
434 * fsuid is handled elsewhere. fsuid == 0 and {r,e,s}uid!= 0 should
439 * cevans - New behaviour, Oct '99
440 * A process may, via prctl(), elect to keep its capabilities when it
441 * calls setuid() and switches away from uid==0. Both permitted and
442 * effective sets will be retained.
443 * Without this change, it was impossible for a daemon to drop only some
444 * of its privilege. The call to setuid(!=0) would drop all privileges!
445 * Keeping uid 0 is not an option because uid 0 owns too many vital
447 * Thanks to Olaf Kirch and Peter Benie for spotting this.
449 extern inline void cap_emulate_setxuid(int old_ruid
, int old_euid
,
452 if ((old_ruid
== 0 || old_euid
== 0 || old_suid
== 0) &&
453 (current
->uid
!= 0 && current
->euid
!= 0 && current
->suid
!= 0) &&
454 !current
->keep_capabilities
) {
455 cap_clear(current
->cap_permitted
);
456 cap_clear(current
->cap_effective
);
458 if (old_euid
== 0 && current
->euid
!= 0) {
459 cap_clear(current
->cap_effective
);
461 if (old_euid
!= 0 && current
->euid
== 0) {
462 current
->cap_effective
= current
->cap_permitted
;
466 static int set_user(uid_t new_ruid
)
468 struct user_struct
*new_user
, *old_user
;
470 /* What if a process setreuid()'s and this brings the
471 * new uid over his NPROC rlimit? We can check this now
472 * cheaply with the new uid cache, so if it matters
473 * we should be checking for it. -DaveM
475 new_user
= alloc_uid(new_ruid
);
478 old_user
= current
->user
;
479 atomic_dec(&old_user
->processes
);
480 atomic_inc(&new_user
->processes
);
482 current
->uid
= new_ruid
;
483 current
->user
= new_user
;
489 * Unprivileged users may change the real uid to the effective uid
490 * or vice versa. (BSD-style)
492 * If you set the real uid at all, or set the effective uid to a value not
493 * equal to the real uid, then the saved uid is set to the new effective uid.
495 * This makes it possible for a setuid program to completely drop its
496 * privileges, which is often a useful assertion to make when you are doing
497 * a security audit over a program.
499 * The general idea is that a program which uses just setreuid() will be
500 * 100% compatible with BSD. A program which uses just setuid() will be
501 * 100% compatible with POSIX with saved IDs.
503 asmlinkage
long sys_setreuid(uid_t ruid
, uid_t euid
)
505 int old_ruid
, old_euid
, old_suid
, new_ruid
, new_euid
;
507 new_ruid
= old_ruid
= current
->uid
;
508 new_euid
= old_euid
= current
->euid
;
509 old_suid
= current
->suid
;
511 if (ruid
!= (uid_t
) -1) {
513 if ((old_ruid
!= ruid
) &&
514 (current
->euid
!= ruid
) &&
515 !capable(CAP_SETUID
))
519 if (euid
!= (uid_t
) -1) {
521 if ((old_ruid
!= euid
) &&
522 (current
->euid
!= euid
) &&
523 (current
->suid
!= euid
) &&
524 !capable(CAP_SETUID
))
528 if (new_ruid
!= old_ruid
&& set_user(new_ruid
) < 0)
531 current
->fsuid
= current
->euid
= new_euid
;
532 if (ruid
!= (uid_t
) -1 ||
533 (euid
!= (uid_t
) -1 && euid
!= old_ruid
))
534 current
->suid
= current
->euid
;
535 current
->fsuid
= current
->euid
;
536 if (current
->euid
!= old_euid
)
537 current
->dumpable
= 0;
539 if (!issecure(SECURE_NO_SETUID_FIXUP
)) {
540 cap_emulate_setxuid(old_ruid
, old_euid
, old_suid
);
549 * setuid() is implemented like SysV with SAVED_IDS
551 * Note that SAVED_ID's is deficient in that a setuid root program
552 * like sendmail, for example, cannot set its uid to be a normal
553 * user and then switch back, because if you're root, setuid() sets
554 * the saved uid too. If you don't like this, blame the bright people
555 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
556 * will allow a root program to temporarily drop privileges and be able to
557 * regain them by swapping the real and effective uid.
559 asmlinkage
long sys_setuid(uid_t uid
)
561 int old_euid
= current
->euid
;
562 int old_ruid
, old_suid
, new_ruid
;
564 old_ruid
= new_ruid
= current
->uid
;
565 old_suid
= current
->suid
;
566 if (capable(CAP_SETUID
)) {
567 if (uid
!= old_ruid
&& set_user(uid
) < 0)
570 } else if ((uid
!= current
->uid
) && (uid
!= current
->suid
))
573 current
->fsuid
= current
->euid
= uid
;
576 current
->dumpable
= 0;
578 if (!issecure(SECURE_NO_SETUID_FIXUP
)) {
579 cap_emulate_setxuid(old_ruid
, old_euid
, old_suid
);
587 * This function implements a generic ability to update ruid, euid,
588 * and suid. This allows you to implement the 4.4 compatible seteuid().
590 asmlinkage
long sys_setresuid(uid_t ruid
, uid_t euid
, uid_t suid
)
592 int old_ruid
= current
->uid
;
593 int old_euid
= current
->euid
;
594 int old_suid
= current
->suid
;
596 if (!capable(CAP_SETUID
)) {
597 if ((ruid
!= (uid_t
) -1) && (ruid
!= current
->uid
) &&
598 (ruid
!= current
->euid
) && (ruid
!= current
->suid
))
600 if ((euid
!= (uid_t
) -1) && (euid
!= current
->uid
) &&
601 (euid
!= current
->euid
) && (euid
!= current
->suid
))
603 if ((suid
!= (uid_t
) -1) && (suid
!= current
->uid
) &&
604 (suid
!= current
->euid
) && (suid
!= current
->suid
))
607 if (ruid
!= (uid_t
) -1) {
608 if (ruid
!= current
->uid
&& set_user(ruid
) < 0)
611 if (euid
!= (uid_t
) -1) {
612 if (euid
!= current
->euid
)
613 current
->dumpable
= 0;
614 current
->euid
= euid
;
615 current
->fsuid
= euid
;
617 if (suid
!= (uid_t
) -1)
618 current
->suid
= suid
;
620 if (!issecure(SECURE_NO_SETUID_FIXUP
)) {
621 cap_emulate_setxuid(old_ruid
, old_euid
, old_suid
);
627 asmlinkage
long sys_getresuid(uid_t
*ruid
, uid_t
*euid
, uid_t
*suid
)
631 if (!(retval
= put_user(current
->uid
, ruid
)) &&
632 !(retval
= put_user(current
->euid
, euid
)))
633 retval
= put_user(current
->suid
, suid
);
639 * Same as above, but for rgid, egid, sgid.
641 asmlinkage
long sys_setresgid(gid_t rgid
, gid_t egid
, gid_t sgid
)
643 if (!capable(CAP_SETGID
)) {
644 if ((rgid
!= (gid_t
) -1) && (rgid
!= current
->gid
) &&
645 (rgid
!= current
->egid
) && (rgid
!= current
->sgid
))
647 if ((egid
!= (gid_t
) -1) && (egid
!= current
->gid
) &&
648 (egid
!= current
->egid
) && (egid
!= current
->sgid
))
650 if ((sgid
!= (gid_t
) -1) && (sgid
!= current
->gid
) &&
651 (sgid
!= current
->egid
) && (sgid
!= current
->sgid
))
654 if (rgid
!= (gid_t
) -1)
656 if (egid
!= (gid_t
) -1) {
657 if (egid
!= current
->egid
)
658 current
->dumpable
= 0;
659 current
->egid
= egid
;
660 current
->fsgid
= egid
;
662 if (sgid
!= (gid_t
) -1)
663 current
->sgid
= sgid
;
667 asmlinkage
long sys_getresgid(gid_t
*rgid
, gid_t
*egid
, gid_t
*sgid
)
671 if (!(retval
= put_user(current
->gid
, rgid
)) &&
672 !(retval
= put_user(current
->egid
, egid
)))
673 retval
= put_user(current
->sgid
, sgid
);
680 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
681 * is used for "access()" and for the NFS daemon (letting nfsd stay at
682 * whatever uid it wants to). It normally shadows "euid", except when
683 * explicitly set by setfsuid() or for access..
685 asmlinkage
long sys_setfsuid(uid_t uid
)
689 old_fsuid
= current
->fsuid
;
690 if (uid
== current
->uid
|| uid
== current
->euid
||
691 uid
== current
->suid
|| uid
== current
->fsuid
||
693 current
->fsuid
= uid
;
694 if (current
->fsuid
!= old_fsuid
)
695 current
->dumpable
= 0;
697 /* We emulate fsuid by essentially doing a scaled-down version
698 * of what we did in setresuid and friends. However, we only
699 * operate on the fs-specific bits of the process' effective
702 * FIXME - is fsuser used for all CAP_FS_MASK capabilities?
703 * if not, we might be a bit too harsh here.
706 if (!issecure(SECURE_NO_SETUID_FIXUP
)) {
707 if (old_fsuid
== 0 && current
->fsuid
!= 0) {
708 cap_t(current
->cap_effective
) &= ~CAP_FS_MASK
;
710 if (old_fsuid
!= 0 && current
->fsuid
== 0) {
711 cap_t(current
->cap_effective
) |=
712 (cap_t(current
->cap_permitted
) & CAP_FS_MASK
);
720 * Samma på svenska..
722 asmlinkage
long sys_setfsgid(gid_t gid
)
726 old_fsgid
= current
->fsgid
;
727 if (gid
== current
->gid
|| gid
== current
->egid
||
728 gid
== current
->sgid
|| gid
== current
->fsgid
||
730 current
->fsgid
= gid
;
731 if (current
->fsgid
!= old_fsgid
)
732 current
->dumpable
= 0;
737 asmlinkage
long sys_times(struct tms
* tbuf
)
740 * In the SMP world we might just be unlucky and have one of
741 * the times increment as we use it. Since the value is an
742 * atomically safe type this is just fine. Conceptually its
743 * as if the syscall took an instant longer to occur.
746 if (copy_to_user(tbuf
, ¤t
->times
, sizeof(struct tms
)))
752 * This needs some heavy checking ...
753 * I just haven't the stomach for it. I also don't fully
754 * understand sessions/pgrp etc. Let somebody who does explain it.
756 * OK, I think I have the protection semantics right.... this is really
757 * only important on a multi-user system anyway, to make sure one user
758 * can't send a signal to a process owned by another. -TYT, 12/12/91
760 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
764 asmlinkage
long sys_setpgid(pid_t pid
, pid_t pgid
)
766 struct task_struct
* p
;
776 /* From this point forward we keep holding onto the tasklist lock
777 * so that our parent does not change from under us. -DaveM
779 read_lock(&tasklist_lock
);
782 p
= find_task_by_pid(pid
);
786 if (p
->p_pptr
== current
|| p
->p_opptr
== current
) {
788 if (p
->session
!= current
->session
)
793 } else if (p
!= current
)
799 struct task_struct
* tmp
;
800 for_each_task (tmp
) {
801 if (tmp
->pgrp
== pgid
&&
802 tmp
->session
== current
->session
)
812 /* All paths lead to here, thus we are safe. -DaveM */
813 read_unlock(&tasklist_lock
);
817 asmlinkage
long sys_getpgid(pid_t pid
)
820 return current
->pgrp
;
823 struct task_struct
*p
;
825 read_lock(&tasklist_lock
);
826 p
= find_task_by_pid(pid
);
831 read_unlock(&tasklist_lock
);
836 asmlinkage
long sys_getpgrp(void)
838 /* SMP - assuming writes are word atomic this is fine */
839 return current
->pgrp
;
842 asmlinkage
long sys_getsid(pid_t pid
)
845 return current
->session
;
848 struct task_struct
*p
;
850 read_lock(&tasklist_lock
);
851 p
= find_task_by_pid(pid
);
856 read_unlock(&tasklist_lock
);
861 asmlinkage
long sys_setsid(void)
863 struct task_struct
* p
;
866 read_lock(&tasklist_lock
);
868 if (p
->pgrp
== current
->pid
)
873 current
->session
= current
->pgrp
= current
->pid
;
875 current
->tty_old_pgrp
= 0;
878 read_unlock(&tasklist_lock
);
883 * Supplementary group IDs
885 asmlinkage
long sys_getgroups(int gidsetsize
, gid_t
*grouplist
)
890 * SMP: Nobody else can change our grouplist. Thus we are
896 i
= current
->ngroups
;
900 if (copy_to_user(grouplist
, current
->groups
, sizeof(gid_t
)*i
))
907 * SMP: Our groups are not shared. We can copy to/from them safely
908 * without another task interfering.
911 asmlinkage
long sys_setgroups(int gidsetsize
, gid_t
*grouplist
)
913 if (!capable(CAP_SETGID
))
915 if ((unsigned) gidsetsize
> NGROUPS
)
917 if(copy_from_user(current
->groups
, grouplist
, gidsetsize
* sizeof(gid_t
)))
919 current
->ngroups
= gidsetsize
;
923 static int supplemental_group_member(gid_t grp
)
925 int i
= current
->ngroups
;
928 gid_t
*groups
= current
->groups
;
940 * Check whether we're fsgid/egid or in the supplemental group..
942 int in_group_p(gid_t grp
)
945 if (grp
!= current
->fsgid
)
946 retval
= supplemental_group_member(grp
);
950 int in_egroup_p(gid_t grp
)
953 if (grp
!= current
->egid
)
954 retval
= supplemental_group_member(grp
);
958 DECLARE_RWSEM(uts_sem
);
960 asmlinkage
long sys_newuname(struct new_utsname
* name
)
965 if (copy_to_user(name
,&system_utsname
,sizeof *name
))
971 asmlinkage
long sys_sethostname(char *name
, int len
)
975 if (!capable(CAP_SYS_ADMIN
))
977 if (len
< 0 || len
> __NEW_UTS_LEN
)
979 down_write(&uts_sem
);
981 if (!copy_from_user(system_utsname
.nodename
, name
, len
)) {
982 system_utsname
.nodename
[len
] = 0;
989 asmlinkage
long sys_gethostname(char *name
, int len
)
996 i
= 1 + strlen(system_utsname
.nodename
);
1000 if (copy_to_user(name
, system_utsname
.nodename
, i
))
1007 * Only setdomainname; getdomainname can be implemented by calling
1010 asmlinkage
long sys_setdomainname(char *name
, int len
)
1014 if (!capable(CAP_SYS_ADMIN
))
1016 if (len
< 0 || len
> __NEW_UTS_LEN
)
1019 down_write(&uts_sem
);
1021 if (!copy_from_user(system_utsname
.domainname
, name
, len
)) {
1023 system_utsname
.domainname
[len
] = 0;
1029 asmlinkage
long sys_getrlimit(unsigned int resource
, struct rlimit
*rlim
)
1031 if (resource
>= RLIM_NLIMITS
)
1034 return copy_to_user(rlim
, current
->rlim
+ resource
, sizeof(*rlim
))
1038 #if !defined(__ia64__) && !defined(__s390__)
1041 * Back compatibility for getrlimit. Needed for some apps.
1044 asmlinkage
long sys_old_getrlimit(unsigned int resource
, struct rlimit
*rlim
)
1047 if (resource
>= RLIM_NLIMITS
)
1050 memcpy(&x
, current
->rlim
+ resource
, sizeof(*rlim
));
1051 if(x
.rlim_cur
> 0x7FFFFFFF)
1052 x
.rlim_cur
= 0x7FFFFFFF;
1053 if(x
.rlim_max
> 0x7FFFFFFF)
1054 x
.rlim_max
= 0x7FFFFFFF;
1055 return copy_to_user(rlim
, &x
, sizeof(x
))?-EFAULT
:0;
1060 asmlinkage
long sys_setrlimit(unsigned int resource
, struct rlimit
*rlim
)
1062 struct rlimit new_rlim
, *old_rlim
;
1064 if (resource
>= RLIM_NLIMITS
)
1066 if(copy_from_user(&new_rlim
, rlim
, sizeof(*rlim
)))
1068 if (new_rlim
.rlim_cur
< 0 || new_rlim
.rlim_max
< 0)
1070 old_rlim
= current
->rlim
+ resource
;
1071 if (((new_rlim
.rlim_cur
> old_rlim
->rlim_max
) ||
1072 (new_rlim
.rlim_max
> old_rlim
->rlim_max
)) &&
1073 !capable(CAP_SYS_RESOURCE
))
1075 if (resource
== RLIMIT_NOFILE
) {
1076 if (new_rlim
.rlim_cur
> NR_OPEN
|| new_rlim
.rlim_max
> NR_OPEN
)
1079 *old_rlim
= new_rlim
;
1084 * It would make sense to put struct rusage in the task_struct,
1085 * except that would make the task_struct be *really big*. After
1086 * task_struct gets moved into malloc'ed memory, it would
1087 * make sense to do this. It will make moving the rest of the information
1088 * a lot simpler! (Which we're not doing right now because we're not
1089 * measuring them yet).
1091 * This is SMP safe. Either we are called from sys_getrusage on ourselves
1092 * below (we know we aren't going to exit/disappear and only we change our
1093 * rusage counters), or we are called from wait4() on a process which is
1094 * either stopped or zombied. In the zombied case the task won't get
1095 * reaped till shortly after the call to getrusage(), in both cases the
1096 * task being examined is in a frozen state so the counters won't change.
1098 * FIXME! Get the fault counts properly!
1100 int getrusage(struct task_struct
*p
, int who
, struct rusage
*ru
)
1104 memset((char *) &r
, 0, sizeof(r
));
1107 r
.ru_utime
.tv_sec
= CT_TO_SECS(p
->times
.tms_utime
);
1108 r
.ru_utime
.tv_usec
= CT_TO_USECS(p
->times
.tms_utime
);
1109 r
.ru_stime
.tv_sec
= CT_TO_SECS(p
->times
.tms_stime
);
1110 r
.ru_stime
.tv_usec
= CT_TO_USECS(p
->times
.tms_stime
);
1111 r
.ru_minflt
= p
->min_flt
;
1112 r
.ru_majflt
= p
->maj_flt
;
1113 r
.ru_nswap
= p
->nswap
;
1115 case RUSAGE_CHILDREN
:
1116 r
.ru_utime
.tv_sec
= CT_TO_SECS(p
->times
.tms_cutime
);
1117 r
.ru_utime
.tv_usec
= CT_TO_USECS(p
->times
.tms_cutime
);
1118 r
.ru_stime
.tv_sec
= CT_TO_SECS(p
->times
.tms_cstime
);
1119 r
.ru_stime
.tv_usec
= CT_TO_USECS(p
->times
.tms_cstime
);
1120 r
.ru_minflt
= p
->cmin_flt
;
1121 r
.ru_majflt
= p
->cmaj_flt
;
1122 r
.ru_nswap
= p
->cnswap
;
1125 r
.ru_utime
.tv_sec
= CT_TO_SECS(p
->times
.tms_utime
+ p
->times
.tms_cutime
);
1126 r
.ru_utime
.tv_usec
= CT_TO_USECS(p
->times
.tms_utime
+ p
->times
.tms_cutime
);
1127 r
.ru_stime
.tv_sec
= CT_TO_SECS(p
->times
.tms_stime
+ p
->times
.tms_cstime
);
1128 r
.ru_stime
.tv_usec
= CT_TO_USECS(p
->times
.tms_stime
+ p
->times
.tms_cstime
);
1129 r
.ru_minflt
= p
->min_flt
+ p
->cmin_flt
;
1130 r
.ru_majflt
= p
->maj_flt
+ p
->cmaj_flt
;
1131 r
.ru_nswap
= p
->nswap
+ p
->cnswap
;
1134 return copy_to_user(ru
, &r
, sizeof(r
)) ? -EFAULT
: 0;
1137 asmlinkage
long sys_getrusage(int who
, struct rusage
*ru
)
1139 if (who
!= RUSAGE_SELF
&& who
!= RUSAGE_CHILDREN
)
1141 return getrusage(current
, who
, ru
);
1144 asmlinkage
long sys_umask(int mask
)
1146 mask
= xchg(¤t
->fs
->umask
, mask
& S_IRWXUGO
);
1150 asmlinkage
long sys_prctl(int option
, unsigned long arg2
, unsigned long arg3
,
1151 unsigned long arg4
, unsigned long arg5
)
1157 case PR_SET_PDEATHSIG
:
1163 current
->pdeath_signal
= sig
;
1165 case PR_GET_PDEATHSIG
:
1166 error
= put_user(current
->pdeath_signal
, (int *)arg2
);
1168 case PR_GET_DUMPABLE
:
1169 if (current
->dumpable
)
1172 case PR_SET_DUMPABLE
:
1173 if (arg2
!= 0 && arg2
!= 1) {
1177 current
->dumpable
= arg2
;
1179 case PR_SET_UNALIGN
:
1180 #ifdef SET_UNALIGN_CTL
1181 error
= SET_UNALIGN_CTL(current
, arg2
);
1187 case PR_GET_UNALIGN
:
1188 #ifdef GET_UNALIGN_CTL
1189 error
= GET_UNALIGN_CTL(current
, arg2
);
1195 case PR_GET_KEEPCAPS
:
1196 if (current
->keep_capabilities
)
1199 case PR_SET_KEEPCAPS
:
1200 if (arg2
!= 0 && arg2
!= 1) {
1204 current
->keep_capabilities
= arg2
;
1213 EXPORT_SYMBOL(notifier_chain_register
);
1214 EXPORT_SYMBOL(notifier_chain_unregister
);
1215 EXPORT_SYMBOL(notifier_call_chain
);
1216 EXPORT_SYMBOL(register_reboot_notifier
);
1217 EXPORT_SYMBOL(unregister_reboot_notifier
);
1218 EXPORT_SYMBOL(in_group_p
);
1219 EXPORT_SYMBOL(in_egroup_p
);