Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/sys.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | */ |
| 6 | |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 7 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/mm.h> |
| 9 | #include <linux/utsname.h> |
| 10 | #include <linux/mman.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/reboot.h> |
| 12 | #include <linux/prctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/highuid.h> |
| 14 | #include <linux/fs.h> |
Paul Gortmaker | 74da1ff | 2011-05-26 12:48:41 -0400 | [diff] [blame] | 15 | #include <linux/kmod.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 16 | #include <linux/perf_event.h> |
Daniel Walker | 3e88c55 | 2007-05-10 22:22:53 -0700 | [diff] [blame] | 17 | #include <linux/resource.h> |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/kexec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/workqueue.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 21 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 30 | #include <linux/signal.h> |
Matt Helsley | 9f46080 | 2005-11-07 00:59:16 -0800 | [diff] [blame] | 31 | #include <linux/cn_proc.h> |
Andi Kleen | 3cfc348 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 32 | #include <linux/getcpu.h> |
Eric Dumazet | 6eaeeab | 2007-05-10 22:22:37 -0700 | [diff] [blame] | 33 | #include <linux/task_io_accounting_ops.h> |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 34 | #include <linux/seccomp.h> |
Mark Lord | 4047727 | 2007-10-01 01:20:10 -0700 | [diff] [blame] | 35 | #include <linux/cpu.h> |
Christoph Hellwig | e28cbf2 | 2010-03-10 15:21:19 -0800 | [diff] [blame] | 36 | #include <linux/personality.h> |
Paul Mackerras | e3d5a27 | 2009-01-06 14:41:02 -0800 | [diff] [blame] | 37 | #include <linux/ptrace.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 38 | #include <linux/fs_struct.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/gfp.h> |
Rafael J. Wysocki | 40dc166 | 2011-03-15 00:43:46 +0100 | [diff] [blame] | 40 | #include <linux/syscore_ops.h> |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 41 | #include <linux/version.h> |
| 42 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | #include <linux/compat.h> |
| 45 | #include <linux/syscalls.h> |
Keshavamurthy Anil S | 00d7c05 | 2005-12-12 00:37:33 -0800 | [diff] [blame] | 46 | #include <linux/kprobes.h> |
Cedric Le Goater | acce292 | 2007-07-15 23:40:59 -0700 | [diff] [blame] | 47 | #include <linux/user_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Seiji Aguchi | 04c6862 | 2011-01-12 16:59:30 -0800 | [diff] [blame] | 49 | #include <linux/kmsg_dump.h> |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 50 | /* Move somewhere else to avoid recompiling? */ |
| 51 | #include <generated/utsrelease.h> |
Seiji Aguchi | 04c6862 | 2011-01-12 16:59:30 -0800 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <asm/uaccess.h> |
| 54 | #include <asm/io.h> |
| 55 | #include <asm/unistd.h> |
| 56 | |
| 57 | #ifndef SET_UNALIGN_CTL |
| 58 | # define SET_UNALIGN_CTL(a,b) (-EINVAL) |
| 59 | #endif |
| 60 | #ifndef GET_UNALIGN_CTL |
| 61 | # define GET_UNALIGN_CTL(a,b) (-EINVAL) |
| 62 | #endif |
| 63 | #ifndef SET_FPEMU_CTL |
| 64 | # define SET_FPEMU_CTL(a,b) (-EINVAL) |
| 65 | #endif |
| 66 | #ifndef GET_FPEMU_CTL |
| 67 | # define GET_FPEMU_CTL(a,b) (-EINVAL) |
| 68 | #endif |
| 69 | #ifndef SET_FPEXC_CTL |
| 70 | # define SET_FPEXC_CTL(a,b) (-EINVAL) |
| 71 | #endif |
| 72 | #ifndef GET_FPEXC_CTL |
| 73 | # define GET_FPEXC_CTL(a,b) (-EINVAL) |
| 74 | #endif |
Anton Blanchard | 651d765 | 2006-06-07 16:10:19 +1000 | [diff] [blame] | 75 | #ifndef GET_ENDIAN |
| 76 | # define GET_ENDIAN(a,b) (-EINVAL) |
| 77 | #endif |
| 78 | #ifndef SET_ENDIAN |
| 79 | # define SET_ENDIAN(a,b) (-EINVAL) |
| 80 | #endif |
Erik Bosman | 8fb402b | 2008-04-11 18:54:17 +0200 | [diff] [blame] | 81 | #ifndef GET_TSC_CTL |
| 82 | # define GET_TSC_CTL(a) (-EINVAL) |
| 83 | #endif |
| 84 | #ifndef SET_TSC_CTL |
| 85 | # define SET_TSC_CTL(a) (-EINVAL) |
| 86 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | /* |
| 89 | * this is where the system-wide overflow UID and GID are defined, for |
| 90 | * architectures that now have 32-bit UID/GID but didn't in the past |
| 91 | */ |
| 92 | |
| 93 | int overflowuid = DEFAULT_OVERFLOWUID; |
| 94 | int overflowgid = DEFAULT_OVERFLOWGID; |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | EXPORT_SYMBOL(overflowuid); |
| 97 | EXPORT_SYMBOL(overflowgid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * the same as above, but for filesystems which can only store a 16-bit |
| 101 | * UID and GID. as such, this is needed on all architectures |
| 102 | */ |
| 103 | |
| 104 | int fs_overflowuid = DEFAULT_FS_OVERFLOWUID; |
| 105 | int fs_overflowgid = DEFAULT_FS_OVERFLOWUID; |
| 106 | |
| 107 | EXPORT_SYMBOL(fs_overflowuid); |
| 108 | EXPORT_SYMBOL(fs_overflowgid); |
| 109 | |
| 110 | /* |
| 111 | * this indicates whether you can reboot with ctrl-alt-del: the default is yes |
| 112 | */ |
| 113 | |
| 114 | int C_A_D = 1; |
Cedric Le Goater | 9ec5209 | 2006-10-02 02:19:00 -0700 | [diff] [blame] | 115 | struct pid *cad_pid; |
| 116 | EXPORT_SYMBOL(cad_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | /* |
Rafael J. Wysocki | bd804eb | 2007-07-19 01:47:40 -0700 | [diff] [blame] | 119 | * If set, this is used for preparing the system to power off. |
| 120 | */ |
| 121 | |
| 122 | void (*pm_power_off_prepare)(void); |
Rafael J. Wysocki | bd804eb | 2007-07-19 01:47:40 -0700 | [diff] [blame] | 123 | |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 124 | /* |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 125 | * Returns true if current's euid is same as p's uid or euid, |
| 126 | * or has CAP_SYS_NICE to p's user_ns. |
| 127 | * |
| 128 | * Called with rcu_read_lock, creds are safe |
| 129 | */ |
| 130 | static bool set_one_prio_perm(struct task_struct *p) |
| 131 | { |
| 132 | const struct cred *cred = current_cred(), *pcred = __task_cred(p); |
| 133 | |
Eric W. Biederman | c4a4d60 | 2011-11-16 23:15:31 -0800 | [diff] [blame] | 134 | if (pcred->user_ns == cred->user_ns && |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 135 | (pcred->uid == cred->euid || |
| 136 | pcred->euid == cred->euid)) |
| 137 | return true; |
Eric W. Biederman | c4a4d60 | 2011-11-16 23:15:31 -0800 | [diff] [blame] | 138 | if (ns_capable(pcred->user_ns, CAP_SYS_NICE)) |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 139 | return true; |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | /* |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 144 | * set the priority of a task |
| 145 | * - the caller must hold the RCU read lock |
| 146 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | static int set_one_prio(struct task_struct *p, int niceval, int error) |
| 148 | { |
| 149 | int no_nice; |
| 150 | |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 151 | if (!set_one_prio_perm(p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | error = -EPERM; |
| 153 | goto out; |
| 154 | } |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 155 | if (niceval < task_nice(p) && !can_nice(p, niceval)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | error = -EACCES; |
| 157 | goto out; |
| 158 | } |
| 159 | no_nice = security_task_setnice(p, niceval); |
| 160 | if (no_nice) { |
| 161 | error = no_nice; |
| 162 | goto out; |
| 163 | } |
| 164 | if (error == -ESRCH) |
| 165 | error = 0; |
| 166 | set_user_nice(p, niceval); |
| 167 | out: |
| 168 | return error; |
| 169 | } |
| 170 | |
Heiko Carstens | 754fe8d | 2009-01-14 14:14:09 +0100 | [diff] [blame] | 171 | SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
| 173 | struct task_struct *g, *p; |
| 174 | struct user_struct *user; |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 175 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | int error = -EINVAL; |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 177 | struct pid *pgrp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Daniel Walker | 3e88c55 | 2007-05-10 22:22:53 -0700 | [diff] [blame] | 179 | if (which > PRIO_USER || which < PRIO_PROCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | goto out; |
| 181 | |
| 182 | /* normalize: avoid signed division (rounding problems) */ |
| 183 | error = -ESRCH; |
| 184 | if (niceval < -20) |
| 185 | niceval = -20; |
| 186 | if (niceval > 19) |
| 187 | niceval = 19; |
| 188 | |
Thomas Gleixner | d4581a2 | 2009-12-10 00:52:51 +0000 | [diff] [blame] | 189 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | read_lock(&tasklist_lock); |
| 191 | switch (which) { |
| 192 | case PRIO_PROCESS: |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 193 | if (who) |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 194 | p = find_task_by_vpid(who); |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 195 | else |
| 196 | p = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | if (p) |
| 198 | error = set_one_prio(p, niceval, error); |
| 199 | break; |
| 200 | case PRIO_PGRP: |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 201 | if (who) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 202 | pgrp = find_vpid(who); |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 203 | else |
| 204 | pgrp = task_pgrp(current); |
Ken Chen | 2d70b68 | 2008-08-20 14:09:17 -0700 | [diff] [blame] | 205 | do_each_pid_thread(pgrp, PIDTYPE_PGID, p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | error = set_one_prio(p, niceval, error); |
Ken Chen | 2d70b68 | 2008-08-20 14:09:17 -0700 | [diff] [blame] | 207 | } while_each_pid_thread(pgrp, PIDTYPE_PGID, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | break; |
| 209 | case PRIO_USER: |
Eric W. Biederman | 74ba508 | 2012-03-03 18:58:11 -0800 | [diff] [blame] | 210 | user = cred->user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | if (!who) |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 212 | who = cred->uid; |
| 213 | else if ((who != cred->uid) && |
| 214 | !(user = find_user(who))) |
| 215 | goto out_unlock; /* No processes for this user */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
H Hartley Sweeten | dfc6a73 | 2009-12-14 18:00:22 -0800 | [diff] [blame] | 217 | do_each_thread(g, p) { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 218 | if (__task_cred(p)->uid == who) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | error = set_one_prio(p, niceval, error); |
H Hartley Sweeten | dfc6a73 | 2009-12-14 18:00:22 -0800 | [diff] [blame] | 220 | } while_each_thread(g, p); |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 221 | if (who != cred->uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | free_uid(user); /* For find_user() */ |
| 223 | break; |
| 224 | } |
| 225 | out_unlock: |
| 226 | read_unlock(&tasklist_lock); |
Thomas Gleixner | d4581a2 | 2009-12-10 00:52:51 +0000 | [diff] [blame] | 227 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | out: |
| 229 | return error; |
| 230 | } |
| 231 | |
| 232 | /* |
| 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. |
| 237 | */ |
Heiko Carstens | 754fe8d | 2009-01-14 14:14:09 +0100 | [diff] [blame] | 238 | SYSCALL_DEFINE2(getpriority, int, which, int, who) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
| 240 | struct task_struct *g, *p; |
| 241 | struct user_struct *user; |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 242 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | long niceval, retval = -ESRCH; |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 244 | struct pid *pgrp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Daniel Walker | 3e88c55 | 2007-05-10 22:22:53 -0700 | [diff] [blame] | 246 | if (which > PRIO_USER || which < PRIO_PROCESS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return -EINVAL; |
| 248 | |
Tetsuo Handa | 7011883 | 2010-02-22 12:44:16 -0800 | [diff] [blame] | 249 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | read_lock(&tasklist_lock); |
| 251 | switch (which) { |
| 252 | case PRIO_PROCESS: |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 253 | if (who) |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 254 | p = find_task_by_vpid(who); |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 255 | else |
| 256 | p = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | if (p) { |
| 258 | niceval = 20 - task_nice(p); |
| 259 | if (niceval > retval) |
| 260 | retval = niceval; |
| 261 | } |
| 262 | break; |
| 263 | case PRIO_PGRP: |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 264 | if (who) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 265 | pgrp = find_vpid(who); |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 266 | else |
| 267 | pgrp = task_pgrp(current); |
Ken Chen | 2d70b68 | 2008-08-20 14:09:17 -0700 | [diff] [blame] | 268 | do_each_pid_thread(pgrp, PIDTYPE_PGID, p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | niceval = 20 - task_nice(p); |
| 270 | if (niceval > retval) |
| 271 | retval = niceval; |
Ken Chen | 2d70b68 | 2008-08-20 14:09:17 -0700 | [diff] [blame] | 272 | } while_each_pid_thread(pgrp, PIDTYPE_PGID, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | break; |
| 274 | case PRIO_USER: |
Eric W. Biederman | 74ba508 | 2012-03-03 18:58:11 -0800 | [diff] [blame] | 275 | user = cred->user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | if (!who) |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 277 | who = cred->uid; |
| 278 | else if ((who != cred->uid) && |
| 279 | !(user = find_user(who))) |
| 280 | goto out_unlock; /* No processes for this user */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
H Hartley Sweeten | dfc6a73 | 2009-12-14 18:00:22 -0800 | [diff] [blame] | 282 | do_each_thread(g, p) { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 283 | if (__task_cred(p)->uid == who) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | niceval = 20 - task_nice(p); |
| 285 | if (niceval > retval) |
| 286 | retval = niceval; |
| 287 | } |
H Hartley Sweeten | dfc6a73 | 2009-12-14 18:00:22 -0800 | [diff] [blame] | 288 | } while_each_thread(g, p); |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 289 | if (who != cred->uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | free_uid(user); /* for find_user() */ |
| 291 | break; |
| 292 | } |
| 293 | out_unlock: |
| 294 | read_unlock(&tasklist_lock); |
Tetsuo Handa | 7011883 | 2010-02-22 12:44:16 -0800 | [diff] [blame] | 295 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
| 297 | return retval; |
| 298 | } |
| 299 | |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 300 | /** |
| 301 | * emergency_restart - reboot the system |
| 302 | * |
| 303 | * Without shutting down any hardware or taking any locks |
| 304 | * reboot the system. This is called when we know we are in |
| 305 | * trouble so this is our best effort to reboot. This is |
| 306 | * safe to call in interrupt context. |
| 307 | */ |
Eric W. Biederman | 7c90347 | 2005-07-26 11:29:55 -0600 | [diff] [blame] | 308 | void emergency_restart(void) |
| 309 | { |
Seiji Aguchi | 04c6862 | 2011-01-12 16:59:30 -0800 | [diff] [blame] | 310 | kmsg_dump(KMSG_DUMP_EMERG); |
Eric W. Biederman | 7c90347 | 2005-07-26 11:29:55 -0600 | [diff] [blame] | 311 | machine_emergency_restart(); |
| 312 | } |
| 313 | EXPORT_SYMBOL_GPL(emergency_restart); |
| 314 | |
Huang Ying | ca195b7 | 2008-08-15 00:40:24 -0700 | [diff] [blame] | 315 | void kernel_restart_prepare(char *cmd) |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 316 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 317 | blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 318 | system_state = SYSTEM_RESTART; |
Kay Sievers | b50fa7c | 2011-05-05 13:32:05 +0200 | [diff] [blame] | 319 | usermodehelper_disable(); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 320 | device_shutdown(); |
Rafael J. Wysocki | 40dc166 | 2011-03-15 00:43:46 +0100 | [diff] [blame] | 321 | syscore_shutdown(); |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 322 | } |
Randy Dunlap | 1e5d533 | 2005-11-07 01:01:06 -0800 | [diff] [blame] | 323 | |
| 324 | /** |
Amerigo Wang | c5f4175 | 2011-07-25 17:13:10 -0700 | [diff] [blame] | 325 | * register_reboot_notifier - Register function to be called at reboot time |
| 326 | * @nb: Info about notifier function to be called |
| 327 | * |
| 328 | * Registers a function with the list of functions |
| 329 | * to be called at reboot time. |
| 330 | * |
| 331 | * Currently always returns zero, as blocking_notifier_chain_register() |
| 332 | * always returns zero. |
| 333 | */ |
| 334 | int register_reboot_notifier(struct notifier_block *nb) |
| 335 | { |
| 336 | return blocking_notifier_chain_register(&reboot_notifier_list, nb); |
| 337 | } |
| 338 | EXPORT_SYMBOL(register_reboot_notifier); |
| 339 | |
| 340 | /** |
| 341 | * unregister_reboot_notifier - Unregister previously registered reboot notifier |
| 342 | * @nb: Hook to be unregistered |
| 343 | * |
| 344 | * Unregisters a previously registered reboot |
| 345 | * notifier function. |
| 346 | * |
| 347 | * Returns zero on success, or %-ENOENT on failure. |
| 348 | */ |
| 349 | int unregister_reboot_notifier(struct notifier_block *nb) |
| 350 | { |
| 351 | return blocking_notifier_chain_unregister(&reboot_notifier_list, nb); |
| 352 | } |
| 353 | EXPORT_SYMBOL(unregister_reboot_notifier); |
| 354 | |
| 355 | /** |
Randy Dunlap | 1e5d533 | 2005-11-07 01:01:06 -0800 | [diff] [blame] | 356 | * kernel_restart - reboot the system |
| 357 | * @cmd: pointer to buffer containing command to execute for restart |
Randy Dunlap | b8887e6 | 2005-11-07 01:01:07 -0800 | [diff] [blame] | 358 | * or %NULL |
Randy Dunlap | 1e5d533 | 2005-11-07 01:01:06 -0800 | [diff] [blame] | 359 | * |
| 360 | * Shutdown everything and perform a clean reboot. |
| 361 | * This is not safe to call in interrupt context. |
| 362 | */ |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 363 | void kernel_restart(char *cmd) |
| 364 | { |
| 365 | kernel_restart_prepare(cmd); |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 366 | if (!cmd) |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 367 | printk(KERN_EMERG "Restarting system.\n"); |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 368 | else |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 369 | printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd); |
Seiji Aguchi | 04c6862 | 2011-01-12 16:59:30 -0800 | [diff] [blame] | 370 | kmsg_dump(KMSG_DUMP_RESTART); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 371 | machine_restart(cmd); |
| 372 | } |
| 373 | EXPORT_SYMBOL_GPL(kernel_restart); |
| 374 | |
Adrian Bunk | 4ef7229 | 2008-02-04 22:30:06 -0800 | [diff] [blame] | 375 | static void kernel_shutdown_prepare(enum system_states state) |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 376 | { |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 377 | blocking_notifier_call_chain(&reboot_notifier_list, |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 378 | (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL); |
| 379 | system_state = state; |
Kay Sievers | b50fa7c | 2011-05-05 13:32:05 +0200 | [diff] [blame] | 380 | usermodehelper_disable(); |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 381 | device_shutdown(); |
| 382 | } |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 383 | /** |
| 384 | * kernel_halt - halt the system |
| 385 | * |
| 386 | * Shutdown everything and perform a clean system halt. |
| 387 | */ |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 388 | void kernel_halt(void) |
| 389 | { |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 390 | kernel_shutdown_prepare(SYSTEM_HALT); |
Rafael J. Wysocki | 40dc166 | 2011-03-15 00:43:46 +0100 | [diff] [blame] | 391 | syscore_shutdown(); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 392 | printk(KERN_EMERG "System halted.\n"); |
Seiji Aguchi | 04c6862 | 2011-01-12 16:59:30 -0800 | [diff] [blame] | 393 | kmsg_dump(KMSG_DUMP_HALT); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 394 | machine_halt(); |
| 395 | } |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 396 | |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 397 | EXPORT_SYMBOL_GPL(kernel_halt); |
| 398 | |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 399 | /** |
| 400 | * kernel_power_off - power_off the system |
| 401 | * |
| 402 | * Shutdown everything and perform a clean system power_off. |
| 403 | */ |
Eric W. Biederman | e4c9433 | 2005-09-22 21:43:45 -0700 | [diff] [blame] | 404 | void kernel_power_off(void) |
| 405 | { |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 406 | kernel_shutdown_prepare(SYSTEM_POWER_OFF); |
Rafael J. Wysocki | bd804eb | 2007-07-19 01:47:40 -0700 | [diff] [blame] | 407 | if (pm_power_off_prepare) |
| 408 | pm_power_off_prepare(); |
Mark Lord | 4047727 | 2007-10-01 01:20:10 -0700 | [diff] [blame] | 409 | disable_nonboot_cpus(); |
Rafael J. Wysocki | 40dc166 | 2011-03-15 00:43:46 +0100 | [diff] [blame] | 410 | syscore_shutdown(); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 411 | printk(KERN_EMERG "Power down.\n"); |
Seiji Aguchi | 04c6862 | 2011-01-12 16:59:30 -0800 | [diff] [blame] | 412 | kmsg_dump(KMSG_DUMP_POWEROFF); |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 413 | machine_power_off(); |
| 414 | } |
| 415 | EXPORT_SYMBOL_GPL(kernel_power_off); |
Thomas Gleixner | 6f15fa5 | 2009-10-09 20:31:33 +0200 | [diff] [blame] | 416 | |
| 417 | static DEFINE_MUTEX(reboot_mutex); |
| 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | /* |
| 420 | * Reboot system call: for obvious reasons only root may call it, |
| 421 | * and even root needs to set up some magic numbers in the registers |
| 422 | * so that some mistake won't make this reboot the whole machine. |
| 423 | * You can also set the meaning of the ctrl-alt-del-key here. |
| 424 | * |
| 425 | * reboot doesn't sync: do that yourself before calling this. |
| 426 | */ |
Heiko Carstens | 754fe8d | 2009-01-14 14:14:09 +0100 | [diff] [blame] | 427 | SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd, |
| 428 | void __user *, arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | { |
| 430 | char buffer[256]; |
Andi Kleen | 3d26dcf | 2009-04-13 14:40:08 -0700 | [diff] [blame] | 431 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | /* We only trust the superuser with rebooting the system. */ |
| 434 | if (!capable(CAP_SYS_BOOT)) |
| 435 | return -EPERM; |
| 436 | |
| 437 | /* For safety, we require "magic" arguments. */ |
| 438 | if (magic1 != LINUX_REBOOT_MAGIC1 || |
| 439 | (magic2 != LINUX_REBOOT_MAGIC2 && |
| 440 | magic2 != LINUX_REBOOT_MAGIC2A && |
| 441 | magic2 != LINUX_REBOOT_MAGIC2B && |
| 442 | magic2 != LINUX_REBOOT_MAGIC2C)) |
| 443 | return -EINVAL; |
| 444 | |
Daniel Lezcano | cf3f892 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 445 | /* |
| 446 | * If pid namespaces are enabled and the current task is in a child |
| 447 | * pid_namespace, the command is handled by reboot_pid_ns() which will |
| 448 | * call do_exit(). |
| 449 | */ |
| 450 | ret = reboot_pid_ns(task_active_pid_ns(current), cmd); |
| 451 | if (ret) |
| 452 | return ret; |
| 453 | |
Eric W. Biederman | 5e38291 | 2006-01-08 01:03:46 -0800 | [diff] [blame] | 454 | /* Instead of trying to make the power_off code look like |
| 455 | * halt when pm_power_off is not set do it the easy way. |
| 456 | */ |
| 457 | if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off) |
| 458 | cmd = LINUX_REBOOT_CMD_HALT; |
| 459 | |
Thomas Gleixner | 6f15fa5 | 2009-10-09 20:31:33 +0200 | [diff] [blame] | 460 | mutex_lock(&reboot_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | switch (cmd) { |
| 462 | case LINUX_REBOOT_CMD_RESTART: |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 463 | kernel_restart(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | break; |
| 465 | |
| 466 | case LINUX_REBOOT_CMD_CAD_ON: |
| 467 | C_A_D = 1; |
| 468 | break; |
| 469 | |
| 470 | case LINUX_REBOOT_CMD_CAD_OFF: |
| 471 | C_A_D = 0; |
| 472 | break; |
| 473 | |
| 474 | case LINUX_REBOOT_CMD_HALT: |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 475 | kernel_halt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | do_exit(0); |
Andi Kleen | 3d26dcf | 2009-04-13 14:40:08 -0700 | [diff] [blame] | 477 | panic("cannot halt"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
| 479 | case LINUX_REBOOT_CMD_POWER_OFF: |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 480 | kernel_power_off(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | do_exit(0); |
| 482 | break; |
| 483 | |
| 484 | case LINUX_REBOOT_CMD_RESTART2: |
| 485 | if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) { |
Thomas Gleixner | 6f15fa5 | 2009-10-09 20:31:33 +0200 | [diff] [blame] | 486 | ret = -EFAULT; |
| 487 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } |
| 489 | buffer[sizeof(buffer) - 1] = '\0'; |
| 490 | |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 491 | kernel_restart(buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | break; |
| 493 | |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 494 | #ifdef CONFIG_KEXEC |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 495 | case LINUX_REBOOT_CMD_KEXEC: |
Andi Kleen | 3d26dcf | 2009-04-13 14:40:08 -0700 | [diff] [blame] | 496 | ret = kernel_kexec(); |
| 497 | break; |
Huang Ying | 3ab8352 | 2008-07-25 19:45:07 -0700 | [diff] [blame] | 498 | #endif |
Eric W. Biederman | 4a00ea1 | 2005-07-26 11:24:14 -0600 | [diff] [blame] | 499 | |
Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 500 | #ifdef CONFIG_HIBERNATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | case LINUX_REBOOT_CMD_SW_SUSPEND: |
Andi Kleen | 3d26dcf | 2009-04-13 14:40:08 -0700 | [diff] [blame] | 502 | ret = hibernate(); |
| 503 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | #endif |
| 505 | |
| 506 | default: |
Andi Kleen | 3d26dcf | 2009-04-13 14:40:08 -0700 | [diff] [blame] | 507 | ret = -EINVAL; |
| 508 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } |
Thomas Gleixner | 6f15fa5 | 2009-10-09 20:31:33 +0200 | [diff] [blame] | 510 | mutex_unlock(&reboot_mutex); |
Andi Kleen | 3d26dcf | 2009-04-13 14:40:08 -0700 | [diff] [blame] | 511 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 514 | static void deferred_cad(struct work_struct *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { |
Eric W. Biederman | abcd9e5 | 2005-07-26 11:27:34 -0600 | [diff] [blame] | 516 | kernel_restart(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | /* |
| 520 | * This function gets called by ctrl-alt-del - ie the keyboard interrupt. |
| 521 | * As it's called within an interrupt, it may NOT sync: the only choice |
| 522 | * is whether to reboot at once, or just ignore the ctrl-alt-del. |
| 523 | */ |
| 524 | void ctrl_alt_del(void) |
| 525 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 526 | static DECLARE_WORK(cad_work, deferred_cad); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | if (C_A_D) |
| 529 | schedule_work(&cad_work); |
| 530 | else |
Cedric Le Goater | 9ec5209 | 2006-10-02 02:19:00 -0700 | [diff] [blame] | 531 | kill_cad_pid(SIGINT, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | /* |
| 535 | * Unprivileged users may change the real gid to the effective gid |
| 536 | * or vice versa. (BSD-style) |
| 537 | * |
| 538 | * If you set the real gid at all, or set the effective gid to a value not |
| 539 | * equal to the real gid, then the saved gid is set to the new effective gid. |
| 540 | * |
| 541 | * This makes it possible for a setgid program to completely drop its |
| 542 | * privileges, which is often a useful assertion to make when you are doing |
| 543 | * a security audit over a program. |
| 544 | * |
| 545 | * The general idea is that a program which uses just setregid() will be |
| 546 | * 100% compatible with BSD. A program which uses just setgid() will be |
| 547 | * 100% compatible with POSIX with saved IDs. |
| 548 | * |
| 549 | * SMP: There are not races, the GIDs are checked only by filesystem |
| 550 | * operations (as far as semantic preservation is concerned). |
| 551 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 552 | SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 554 | const struct cred *old; |
| 555 | struct cred *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | int retval; |
| 557 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 558 | new = prepare_creds(); |
| 559 | if (!new) |
| 560 | return -ENOMEM; |
| 561 | old = current_cred(); |
| 562 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 563 | retval = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | if (rgid != (gid_t) -1) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 565 | if (old->gid == rgid || |
| 566 | old->egid == rgid || |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 567 | nsown_capable(CAP_SETGID)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 568 | new->gid = rgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | else |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 570 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | if (egid != (gid_t) -1) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 573 | if (old->gid == egid || |
| 574 | old->egid == egid || |
| 575 | old->sgid == egid || |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 576 | nsown_capable(CAP_SETGID)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 577 | new->egid = egid; |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 578 | else |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 579 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | if (rgid != (gid_t) -1 || |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 583 | (egid != (gid_t) -1 && egid != old->gid)) |
| 584 | new->sgid = new->egid; |
| 585 | new->fsgid = new->egid; |
| 586 | |
| 587 | return commit_creds(new); |
| 588 | |
| 589 | error: |
| 590 | abort_creds(new); |
| 591 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | /* |
| 595 | * setgid() is implemented like SysV w/ SAVED_IDS |
| 596 | * |
| 597 | * SMP: Same implicit races as above. |
| 598 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 599 | SYSCALL_DEFINE1(setgid, gid_t, gid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 601 | const struct cred *old; |
| 602 | struct cred *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | int retval; |
| 604 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 605 | new = prepare_creds(); |
| 606 | if (!new) |
| 607 | return -ENOMEM; |
| 608 | old = current_cred(); |
| 609 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 610 | retval = -EPERM; |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 611 | if (nsown_capable(CAP_SETGID)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 612 | new->gid = new->egid = new->sgid = new->fsgid = gid; |
| 613 | else if (gid == old->gid || gid == old->sgid) |
| 614 | new->egid = new->fsgid = gid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | else |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 616 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 618 | return commit_creds(new); |
| 619 | |
| 620 | error: |
| 621 | abort_creds(new); |
| 622 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } |
Dhaval Giani | 54e9912 | 2009-02-27 15:13:54 +0530 | [diff] [blame] | 624 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 625 | /* |
| 626 | * change the user struct in a credentials set to match the new UID |
| 627 | */ |
| 628 | static int set_user(struct cred *new) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | { |
| 630 | struct user_struct *new_user; |
| 631 | |
Serge Hallyn | 18b6e04 | 2008-10-15 16:38:45 -0500 | [diff] [blame] | 632 | new_user = alloc_uid(current_user_ns(), new->uid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | if (!new_user) |
| 634 | return -EAGAIN; |
| 635 | |
Vasiliy Kulikov | 72fa599 | 2011-08-08 19:02:04 +0400 | [diff] [blame] | 636 | /* |
| 637 | * We don't fail in case of NPROC limit excess here because too many |
| 638 | * poorly written programs don't check set*uid() return code, assuming |
| 639 | * it never fails if called by root. We may still enforce NPROC limit |
| 640 | * for programs doing set*uid()+execve() by harmlessly deferring the |
| 641 | * failure to the execve() stage. |
| 642 | */ |
Jiri Slaby | 78d7d40 | 2010-03-05 13:42:54 -0800 | [diff] [blame] | 643 | if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) && |
Vasiliy Kulikov | 72fa599 | 2011-08-08 19:02:04 +0400 | [diff] [blame] | 644 | new_user != INIT_USER) |
| 645 | current->flags |= PF_NPROC_EXCEEDED; |
| 646 | else |
| 647 | current->flags &= ~PF_NPROC_EXCEEDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 649 | free_uid(new->user); |
| 650 | new->user = new_user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | return 0; |
| 652 | } |
| 653 | |
| 654 | /* |
| 655 | * Unprivileged users may change the real uid to the effective uid |
| 656 | * or vice versa. (BSD-style) |
| 657 | * |
| 658 | * If you set the real uid at all, or set the effective uid to a value not |
| 659 | * equal to the real uid, then the saved uid is set to the new effective uid. |
| 660 | * |
| 661 | * This makes it possible for a setuid program to completely drop its |
| 662 | * privileges, which is often a useful assertion to make when you are doing |
| 663 | * a security audit over a program. |
| 664 | * |
| 665 | * The general idea is that a program which uses just setreuid() will be |
| 666 | * 100% compatible with BSD. A program which uses just setuid() will be |
| 667 | * 100% compatible with POSIX with saved IDs. |
| 668 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 669 | SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 671 | const struct cred *old; |
| 672 | struct cred *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | int retval; |
| 674 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 675 | new = prepare_creds(); |
| 676 | if (!new) |
| 677 | return -ENOMEM; |
| 678 | old = current_cred(); |
| 679 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 680 | retval = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | if (ruid != (uid_t) -1) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 682 | new->uid = ruid; |
| 683 | if (old->uid != ruid && |
| 684 | old->euid != ruid && |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 685 | !nsown_capable(CAP_SETUID)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 686 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | if (euid != (uid_t) -1) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 690 | new->euid = euid; |
| 691 | if (old->uid != euid && |
| 692 | old->euid != euid && |
| 693 | old->suid != euid && |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 694 | !nsown_capable(CAP_SETUID)) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 695 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | } |
| 697 | |
Dhaval Giani | 54e9912 | 2009-02-27 15:13:54 +0530 | [diff] [blame] | 698 | if (new->uid != old->uid) { |
| 699 | retval = set_user(new); |
| 700 | if (retval < 0) |
| 701 | goto error; |
| 702 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | if (ruid != (uid_t) -1 || |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 704 | (euid != (uid_t) -1 && euid != old->uid)) |
| 705 | new->suid = new->euid; |
| 706 | new->fsuid = new->euid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 708 | retval = security_task_fix_setuid(new, old, LSM_SETID_RE); |
| 709 | if (retval < 0) |
| 710 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 712 | return commit_creds(new); |
| 713 | |
| 714 | error: |
| 715 | abort_creds(new); |
| 716 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
| 719 | /* |
| 720 | * setuid() is implemented like SysV with SAVED_IDS |
| 721 | * |
| 722 | * Note that SAVED_ID's is deficient in that a setuid root program |
| 723 | * like sendmail, for example, cannot set its uid to be a normal |
| 724 | * user and then switch back, because if you're root, setuid() sets |
| 725 | * the saved uid too. If you don't like this, blame the bright people |
| 726 | * in the POSIX committee and/or USG. Note that the BSD-style setreuid() |
| 727 | * will allow a root program to temporarily drop privileges and be able to |
| 728 | * regain them by swapping the real and effective uid. |
| 729 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 730 | SYSCALL_DEFINE1(setuid, uid_t, uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 732 | const struct cred *old; |
| 733 | struct cred *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | int retval; |
| 735 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 736 | new = prepare_creds(); |
| 737 | if (!new) |
| 738 | return -ENOMEM; |
| 739 | old = current_cred(); |
| 740 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 741 | retval = -EPERM; |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 742 | if (nsown_capable(CAP_SETUID)) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 743 | new->suid = new->uid = uid; |
Dhaval Giani | 54e9912 | 2009-02-27 15:13:54 +0530 | [diff] [blame] | 744 | if (uid != old->uid) { |
| 745 | retval = set_user(new); |
| 746 | if (retval < 0) |
| 747 | goto error; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 748 | } |
| 749 | } else if (uid != old->uid && uid != new->suid) { |
| 750 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 753 | new->fsuid = new->euid = uid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 755 | retval = security_task_fix_setuid(new, old, LSM_SETID_ID); |
| 756 | if (retval < 0) |
| 757 | goto error; |
| 758 | |
| 759 | return commit_creds(new); |
| 760 | |
| 761 | error: |
| 762 | abort_creds(new); |
| 763 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | |
| 767 | /* |
| 768 | * This function implements a generic ability to update ruid, euid, |
| 769 | * and suid. This allows you to implement the 4.4 compatible seteuid(). |
| 770 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 771 | SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 773 | const struct cred *old; |
| 774 | struct cred *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | int retval; |
| 776 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 777 | new = prepare_creds(); |
| 778 | if (!new) |
| 779 | return -ENOMEM; |
| 780 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 781 | old = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 783 | retval = -EPERM; |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 784 | if (!nsown_capable(CAP_SETUID)) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 785 | if (ruid != (uid_t) -1 && ruid != old->uid && |
| 786 | ruid != old->euid && ruid != old->suid) |
| 787 | goto error; |
| 788 | if (euid != (uid_t) -1 && euid != old->uid && |
| 789 | euid != old->euid && euid != old->suid) |
| 790 | goto error; |
| 791 | if (suid != (uid_t) -1 && suid != old->uid && |
| 792 | suid != old->euid && suid != old->suid) |
| 793 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | if (ruid != (uid_t) -1) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 797 | new->uid = ruid; |
Dhaval Giani | 54e9912 | 2009-02-27 15:13:54 +0530 | [diff] [blame] | 798 | if (ruid != old->uid) { |
| 799 | retval = set_user(new); |
| 800 | if (retval < 0) |
| 801 | goto error; |
| 802 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 804 | if (euid != (uid_t) -1) |
| 805 | new->euid = euid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | if (suid != (uid_t) -1) |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 807 | new->suid = suid; |
| 808 | new->fsuid = new->euid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 810 | retval = security_task_fix_setuid(new, old, LSM_SETID_RES); |
| 811 | if (retval < 0) |
| 812 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 814 | return commit_creds(new); |
| 815 | |
| 816 | error: |
| 817 | abort_creds(new); |
| 818 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 821 | SYSCALL_DEFINE3(getresuid, uid_t __user *, ruid, uid_t __user *, euid, uid_t __user *, suid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 823 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | int retval; |
| 825 | |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 826 | if (!(retval = put_user(cred->uid, ruid)) && |
| 827 | !(retval = put_user(cred->euid, euid))) |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 828 | retval = put_user(cred->suid, suid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
| 830 | return retval; |
| 831 | } |
| 832 | |
| 833 | /* |
| 834 | * Same as above, but for rgid, egid, sgid. |
| 835 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 836 | SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 838 | const struct cred *old; |
| 839 | struct cred *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | int retval; |
| 841 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 842 | new = prepare_creds(); |
| 843 | if (!new) |
| 844 | return -ENOMEM; |
| 845 | old = current_cred(); |
| 846 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 847 | retval = -EPERM; |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 848 | if (!nsown_capable(CAP_SETGID)) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 849 | if (rgid != (gid_t) -1 && rgid != old->gid && |
| 850 | rgid != old->egid && rgid != old->sgid) |
| 851 | goto error; |
| 852 | if (egid != (gid_t) -1 && egid != old->gid && |
| 853 | egid != old->egid && egid != old->sgid) |
| 854 | goto error; |
| 855 | if (sgid != (gid_t) -1 && sgid != old->gid && |
| 856 | sgid != old->egid && sgid != old->sgid) |
| 857 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 860 | if (rgid != (gid_t) -1) |
| 861 | new->gid = rgid; |
| 862 | if (egid != (gid_t) -1) |
| 863 | new->egid = egid; |
| 864 | if (sgid != (gid_t) -1) |
| 865 | new->sgid = sgid; |
| 866 | new->fsgid = new->egid; |
| 867 | |
| 868 | return commit_creds(new); |
| 869 | |
| 870 | error: |
| 871 | abort_creds(new); |
| 872 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | } |
| 874 | |
Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 875 | SYSCALL_DEFINE3(getresgid, gid_t __user *, rgid, gid_t __user *, egid, gid_t __user *, sgid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 877 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | int retval; |
| 879 | |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 880 | if (!(retval = put_user(cred->gid, rgid)) && |
| 881 | !(retval = put_user(cred->egid, egid))) |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 882 | retval = put_user(cred->sgid, sgid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
| 884 | return retval; |
| 885 | } |
| 886 | |
| 887 | |
| 888 | /* |
| 889 | * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This |
| 890 | * is used for "access()" and for the NFS daemon (letting nfsd stay at |
| 891 | * whatever uid it wants to). It normally shadows "euid", except when |
| 892 | * explicitly set by setfsuid() or for access.. |
| 893 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 894 | SYSCALL_DEFINE1(setfsuid, uid_t, uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 896 | const struct cred *old; |
| 897 | struct cred *new; |
| 898 | uid_t old_fsuid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 900 | new = prepare_creds(); |
| 901 | if (!new) |
| 902 | return current_fsuid(); |
| 903 | old = current_cred(); |
| 904 | old_fsuid = old->fsuid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 906 | if (uid == old->uid || uid == old->euid || |
| 907 | uid == old->suid || uid == old->fsuid || |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 908 | nsown_capable(CAP_SETUID)) { |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 909 | if (uid != old_fsuid) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 910 | new->fsuid = uid; |
| 911 | if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0) |
| 912 | goto change_okay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 916 | abort_creds(new); |
| 917 | return old_fsuid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 919 | change_okay: |
| 920 | commit_creds(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | return old_fsuid; |
| 922 | } |
| 923 | |
| 924 | /* |
John Anthony Kazos Jr | f42df9e | 2007-05-09 08:23:08 +0200 | [diff] [blame] | 925 | * Samma på svenska.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | */ |
Heiko Carstens | ae1251a | 2009-01-14 14:14:05 +0100 | [diff] [blame] | 927 | SYSCALL_DEFINE1(setfsgid, gid_t, gid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 929 | const struct cred *old; |
| 930 | struct cred *new; |
| 931 | gid_t old_fsgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 933 | new = prepare_creds(); |
| 934 | if (!new) |
| 935 | return current_fsgid(); |
| 936 | old = current_cred(); |
| 937 | old_fsgid = old->fsgid; |
| 938 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 939 | if (gid == old->gid || gid == old->egid || |
| 940 | gid == old->sgid || gid == old->fsgid || |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 941 | nsown_capable(CAP_SETGID)) { |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 942 | if (gid != old_fsgid) { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 943 | new->fsgid = gid; |
| 944 | goto change_okay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 947 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 948 | abort_creds(new); |
| 949 | return old_fsgid; |
| 950 | |
| 951 | change_okay: |
| 952 | commit_creds(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | return old_fsgid; |
| 954 | } |
| 955 | |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 956 | void do_sys_times(struct tms *tms) |
| 957 | { |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 958 | cputime_t tgutime, tgstime, cutime, cstime; |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 959 | |
Oleg Nesterov | 2b5fe6d | 2008-11-17 15:40:08 +0100 | [diff] [blame] | 960 | spin_lock_irq(¤t->sighand->siglock); |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 961 | thread_group_times(current, &tgutime, &tgstime); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 962 | cutime = current->signal->cutime; |
| 963 | cstime = current->signal->cstime; |
| 964 | spin_unlock_irq(¤t->sighand->siglock); |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 965 | tms->tms_utime = cputime_to_clock_t(tgutime); |
| 966 | tms->tms_stime = cputime_to_clock_t(tgstime); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 967 | tms->tms_cutime = cputime_to_clock_t(cutime); |
| 968 | tms->tms_cstime = cputime_to_clock_t(cstime); |
| 969 | } |
| 970 | |
Heiko Carstens | 58fd3aa | 2009-01-14 14:14:03 +0100 | [diff] [blame] | 971 | SYSCALL_DEFINE1(times, struct tms __user *, tbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | if (tbuf) { |
| 974 | struct tms tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 976 | do_sys_times(&tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | if (copy_to_user(tbuf, &tmp, sizeof(struct tms))) |
| 978 | return -EFAULT; |
| 979 | } |
Paul Mackerras | e3d5a27 | 2009-01-06 14:41:02 -0800 | [diff] [blame] | 980 | force_successful_syscall_return(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | return (long) jiffies_64_to_clock_t(get_jiffies_64()); |
| 982 | } |
| 983 | |
| 984 | /* |
| 985 | * This needs some heavy checking ... |
| 986 | * I just haven't the stomach for it. I also don't fully |
| 987 | * understand sessions/pgrp etc. Let somebody who does explain it. |
| 988 | * |
| 989 | * OK, I think I have the protection semantics right.... this is really |
| 990 | * only important on a multi-user system anyway, to make sure one user |
| 991 | * can't send a signal to a process owned by another. -TYT, 12/12/91 |
| 992 | * |
| 993 | * Auch. Had to add the 'did_exec' flag to conform completely to POSIX. |
| 994 | * LBT 04.03.94 |
| 995 | */ |
Heiko Carstens | b290ebe | 2009-01-14 14:14:06 +0100 | [diff] [blame] | 996 | SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | { |
| 998 | struct task_struct *p; |
Oleg Nesterov | ee0acf9 | 2006-01-08 01:03:53 -0800 | [diff] [blame] | 999 | struct task_struct *group_leader = current->group_leader; |
Oleg Nesterov | 4e02130 | 2008-02-08 04:19:08 -0800 | [diff] [blame] | 1000 | struct pid *pgrp; |
| 1001 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | |
| 1003 | if (!pid) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1004 | pid = task_pid_vnr(group_leader); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | if (!pgid) |
| 1006 | pgid = pid; |
| 1007 | if (pgid < 0) |
| 1008 | return -EINVAL; |
Paul E. McKenney | 950eaac | 2010-08-31 17:00:18 -0700 | [diff] [blame] | 1009 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
| 1011 | /* From this point forward we keep holding onto the tasklist lock |
| 1012 | * so that our parent does not change from under us. -DaveM |
| 1013 | */ |
| 1014 | write_lock_irq(&tasklist_lock); |
| 1015 | |
| 1016 | err = -ESRCH; |
Oleg Nesterov | 4e02130 | 2008-02-08 04:19:08 -0800 | [diff] [blame] | 1017 | p = find_task_by_vpid(pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | if (!p) |
| 1019 | goto out; |
| 1020 | |
| 1021 | err = -EINVAL; |
| 1022 | if (!thread_group_leader(p)) |
| 1023 | goto out; |
| 1024 | |
Oleg Nesterov | 4e02130 | 2008-02-08 04:19:08 -0800 | [diff] [blame] | 1025 | if (same_thread_group(p->real_parent, group_leader)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | err = -EPERM; |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 1027 | if (task_session(p) != task_session(group_leader)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | goto out; |
| 1029 | err = -EACCES; |
| 1030 | if (p->did_exec) |
| 1031 | goto out; |
| 1032 | } else { |
| 1033 | err = -ESRCH; |
Oleg Nesterov | ee0acf9 | 2006-01-08 01:03:53 -0800 | [diff] [blame] | 1034 | if (p != group_leader) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | goto out; |
| 1036 | } |
| 1037 | |
| 1038 | err = -EPERM; |
| 1039 | if (p->signal->leader) |
| 1040 | goto out; |
| 1041 | |
Oleg Nesterov | 4e02130 | 2008-02-08 04:19:08 -0800 | [diff] [blame] | 1042 | pgrp = task_pid(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | if (pgid != pid) { |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1044 | struct task_struct *g; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
Oleg Nesterov | 4e02130 | 2008-02-08 04:19:08 -0800 | [diff] [blame] | 1046 | pgrp = find_vpid(pgid); |
| 1047 | g = pid_task(pgrp, PIDTYPE_PGID); |
Eric W. Biederman | 41487c6 | 2007-02-12 00:53:01 -0800 | [diff] [blame] | 1048 | if (!g || task_session(g) != task_session(group_leader)) |
Oleg Nesterov | f020bc4 | 2006-12-08 02:38:02 -0800 | [diff] [blame] | 1049 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | } |
| 1051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | err = security_task_setpgid(p, pgid); |
| 1053 | if (err) |
| 1054 | goto out; |
| 1055 | |
Oleg Nesterov | 1b0f7ff | 2009-04-02 16:58:39 -0700 | [diff] [blame] | 1056 | if (task_pgrp(p) != pgrp) |
Oleg Nesterov | 83beaf3 | 2008-04-30 00:54:27 -0700 | [diff] [blame] | 1057 | change_pid(p, PIDTYPE_PGID, pgrp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
| 1059 | err = 0; |
| 1060 | out: |
| 1061 | /* All paths lead to here, thus we are safe. -DaveM */ |
| 1062 | write_unlock_irq(&tasklist_lock); |
Paul E. McKenney | 950eaac | 2010-08-31 17:00:18 -0700 | [diff] [blame] | 1063 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | return err; |
| 1065 | } |
| 1066 | |
Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1067 | SYSCALL_DEFINE1(getpgid, pid_t, pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | { |
Oleg Nesterov | 12a3de0a | 2008-04-30 00:54:29 -0700 | [diff] [blame] | 1069 | struct task_struct *p; |
| 1070 | struct pid *grp; |
| 1071 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | |
Oleg Nesterov | 12a3de0a | 2008-04-30 00:54:29 -0700 | [diff] [blame] | 1073 | rcu_read_lock(); |
| 1074 | if (!pid) |
| 1075 | grp = task_pgrp(current); |
| 1076 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | retval = -ESRCH; |
Oleg Nesterov | 12a3de0a | 2008-04-30 00:54:29 -0700 | [diff] [blame] | 1078 | p = find_task_by_vpid(pid); |
| 1079 | if (!p) |
| 1080 | goto out; |
| 1081 | grp = task_pgrp(p); |
| 1082 | if (!grp) |
| 1083 | goto out; |
| 1084 | |
| 1085 | retval = security_task_getpgid(p); |
| 1086 | if (retval) |
| 1087 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | } |
Oleg Nesterov | 12a3de0a | 2008-04-30 00:54:29 -0700 | [diff] [blame] | 1089 | retval = pid_vnr(grp); |
| 1090 | out: |
| 1091 | rcu_read_unlock(); |
| 1092 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | #ifdef __ARCH_WANT_SYS_GETPGRP |
| 1096 | |
Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1097 | SYSCALL_DEFINE0(getpgrp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | { |
Oleg Nesterov | 12a3de0a | 2008-04-30 00:54:29 -0700 | [diff] [blame] | 1099 | return sys_getpgid(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | #endif |
| 1103 | |
Heiko Carstens | dbf040d | 2009-01-14 14:14:04 +0100 | [diff] [blame] | 1104 | SYSCALL_DEFINE1(getsid, pid_t, pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | { |
Oleg Nesterov | 1dd768c0 | 2008-04-30 00:54:28 -0700 | [diff] [blame] | 1106 | struct task_struct *p; |
| 1107 | struct pid *sid; |
| 1108 | int retval; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1109 | |
Oleg Nesterov | 1dd768c0 | 2008-04-30 00:54:28 -0700 | [diff] [blame] | 1110 | rcu_read_lock(); |
| 1111 | if (!pid) |
| 1112 | sid = task_session(current); |
| 1113 | else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | retval = -ESRCH; |
Oleg Nesterov | 1dd768c0 | 2008-04-30 00:54:28 -0700 | [diff] [blame] | 1115 | p = find_task_by_vpid(pid); |
| 1116 | if (!p) |
| 1117 | goto out; |
| 1118 | sid = task_session(p); |
| 1119 | if (!sid) |
| 1120 | goto out; |
| 1121 | |
| 1122 | retval = security_task_getsid(p); |
| 1123 | if (retval) |
| 1124 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | } |
Oleg Nesterov | 1dd768c0 | 2008-04-30 00:54:28 -0700 | [diff] [blame] | 1126 | retval = pid_vnr(sid); |
| 1127 | out: |
| 1128 | rcu_read_unlock(); |
| 1129 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
Heiko Carstens | b290ebe | 2009-01-14 14:14:06 +0100 | [diff] [blame] | 1132 | SYSCALL_DEFINE0(setsid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | { |
Oren Laadan | e19f247 | 2006-01-08 01:03:58 -0800 | [diff] [blame] | 1134 | struct task_struct *group_leader = current->group_leader; |
Oleg Nesterov | e4cc0a9 | 2008-02-08 04:19:09 -0800 | [diff] [blame] | 1135 | struct pid *sid = task_pid(group_leader); |
| 1136 | pid_t session = pid_vnr(sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | int err = -EPERM; |
| 1138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | write_lock_irq(&tasklist_lock); |
Eric W. Biederman | 390e2ff | 2006-03-31 02:31:33 -0800 | [diff] [blame] | 1140 | /* Fail if I am already a session leader */ |
| 1141 | if (group_leader->signal->leader) |
| 1142 | goto out; |
| 1143 | |
Oleg Nesterov | 430c623 | 2008-02-08 04:19:11 -0800 | [diff] [blame] | 1144 | /* Fail if a process group id already exists that equals the |
| 1145 | * proposed session id. |
Eric W. Biederman | 390e2ff | 2006-03-31 02:31:33 -0800 | [diff] [blame] | 1146 | */ |
Oleg Nesterov | 6806aac | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1147 | if (pid_task(sid, PIDTYPE_PGID)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | goto out; |
| 1149 | |
Oren Laadan | e19f247 | 2006-01-08 01:03:58 -0800 | [diff] [blame] | 1150 | group_leader->signal->leader = 1; |
Oleg Nesterov | 8520d7c | 2008-02-08 04:19:09 -0800 | [diff] [blame] | 1151 | __set_special_pids(sid); |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 1152 | |
Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1153 | proc_clear_tty(group_leader); |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 1154 | |
Oleg Nesterov | e4cc0a9 | 2008-02-08 04:19:09 -0800 | [diff] [blame] | 1155 | err = session; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | out: |
| 1157 | write_unlock_irq(&tasklist_lock); |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1158 | if (err > 0) { |
Christian Borntraeger | 0d0df59 | 2009-10-26 16:49:34 -0700 | [diff] [blame] | 1159 | proc_sid_connector(group_leader); |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1160 | sched_autogroup_create_attach(group_leader); |
| 1161 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | return err; |
| 1163 | } |
| 1164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | DECLARE_RWSEM(uts_sem); |
| 1166 | |
Christoph Hellwig | e28cbf2 | 2010-03-10 15:21:19 -0800 | [diff] [blame] | 1167 | #ifdef COMPAT_UTS_MACHINE |
| 1168 | #define override_architecture(name) \ |
Andreas Schwab | 46da276 | 2010-04-23 13:17:44 -0400 | [diff] [blame] | 1169 | (personality(current->personality) == PER_LINUX32 && \ |
Christoph Hellwig | e28cbf2 | 2010-03-10 15:21:19 -0800 | [diff] [blame] | 1170 | copy_to_user(name->machine, COMPAT_UTS_MACHINE, \ |
| 1171 | sizeof(COMPAT_UTS_MACHINE))) |
| 1172 | #else |
| 1173 | #define override_architecture(name) 0 |
| 1174 | #endif |
| 1175 | |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 1176 | /* |
| 1177 | * Work around broken programs that cannot handle "Linux 3.0". |
| 1178 | * Instead we map 3.x to 2.6.40+x, so e.g. 3.0 would be 2.6.40 |
| 1179 | */ |
| 1180 | static int override_release(char __user *release, int len) |
| 1181 | { |
| 1182 | int ret = 0; |
Linus Torvalds | a84a79e | 2011-10-17 08:24:24 -0700 | [diff] [blame] | 1183 | char buf[65]; |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 1184 | |
| 1185 | if (current->personality & UNAME26) { |
| 1186 | char *rest = UTS_RELEASE; |
| 1187 | int ndots = 0; |
| 1188 | unsigned v; |
| 1189 | |
| 1190 | while (*rest) { |
| 1191 | if (*rest == '.' && ++ndots >= 3) |
| 1192 | break; |
| 1193 | if (!isdigit(*rest) && *rest != '.') |
| 1194 | break; |
| 1195 | rest++; |
| 1196 | } |
| 1197 | v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40; |
| 1198 | snprintf(buf, len, "2.6.%u%s", v, rest); |
| 1199 | ret = copy_to_user(release, buf, len); |
| 1200 | } |
| 1201 | return ret; |
| 1202 | } |
| 1203 | |
Heiko Carstens | e48fbb6 | 2009-01-14 14:14:26 +0100 | [diff] [blame] | 1204 | SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | { |
| 1206 | int errno = 0; |
| 1207 | |
| 1208 | down_read(&uts_sem); |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 1209 | if (copy_to_user(name, utsname(), sizeof *name)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | errno = -EFAULT; |
| 1211 | up_read(&uts_sem); |
Christoph Hellwig | e28cbf2 | 2010-03-10 15:21:19 -0800 | [diff] [blame] | 1212 | |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 1213 | if (!errno && override_release(name->release, sizeof(name->release))) |
| 1214 | errno = -EFAULT; |
Christoph Hellwig | e28cbf2 | 2010-03-10 15:21:19 -0800 | [diff] [blame] | 1215 | if (!errno && override_architecture(name)) |
| 1216 | errno = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | return errno; |
| 1218 | } |
| 1219 | |
Christoph Hellwig | 5cacdb4 | 2010-03-10 15:21:21 -0800 | [diff] [blame] | 1220 | #ifdef __ARCH_WANT_SYS_OLD_UNAME |
| 1221 | /* |
| 1222 | * Old cruft |
| 1223 | */ |
| 1224 | SYSCALL_DEFINE1(uname, struct old_utsname __user *, name) |
| 1225 | { |
| 1226 | int error = 0; |
| 1227 | |
| 1228 | if (!name) |
| 1229 | return -EFAULT; |
| 1230 | |
| 1231 | down_read(&uts_sem); |
| 1232 | if (copy_to_user(name, utsname(), sizeof(*name))) |
| 1233 | error = -EFAULT; |
| 1234 | up_read(&uts_sem); |
| 1235 | |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 1236 | if (!error && override_release(name->release, sizeof(name->release))) |
| 1237 | error = -EFAULT; |
Christoph Hellwig | 5cacdb4 | 2010-03-10 15:21:21 -0800 | [diff] [blame] | 1238 | if (!error && override_architecture(name)) |
| 1239 | error = -EFAULT; |
| 1240 | return error; |
| 1241 | } |
| 1242 | |
| 1243 | SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name) |
| 1244 | { |
| 1245 | int error; |
| 1246 | |
| 1247 | if (!name) |
| 1248 | return -EFAULT; |
| 1249 | if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname))) |
| 1250 | return -EFAULT; |
| 1251 | |
| 1252 | down_read(&uts_sem); |
| 1253 | error = __copy_to_user(&name->sysname, &utsname()->sysname, |
| 1254 | __OLD_UTS_LEN); |
| 1255 | error |= __put_user(0, name->sysname + __OLD_UTS_LEN); |
| 1256 | error |= __copy_to_user(&name->nodename, &utsname()->nodename, |
| 1257 | __OLD_UTS_LEN); |
| 1258 | error |= __put_user(0, name->nodename + __OLD_UTS_LEN); |
| 1259 | error |= __copy_to_user(&name->release, &utsname()->release, |
| 1260 | __OLD_UTS_LEN); |
| 1261 | error |= __put_user(0, name->release + __OLD_UTS_LEN); |
| 1262 | error |= __copy_to_user(&name->version, &utsname()->version, |
| 1263 | __OLD_UTS_LEN); |
| 1264 | error |= __put_user(0, name->version + __OLD_UTS_LEN); |
| 1265 | error |= __copy_to_user(&name->machine, &utsname()->machine, |
| 1266 | __OLD_UTS_LEN); |
| 1267 | error |= __put_user(0, name->machine + __OLD_UTS_LEN); |
| 1268 | up_read(&uts_sem); |
| 1269 | |
| 1270 | if (!error && override_architecture(name)) |
| 1271 | error = -EFAULT; |
Andi Kleen | be27425 | 2011-08-19 16:15:10 -0700 | [diff] [blame] | 1272 | if (!error && override_release(name->release, sizeof(name->release))) |
| 1273 | error = -EFAULT; |
Christoph Hellwig | 5cacdb4 | 2010-03-10 15:21:21 -0800 | [diff] [blame] | 1274 | return error ? -EFAULT : 0; |
| 1275 | } |
| 1276 | #endif |
| 1277 | |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1278 | SYSCALL_DEFINE2(sethostname, char __user *, name, int, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | { |
| 1280 | int errno; |
| 1281 | char tmp[__NEW_UTS_LEN]; |
| 1282 | |
Serge E. Hallyn | bb96a6f | 2011-03-23 16:43:18 -0700 | [diff] [blame] | 1283 | if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | return -EPERM; |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | if (len < 0 || len > __NEW_UTS_LEN) |
| 1287 | return -EINVAL; |
| 1288 | down_write(&uts_sem); |
| 1289 | errno = -EFAULT; |
| 1290 | if (!copy_from_user(tmp, name, len)) { |
Andrew Morton | 9679e4d | 2008-10-15 22:01:51 -0700 | [diff] [blame] | 1291 | struct new_utsname *u = utsname(); |
| 1292 | |
| 1293 | memcpy(u->nodename, tmp, len); |
| 1294 | memset(u->nodename + len, 0, sizeof(u->nodename) - len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | errno = 0; |
| 1296 | } |
Lucas De Marchi | f1ecf06 | 2011-11-02 13:39:22 -0700 | [diff] [blame] | 1297 | uts_proc_notify(UTS_PROC_HOSTNAME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | up_write(&uts_sem); |
| 1299 | return errno; |
| 1300 | } |
| 1301 | |
| 1302 | #ifdef __ARCH_WANT_SYS_GETHOSTNAME |
| 1303 | |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1304 | SYSCALL_DEFINE2(gethostname, char __user *, name, int, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | { |
| 1306 | int i, errno; |
Andrew Morton | 9679e4d | 2008-10-15 22:01:51 -0700 | [diff] [blame] | 1307 | struct new_utsname *u; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | |
| 1309 | if (len < 0) |
| 1310 | return -EINVAL; |
| 1311 | down_read(&uts_sem); |
Andrew Morton | 9679e4d | 2008-10-15 22:01:51 -0700 | [diff] [blame] | 1312 | u = utsname(); |
| 1313 | i = 1 + strlen(u->nodename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | if (i > len) |
| 1315 | i = len; |
| 1316 | errno = 0; |
Andrew Morton | 9679e4d | 2008-10-15 22:01:51 -0700 | [diff] [blame] | 1317 | if (copy_to_user(name, u->nodename, i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | errno = -EFAULT; |
| 1319 | up_read(&uts_sem); |
| 1320 | return errno; |
| 1321 | } |
| 1322 | |
| 1323 | #endif |
| 1324 | |
| 1325 | /* |
| 1326 | * Only setdomainname; getdomainname can be implemented by calling |
| 1327 | * uname() |
| 1328 | */ |
Heiko Carstens | 5a8a82b | 2009-01-14 14:14:25 +0100 | [diff] [blame] | 1329 | SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | { |
| 1331 | int errno; |
| 1332 | char tmp[__NEW_UTS_LEN]; |
| 1333 | |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1334 | if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | return -EPERM; |
| 1336 | if (len < 0 || len > __NEW_UTS_LEN) |
| 1337 | return -EINVAL; |
| 1338 | |
| 1339 | down_write(&uts_sem); |
| 1340 | errno = -EFAULT; |
| 1341 | if (!copy_from_user(tmp, name, len)) { |
Andrew Morton | 9679e4d | 2008-10-15 22:01:51 -0700 | [diff] [blame] | 1342 | struct new_utsname *u = utsname(); |
| 1343 | |
| 1344 | memcpy(u->domainname, tmp, len); |
| 1345 | memset(u->domainname + len, 0, sizeof(u->domainname) - len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | errno = 0; |
| 1347 | } |
Lucas De Marchi | f1ecf06 | 2011-11-02 13:39:22 -0700 | [diff] [blame] | 1348 | uts_proc_notify(UTS_PROC_DOMAINNAME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | up_write(&uts_sem); |
| 1350 | return errno; |
| 1351 | } |
| 1352 | |
Heiko Carstens | e48fbb6 | 2009-01-14 14:14:26 +0100 | [diff] [blame] | 1353 | SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | { |
Jiri Slaby | b951834 | 2010-05-04 11:28:25 +0200 | [diff] [blame] | 1355 | struct rlimit value; |
| 1356 | int ret; |
| 1357 | |
| 1358 | ret = do_prlimit(current, resource, NULL, &value); |
| 1359 | if (!ret) |
| 1360 | ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0; |
| 1361 | |
| 1362 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | #ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT |
| 1366 | |
| 1367 | /* |
| 1368 | * Back compatibility for getrlimit. Needed for some apps. |
| 1369 | */ |
| 1370 | |
Heiko Carstens | e48fbb6 | 2009-01-14 14:14:26 +0100 | [diff] [blame] | 1371 | SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource, |
| 1372 | struct rlimit __user *, rlim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | { |
| 1374 | struct rlimit x; |
| 1375 | if (resource >= RLIM_NLIMITS) |
| 1376 | return -EINVAL; |
| 1377 | |
| 1378 | task_lock(current->group_leader); |
| 1379 | x = current->signal->rlim[resource]; |
| 1380 | task_unlock(current->group_leader); |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 1381 | if (x.rlim_cur > 0x7FFFFFFF) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | x.rlim_cur = 0x7FFFFFFF; |
Cal Peake | 756184b | 2006-09-30 23:27:24 -0700 | [diff] [blame] | 1383 | if (x.rlim_max > 0x7FFFFFFF) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | x.rlim_max = 0x7FFFFFFF; |
| 1385 | return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0; |
| 1386 | } |
| 1387 | |
| 1388 | #endif |
| 1389 | |
Jiri Slaby | c022a0a | 2010-05-04 18:03:50 +0200 | [diff] [blame] | 1390 | static inline bool rlim64_is_infinity(__u64 rlim64) |
| 1391 | { |
| 1392 | #if BITS_PER_LONG < 64 |
| 1393 | return rlim64 >= ULONG_MAX; |
| 1394 | #else |
| 1395 | return rlim64 == RLIM64_INFINITY; |
| 1396 | #endif |
| 1397 | } |
| 1398 | |
| 1399 | static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64) |
| 1400 | { |
| 1401 | if (rlim->rlim_cur == RLIM_INFINITY) |
| 1402 | rlim64->rlim_cur = RLIM64_INFINITY; |
| 1403 | else |
| 1404 | rlim64->rlim_cur = rlim->rlim_cur; |
| 1405 | if (rlim->rlim_max == RLIM_INFINITY) |
| 1406 | rlim64->rlim_max = RLIM64_INFINITY; |
| 1407 | else |
| 1408 | rlim64->rlim_max = rlim->rlim_max; |
| 1409 | } |
| 1410 | |
| 1411 | static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim) |
| 1412 | { |
| 1413 | if (rlim64_is_infinity(rlim64->rlim_cur)) |
| 1414 | rlim->rlim_cur = RLIM_INFINITY; |
| 1415 | else |
| 1416 | rlim->rlim_cur = (unsigned long)rlim64->rlim_cur; |
| 1417 | if (rlim64_is_infinity(rlim64->rlim_max)) |
| 1418 | rlim->rlim_max = RLIM_INFINITY; |
| 1419 | else |
| 1420 | rlim->rlim_max = (unsigned long)rlim64->rlim_max; |
| 1421 | } |
| 1422 | |
Jiri Slaby | 1c1e618 | 2009-08-28 14:08:17 +0200 | [diff] [blame] | 1423 | /* make sure you are allowed to change @tsk limits before calling this */ |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1424 | int do_prlimit(struct task_struct *tsk, unsigned int resource, |
| 1425 | struct rlimit *new_rlim, struct rlimit *old_rlim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | { |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1427 | struct rlimit *rlim; |
Jiri Slaby | 86f162f | 2009-11-14 17:37:04 +0100 | [diff] [blame] | 1428 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | |
| 1430 | if (resource >= RLIM_NLIMITS) |
| 1431 | return -EINVAL; |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1432 | if (new_rlim) { |
| 1433 | if (new_rlim->rlim_cur > new_rlim->rlim_max) |
| 1434 | return -EINVAL; |
| 1435 | if (resource == RLIMIT_NOFILE && |
| 1436 | new_rlim->rlim_max > sysctl_nr_open) |
| 1437 | return -EPERM; |
| 1438 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | |
Jiri Slaby | 1c1e618 | 2009-08-28 14:08:17 +0200 | [diff] [blame] | 1440 | /* protect tsk->signal and tsk->sighand from disappearing */ |
| 1441 | read_lock(&tasklist_lock); |
| 1442 | if (!tsk->sighand) { |
| 1443 | retval = -ESRCH; |
| 1444 | goto out; |
| 1445 | } |
| 1446 | |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1447 | rlim = tsk->signal->rlim + resource; |
Jiri Slaby | 86f162f | 2009-11-14 17:37:04 +0100 | [diff] [blame] | 1448 | task_lock(tsk->group_leader); |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1449 | if (new_rlim) { |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1450 | /* Keep the capable check against init_user_ns until |
| 1451 | cgroups can contain all limits */ |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1452 | if (new_rlim->rlim_max > rlim->rlim_max && |
| 1453 | !capable(CAP_SYS_RESOURCE)) |
| 1454 | retval = -EPERM; |
| 1455 | if (!retval) |
| 1456 | retval = security_task_setrlimit(tsk->group_leader, |
| 1457 | resource, new_rlim); |
| 1458 | if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) { |
| 1459 | /* |
| 1460 | * The caller is asking for an immediate RLIMIT_CPU |
| 1461 | * expiry. But we use the zero value to mean "it was |
| 1462 | * never set". So let's cheat and make it one second |
| 1463 | * instead |
| 1464 | */ |
| 1465 | new_rlim->rlim_cur = 1; |
| 1466 | } |
Tom Alsberg | 9926e4c | 2007-05-08 00:30:31 -0700 | [diff] [blame] | 1467 | } |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1468 | if (!retval) { |
| 1469 | if (old_rlim) |
| 1470 | *old_rlim = *rlim; |
| 1471 | if (new_rlim) |
| 1472 | *rlim = *new_rlim; |
| 1473 | } |
Jiri Slaby | 7855c35 | 2009-08-26 23:45:34 +0200 | [diff] [blame] | 1474 | task_unlock(tsk->group_leader); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | |
Andrew Morton | d3561f7 | 2006-03-24 03:18:36 -0800 | [diff] [blame] | 1476 | /* |
| 1477 | * RLIMIT_CPU handling. Note that the kernel fails to return an error |
| 1478 | * code if it rejected the user's attempt to set RLIMIT_CPU. This is a |
| 1479 | * very long-standing error, and fixing it now risks breakage of |
| 1480 | * applications, so we live with it |
| 1481 | */ |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1482 | if (!retval && new_rlim && resource == RLIMIT_CPU && |
| 1483 | new_rlim->rlim_cur != RLIM_INFINITY) |
| 1484 | update_rlimit_cpu(tsk, new_rlim->rlim_cur); |
Andrew Morton | ec9e16b | 2006-03-24 03:18:34 -0800 | [diff] [blame] | 1485 | out: |
Jiri Slaby | 1c1e618 | 2009-08-28 14:08:17 +0200 | [diff] [blame] | 1486 | read_unlock(&tasklist_lock); |
Oleg Nesterov | 2fb9d26 | 2009-09-03 19:21:45 +0200 | [diff] [blame] | 1487 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | } |
| 1489 | |
Jiri Slaby | c022a0a | 2010-05-04 18:03:50 +0200 | [diff] [blame] | 1490 | /* rcu lock must be held */ |
| 1491 | static int check_prlimit_permission(struct task_struct *task) |
| 1492 | { |
| 1493 | const struct cred *cred = current_cred(), *tcred; |
| 1494 | |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1495 | if (current == task) |
| 1496 | return 0; |
Jiri Slaby | c022a0a | 2010-05-04 18:03:50 +0200 | [diff] [blame] | 1497 | |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1498 | tcred = __task_cred(task); |
Eric W. Biederman | c4a4d60 | 2011-11-16 23:15:31 -0800 | [diff] [blame] | 1499 | if (cred->user_ns == tcred->user_ns && |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1500 | (cred->uid == tcred->euid && |
| 1501 | cred->uid == tcred->suid && |
| 1502 | cred->uid == tcred->uid && |
| 1503 | cred->gid == tcred->egid && |
| 1504 | cred->gid == tcred->sgid && |
| 1505 | cred->gid == tcred->gid)) |
| 1506 | return 0; |
Eric W. Biederman | c4a4d60 | 2011-11-16 23:15:31 -0800 | [diff] [blame] | 1507 | if (ns_capable(tcred->user_ns, CAP_SYS_RESOURCE)) |
Serge E. Hallyn | fc832ad | 2011-03-23 16:43:22 -0700 | [diff] [blame] | 1508 | return 0; |
| 1509 | |
| 1510 | return -EPERM; |
Jiri Slaby | c022a0a | 2010-05-04 18:03:50 +0200 | [diff] [blame] | 1511 | } |
| 1512 | |
| 1513 | SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource, |
| 1514 | const struct rlimit64 __user *, new_rlim, |
| 1515 | struct rlimit64 __user *, old_rlim) |
| 1516 | { |
| 1517 | struct rlimit64 old64, new64; |
| 1518 | struct rlimit old, new; |
| 1519 | struct task_struct *tsk; |
| 1520 | int ret; |
| 1521 | |
| 1522 | if (new_rlim) { |
| 1523 | if (copy_from_user(&new64, new_rlim, sizeof(new64))) |
| 1524 | return -EFAULT; |
| 1525 | rlim64_to_rlim(&new64, &new); |
| 1526 | } |
| 1527 | |
| 1528 | rcu_read_lock(); |
| 1529 | tsk = pid ? find_task_by_vpid(pid) : current; |
| 1530 | if (!tsk) { |
| 1531 | rcu_read_unlock(); |
| 1532 | return -ESRCH; |
| 1533 | } |
| 1534 | ret = check_prlimit_permission(tsk); |
| 1535 | if (ret) { |
| 1536 | rcu_read_unlock(); |
| 1537 | return ret; |
| 1538 | } |
| 1539 | get_task_struct(tsk); |
| 1540 | rcu_read_unlock(); |
| 1541 | |
| 1542 | ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL, |
| 1543 | old_rlim ? &old : NULL); |
| 1544 | |
| 1545 | if (!ret && old_rlim) { |
| 1546 | rlim_to_rlim64(&old, &old64); |
| 1547 | if (copy_to_user(old_rlim, &old64, sizeof(old64))) |
| 1548 | ret = -EFAULT; |
| 1549 | } |
| 1550 | |
| 1551 | put_task_struct(tsk); |
| 1552 | return ret; |
| 1553 | } |
| 1554 | |
Jiri Slaby | 7855c35 | 2009-08-26 23:45:34 +0200 | [diff] [blame] | 1555 | SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim) |
| 1556 | { |
| 1557 | struct rlimit new_rlim; |
| 1558 | |
| 1559 | if (copy_from_user(&new_rlim, rlim, sizeof(*rlim))) |
| 1560 | return -EFAULT; |
Jiri Slaby | 5b41535 | 2010-03-24 16:11:29 +0100 | [diff] [blame] | 1561 | return do_prlimit(current, resource, &new_rlim, NULL); |
Jiri Slaby | 7855c35 | 2009-08-26 23:45:34 +0200 | [diff] [blame] | 1562 | } |
| 1563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | /* |
| 1565 | * It would make sense to put struct rusage in the task_struct, |
| 1566 | * except that would make the task_struct be *really big*. After |
| 1567 | * task_struct gets moved into malloc'ed memory, it would |
| 1568 | * make sense to do this. It will make moving the rest of the information |
| 1569 | * a lot simpler! (Which we're not doing right now because we're not |
| 1570 | * measuring them yet). |
| 1571 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | * When sampling multiple threads for RUSAGE_SELF, under SMP we might have |
| 1573 | * races with threads incrementing their own counters. But since word |
| 1574 | * reads are atomic, we either get new values or old values and we don't |
| 1575 | * care which for the sums. We always take the siglock to protect reading |
| 1576 | * the c* fields from p->signal from races with exit.c updating those |
| 1577 | * fields when reaping, so a sample either gets all the additions of a |
| 1578 | * given child after it's reaped, or none so this sample is before reaping. |
Ravikiran G Thirumalai | 2dd0ebc | 2006-03-23 03:00:13 -0800 | [diff] [blame] | 1579 | * |
Ravikiran G Thirumalai | de047c1 | 2006-06-22 14:47:26 -0700 | [diff] [blame] | 1580 | * Locking: |
| 1581 | * We need to take the siglock for CHILDEREN, SELF and BOTH |
| 1582 | * for the cases current multithreaded, non-current single threaded |
| 1583 | * non-current multithreaded. Thread traversal is now safe with |
| 1584 | * the siglock held. |
| 1585 | * Strictly speaking, we donot need to take the siglock if we are current and |
| 1586 | * single threaded, as no one else can take our signal_struct away, no one |
| 1587 | * else can reap the children to update signal->c* counters, and no one else |
| 1588 | * can race with the signal-> fields. If we do not take any lock, the |
| 1589 | * signal-> fields could be read out of order while another thread was just |
| 1590 | * exiting. So we should place a read memory barrier when we avoid the lock. |
| 1591 | * On the writer side, write memory barrier is implied in __exit_signal |
| 1592 | * as __exit_signal releases the siglock spinlock after updating the signal-> |
| 1593 | * fields. But we don't do this yet to keep things simple. |
Ravikiran G Thirumalai | 2dd0ebc | 2006-03-23 03:00:13 -0800 | [diff] [blame] | 1594 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | */ |
| 1596 | |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 1597 | static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r) |
Sripathi Kodi | 679c9cd | 2008-04-29 00:58:42 -0700 | [diff] [blame] | 1598 | { |
Sripathi Kodi | 679c9cd | 2008-04-29 00:58:42 -0700 | [diff] [blame] | 1599 | r->ru_nvcsw += t->nvcsw; |
| 1600 | r->ru_nivcsw += t->nivcsw; |
| 1601 | r->ru_minflt += t->min_flt; |
| 1602 | r->ru_majflt += t->maj_flt; |
| 1603 | r->ru_inblock += task_io_get_inblock(t); |
| 1604 | r->ru_oublock += task_io_get_oublock(t); |
| 1605 | } |
| 1606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | static void k_getrusage(struct task_struct *p, int who, struct rusage *r) |
| 1608 | { |
| 1609 | struct task_struct *t; |
| 1610 | unsigned long flags; |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 1611 | cputime_t tgutime, tgstime, utime, stime; |
Jiri Pirko | 1f10206 | 2009-09-22 16:44:10 -0700 | [diff] [blame] | 1612 | unsigned long maxrss = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | |
| 1614 | memset((char *) r, 0, sizeof *r); |
Martin Schwidefsky | 6486163 | 2011-12-15 14:56:09 +0100 | [diff] [blame] | 1615 | utime = stime = 0; |
Oleg Nesterov | 0f59cc4 | 2006-01-08 01:05:15 -0800 | [diff] [blame] | 1616 | |
Sripathi Kodi | 679c9cd | 2008-04-29 00:58:42 -0700 | [diff] [blame] | 1617 | if (who == RUSAGE_THREAD) { |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 1618 | task_times(current, &utime, &stime); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 1619 | accumulate_thread_rusage(p, r); |
Jiri Pirko | 1f10206 | 2009-09-22 16:44:10 -0700 | [diff] [blame] | 1620 | maxrss = p->signal->maxrss; |
Sripathi Kodi | 679c9cd | 2008-04-29 00:58:42 -0700 | [diff] [blame] | 1621 | goto out; |
| 1622 | } |
| 1623 | |
Oleg Nesterov | d6cf723 | 2008-04-30 00:52:38 -0700 | [diff] [blame] | 1624 | if (!lock_task_sighand(p, &flags)) |
Ravikiran G Thirumalai | de047c1 | 2006-06-22 14:47:26 -0700 | [diff] [blame] | 1625 | return; |
Ravikiran G Thirumalai | 2dd0ebc | 2006-03-23 03:00:13 -0800 | [diff] [blame] | 1626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | switch (who) { |
Oleg Nesterov | 0f59cc4 | 2006-01-08 01:05:15 -0800 | [diff] [blame] | 1628 | case RUSAGE_BOTH: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | case RUSAGE_CHILDREN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | utime = p->signal->cutime; |
| 1631 | stime = p->signal->cstime; |
| 1632 | r->ru_nvcsw = p->signal->cnvcsw; |
| 1633 | r->ru_nivcsw = p->signal->cnivcsw; |
| 1634 | r->ru_minflt = p->signal->cmin_flt; |
| 1635 | r->ru_majflt = p->signal->cmaj_flt; |
Eric Dumazet | 6eaeeab | 2007-05-10 22:22:37 -0700 | [diff] [blame] | 1636 | r->ru_inblock = p->signal->cinblock; |
| 1637 | r->ru_oublock = p->signal->coublock; |
Jiri Pirko | 1f10206 | 2009-09-22 16:44:10 -0700 | [diff] [blame] | 1638 | maxrss = p->signal->cmaxrss; |
Oleg Nesterov | 0f59cc4 | 2006-01-08 01:05:15 -0800 | [diff] [blame] | 1639 | |
| 1640 | if (who == RUSAGE_CHILDREN) |
| 1641 | break; |
| 1642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | case RUSAGE_SELF: |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 1644 | thread_group_times(p, &tgutime, &tgstime); |
Martin Schwidefsky | 6486163 | 2011-12-15 14:56:09 +0100 | [diff] [blame] | 1645 | utime += tgutime; |
| 1646 | stime += tgstime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | r->ru_nvcsw += p->signal->nvcsw; |
| 1648 | r->ru_nivcsw += p->signal->nivcsw; |
| 1649 | r->ru_minflt += p->signal->min_flt; |
| 1650 | r->ru_majflt += p->signal->maj_flt; |
Eric Dumazet | 6eaeeab | 2007-05-10 22:22:37 -0700 | [diff] [blame] | 1651 | r->ru_inblock += p->signal->inblock; |
| 1652 | r->ru_oublock += p->signal->oublock; |
Jiri Pirko | 1f10206 | 2009-09-22 16:44:10 -0700 | [diff] [blame] | 1653 | if (maxrss < p->signal->maxrss) |
| 1654 | maxrss = p->signal->maxrss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | t = p; |
| 1656 | do { |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 1657 | accumulate_thread_rusage(t, r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | t = next_thread(t); |
| 1659 | } while (t != p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | break; |
Oleg Nesterov | 0f59cc4 | 2006-01-08 01:05:15 -0800 | [diff] [blame] | 1661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | default: |
| 1663 | BUG(); |
| 1664 | } |
Ravikiran G Thirumalai | de047c1 | 2006-06-22 14:47:26 -0700 | [diff] [blame] | 1665 | unlock_task_sighand(p, &flags); |
Ravikiran G Thirumalai | de047c1 | 2006-06-22 14:47:26 -0700 | [diff] [blame] | 1666 | |
Sripathi Kodi | 679c9cd | 2008-04-29 00:58:42 -0700 | [diff] [blame] | 1667 | out: |
Oleg Nesterov | 0f59cc4 | 2006-01-08 01:05:15 -0800 | [diff] [blame] | 1668 | cputime_to_timeval(utime, &r->ru_utime); |
| 1669 | cputime_to_timeval(stime, &r->ru_stime); |
Jiri Pirko | 1f10206 | 2009-09-22 16:44:10 -0700 | [diff] [blame] | 1670 | |
| 1671 | if (who != RUSAGE_CHILDREN) { |
| 1672 | struct mm_struct *mm = get_task_mm(p); |
| 1673 | if (mm) { |
| 1674 | setmax_mm_hiwater_rss(&maxrss, mm); |
| 1675 | mmput(mm); |
| 1676 | } |
| 1677 | } |
| 1678 | r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | } |
| 1680 | |
| 1681 | int getrusage(struct task_struct *p, int who, struct rusage __user *ru) |
| 1682 | { |
| 1683 | struct rusage r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | k_getrusage(p, who, &r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0; |
| 1686 | } |
| 1687 | |
Heiko Carstens | e48fbb6 | 2009-01-14 14:14:26 +0100 | [diff] [blame] | 1688 | SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | { |
Sripathi Kodi | 679c9cd | 2008-04-29 00:58:42 -0700 | [diff] [blame] | 1690 | if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN && |
| 1691 | who != RUSAGE_THREAD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | return -EINVAL; |
| 1693 | return getrusage(current, who, ru); |
| 1694 | } |
| 1695 | |
Heiko Carstens | e48fbb6 | 2009-01-14 14:14:26 +0100 | [diff] [blame] | 1696 | SYSCALL_DEFINE1(umask, int, mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | { |
| 1698 | mask = xchg(¤t->fs->umask, mask & S_IRWXUGO); |
| 1699 | return mask; |
| 1700 | } |
Serge E. Hallyn | 3b7391d | 2008-02-04 22:29:45 -0800 | [diff] [blame] | 1701 | |
Cyrill Gorcunov | 028ee4b | 2012-01-12 17:20:55 -0800 | [diff] [blame] | 1702 | #ifdef CONFIG_CHECKPOINT_RESTORE |
| 1703 | static int prctl_set_mm(int opt, unsigned long addr, |
| 1704 | unsigned long arg4, unsigned long arg5) |
| 1705 | { |
| 1706 | unsigned long rlim = rlimit(RLIMIT_DATA); |
| 1707 | unsigned long vm_req_flags; |
| 1708 | unsigned long vm_bad_flags; |
| 1709 | struct vm_area_struct *vma; |
| 1710 | int error = 0; |
| 1711 | struct mm_struct *mm = current->mm; |
| 1712 | |
| 1713 | if (arg4 | arg5) |
| 1714 | return -EINVAL; |
| 1715 | |
Cyrill Gorcunov | 79f0713 | 2012-03-15 15:17:10 -0700 | [diff] [blame] | 1716 | if (!capable(CAP_SYS_RESOURCE)) |
Cyrill Gorcunov | 028ee4b | 2012-01-12 17:20:55 -0800 | [diff] [blame] | 1717 | return -EPERM; |
| 1718 | |
| 1719 | if (addr >= TASK_SIZE) |
| 1720 | return -EINVAL; |
| 1721 | |
| 1722 | down_read(&mm->mmap_sem); |
| 1723 | vma = find_vma(mm, addr); |
| 1724 | |
| 1725 | if (opt != PR_SET_MM_START_BRK && opt != PR_SET_MM_BRK) { |
| 1726 | /* It must be existing VMA */ |
| 1727 | if (!vma || vma->vm_start > addr) |
| 1728 | goto out; |
| 1729 | } |
| 1730 | |
| 1731 | error = -EINVAL; |
| 1732 | switch (opt) { |
| 1733 | case PR_SET_MM_START_CODE: |
| 1734 | case PR_SET_MM_END_CODE: |
| 1735 | vm_req_flags = VM_READ | VM_EXEC; |
| 1736 | vm_bad_flags = VM_WRITE | VM_MAYSHARE; |
| 1737 | |
| 1738 | if ((vma->vm_flags & vm_req_flags) != vm_req_flags || |
| 1739 | (vma->vm_flags & vm_bad_flags)) |
| 1740 | goto out; |
| 1741 | |
| 1742 | if (opt == PR_SET_MM_START_CODE) |
| 1743 | mm->start_code = addr; |
| 1744 | else |
| 1745 | mm->end_code = addr; |
| 1746 | break; |
| 1747 | |
| 1748 | case PR_SET_MM_START_DATA: |
| 1749 | case PR_SET_MM_END_DATA: |
| 1750 | vm_req_flags = VM_READ | VM_WRITE; |
| 1751 | vm_bad_flags = VM_EXEC | VM_MAYSHARE; |
| 1752 | |
| 1753 | if ((vma->vm_flags & vm_req_flags) != vm_req_flags || |
| 1754 | (vma->vm_flags & vm_bad_flags)) |
| 1755 | goto out; |
| 1756 | |
| 1757 | if (opt == PR_SET_MM_START_DATA) |
| 1758 | mm->start_data = addr; |
| 1759 | else |
| 1760 | mm->end_data = addr; |
| 1761 | break; |
| 1762 | |
| 1763 | case PR_SET_MM_START_STACK: |
| 1764 | |
| 1765 | #ifdef CONFIG_STACK_GROWSUP |
| 1766 | vm_req_flags = VM_READ | VM_WRITE | VM_GROWSUP; |
| 1767 | #else |
| 1768 | vm_req_flags = VM_READ | VM_WRITE | VM_GROWSDOWN; |
| 1769 | #endif |
| 1770 | if ((vma->vm_flags & vm_req_flags) != vm_req_flags) |
| 1771 | goto out; |
| 1772 | |
| 1773 | mm->start_stack = addr; |
| 1774 | break; |
| 1775 | |
| 1776 | case PR_SET_MM_START_BRK: |
| 1777 | if (addr <= mm->end_data) |
| 1778 | goto out; |
| 1779 | |
| 1780 | if (rlim < RLIM_INFINITY && |
| 1781 | (mm->brk - addr) + |
| 1782 | (mm->end_data - mm->start_data) > rlim) |
| 1783 | goto out; |
| 1784 | |
| 1785 | mm->start_brk = addr; |
| 1786 | break; |
| 1787 | |
| 1788 | case PR_SET_MM_BRK: |
| 1789 | if (addr <= mm->end_data) |
| 1790 | goto out; |
| 1791 | |
| 1792 | if (rlim < RLIM_INFINITY && |
| 1793 | (addr - mm->start_brk) + |
| 1794 | (mm->end_data - mm->start_data) > rlim) |
| 1795 | goto out; |
| 1796 | |
| 1797 | mm->brk = addr; |
| 1798 | break; |
| 1799 | |
| 1800 | default: |
| 1801 | error = -EINVAL; |
| 1802 | goto out; |
| 1803 | } |
| 1804 | |
| 1805 | error = 0; |
| 1806 | |
| 1807 | out: |
| 1808 | up_read(&mm->mmap_sem); |
| 1809 | |
| 1810 | return error; |
| 1811 | } |
| 1812 | #else /* CONFIG_CHECKPOINT_RESTORE */ |
| 1813 | static int prctl_set_mm(int opt, unsigned long addr, |
| 1814 | unsigned long arg4, unsigned long arg5) |
| 1815 | { |
| 1816 | return -EINVAL; |
| 1817 | } |
| 1818 | #endif |
| 1819 | |
Heiko Carstens | c4ea37c | 2009-01-14 14:14:28 +0100 | [diff] [blame] | 1820 | SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3, |
| 1821 | unsigned long, arg4, unsigned long, arg5) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | { |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1823 | struct task_struct *me = current; |
| 1824 | unsigned char comm[sizeof(me->comm)]; |
| 1825 | long error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1827 | error = security_task_prctl(option, arg2, arg3, arg4, arg5); |
| 1828 | if (error != -ENOSYS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | return error; |
| 1830 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1831 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | switch (option) { |
| 1833 | case PR_SET_PDEATHSIG: |
Jesper Juhl | 0730ded | 2005-09-06 15:17:37 -0700 | [diff] [blame] | 1834 | if (!valid_signal(arg2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | error = -EINVAL; |
| 1836 | break; |
| 1837 | } |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1838 | me->pdeath_signal = arg2; |
| 1839 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | break; |
| 1841 | case PR_GET_PDEATHSIG: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1842 | error = put_user(me->pdeath_signal, (int __user *)arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | break; |
| 1844 | case PR_GET_DUMPABLE: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1845 | error = get_dumpable(me->mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | break; |
| 1847 | case PR_SET_DUMPABLE: |
Marcel Holtmann | abf75a5 | 2006-07-12 13:12:00 +0200 | [diff] [blame] | 1848 | if (arg2 < 0 || arg2 > 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | error = -EINVAL; |
| 1850 | break; |
| 1851 | } |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1852 | set_dumpable(me->mm, arg2); |
| 1853 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | break; |
| 1855 | |
| 1856 | case PR_SET_UNALIGN: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1857 | error = SET_UNALIGN_CTL(me, arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | break; |
| 1859 | case PR_GET_UNALIGN: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1860 | error = GET_UNALIGN_CTL(me, arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | break; |
| 1862 | case PR_SET_FPEMU: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1863 | error = SET_FPEMU_CTL(me, arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | break; |
| 1865 | case PR_GET_FPEMU: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1866 | error = GET_FPEMU_CTL(me, arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | break; |
| 1868 | case PR_SET_FPEXC: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1869 | error = SET_FPEXC_CTL(me, arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | break; |
| 1871 | case PR_GET_FPEXC: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1872 | error = GET_FPEXC_CTL(me, arg2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | break; |
| 1874 | case PR_GET_TIMING: |
| 1875 | error = PR_TIMING_STATISTICAL; |
| 1876 | break; |
| 1877 | case PR_SET_TIMING: |
Shi Weihua | 7b26655 | 2008-05-23 13:04:59 -0700 | [diff] [blame] | 1878 | if (arg2 != PR_TIMING_STATISTICAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | error = -EINVAL; |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1880 | else |
| 1881 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | break; |
| 1883 | |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1884 | case PR_SET_NAME: |
| 1885 | comm[sizeof(me->comm)-1] = 0; |
| 1886 | if (strncpy_from_user(comm, (char __user *)arg2, |
| 1887 | sizeof(me->comm) - 1) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | return -EFAULT; |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1889 | set_task_comm(me, comm); |
Vladimir Zapolskiy | f786ecb | 2011-09-21 09:26:44 +0000 | [diff] [blame] | 1890 | proc_comm_connector(me); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | return 0; |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1892 | case PR_GET_NAME: |
| 1893 | get_task_comm(comm, me); |
| 1894 | if (copy_to_user((char __user *)arg2, comm, |
| 1895 | sizeof(comm))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | return -EFAULT; |
| 1897 | return 0; |
Anton Blanchard | 651d765 | 2006-06-07 16:10:19 +1000 | [diff] [blame] | 1898 | case PR_GET_ENDIAN: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1899 | error = GET_ENDIAN(me, arg2); |
Anton Blanchard | 651d765 | 2006-06-07 16:10:19 +1000 | [diff] [blame] | 1900 | break; |
| 1901 | case PR_SET_ENDIAN: |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1902 | error = SET_ENDIAN(me, arg2); |
Anton Blanchard | 651d765 | 2006-06-07 16:10:19 +1000 | [diff] [blame] | 1903 | break; |
| 1904 | |
Andrea Arcangeli | 1d9d02f | 2007-07-15 23:41:32 -0700 | [diff] [blame] | 1905 | case PR_GET_SECCOMP: |
| 1906 | error = prctl_get_seccomp(); |
| 1907 | break; |
| 1908 | case PR_SET_SECCOMP: |
| 1909 | error = prctl_set_seccomp(arg2); |
| 1910 | break; |
Erik Bosman | 8fb402b | 2008-04-11 18:54:17 +0200 | [diff] [blame] | 1911 | case PR_GET_TSC: |
| 1912 | error = GET_TSC_CTL(arg2); |
| 1913 | break; |
| 1914 | case PR_SET_TSC: |
| 1915 | error = SET_TSC_CTL(arg2); |
| 1916 | break; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1917 | case PR_TASK_PERF_EVENTS_DISABLE: |
| 1918 | error = perf_event_task_disable(); |
Ingo Molnar | 1d1c7dd | 2008-12-11 14:59:31 +0100 | [diff] [blame] | 1919 | break; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1920 | case PR_TASK_PERF_EVENTS_ENABLE: |
| 1921 | error = perf_event_task_enable(); |
Ingo Molnar | 1d1c7dd | 2008-12-11 14:59:31 +0100 | [diff] [blame] | 1922 | break; |
Arjan van de Ven | 6976675 | 2008-09-01 15:52:40 -0700 | [diff] [blame] | 1923 | case PR_GET_TIMERSLACK: |
| 1924 | error = current->timer_slack_ns; |
| 1925 | break; |
| 1926 | case PR_SET_TIMERSLACK: |
| 1927 | if (arg2 <= 0) |
| 1928 | current->timer_slack_ns = |
| 1929 | current->default_timer_slack_ns; |
| 1930 | else |
| 1931 | current->timer_slack_ns = arg2; |
David Howells | b6dff3e | 2008-11-14 10:39:16 +1100 | [diff] [blame] | 1932 | error = 0; |
Arjan van de Ven | 6976675 | 2008-09-01 15:52:40 -0700 | [diff] [blame] | 1933 | break; |
Andi Kleen | 4db96cf | 2009-09-16 11:50:14 +0200 | [diff] [blame] | 1934 | case PR_MCE_KILL: |
| 1935 | if (arg4 | arg5) |
| 1936 | return -EINVAL; |
| 1937 | switch (arg2) { |
Andi Kleen | 1087e9b | 2009-10-04 02:20:11 +0200 | [diff] [blame] | 1938 | case PR_MCE_KILL_CLEAR: |
Andi Kleen | 4db96cf | 2009-09-16 11:50:14 +0200 | [diff] [blame] | 1939 | if (arg3 != 0) |
| 1940 | return -EINVAL; |
| 1941 | current->flags &= ~PF_MCE_PROCESS; |
| 1942 | break; |
Andi Kleen | 1087e9b | 2009-10-04 02:20:11 +0200 | [diff] [blame] | 1943 | case PR_MCE_KILL_SET: |
Andi Kleen | 4db96cf | 2009-09-16 11:50:14 +0200 | [diff] [blame] | 1944 | current->flags |= PF_MCE_PROCESS; |
Andi Kleen | 1087e9b | 2009-10-04 02:20:11 +0200 | [diff] [blame] | 1945 | if (arg3 == PR_MCE_KILL_EARLY) |
Andi Kleen | 4db96cf | 2009-09-16 11:50:14 +0200 | [diff] [blame] | 1946 | current->flags |= PF_MCE_EARLY; |
Andi Kleen | 1087e9b | 2009-10-04 02:20:11 +0200 | [diff] [blame] | 1947 | else if (arg3 == PR_MCE_KILL_LATE) |
Andi Kleen | 4db96cf | 2009-09-16 11:50:14 +0200 | [diff] [blame] | 1948 | current->flags &= ~PF_MCE_EARLY; |
Andi Kleen | 1087e9b | 2009-10-04 02:20:11 +0200 | [diff] [blame] | 1949 | else if (arg3 == PR_MCE_KILL_DEFAULT) |
| 1950 | current->flags &= |
| 1951 | ~(PF_MCE_EARLY|PF_MCE_PROCESS); |
| 1952 | else |
| 1953 | return -EINVAL; |
Andi Kleen | 4db96cf | 2009-09-16 11:50:14 +0200 | [diff] [blame] | 1954 | break; |
| 1955 | default: |
| 1956 | return -EINVAL; |
| 1957 | } |
| 1958 | error = 0; |
| 1959 | break; |
Andi Kleen | 1087e9b | 2009-10-04 02:20:11 +0200 | [diff] [blame] | 1960 | case PR_MCE_KILL_GET: |
| 1961 | if (arg2 | arg3 | arg4 | arg5) |
| 1962 | return -EINVAL; |
| 1963 | if (current->flags & PF_MCE_PROCESS) |
| 1964 | error = (current->flags & PF_MCE_EARLY) ? |
| 1965 | PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE; |
| 1966 | else |
| 1967 | error = PR_MCE_KILL_DEFAULT; |
| 1968 | break; |
Cyrill Gorcunov | 028ee4b | 2012-01-12 17:20:55 -0800 | [diff] [blame] | 1969 | case PR_SET_MM: |
| 1970 | error = prctl_set_mm(arg2, arg3, arg4, arg5); |
| 1971 | break; |
Lennart Poettering | ebec18a | 2012-03-23 15:01:54 -0700 | [diff] [blame] | 1972 | case PR_SET_CHILD_SUBREAPER: |
| 1973 | me->signal->is_child_subreaper = !!arg2; |
| 1974 | error = 0; |
| 1975 | break; |
| 1976 | case PR_GET_CHILD_SUBREAPER: |
| 1977 | error = put_user(me->signal->is_child_subreaper, |
| 1978 | (int __user *) arg2); |
| 1979 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | default: |
| 1981 | error = -EINVAL; |
| 1982 | break; |
| 1983 | } |
| 1984 | return error; |
| 1985 | } |
Andi Kleen | 3cfc348 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 1986 | |
Heiko Carstens | 836f92a | 2009-01-14 14:14:33 +0100 | [diff] [blame] | 1987 | SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep, |
| 1988 | struct getcpu_cache __user *, unused) |
Andi Kleen | 3cfc348 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 1989 | { |
| 1990 | int err = 0; |
| 1991 | int cpu = raw_smp_processor_id(); |
| 1992 | if (cpup) |
| 1993 | err |= put_user(cpu, cpup); |
| 1994 | if (nodep) |
| 1995 | err |= put_user(cpu_to_node(cpu), nodep); |
Andi Kleen | 3cfc348 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 1996 | return err ? -EFAULT : 0; |
| 1997 | } |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 1998 | |
| 1999 | char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff"; |
| 2000 | |
Neil Horman | a06a4dc | 2010-05-26 14:42:58 -0700 | [diff] [blame] | 2001 | static void argv_cleanup(struct subprocess_info *info) |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 2002 | { |
Neil Horman | a06a4dc | 2010-05-26 14:42:58 -0700 | [diff] [blame] | 2003 | argv_free(info->argv); |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 2004 | } |
| 2005 | |
| 2006 | /** |
| 2007 | * orderly_poweroff - Trigger an orderly system poweroff |
| 2008 | * @force: force poweroff if command execution fails |
| 2009 | * |
| 2010 | * This may be called from any context to trigger a system shutdown. |
| 2011 | * If the orderly shutdown fails, it will force an immediate shutdown. |
| 2012 | */ |
| 2013 | int orderly_poweroff(bool force) |
| 2014 | { |
| 2015 | int argc; |
| 2016 | char **argv = argv_split(GFP_ATOMIC, poweroff_cmd, &argc); |
| 2017 | static char *envp[] = { |
| 2018 | "HOME=/", |
| 2019 | "PATH=/sbin:/bin:/usr/sbin:/usr/bin", |
| 2020 | NULL |
| 2021 | }; |
| 2022 | int ret = -ENOMEM; |
| 2023 | struct subprocess_info *info; |
| 2024 | |
| 2025 | if (argv == NULL) { |
| 2026 | printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n", |
| 2027 | __func__, poweroff_cmd); |
| 2028 | goto out; |
| 2029 | } |
| 2030 | |
KOSAKI Motohiro | ac331d1 | 2008-07-25 01:45:38 -0700 | [diff] [blame] | 2031 | info = call_usermodehelper_setup(argv[0], argv, envp, GFP_ATOMIC); |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 2032 | if (info == NULL) { |
| 2033 | argv_free(argv); |
| 2034 | goto out; |
| 2035 | } |
| 2036 | |
Neil Horman | a06a4dc | 2010-05-26 14:42:58 -0700 | [diff] [blame] | 2037 | call_usermodehelper_setfns(info, NULL, argv_cleanup, NULL); |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 2038 | |
Jeremy Fitzhardinge | 86313c4 | 2007-07-17 18:37:03 -0700 | [diff] [blame] | 2039 | ret = call_usermodehelper_exec(info, UMH_NO_WAIT); |
Jeremy Fitzhardinge | 10a0a8d | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 2040 | |
| 2041 | out: |
| 2042 | if (ret && force) { |
| 2043 | printk(KERN_WARNING "Failed to start orderly shutdown: " |
| 2044 | "forcing the issue\n"); |
| 2045 | |
| 2046 | /* I guess this should try to kick off some daemon to |
| 2047 | sync and poweroff asap. Or not even bother syncing |
| 2048 | if we're doing an emergency shutdown? */ |
| 2049 | emergency_sync(); |
| 2050 | kernel_power_off(); |
| 2051 | } |
| 2052 | |
| 2053 | return ret; |
| 2054 | } |
| 2055 | EXPORT_SYMBOL_GPL(orderly_poweroff); |