blob: 0da73cf73e60937ba8eb65a77f20febcb8264c45 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/sys.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
Paul Gortmaker9984de12011-05-23 14:51:41 -04007#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
9#include <linux/utsname.h>
10#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/reboot.h>
12#include <linux/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/highuid.h>
14#include <linux/fs.h>
Paul Gortmaker74da1ff2011-05-26 12:48:41 -040015#include <linux/kmod.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020016#include <linux/perf_event.h>
Daniel Walker3e88c552007-05-10 22:22:53 -070017#include <linux/resource.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070018#include <linux/kernel.h>
19#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/workqueue.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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 Juhl7ed20e12005-05-01 08:59:14 -070030#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080031#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020032#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070033#include <linux/task_io_accounting_ops.h>
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070034#include <linux/seccomp.h>
Mark Lord40477272007-10-01 01:20:10 -070035#include <linux/cpu.h>
Christoph Hellwige28cbf22010-03-10 15:21:19 -080036#include <linux/personality.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080037#include <linux/ptrace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040038#include <linux/fs_struct.h>
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -070039#include <linux/file.h>
40#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010042#include <linux/syscore_ops.h>
Andi Kleenbe274252011-08-19 16:15:10 -070043#include <linux/version.h>
44#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/compat.h>
47#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080048#include <linux/kprobes.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070049#include <linux/user_namespace.h>
Chen Gang7fe5e042013-02-21 16:43:06 -080050#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Seiji Aguchi04c68622011-01-12 16:59:30 -080052#include <linux/kmsg_dump.h>
Andi Kleenbe274252011-08-19 16:15:10 -070053/* Move somewhere else to avoid recompiling? */
54#include <generated/utsrelease.h>
Seiji Aguchi04c68622011-01-12 16:59:30 -080055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/uaccess.h>
57#include <asm/io.h>
58#include <asm/unistd.h>
59
60#ifndef SET_UNALIGN_CTL
61# define SET_UNALIGN_CTL(a,b) (-EINVAL)
62#endif
63#ifndef GET_UNALIGN_CTL
64# define GET_UNALIGN_CTL(a,b) (-EINVAL)
65#endif
66#ifndef SET_FPEMU_CTL
67# define SET_FPEMU_CTL(a,b) (-EINVAL)
68#endif
69#ifndef GET_FPEMU_CTL
70# define GET_FPEMU_CTL(a,b) (-EINVAL)
71#endif
72#ifndef SET_FPEXC_CTL
73# define SET_FPEXC_CTL(a,b) (-EINVAL)
74#endif
75#ifndef GET_FPEXC_CTL
76# define GET_FPEXC_CTL(a,b) (-EINVAL)
77#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100078#ifndef GET_ENDIAN
79# define GET_ENDIAN(a,b) (-EINVAL)
80#endif
81#ifndef SET_ENDIAN
82# define SET_ENDIAN(a,b) (-EINVAL)
83#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +020084#ifndef GET_TSC_CTL
85# define GET_TSC_CTL(a) (-EINVAL)
86#endif
87#ifndef SET_TSC_CTL
88# define SET_TSC_CTL(a) (-EINVAL)
89#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91/*
92 * this is where the system-wide overflow UID and GID are defined, for
93 * architectures that now have 32-bit UID/GID but didn't in the past
94 */
95
96int overflowuid = DEFAULT_OVERFLOWUID;
97int overflowgid = DEFAULT_OVERFLOWGID;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099EXPORT_SYMBOL(overflowuid);
100EXPORT_SYMBOL(overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/*
103 * the same as above, but for filesystems which can only store a 16-bit
104 * UID and GID. as such, this is needed on all architectures
105 */
106
107int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
108int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
109
110EXPORT_SYMBOL(fs_overflowuid);
111EXPORT_SYMBOL(fs_overflowgid);
112
113/*
114 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
115 */
116
117int C_A_D = 1;
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700118struct pid *cad_pid;
119EXPORT_SYMBOL(cad_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700122 * If set, this is used for preparing the system to power off.
123 */
124
125void (*pm_power_off_prepare)(void);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700126
David Howellsc69e8d92008-11-14 10:39:19 +1100127/*
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700128 * Returns true if current's euid is same as p's uid or euid,
129 * or has CAP_SYS_NICE to p's user_ns.
130 *
131 * Called with rcu_read_lock, creds are safe
132 */
133static bool set_one_prio_perm(struct task_struct *p)
134{
135 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
136
Eric W. Biederman5af66202012-03-03 20:21:47 -0800137 if (uid_eq(pcred->uid, cred->euid) ||
138 uid_eq(pcred->euid, cred->euid))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700139 return true;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800140 if (ns_capable(pcred->user_ns, CAP_SYS_NICE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700141 return true;
142 return false;
143}
144
145/*
David Howellsc69e8d92008-11-14 10:39:19 +1100146 * set the priority of a task
147 * - the caller must hold the RCU read lock
148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static int set_one_prio(struct task_struct *p, int niceval, int error)
150{
151 int no_nice;
152
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700153 if (!set_one_prio_perm(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 error = -EPERM;
155 goto out;
156 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700157 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 error = -EACCES;
159 goto out;
160 }
161 no_nice = security_task_setnice(p, niceval);
162 if (no_nice) {
163 error = no_nice;
164 goto out;
165 }
166 if (error == -ESRCH)
167 error = 0;
168 set_user_nice(p, niceval);
169out:
170 return error;
171}
172
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100173SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct task_struct *g, *p;
176 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100177 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800179 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800180 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Daniel Walker3e88c552007-05-10 22:22:53 -0700182 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 goto out;
184
185 /* normalize: avoid signed division (rounding problems) */
186 error = -ESRCH;
187 if (niceval < -20)
188 niceval = -20;
189 if (niceval > 19)
190 niceval = 19;
191
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000192 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 read_lock(&tasklist_lock);
194 switch (which) {
195 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800196 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700197 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800198 else
199 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (p)
201 error = set_one_prio(p, niceval, error);
202 break;
203 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800204 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700205 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800206 else
207 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700208 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 error = set_one_prio(p, niceval, error);
Ken Chen2d70b682008-08-20 14:09:17 -0700210 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 break;
212 case PRIO_USER:
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800213 uid = make_kuid(cred->user_ns, who);
Eric W. Biederman74ba5082012-03-03 18:58:11 -0800214 user = cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (!who)
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800216 uid = cred->uid;
217 else if (!uid_eq(uid, cred->uid) &&
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800218 !(user = find_user(uid)))
David Howells86a264a2008-11-14 10:39:18 +1100219 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800221 do_each_thread(g, p) {
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800222 if (uid_eq(task_uid(p), uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 error = set_one_prio(p, niceval, error);
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800224 } while_each_thread(g, p);
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800225 if (!uid_eq(uid, cred->uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 free_uid(user); /* For find_user() */
227 break;
228 }
229out_unlock:
230 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000231 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232out:
233 return error;
234}
235
236/*
237 * Ugh. To avoid negative return values, "getpriority()" will
238 * not return the normal nice-value, but a negated value that
239 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
240 * to stay compatible.
241 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100242SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct task_struct *g, *p;
245 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100246 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800248 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800249 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Daniel Walker3e88c552007-05-10 22:22:53 -0700251 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return -EINVAL;
253
Tetsuo Handa70118832010-02-22 12:44:16 -0800254 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 read_lock(&tasklist_lock);
256 switch (which) {
257 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800258 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700259 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800260 else
261 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (p) {
263 niceval = 20 - task_nice(p);
264 if (niceval > retval)
265 retval = niceval;
266 }
267 break;
268 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800269 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700270 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800271 else
272 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700273 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 niceval = 20 - task_nice(p);
275 if (niceval > retval)
276 retval = niceval;
Ken Chen2d70b682008-08-20 14:09:17 -0700277 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 break;
279 case PRIO_USER:
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800280 uid = make_kuid(cred->user_ns, who);
Eric W. Biederman74ba5082012-03-03 18:58:11 -0800281 user = cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (!who)
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800283 uid = cred->uid;
284 else if (!uid_eq(uid, cred->uid) &&
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800285 !(user = find_user(uid)))
David Howells86a264a2008-11-14 10:39:18 +1100286 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800288 do_each_thread(g, p) {
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800289 if (uid_eq(task_uid(p), uid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 niceval = 20 - task_nice(p);
291 if (niceval > retval)
292 retval = niceval;
293 }
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800294 } while_each_thread(g, p);
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800295 if (!uid_eq(uid, cred->uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 free_uid(user); /* for find_user() */
297 break;
298 }
299out_unlock:
300 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800301 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 return retval;
304}
305
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700306/**
307 * emergency_restart - reboot the system
308 *
309 * Without shutting down any hardware or taking any locks
310 * reboot the system. This is called when we know we are in
311 * trouble so this is our best effort to reboot. This is
312 * safe to call in interrupt context.
313 */
Eric W. Biederman7c903472005-07-26 11:29:55 -0600314void emergency_restart(void)
315{
Seiji Aguchi04c68622011-01-12 16:59:30 -0800316 kmsg_dump(KMSG_DUMP_EMERG);
Eric W. Biederman7c903472005-07-26 11:29:55 -0600317 machine_emergency_restart();
318}
319EXPORT_SYMBOL_GPL(emergency_restart);
320
Huang Yingca195b72008-08-15 00:40:24 -0700321void kernel_restart_prepare(char *cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600322{
Alan Sterne041c682006-03-27 01:16:30 -0800323 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600324 system_state = SYSTEM_RESTART;
Kay Sieversb50fa7c2011-05-05 13:32:05 +0200325 usermodehelper_disable();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600326 device_shutdown();
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700327}
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800328
329/**
Amerigo Wangc5f41752011-07-25 17:13:10 -0700330 * register_reboot_notifier - Register function to be called at reboot time
331 * @nb: Info about notifier function to be called
332 *
333 * Registers a function with the list of functions
334 * to be called at reboot time.
335 *
336 * Currently always returns zero, as blocking_notifier_chain_register()
337 * always returns zero.
338 */
339int register_reboot_notifier(struct notifier_block *nb)
340{
341 return blocking_notifier_chain_register(&reboot_notifier_list, nb);
342}
343EXPORT_SYMBOL(register_reboot_notifier);
344
345/**
346 * unregister_reboot_notifier - Unregister previously registered reboot notifier
347 * @nb: Hook to be unregistered
348 *
349 * Unregisters a previously registered reboot
350 * notifier function.
351 *
352 * Returns zero on success, or %-ENOENT on failure.
353 */
354int unregister_reboot_notifier(struct notifier_block *nb)
355{
356 return blocking_notifier_chain_unregister(&reboot_notifier_list, nb);
357}
358EXPORT_SYMBOL(unregister_reboot_notifier);
359
360/**
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800361 * kernel_restart - reboot the system
362 * @cmd: pointer to buffer containing command to execute for restart
Randy Dunlapb8887e62005-11-07 01:01:07 -0800363 * or %NULL
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800364 *
365 * Shutdown everything and perform a clean reboot.
366 * This is not safe to call in interrupt context.
367 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700368void kernel_restart(char *cmd)
369{
370 kernel_restart_prepare(cmd);
Shawn Guof96972f2012-10-04 17:12:23 -0700371 disable_nonboot_cpus();
Huacai Chen6f389a82013-04-07 02:14:14 +0000372 syscore_shutdown();
Cal Peake756184b2006-09-30 23:27:24 -0700373 if (!cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600374 printk(KERN_EMERG "Restarting system.\n");
Cal Peake756184b2006-09-30 23:27:24 -0700375 else
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600376 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
Seiji Aguchi04c68622011-01-12 16:59:30 -0800377 kmsg_dump(KMSG_DUMP_RESTART);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600378 machine_restart(cmd);
379}
380EXPORT_SYMBOL_GPL(kernel_restart);
381
Adrian Bunk4ef72292008-02-04 22:30:06 -0800382static void kernel_shutdown_prepare(enum system_states state)
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500383{
Alan Sterne041c682006-03-27 01:16:30 -0800384 blocking_notifier_call_chain(&reboot_notifier_list,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500385 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
386 system_state = state;
Kay Sieversb50fa7c2011-05-05 13:32:05 +0200387 usermodehelper_disable();
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500388 device_shutdown();
389}
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700390/**
391 * kernel_halt - halt the system
392 *
393 * Shutdown everything and perform a clean system halt.
394 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700395void kernel_halt(void)
396{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500397 kernel_shutdown_prepare(SYSTEM_HALT);
Huacai Chen6f389a82013-04-07 02:14:14 +0000398 disable_nonboot_cpus();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100399 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600400 printk(KERN_EMERG "System halted.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800401 kmsg_dump(KMSG_DUMP_HALT);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600402 machine_halt();
403}
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500404
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600405EXPORT_SYMBOL_GPL(kernel_halt);
406
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700407/**
408 * kernel_power_off - power_off the system
409 *
410 * Shutdown everything and perform a clean system power_off.
411 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700412void kernel_power_off(void)
413{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500414 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700415 if (pm_power_off_prepare)
416 pm_power_off_prepare();
Mark Lord40477272007-10-01 01:20:10 -0700417 disable_nonboot_cpus();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100418 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600419 printk(KERN_EMERG "Power down.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800420 kmsg_dump(KMSG_DUMP_POWEROFF);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600421 machine_power_off();
422}
423EXPORT_SYMBOL_GPL(kernel_power_off);
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200424
425static DEFINE_MUTEX(reboot_mutex);
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/*
428 * Reboot system call: for obvious reasons only root may call it,
429 * and even root needs to set up some magic numbers in the registers
430 * so that some mistake won't make this reboot the whole machine.
431 * You can also set the meaning of the ctrl-alt-del-key here.
432 *
433 * reboot doesn't sync: do that yourself before calling this.
434 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100435SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd,
436 void __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Li Zefan923c7532012-12-27 11:39:12 +0800438 struct pid_namespace *pid_ns = task_active_pid_ns(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 char buffer[256];
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700440 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /* We only trust the superuser with rebooting the system. */
Li Zefan923c7532012-12-27 11:39:12 +0800443 if (!ns_capable(pid_ns->user_ns, CAP_SYS_BOOT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -EPERM;
445
446 /* For safety, we require "magic" arguments. */
447 if (magic1 != LINUX_REBOOT_MAGIC1 ||
448 (magic2 != LINUX_REBOOT_MAGIC2 &&
449 magic2 != LINUX_REBOOT_MAGIC2A &&
450 magic2 != LINUX_REBOOT_MAGIC2B &&
451 magic2 != LINUX_REBOOT_MAGIC2C))
452 return -EINVAL;
453
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700454 /*
455 * If pid namespaces are enabled and the current task is in a child
456 * pid_namespace, the command is handled by reboot_pid_ns() which will
457 * call do_exit().
458 */
Li Zefan923c7532012-12-27 11:39:12 +0800459 ret = reboot_pid_ns(pid_ns, cmd);
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700460 if (ret)
461 return ret;
462
Eric W. Biederman5e382912006-01-08 01:03:46 -0800463 /* Instead of trying to make the power_off code look like
464 * halt when pm_power_off is not set do it the easy way.
465 */
466 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
467 cmd = LINUX_REBOOT_CMD_HALT;
468
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200469 mutex_lock(&reboot_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 switch (cmd) {
471 case LINUX_REBOOT_CMD_RESTART:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600472 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 break;
474
475 case LINUX_REBOOT_CMD_CAD_ON:
476 C_A_D = 1;
477 break;
478
479 case LINUX_REBOOT_CMD_CAD_OFF:
480 C_A_D = 0;
481 break;
482
483 case LINUX_REBOOT_CMD_HALT:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600484 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 do_exit(0);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700486 panic("cannot halt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 case LINUX_REBOOT_CMD_POWER_OFF:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600489 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 do_exit(0);
491 break;
492
493 case LINUX_REBOOT_CMD_RESTART2:
494 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200495 ret = -EFAULT;
496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 buffer[sizeof(buffer) - 1] = '\0';
499
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600500 kernel_restart(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502
Huang Ying3ab83522008-07-25 19:45:07 -0700503#ifdef CONFIG_KEXEC
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700504 case LINUX_REBOOT_CMD_KEXEC:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700505 ret = kernel_kexec();
506 break;
Huang Ying3ab83522008-07-25 19:45:07 -0700507#endif
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600508
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200509#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 case LINUX_REBOOT_CMD_SW_SUSPEND:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700511 ret = hibernate();
512 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513#endif
514
515 default:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700516 ret = -EINVAL;
517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200519 mutex_unlock(&reboot_mutex);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
David Howells65f27f32006-11-22 14:55:48 +0000523static void deferred_cad(struct work_struct *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Eric W. Biedermanabcd9e52005-07-26 11:27:34 -0600525 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
528/*
529 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
530 * As it's called within an interrupt, it may NOT sync: the only choice
531 * is whether to reboot at once, or just ignore the ctrl-alt-del.
532 */
533void ctrl_alt_del(void)
534{
David Howells65f27f32006-11-22 14:55:48 +0000535 static DECLARE_WORK(cad_work, deferred_cad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (C_A_D)
538 schedule_work(&cad_work);
539 else
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700540 kill_cad_pid(SIGINT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/*
544 * Unprivileged users may change the real gid to the effective gid
545 * or vice versa. (BSD-style)
546 *
547 * If you set the real gid at all, or set the effective gid to a value not
548 * equal to the real gid, then the saved gid is set to the new effective gid.
549 *
550 * This makes it possible for a setgid program to completely drop its
551 * privileges, which is often a useful assertion to make when you are doing
552 * a security audit over a program.
553 *
554 * The general idea is that a program which uses just setregid() will be
555 * 100% compatible with BSD. A program which uses just setgid() will be
556 * 100% compatible with POSIX with saved IDs.
557 *
558 * SMP: There are not races, the GIDs are checked only by filesystem
559 * operations (as far as semantic preservation is concerned).
560 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100561SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800563 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100564 const struct cred *old;
565 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800567 kgid_t krgid, kegid;
568
569 krgid = make_kgid(ns, rgid);
570 kegid = make_kgid(ns, egid);
571
572 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
573 return -EINVAL;
574 if ((egid != (gid_t) -1) && !gid_valid(kegid))
575 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David Howellsd84f4f92008-11-14 10:39:23 +1100577 new = prepare_creds();
578 if (!new)
579 return -ENOMEM;
580 old = current_cred();
581
David Howellsd84f4f92008-11-14 10:39:23 +1100582 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (rgid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800584 if (gid_eq(old->gid, krgid) ||
585 gid_eq(old->egid, krgid) ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700586 nsown_capable(CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800587 new->gid = krgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 else
David Howellsd84f4f92008-11-14 10:39:23 +1100589 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 if (egid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800592 if (gid_eq(old->gid, kegid) ||
593 gid_eq(old->egid, kegid) ||
594 gid_eq(old->sgid, kegid) ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700595 nsown_capable(CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800596 new->egid = kegid;
Cal Peake756184b2006-09-30 23:27:24 -0700597 else
David Howellsd84f4f92008-11-14 10:39:23 +1100598 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
David Howellsd84f4f92008-11-14 10:39:23 +1100600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (rgid != (gid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800602 (egid != (gid_t) -1 && !gid_eq(kegid, old->gid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100603 new->sgid = new->egid;
604 new->fsgid = new->egid;
605
606 return commit_creds(new);
607
608error:
609 abort_creds(new);
610 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613/*
614 * setgid() is implemented like SysV w/ SAVED_IDS
615 *
616 * SMP: Same implicit races as above.
617 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100618SYSCALL_DEFINE1(setgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800620 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100621 const struct cred *old;
622 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800624 kgid_t kgid;
625
626 kgid = make_kgid(ns, gid);
627 if (!gid_valid(kgid))
628 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
David Howellsd84f4f92008-11-14 10:39:23 +1100630 new = prepare_creds();
631 if (!new)
632 return -ENOMEM;
633 old = current_cred();
634
David Howellsd84f4f92008-11-14 10:39:23 +1100635 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700636 if (nsown_capable(CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800637 new->gid = new->egid = new->sgid = new->fsgid = kgid;
638 else if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->sgid))
639 new->egid = new->fsgid = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 else
David Howellsd84f4f92008-11-14 10:39:23 +1100641 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
David Howellsd84f4f92008-11-14 10:39:23 +1100643 return commit_creds(new);
644
645error:
646 abort_creds(new);
647 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
Dhaval Giani54e99122009-02-27 15:13:54 +0530649
David Howellsd84f4f92008-11-14 10:39:23 +1100650/*
651 * change the user struct in a credentials set to match the new UID
652 */
653static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655 struct user_struct *new_user;
656
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800657 new_user = alloc_uid(new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (!new_user)
659 return -EAGAIN;
660
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400661 /*
662 * We don't fail in case of NPROC limit excess here because too many
663 * poorly written programs don't check set*uid() return code, assuming
664 * it never fails if called by root. We may still enforce NPROC limit
665 * for programs doing set*uid()+execve() by harmlessly deferring the
666 * failure to the execve() stage.
667 */
Jiri Slaby78d7d402010-03-05 13:42:54 -0800668 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400669 new_user != INIT_USER)
670 current->flags |= PF_NPROC_EXCEEDED;
671 else
672 current->flags &= ~PF_NPROC_EXCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David Howellsd84f4f92008-11-14 10:39:23 +1100674 free_uid(new->user);
675 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return 0;
677}
678
679/*
680 * Unprivileged users may change the real uid to the effective uid
681 * or vice versa. (BSD-style)
682 *
683 * If you set the real uid at all, or set the effective uid to a value not
684 * equal to the real uid, then the saved uid is set to the new effective uid.
685 *
686 * This makes it possible for a setuid program to completely drop its
687 * privileges, which is often a useful assertion to make when you are doing
688 * a security audit over a program.
689 *
690 * The general idea is that a program which uses just setreuid() will be
691 * 100% compatible with BSD. A program which uses just setuid() will be
692 * 100% compatible with POSIX with saved IDs.
693 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100694SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800696 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100697 const struct cred *old;
698 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800700 kuid_t kruid, keuid;
701
702 kruid = make_kuid(ns, ruid);
703 keuid = make_kuid(ns, euid);
704
705 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
706 return -EINVAL;
707 if ((euid != (uid_t) -1) && !uid_valid(keuid))
708 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
David Howellsd84f4f92008-11-14 10:39:23 +1100710 new = prepare_creds();
711 if (!new)
712 return -ENOMEM;
713 old = current_cred();
714
David Howellsd84f4f92008-11-14 10:39:23 +1100715 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800717 new->uid = kruid;
718 if (!uid_eq(old->uid, kruid) &&
719 !uid_eq(old->euid, kruid) &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700720 !nsown_capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100721 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
724 if (euid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800725 new->euid = keuid;
726 if (!uid_eq(old->uid, keuid) &&
727 !uid_eq(old->euid, keuid) &&
728 !uid_eq(old->suid, keuid) &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700729 !nsown_capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100730 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800733 if (!uid_eq(new->uid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530734 retval = set_user(new);
735 if (retval < 0)
736 goto error;
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (ruid != (uid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800739 (euid != (uid_t) -1 && !uid_eq(keuid, old->uid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100740 new->suid = new->euid;
741 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
David Howellsd84f4f92008-11-14 10:39:23 +1100743 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
744 if (retval < 0)
745 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
David Howellsd84f4f92008-11-14 10:39:23 +1100747 return commit_creds(new);
748
749error:
750 abort_creds(new);
751 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754/*
755 * setuid() is implemented like SysV with SAVED_IDS
756 *
757 * Note that SAVED_ID's is deficient in that a setuid root program
758 * like sendmail, for example, cannot set its uid to be a normal
759 * user and then switch back, because if you're root, setuid() sets
760 * the saved uid too. If you don't like this, blame the bright people
761 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
762 * will allow a root program to temporarily drop privileges and be able to
763 * regain them by swapping the real and effective uid.
764 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100765SYSCALL_DEFINE1(setuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800767 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100768 const struct cred *old;
769 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800771 kuid_t kuid;
772
773 kuid = make_kuid(ns, uid);
774 if (!uid_valid(kuid))
775 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
David Howellsd84f4f92008-11-14 10:39:23 +1100777 new = prepare_creds();
778 if (!new)
779 return -ENOMEM;
780 old = current_cred();
781
David Howellsd84f4f92008-11-14 10:39:23 +1100782 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700783 if (nsown_capable(CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800784 new->suid = new->uid = kuid;
785 if (!uid_eq(kuid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530786 retval = set_user(new);
787 if (retval < 0)
788 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100789 }
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800790 } else if (!uid_eq(kuid, old->uid) && !uid_eq(kuid, new->suid)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100791 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800794 new->fsuid = new->euid = kuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
David Howellsd84f4f92008-11-14 10:39:23 +1100796 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
797 if (retval < 0)
798 goto error;
799
800 return commit_creds(new);
801
802error:
803 abort_creds(new);
804 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807
808/*
809 * This function implements a generic ability to update ruid, euid,
810 * and suid. This allows you to implement the 4.4 compatible seteuid().
811 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100812SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800814 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100815 const struct cred *old;
816 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800818 kuid_t kruid, keuid, ksuid;
819
820 kruid = make_kuid(ns, ruid);
821 keuid = make_kuid(ns, euid);
822 ksuid = make_kuid(ns, suid);
823
824 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
825 return -EINVAL;
826
827 if ((euid != (uid_t) -1) && !uid_valid(keuid))
828 return -EINVAL;
829
830 if ((suid != (uid_t) -1) && !uid_valid(ksuid))
831 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
David Howellsd84f4f92008-11-14 10:39:23 +1100833 new = prepare_creds();
834 if (!new)
835 return -ENOMEM;
836
David Howellsd84f4f92008-11-14 10:39:23 +1100837 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
David Howellsd84f4f92008-11-14 10:39:23 +1100839 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700840 if (!nsown_capable(CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800841 if (ruid != (uid_t) -1 && !uid_eq(kruid, old->uid) &&
842 !uid_eq(kruid, old->euid) && !uid_eq(kruid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100843 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800844 if (euid != (uid_t) -1 && !uid_eq(keuid, old->uid) &&
845 !uid_eq(keuid, old->euid) && !uid_eq(keuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100846 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800847 if (suid != (uid_t) -1 && !uid_eq(ksuid, old->uid) &&
848 !uid_eq(ksuid, old->euid) && !uid_eq(ksuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100849 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
David Howellsd84f4f92008-11-14 10:39:23 +1100851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800853 new->uid = kruid;
854 if (!uid_eq(kruid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530855 retval = set_user(new);
856 if (retval < 0)
857 goto error;
858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
David Howellsd84f4f92008-11-14 10:39:23 +1100860 if (euid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800861 new->euid = keuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (suid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800863 new->suid = ksuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100864 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
David Howellsd84f4f92008-11-14 10:39:23 +1100866 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
867 if (retval < 0)
868 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
David Howellsd84f4f92008-11-14 10:39:23 +1100870 return commit_creds(new);
871
872error:
873 abort_creds(new);
874 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800877SYSCALL_DEFINE3(getresuid, uid_t __user *, ruidp, uid_t __user *, euidp, uid_t __user *, suidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
David Howells86a264a2008-11-14 10:39:18 +1100879 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800881 uid_t ruid, euid, suid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800883 ruid = from_kuid_munged(cred->user_ns, cred->uid);
884 euid = from_kuid_munged(cred->user_ns, cred->euid);
885 suid = from_kuid_munged(cred->user_ns, cred->suid);
886
887 if (!(retval = put_user(ruid, ruidp)) &&
888 !(retval = put_user(euid, euidp)))
889 retval = put_user(suid, suidp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 return retval;
892}
893
894/*
895 * Same as above, but for rgid, egid, sgid.
896 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100897SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800899 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100900 const struct cred *old;
901 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800903 kgid_t krgid, kegid, ksgid;
904
905 krgid = make_kgid(ns, rgid);
906 kegid = make_kgid(ns, egid);
907 ksgid = make_kgid(ns, sgid);
908
909 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
910 return -EINVAL;
911 if ((egid != (gid_t) -1) && !gid_valid(kegid))
912 return -EINVAL;
913 if ((sgid != (gid_t) -1) && !gid_valid(ksgid))
914 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
David Howellsd84f4f92008-11-14 10:39:23 +1100916 new = prepare_creds();
917 if (!new)
918 return -ENOMEM;
919 old = current_cred();
920
David Howellsd84f4f92008-11-14 10:39:23 +1100921 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700922 if (!nsown_capable(CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800923 if (rgid != (gid_t) -1 && !gid_eq(krgid, old->gid) &&
924 !gid_eq(krgid, old->egid) && !gid_eq(krgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100925 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800926 if (egid != (gid_t) -1 && !gid_eq(kegid, old->gid) &&
927 !gid_eq(kegid, old->egid) && !gid_eq(kegid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100928 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800929 if (sgid != (gid_t) -1 && !gid_eq(ksgid, old->gid) &&
930 !gid_eq(ksgid, old->egid) && !gid_eq(ksgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100931 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
David Howellsd84f4f92008-11-14 10:39:23 +1100934 if (rgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800935 new->gid = krgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100936 if (egid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800937 new->egid = kegid;
David Howellsd84f4f92008-11-14 10:39:23 +1100938 if (sgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800939 new->sgid = ksgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100940 new->fsgid = new->egid;
941
942 return commit_creds(new);
943
944error:
945 abort_creds(new);
946 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800949SYSCALL_DEFINE3(getresgid, gid_t __user *, rgidp, gid_t __user *, egidp, gid_t __user *, sgidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
David Howells86a264a2008-11-14 10:39:18 +1100951 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800953 gid_t rgid, egid, sgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800955 rgid = from_kgid_munged(cred->user_ns, cred->gid);
956 egid = from_kgid_munged(cred->user_ns, cred->egid);
957 sgid = from_kgid_munged(cred->user_ns, cred->sgid);
958
959 if (!(retval = put_user(rgid, rgidp)) &&
960 !(retval = put_user(egid, egidp)))
961 retval = put_user(sgid, sgidp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 return retval;
964}
965
966
967/*
968 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
969 * is used for "access()" and for the NFS daemon (letting nfsd stay at
970 * whatever uid it wants to). It normally shadows "euid", except when
971 * explicitly set by setfsuid() or for access..
972 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100973SYSCALL_DEFINE1(setfsuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
David Howellsd84f4f92008-11-14 10:39:23 +1100975 const struct cred *old;
976 struct cred *new;
977 uid_t old_fsuid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800978 kuid_t kuid;
979
980 old = current_cred();
981 old_fsuid = from_kuid_munged(old->user_ns, old->fsuid);
982
983 kuid = make_kuid(old->user_ns, uid);
984 if (!uid_valid(kuid))
985 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
David Howellsd84f4f92008-11-14 10:39:23 +1100987 new = prepare_creds();
988 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800989 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800991 if (uid_eq(kuid, old->uid) || uid_eq(kuid, old->euid) ||
992 uid_eq(kuid, old->suid) || uid_eq(kuid, old->fsuid) ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700993 nsown_capable(CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800994 if (!uid_eq(kuid, old->fsuid)) {
995 new->fsuid = kuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100996 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
997 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
David Howellsd84f4f92008-11-14 10:39:23 +11001001 abort_creds(new);
1002 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
David Howellsd84f4f92008-11-14 10:39:23 +11001004change_okay:
1005 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return old_fsuid;
1007}
1008
1009/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +02001010 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 */
Heiko Carstensae1251a2009-01-14 14:14:05 +01001012SYSCALL_DEFINE1(setfsgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
David Howellsd84f4f92008-11-14 10:39:23 +11001014 const struct cred *old;
1015 struct cred *new;
1016 gid_t old_fsgid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -08001017 kgid_t kgid;
1018
1019 old = current_cred();
1020 old_fsgid = from_kgid_munged(old->user_ns, old->fsgid);
1021
1022 kgid = make_kgid(old->user_ns, gid);
1023 if (!gid_valid(kgid))
1024 return old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
David Howellsd84f4f92008-11-14 10:39:23 +11001026 new = prepare_creds();
1027 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -08001028 return old_fsgid;
David Howellsd84f4f92008-11-14 10:39:23 +11001029
Eric W. Biedermana29c33f2012-02-07 18:51:01 -08001030 if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->egid) ||
1031 gid_eq(kgid, old->sgid) || gid_eq(kgid, old->fsgid) ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001032 nsown_capable(CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -08001033 if (!gid_eq(kgid, old->fsgid)) {
1034 new->fsgid = kgid;
David Howellsd84f4f92008-11-14 10:39:23 +11001035 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
David Howellsd84f4f92008-11-14 10:39:23 +11001038
David Howellsd84f4f92008-11-14 10:39:23 +11001039 abort_creds(new);
1040 return old_fsgid;
1041
1042change_okay:
1043 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return old_fsgid;
1045}
1046
Frank Mayharf06febc2008-09-12 09:54:39 -07001047void do_sys_times(struct tms *tms)
1048{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001049 cputime_t tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -07001050
Oleg Nesterov2b5fe6d2008-11-17 15:40:08 +01001051 spin_lock_irq(&current->sighand->siglock);
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +01001052 thread_group_cputime_adjusted(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001053 cutime = current->signal->cutime;
1054 cstime = current->signal->cstime;
1055 spin_unlock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001056 tms->tms_utime = cputime_to_clock_t(tgutime);
1057 tms->tms_stime = cputime_to_clock_t(tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001058 tms->tms_cutime = cputime_to_clock_t(cutime);
1059 tms->tms_cstime = cputime_to_clock_t(cstime);
1060}
1061
Heiko Carstens58fd3aa2009-01-14 14:14:03 +01001062SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (tbuf) {
1065 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Frank Mayharf06febc2008-09-12 09:54:39 -07001067 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
1069 return -EFAULT;
1070 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001071 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return (long) jiffies_64_to_clock_t(get_jiffies_64());
1073}
1074
1075/*
1076 * This needs some heavy checking ...
1077 * I just haven't the stomach for it. I also don't fully
1078 * understand sessions/pgrp etc. Let somebody who does explain it.
1079 *
1080 * OK, I think I have the protection semantics right.... this is really
1081 * only important on a multi-user system anyway, to make sure one user
1082 * can't send a signal to a process owned by another. -TYT, 12/12/91
1083 *
1084 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
1085 * LBT 04.03.94
1086 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001087SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001090 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001091 struct pid *pgrp;
1092 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001095 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!pgid)
1097 pgid = pid;
1098 if (pgid < 0)
1099 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001100 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 /* From this point forward we keep holding onto the tasklist lock
1103 * so that our parent does not change from under us. -DaveM
1104 */
1105 write_lock_irq(&tasklist_lock);
1106
1107 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001108 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (!p)
1110 goto out;
1111
1112 err = -EINVAL;
1113 if (!thread_group_leader(p))
1114 goto out;
1115
Oleg Nesterov4e021302008-02-08 04:19:08 -08001116 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -08001118 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 goto out;
1120 err = -EACCES;
1121 if (p->did_exec)
1122 goto out;
1123 } else {
1124 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001125 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 goto out;
1127 }
1128
1129 err = -EPERM;
1130 if (p->signal->leader)
1131 goto out;
1132
Oleg Nesterov4e021302008-02-08 04:19:08 -08001133 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001135 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Oleg Nesterov4e021302008-02-08 04:19:08 -08001137 pgrp = find_vpid(pgid);
1138 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -08001139 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001140 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 err = security_task_setpgid(p, pgid);
1144 if (err)
1145 goto out;
1146
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07001147 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -07001148 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 err = 0;
1151out:
1152 /* All paths lead to here, thus we are safe. -DaveM */
1153 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001154 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return err;
1156}
1157
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001158SYSCALL_DEFINE1(getpgid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001160 struct task_struct *p;
1161 struct pid *grp;
1162 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001164 rcu_read_lock();
1165 if (!pid)
1166 grp = task_pgrp(current);
1167 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001169 p = find_task_by_vpid(pid);
1170 if (!p)
1171 goto out;
1172 grp = task_pgrp(p);
1173 if (!grp)
1174 goto out;
1175
1176 retval = security_task_getpgid(p);
1177 if (retval)
1178 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001180 retval = pid_vnr(grp);
1181out:
1182 rcu_read_unlock();
1183 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
1186#ifdef __ARCH_WANT_SYS_GETPGRP
1187
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001188SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001190 return sys_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
1193#endif
1194
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001195SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001197 struct task_struct *p;
1198 struct pid *sid;
1199 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001200
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001201 rcu_read_lock();
1202 if (!pid)
1203 sid = task_session(current);
1204 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001206 p = find_task_by_vpid(pid);
1207 if (!p)
1208 goto out;
1209 sid = task_session(p);
1210 if (!sid)
1211 goto out;
1212
1213 retval = security_task_getsid(p);
1214 if (retval)
1215 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001217 retval = pid_vnr(sid);
1218out:
1219 rcu_read_unlock();
1220 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001223SYSCALL_DEFINE0(setsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Oren Laadane19f2472006-01-08 01:03:58 -08001225 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001226 struct pid *sid = task_pid(group_leader);
1227 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 int err = -EPERM;
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001231 /* Fail if I am already a session leader */
1232 if (group_leader->signal->leader)
1233 goto out;
1234
Oleg Nesterov430c6232008-02-08 04:19:11 -08001235 /* Fail if a process group id already exists that equals the
1236 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001237 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001238 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 goto out;
1240
Oren Laadane19f2472006-01-08 01:03:58 -08001241 group_leader->signal->leader = 1;
Oleg Nesterov8520d7c2008-02-08 04:19:09 -08001242 __set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001243
Alan Cox9c9f4de2008-10-13 10:37:26 +01001244 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001245
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001246 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247out:
1248 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001249 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001250 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001251 sched_autogroup_create_attach(group_leader);
1252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return err;
1254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256DECLARE_RWSEM(uts_sem);
1257
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001258#ifdef COMPAT_UTS_MACHINE
1259#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001260 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001261 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1262 sizeof(COMPAT_UTS_MACHINE)))
1263#else
1264#define override_architecture(name) 0
1265#endif
1266
Andi Kleenbe274252011-08-19 16:15:10 -07001267/*
1268 * Work around broken programs that cannot handle "Linux 3.0".
1269 * Instead we map 3.x to 2.6.40+x, so e.g. 3.0 would be 2.6.40
1270 */
Kees Cook2702b152012-10-19 13:56:51 -07001271static int override_release(char __user *release, size_t len)
Andi Kleenbe274252011-08-19 16:15:10 -07001272{
1273 int ret = 0;
Andi Kleenbe274252011-08-19 16:15:10 -07001274
1275 if (current->personality & UNAME26) {
Kees Cook2702b152012-10-19 13:56:51 -07001276 const char *rest = UTS_RELEASE;
1277 char buf[65] = { 0 };
Andi Kleenbe274252011-08-19 16:15:10 -07001278 int ndots = 0;
1279 unsigned v;
Kees Cook2702b152012-10-19 13:56:51 -07001280 size_t copy;
Andi Kleenbe274252011-08-19 16:15:10 -07001281
1282 while (*rest) {
1283 if (*rest == '.' && ++ndots >= 3)
1284 break;
1285 if (!isdigit(*rest) && *rest != '.')
1286 break;
1287 rest++;
1288 }
1289 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40;
Kees Cook31fd84b92012-10-19 18:45:53 -07001290 copy = clamp_t(size_t, len, 1, sizeof(buf));
Kees Cook2702b152012-10-19 13:56:51 -07001291 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
1292 ret = copy_to_user(release, buf, copy + 1);
Andi Kleenbe274252011-08-19 16:15:10 -07001293 }
1294 return ret;
1295}
1296
Heiko Carstense48fbb62009-01-14 14:14:26 +01001297SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 int errno = 0;
1300
1301 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001302 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 errno = -EFAULT;
1304 up_read(&uts_sem);
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001305
Andi Kleenbe274252011-08-19 16:15:10 -07001306 if (!errno && override_release(name->release, sizeof(name->release)))
1307 errno = -EFAULT;
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001308 if (!errno && override_architecture(name))
1309 errno = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return errno;
1311}
1312
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001313#ifdef __ARCH_WANT_SYS_OLD_UNAME
1314/*
1315 * Old cruft
1316 */
1317SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1318{
1319 int error = 0;
1320
1321 if (!name)
1322 return -EFAULT;
1323
1324 down_read(&uts_sem);
1325 if (copy_to_user(name, utsname(), sizeof(*name)))
1326 error = -EFAULT;
1327 up_read(&uts_sem);
1328
Andi Kleenbe274252011-08-19 16:15:10 -07001329 if (!error && override_release(name->release, sizeof(name->release)))
1330 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001331 if (!error && override_architecture(name))
1332 error = -EFAULT;
1333 return error;
1334}
1335
1336SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1337{
1338 int error;
1339
1340 if (!name)
1341 return -EFAULT;
1342 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1343 return -EFAULT;
1344
1345 down_read(&uts_sem);
1346 error = __copy_to_user(&name->sysname, &utsname()->sysname,
1347 __OLD_UTS_LEN);
1348 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1349 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1350 __OLD_UTS_LEN);
1351 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1352 error |= __copy_to_user(&name->release, &utsname()->release,
1353 __OLD_UTS_LEN);
1354 error |= __put_user(0, name->release + __OLD_UTS_LEN);
1355 error |= __copy_to_user(&name->version, &utsname()->version,
1356 __OLD_UTS_LEN);
1357 error |= __put_user(0, name->version + __OLD_UTS_LEN);
1358 error |= __copy_to_user(&name->machine, &utsname()->machine,
1359 __OLD_UTS_LEN);
1360 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1361 up_read(&uts_sem);
1362
1363 if (!error && override_architecture(name))
1364 error = -EFAULT;
Andi Kleenbe274252011-08-19 16:15:10 -07001365 if (!error && override_release(name->release, sizeof(name->release)))
1366 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001367 return error ? -EFAULT : 0;
1368}
1369#endif
1370
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001371SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 int errno;
1374 char tmp[__NEW_UTS_LEN];
1375
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -07001376 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (len < 0 || len > __NEW_UTS_LEN)
1380 return -EINVAL;
1381 down_write(&uts_sem);
1382 errno = -EFAULT;
1383 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001384 struct new_utsname *u = utsname();
1385
1386 memcpy(u->nodename, tmp, len);
1387 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001389 uts_proc_notify(UTS_PROC_HOSTNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391 up_write(&uts_sem);
1392 return errno;
1393}
1394
1395#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1396
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001397SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 int i, errno;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001400 struct new_utsname *u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 if (len < 0)
1403 return -EINVAL;
1404 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001405 u = utsname();
1406 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (i > len)
1408 i = len;
1409 errno = 0;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001410 if (copy_to_user(name, u->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 errno = -EFAULT;
1412 up_read(&uts_sem);
1413 return errno;
1414}
1415
1416#endif
1417
1418/*
1419 * Only setdomainname; getdomainname can be implemented by calling
1420 * uname()
1421 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001422SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 int errno;
1425 char tmp[__NEW_UTS_LEN];
1426
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001427 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return -EPERM;
1429 if (len < 0 || len > __NEW_UTS_LEN)
1430 return -EINVAL;
1431
1432 down_write(&uts_sem);
1433 errno = -EFAULT;
1434 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001435 struct new_utsname *u = utsname();
1436
1437 memcpy(u->domainname, tmp, len);
1438 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001440 uts_proc_notify(UTS_PROC_DOMAINNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442 up_write(&uts_sem);
1443 return errno;
1444}
1445
Heiko Carstense48fbb62009-01-14 14:14:26 +01001446SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Jiri Slabyb9518342010-05-04 11:28:25 +02001448 struct rlimit value;
1449 int ret;
1450
1451 ret = do_prlimit(current, resource, NULL, &value);
1452 if (!ret)
1453 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1454
1455 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
1458#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1459
1460/*
1461 * Back compatibility for getrlimit. Needed for some apps.
1462 */
1463
Heiko Carstense48fbb62009-01-14 14:14:26 +01001464SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1465 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 struct rlimit x;
1468 if (resource >= RLIM_NLIMITS)
1469 return -EINVAL;
1470
1471 task_lock(current->group_leader);
1472 x = current->signal->rlim[resource];
1473 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001474 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001476 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 x.rlim_max = 0x7FFFFFFF;
1478 return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
1479}
1480
1481#endif
1482
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001483static inline bool rlim64_is_infinity(__u64 rlim64)
1484{
1485#if BITS_PER_LONG < 64
1486 return rlim64 >= ULONG_MAX;
1487#else
1488 return rlim64 == RLIM64_INFINITY;
1489#endif
1490}
1491
1492static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1493{
1494 if (rlim->rlim_cur == RLIM_INFINITY)
1495 rlim64->rlim_cur = RLIM64_INFINITY;
1496 else
1497 rlim64->rlim_cur = rlim->rlim_cur;
1498 if (rlim->rlim_max == RLIM_INFINITY)
1499 rlim64->rlim_max = RLIM64_INFINITY;
1500 else
1501 rlim64->rlim_max = rlim->rlim_max;
1502}
1503
1504static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1505{
1506 if (rlim64_is_infinity(rlim64->rlim_cur))
1507 rlim->rlim_cur = RLIM_INFINITY;
1508 else
1509 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1510 if (rlim64_is_infinity(rlim64->rlim_max))
1511 rlim->rlim_max = RLIM_INFINITY;
1512 else
1513 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1514}
1515
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001516/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001517int do_prlimit(struct task_struct *tsk, unsigned int resource,
1518 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Jiri Slaby5b415352010-03-24 16:11:29 +01001520 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001521 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 if (resource >= RLIM_NLIMITS)
1524 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001525 if (new_rlim) {
1526 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1527 return -EINVAL;
1528 if (resource == RLIMIT_NOFILE &&
1529 new_rlim->rlim_max > sysctl_nr_open)
1530 return -EPERM;
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001533 /* protect tsk->signal and tsk->sighand from disappearing */
1534 read_lock(&tasklist_lock);
1535 if (!tsk->sighand) {
1536 retval = -ESRCH;
1537 goto out;
1538 }
1539
Jiri Slaby5b415352010-03-24 16:11:29 +01001540 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001541 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001542 if (new_rlim) {
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001543 /* Keep the capable check against init_user_ns until
1544 cgroups can contain all limits */
Jiri Slaby5b415352010-03-24 16:11:29 +01001545 if (new_rlim->rlim_max > rlim->rlim_max &&
1546 !capable(CAP_SYS_RESOURCE))
1547 retval = -EPERM;
1548 if (!retval)
1549 retval = security_task_setrlimit(tsk->group_leader,
1550 resource, new_rlim);
1551 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1552 /*
1553 * The caller is asking for an immediate RLIMIT_CPU
1554 * expiry. But we use the zero value to mean "it was
1555 * never set". So let's cheat and make it one second
1556 * instead
1557 */
1558 new_rlim->rlim_cur = 1;
1559 }
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001560 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001561 if (!retval) {
1562 if (old_rlim)
1563 *old_rlim = *rlim;
1564 if (new_rlim)
1565 *rlim = *new_rlim;
1566 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001567 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Andrew Mortond3561f72006-03-24 03:18:36 -08001569 /*
1570 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1571 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1572 * very long-standing error, and fixing it now risks breakage of
1573 * applications, so we live with it
1574 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001575 if (!retval && new_rlim && resource == RLIMIT_CPU &&
1576 new_rlim->rlim_cur != RLIM_INFINITY)
1577 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001578out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001579 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001580 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001583/* rcu lock must be held */
1584static int check_prlimit_permission(struct task_struct *task)
1585{
1586 const struct cred *cred = current_cred(), *tcred;
1587
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001588 if (current == task)
1589 return 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001590
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001591 tcred = __task_cred(task);
Eric W. Biederman5af66202012-03-03 20:21:47 -08001592 if (uid_eq(cred->uid, tcred->euid) &&
1593 uid_eq(cred->uid, tcred->suid) &&
1594 uid_eq(cred->uid, tcred->uid) &&
1595 gid_eq(cred->gid, tcred->egid) &&
1596 gid_eq(cred->gid, tcred->sgid) &&
1597 gid_eq(cred->gid, tcred->gid))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001598 return 0;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -08001599 if (ns_capable(tcred->user_ns, CAP_SYS_RESOURCE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001600 return 0;
1601
1602 return -EPERM;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001603}
1604
1605SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1606 const struct rlimit64 __user *, new_rlim,
1607 struct rlimit64 __user *, old_rlim)
1608{
1609 struct rlimit64 old64, new64;
1610 struct rlimit old, new;
1611 struct task_struct *tsk;
1612 int ret;
1613
1614 if (new_rlim) {
1615 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1616 return -EFAULT;
1617 rlim64_to_rlim(&new64, &new);
1618 }
1619
1620 rcu_read_lock();
1621 tsk = pid ? find_task_by_vpid(pid) : current;
1622 if (!tsk) {
1623 rcu_read_unlock();
1624 return -ESRCH;
1625 }
1626 ret = check_prlimit_permission(tsk);
1627 if (ret) {
1628 rcu_read_unlock();
1629 return ret;
1630 }
1631 get_task_struct(tsk);
1632 rcu_read_unlock();
1633
1634 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1635 old_rlim ? &old : NULL);
1636
1637 if (!ret && old_rlim) {
1638 rlim_to_rlim64(&old, &old64);
1639 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1640 ret = -EFAULT;
1641 }
1642
1643 put_task_struct(tsk);
1644 return ret;
1645}
1646
Jiri Slaby7855c352009-08-26 23:45:34 +02001647SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1648{
1649 struct rlimit new_rlim;
1650
1651 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1652 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001653 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001654}
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656/*
1657 * It would make sense to put struct rusage in the task_struct,
1658 * except that would make the task_struct be *really big*. After
1659 * task_struct gets moved into malloc'ed memory, it would
1660 * make sense to do this. It will make moving the rest of the information
1661 * a lot simpler! (Which we're not doing right now because we're not
1662 * measuring them yet).
1663 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1665 * races with threads incrementing their own counters. But since word
1666 * reads are atomic, we either get new values or old values and we don't
1667 * care which for the sums. We always take the siglock to protect reading
1668 * the c* fields from p->signal from races with exit.c updating those
1669 * fields when reaping, so a sample either gets all the additions of a
1670 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001671 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001672 * Locking:
1673 * We need to take the siglock for CHILDEREN, SELF and BOTH
1674 * for the cases current multithreaded, non-current single threaded
1675 * non-current multithreaded. Thread traversal is now safe with
1676 * the siglock held.
1677 * Strictly speaking, we donot need to take the siglock if we are current and
1678 * single threaded, as no one else can take our signal_struct away, no one
1679 * else can reap the children to update signal->c* counters, and no one else
1680 * can race with the signal-> fields. If we do not take any lock, the
1681 * signal-> fields could be read out of order while another thread was just
1682 * exiting. So we should place a read memory barrier when we avoid the lock.
1683 * On the writer side, write memory barrier is implied in __exit_signal
1684 * as __exit_signal releases the siglock spinlock after updating the signal->
1685 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001686 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
1688
Frank Mayharf06febc2008-09-12 09:54:39 -07001689static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001690{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001691 r->ru_nvcsw += t->nvcsw;
1692 r->ru_nivcsw += t->nivcsw;
1693 r->ru_minflt += t->min_flt;
1694 r->ru_majflt += t->maj_flt;
1695 r->ru_inblock += task_io_get_inblock(t);
1696 r->ru_oublock += task_io_get_oublock(t);
1697}
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1700{
1701 struct task_struct *t;
1702 unsigned long flags;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001703 cputime_t tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001704 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 memset((char *) r, 0, sizeof *r);
Martin Schwidefsky64861632011-12-15 14:56:09 +01001707 utime = stime = 0;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001708
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001709 if (who == RUSAGE_THREAD) {
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +01001710 task_cputime_adjusted(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001711 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001712 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001713 goto out;
1714 }
1715
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001716 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001717 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 switch (who) {
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001720 case RUSAGE_BOTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 case RUSAGE_CHILDREN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 utime = p->signal->cutime;
1723 stime = p->signal->cstime;
1724 r->ru_nvcsw = p->signal->cnvcsw;
1725 r->ru_nivcsw = p->signal->cnivcsw;
1726 r->ru_minflt = p->signal->cmin_flt;
1727 r->ru_majflt = p->signal->cmaj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001728 r->ru_inblock = p->signal->cinblock;
1729 r->ru_oublock = p->signal->coublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001730 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001731
1732 if (who == RUSAGE_CHILDREN)
1733 break;
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 case RUSAGE_SELF:
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +01001736 thread_group_cputime_adjusted(p, &tgutime, &tgstime);
Martin Schwidefsky64861632011-12-15 14:56:09 +01001737 utime += tgutime;
1738 stime += tgstime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 r->ru_nvcsw += p->signal->nvcsw;
1740 r->ru_nivcsw += p->signal->nivcsw;
1741 r->ru_minflt += p->signal->min_flt;
1742 r->ru_majflt += p->signal->maj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001743 r->ru_inblock += p->signal->inblock;
1744 r->ru_oublock += p->signal->oublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001745 if (maxrss < p->signal->maxrss)
1746 maxrss = p->signal->maxrss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 t = p;
1748 do {
Frank Mayharf06febc2008-09-12 09:54:39 -07001749 accumulate_thread_rusage(t, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 t = next_thread(t);
1751 } while (t != p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 default:
1755 BUG();
1756 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001757 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001758
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001759out:
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001760 cputime_to_timeval(utime, &r->ru_utime);
1761 cputime_to_timeval(stime, &r->ru_stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001762
1763 if (who != RUSAGE_CHILDREN) {
1764 struct mm_struct *mm = get_task_mm(p);
1765 if (mm) {
1766 setmax_mm_hiwater_rss(&maxrss, mm);
1767 mmput(mm);
1768 }
1769 }
1770 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
1773int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1774{
1775 struct rusage r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 k_getrusage(p, who, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1778}
1779
Heiko Carstense48fbb62009-01-14 14:14:26 +01001780SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001782 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1783 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return -EINVAL;
1785 return getrusage(current, who, ru);
1786}
1787
Heiko Carstense48fbb62009-01-14 14:14:26 +01001788SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
1790 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1791 return mask;
1792}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001793
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001794#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001795static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd)
1796{
Al Viro2903ff02012-08-28 12:52:22 -04001797 struct fd exe;
Al Viro496ad9a2013-01-23 17:07:38 -05001798 struct inode *inode;
Al Viro2903ff02012-08-28 12:52:22 -04001799 int err;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001800
Al Viro2903ff02012-08-28 12:52:22 -04001801 exe = fdget(fd);
1802 if (!exe.file)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001803 return -EBADF;
1804
Al Viro496ad9a2013-01-23 17:07:38 -05001805 inode = file_inode(exe.file);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001806
1807 /*
1808 * Because the original mm->exe_file points to executable file, make
1809 * sure that this one is executable as well, to avoid breaking an
1810 * overall picture.
1811 */
1812 err = -EACCES;
Al Viro496ad9a2013-01-23 17:07:38 -05001813 if (!S_ISREG(inode->i_mode) ||
Al Viro2903ff02012-08-28 12:52:22 -04001814 exe.file->f_path.mnt->mnt_flags & MNT_NOEXEC)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001815 goto exit;
1816
Al Viro496ad9a2013-01-23 17:07:38 -05001817 err = inode_permission(inode, MAY_EXEC);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001818 if (err)
1819 goto exit;
1820
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001821 down_write(&mm->mmap_sem);
1822
1823 /*
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001824 * Forbid mm->exe_file change if old file still mapped.
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001825 */
1826 err = -EBUSY;
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001827 if (mm->exe_file) {
1828 struct vm_area_struct *vma;
1829
1830 for (vma = mm->mmap; vma; vma = vma->vm_next)
1831 if (vma->vm_file &&
1832 path_equal(&vma->vm_file->f_path,
1833 &mm->exe_file->f_path))
1834 goto exit_unlock;
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001835 }
1836
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001837 /*
1838 * The symlink can be changed only once, just to disallow arbitrary
1839 * transitions malicious software might bring in. This means one
1840 * could make a snapshot over all processes running and monitor
1841 * /proc/pid/exe changes to notice unusual activity if needed.
1842 */
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001843 err = -EPERM;
1844 if (test_and_set_bit(MMF_EXE_FILE_CHANGED, &mm->flags))
1845 goto exit_unlock;
1846
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001847 err = 0;
Al Viro2903ff02012-08-28 12:52:22 -04001848 set_mm_exe_file(mm, exe.file); /* this grabs a reference to exe.file */
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001849exit_unlock:
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001850 up_write(&mm->mmap_sem);
1851
1852exit:
Al Viro2903ff02012-08-28 12:52:22 -04001853 fdput(exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001854 return err;
1855}
1856
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001857static int prctl_set_mm(int opt, unsigned long addr,
1858 unsigned long arg4, unsigned long arg5)
1859{
1860 unsigned long rlim = rlimit(RLIMIT_DATA);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001861 struct mm_struct *mm = current->mm;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001862 struct vm_area_struct *vma;
1863 int error;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001864
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001865 if (arg5 || (arg4 && opt != PR_SET_MM_AUXV))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001866 return -EINVAL;
1867
Cyrill Gorcunov79f07132012-03-15 15:17:10 -07001868 if (!capable(CAP_SYS_RESOURCE))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001869 return -EPERM;
1870
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001871 if (opt == PR_SET_MM_EXE_FILE)
1872 return prctl_set_mm_exe_file(mm, (unsigned int)addr);
1873
Cyrill Gorcunov1ad75b92012-06-07 14:21:11 -07001874 if (addr >= TASK_SIZE || addr < mmap_min_addr)
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001875 return -EINVAL;
1876
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001877 error = -EINVAL;
1878
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001879 down_read(&mm->mmap_sem);
1880 vma = find_vma(mm, addr);
1881
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001882 switch (opt) {
1883 case PR_SET_MM_START_CODE:
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001884 mm->start_code = addr;
1885 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001886 case PR_SET_MM_END_CODE:
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001887 mm->end_code = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001888 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001889 case PR_SET_MM_START_DATA:
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001890 mm->start_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001891 break;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001892 case PR_SET_MM_END_DATA:
1893 mm->end_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001894 break;
1895
1896 case PR_SET_MM_START_BRK:
1897 if (addr <= mm->end_data)
1898 goto out;
1899
1900 if (rlim < RLIM_INFINITY &&
1901 (mm->brk - addr) +
1902 (mm->end_data - mm->start_data) > rlim)
1903 goto out;
1904
1905 mm->start_brk = addr;
1906 break;
1907
1908 case PR_SET_MM_BRK:
1909 if (addr <= mm->end_data)
1910 goto out;
1911
1912 if (rlim < RLIM_INFINITY &&
1913 (addr - mm->start_brk) +
1914 (mm->end_data - mm->start_data) > rlim)
1915 goto out;
1916
1917 mm->brk = addr;
1918 break;
1919
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001920 /*
1921 * If command line arguments and environment
1922 * are placed somewhere else on stack, we can
1923 * set them up here, ARG_START/END to setup
1924 * command line argumets and ENV_START/END
1925 * for environment.
1926 */
1927 case PR_SET_MM_START_STACK:
1928 case PR_SET_MM_ARG_START:
1929 case PR_SET_MM_ARG_END:
1930 case PR_SET_MM_ENV_START:
1931 case PR_SET_MM_ENV_END:
1932 if (!vma) {
1933 error = -EFAULT;
1934 goto out;
1935 }
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001936 if (opt == PR_SET_MM_START_STACK)
1937 mm->start_stack = addr;
1938 else if (opt == PR_SET_MM_ARG_START)
1939 mm->arg_start = addr;
1940 else if (opt == PR_SET_MM_ARG_END)
1941 mm->arg_end = addr;
1942 else if (opt == PR_SET_MM_ENV_START)
1943 mm->env_start = addr;
1944 else if (opt == PR_SET_MM_ENV_END)
1945 mm->env_end = addr;
1946 break;
1947
1948 /*
1949 * This doesn't move auxiliary vector itself
1950 * since it's pinned to mm_struct, but allow
1951 * to fill vector with new values. It's up
1952 * to a caller to provide sane values here
1953 * otherwise user space tools which use this
1954 * vector might be unhappy.
1955 */
1956 case PR_SET_MM_AUXV: {
1957 unsigned long user_auxv[AT_VECTOR_SIZE];
1958
1959 if (arg4 > sizeof(user_auxv))
1960 goto out;
1961 up_read(&mm->mmap_sem);
1962
1963 if (copy_from_user(user_auxv, (const void __user *)addr, arg4))
1964 return -EFAULT;
1965
1966 /* Make sure the last entry is always AT_NULL */
1967 user_auxv[AT_VECTOR_SIZE - 2] = 0;
1968 user_auxv[AT_VECTOR_SIZE - 1] = 0;
1969
1970 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1971
1972 task_lock(current);
1973 memcpy(mm->saved_auxv, user_auxv, arg4);
1974 task_unlock(current);
1975
1976 return 0;
1977 }
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001978 default:
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001979 goto out;
1980 }
1981
1982 error = 0;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001983out:
1984 up_read(&mm->mmap_sem);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001985 return error;
1986}
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07001987
1988static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
1989{
1990 return put_user(me->clear_child_tid, tid_addr);
1991}
1992
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001993#else /* CONFIG_CHECKPOINT_RESTORE */
1994static int prctl_set_mm(int opt, unsigned long addr,
1995 unsigned long arg4, unsigned long arg5)
1996{
1997 return -EINVAL;
1998}
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07001999static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2000{
2001 return -EINVAL;
2002}
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002003#endif
2004
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01002005SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
2006 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
David Howellsb6dff3e2008-11-14 10:39:16 +11002008 struct task_struct *me = current;
2009 unsigned char comm[sizeof(me->comm)];
2010 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
David Howellsd84f4f92008-11-14 10:39:23 +11002012 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
2013 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return error;
2015
David Howellsd84f4f92008-11-14 10:39:23 +11002016 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 switch (option) {
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002018 case PR_SET_PDEATHSIG:
2019 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 error = -EINVAL;
2021 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002022 }
2023 me->pdeath_signal = arg2;
2024 break;
2025 case PR_GET_PDEATHSIG:
2026 error = put_user(me->pdeath_signal, (int __user *)arg2);
2027 break;
2028 case PR_GET_DUMPABLE:
2029 error = get_dumpable(me->mm);
2030 break;
2031 case PR_SET_DUMPABLE:
2032 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) {
2033 error = -EINVAL;
2034 break;
2035 }
2036 set_dumpable(me->mm, arg2);
2037 break;
2038
2039 case PR_SET_UNALIGN:
2040 error = SET_UNALIGN_CTL(me, arg2);
2041 break;
2042 case PR_GET_UNALIGN:
2043 error = GET_UNALIGN_CTL(me, arg2);
2044 break;
2045 case PR_SET_FPEMU:
2046 error = SET_FPEMU_CTL(me, arg2);
2047 break;
2048 case PR_GET_FPEMU:
2049 error = GET_FPEMU_CTL(me, arg2);
2050 break;
2051 case PR_SET_FPEXC:
2052 error = SET_FPEXC_CTL(me, arg2);
2053 break;
2054 case PR_GET_FPEXC:
2055 error = GET_FPEXC_CTL(me, arg2);
2056 break;
2057 case PR_GET_TIMING:
2058 error = PR_TIMING_STATISTICAL;
2059 break;
2060 case PR_SET_TIMING:
2061 if (arg2 != PR_TIMING_STATISTICAL)
2062 error = -EINVAL;
2063 break;
2064 case PR_SET_NAME:
2065 comm[sizeof(me->comm) - 1] = 0;
2066 if (strncpy_from_user(comm, (char __user *)arg2,
2067 sizeof(me->comm) - 1) < 0)
2068 return -EFAULT;
2069 set_task_comm(me, comm);
2070 proc_comm_connector(me);
2071 break;
2072 case PR_GET_NAME:
2073 get_task_comm(comm, me);
2074 if (copy_to_user((char __user *)arg2, comm, sizeof(comm)))
2075 return -EFAULT;
2076 break;
2077 case PR_GET_ENDIAN:
2078 error = GET_ENDIAN(me, arg2);
2079 break;
2080 case PR_SET_ENDIAN:
2081 error = SET_ENDIAN(me, arg2);
2082 break;
2083 case PR_GET_SECCOMP:
2084 error = prctl_get_seccomp();
2085 break;
2086 case PR_SET_SECCOMP:
2087 error = prctl_set_seccomp(arg2, (char __user *)arg3);
2088 break;
2089 case PR_GET_TSC:
2090 error = GET_TSC_CTL(arg2);
2091 break;
2092 case PR_SET_TSC:
2093 error = SET_TSC_CTL(arg2);
2094 break;
2095 case PR_TASK_PERF_EVENTS_DISABLE:
2096 error = perf_event_task_disable();
2097 break;
2098 case PR_TASK_PERF_EVENTS_ENABLE:
2099 error = perf_event_task_enable();
2100 break;
2101 case PR_GET_TIMERSLACK:
2102 error = current->timer_slack_ns;
2103 break;
2104 case PR_SET_TIMERSLACK:
2105 if (arg2 <= 0)
2106 current->timer_slack_ns =
2107 current->default_timer_slack_ns;
2108 else
2109 current->timer_slack_ns = arg2;
2110 break;
2111 case PR_MCE_KILL:
2112 if (arg4 | arg5)
2113 return -EINVAL;
2114 switch (arg2) {
2115 case PR_MCE_KILL_CLEAR:
2116 if (arg3 != 0)
2117 return -EINVAL;
2118 current->flags &= ~PF_MCE_PROCESS;
2119 break;
2120 case PR_MCE_KILL_SET:
2121 current->flags |= PF_MCE_PROCESS;
2122 if (arg3 == PR_MCE_KILL_EARLY)
2123 current->flags |= PF_MCE_EARLY;
2124 else if (arg3 == PR_MCE_KILL_LATE)
2125 current->flags &= ~PF_MCE_EARLY;
2126 else if (arg3 == PR_MCE_KILL_DEFAULT)
2127 current->flags &=
2128 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
2129 else
2130 return -EINVAL;
2131 break;
2132 default:
2133 return -EINVAL;
2134 }
2135 break;
2136 case PR_MCE_KILL_GET:
2137 if (arg2 | arg3 | arg4 | arg5)
2138 return -EINVAL;
2139 if (current->flags & PF_MCE_PROCESS)
2140 error = (current->flags & PF_MCE_EARLY) ?
2141 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
2142 else
2143 error = PR_MCE_KILL_DEFAULT;
2144 break;
2145 case PR_SET_MM:
2146 error = prctl_set_mm(arg2, arg3, arg4, arg5);
2147 break;
2148 case PR_GET_TID_ADDRESS:
2149 error = prctl_get_tid_address(me, (int __user **)arg2);
2150 break;
2151 case PR_SET_CHILD_SUBREAPER:
2152 me->signal->is_child_subreaper = !!arg2;
2153 break;
2154 case PR_GET_CHILD_SUBREAPER:
2155 error = put_user(me->signal->is_child_subreaper,
2156 (int __user *)arg2);
2157 break;
2158 case PR_SET_NO_NEW_PRIVS:
2159 if (arg2 != 1 || arg3 || arg4 || arg5)
2160 return -EINVAL;
2161
2162 current->no_new_privs = 1;
2163 break;
2164 case PR_GET_NO_NEW_PRIVS:
2165 if (arg2 || arg3 || arg4 || arg5)
2166 return -EINVAL;
2167 return current->no_new_privs ? 1 : 0;
2168 default:
2169 error = -EINVAL;
2170 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
2172 return error;
2173}
Andi Kleen3cfc3482006-09-26 10:52:28 +02002174
Heiko Carstens836f92a2009-01-14 14:14:33 +01002175SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
2176 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02002177{
2178 int err = 0;
2179 int cpu = raw_smp_processor_id();
2180 if (cpup)
2181 err |= put_user(cpu, cpup);
2182 if (nodep)
2183 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02002184 return err ? -EFAULT : 0;
2185}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002186
2187char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
2188
Oleg Nesterov2ca067e2013-03-22 15:04:41 -07002189static int __orderly_poweroff(bool force)
Andrew Mortonb57b44a2012-07-30 14:40:03 -07002190{
Andrew Mortonb57b44a2012-07-30 14:40:03 -07002191 char **argv;
2192 static char *envp[] = {
2193 "HOME=/",
2194 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
2195 NULL
2196 };
2197 int ret;
2198
Oleg Nesterov2ca067e2013-03-22 15:04:41 -07002199 argv = argv_split(GFP_KERNEL, poweroff_cmd, NULL);
2200 if (argv) {
2201 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
2202 argv_free(argv);
2203 } else {
Andrew Mortonb57b44a2012-07-30 14:40:03 -07002204 printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
Oleg Nesterov2ca067e2013-03-22 15:04:41 -07002205 __func__, poweroff_cmd);
2206 ret = -ENOMEM;
Andrew Mortonb57b44a2012-07-30 14:40:03 -07002207 }
2208
Andrew Mortonb57b44a2012-07-30 14:40:03 -07002209 if (ret && force) {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002210 printk(KERN_WARNING "Failed to start orderly shutdown: "
Oleg Nesterov2ca067e2013-03-22 15:04:41 -07002211 "forcing the issue\n");
Andrew Mortonb57b44a2012-07-30 14:40:03 -07002212 /*
2213 * I guess this should try to kick off some daemon to sync and
2214 * poweroff asap. Or not even bother syncing if we're doing an
2215 * emergency shutdown?
2216 */
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002217 emergency_sync();
2218 kernel_power_off();
2219 }
2220
2221 return ret;
2222}
Oleg Nesterov2ca067e2013-03-22 15:04:41 -07002223
2224static bool poweroff_force;
2225
2226static void poweroff_work_func(struct work_struct *work)
2227{
2228 __orderly_poweroff(poweroff_force);
2229}
2230
2231static DECLARE_WORK(poweroff_work, poweroff_work_func);
2232
2233/**
2234 * orderly_poweroff - Trigger an orderly system poweroff
2235 * @force: force poweroff if command execution fails
2236 *
2237 * This may be called from any context to trigger a system shutdown.
2238 * If the orderly shutdown fails, it will force an immediate shutdown.
2239 */
2240int orderly_poweroff(bool force)
2241{
2242 if (force) /* do not override the pending "true" */
2243 poweroff_force = true;
2244 schedule_work(&poweroff_work);
2245 return 0;
2246}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002247EXPORT_SYMBOL_GPL(orderly_poweroff);