blob: a101ba36c4441f5eca898b1da0d2ad9b5b2f51a5 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
8#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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020015#include <linux/perf_event.h>
Daniel Walker3e88c552007-05-10 22:22:53 -070016#include <linux/resource.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070017#include <linux/kernel.h>
18#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/workqueue.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080020#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/device.h>
22#include <linux/key.h>
23#include <linux/times.h>
24#include <linux/posix-timers.h>
25#include <linux/security.h>
26#include <linux/dcookies.h>
27#include <linux/suspend.h>
28#include <linux/tty.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070029#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080030#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020031#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070032#include <linux/task_io_accounting_ops.h>
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070033#include <linux/seccomp.h>
Mark Lord40477272007-10-01 01:20:10 -070034#include <linux/cpu.h>
Christoph Hellwige28cbf22010-03-10 15:21:19 -080035#include <linux/personality.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080036#include <linux/ptrace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040037#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010039#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <linux/compat.h>
42#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080043#include <linux/kprobes.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070044#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Seiji Aguchi04c68622011-01-12 16:59:30 -080046#include <linux/kmsg_dump.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/uaccess.h>
49#include <asm/io.h>
50#include <asm/unistd.h>
51
52#ifndef SET_UNALIGN_CTL
53# define SET_UNALIGN_CTL(a,b) (-EINVAL)
54#endif
55#ifndef GET_UNALIGN_CTL
56# define GET_UNALIGN_CTL(a,b) (-EINVAL)
57#endif
58#ifndef SET_FPEMU_CTL
59# define SET_FPEMU_CTL(a,b) (-EINVAL)
60#endif
61#ifndef GET_FPEMU_CTL
62# define GET_FPEMU_CTL(a,b) (-EINVAL)
63#endif
64#ifndef SET_FPEXC_CTL
65# define SET_FPEXC_CTL(a,b) (-EINVAL)
66#endif
67#ifndef GET_FPEXC_CTL
68# define GET_FPEXC_CTL(a,b) (-EINVAL)
69#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100070#ifndef GET_ENDIAN
71# define GET_ENDIAN(a,b) (-EINVAL)
72#endif
73#ifndef SET_ENDIAN
74# define SET_ENDIAN(a,b) (-EINVAL)
75#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +020076#ifndef GET_TSC_CTL
77# define GET_TSC_CTL(a) (-EINVAL)
78#endif
79#ifndef SET_TSC_CTL
80# define SET_TSC_CTL(a) (-EINVAL)
81#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/*
84 * this is where the system-wide overflow UID and GID are defined, for
85 * architectures that now have 32-bit UID/GID but didn't in the past
86 */
87
88int overflowuid = DEFAULT_OVERFLOWUID;
89int overflowgid = DEFAULT_OVERFLOWGID;
90
91#ifdef CONFIG_UID16
92EXPORT_SYMBOL(overflowuid);
93EXPORT_SYMBOL(overflowgid);
94#endif
95
96/*
97 * the same as above, but for filesystems which can only store a 16-bit
98 * UID and GID. as such, this is needed on all architectures
99 */
100
101int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
102int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
103
104EXPORT_SYMBOL(fs_overflowuid);
105EXPORT_SYMBOL(fs_overflowgid);
106
107/*
108 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
109 */
110
111int C_A_D = 1;
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700112struct pid *cad_pid;
113EXPORT_SYMBOL(cad_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/*
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700116 * If set, this is used for preparing the system to power off.
117 */
118
119void (*pm_power_off_prepare)(void);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700120
David Howellsc69e8d92008-11-14 10:39:19 +1100121/*
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700122 * Returns true if current's euid is same as p's uid or euid,
123 * or has CAP_SYS_NICE to p's user_ns.
124 *
125 * Called with rcu_read_lock, creds are safe
126 */
127static bool set_one_prio_perm(struct task_struct *p)
128{
129 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
130
131 if (pcred->user->user_ns == cred->user->user_ns &&
132 (pcred->uid == cred->euid ||
133 pcred->euid == cred->euid))
134 return true;
135 if (ns_capable(pcred->user->user_ns, CAP_SYS_NICE))
136 return true;
137 return false;
138}
139
140/*
David Howellsc69e8d92008-11-14 10:39:19 +1100141 * set the priority of a task
142 * - the caller must hold the RCU read lock
143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static int set_one_prio(struct task_struct *p, int niceval, int error)
145{
146 int no_nice;
147
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700148 if (!set_one_prio_perm(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 error = -EPERM;
150 goto out;
151 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700152 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 error = -EACCES;
154 goto out;
155 }
156 no_nice = security_task_setnice(p, niceval);
157 if (no_nice) {
158 error = no_nice;
159 goto out;
160 }
161 if (error == -ESRCH)
162 error = 0;
163 set_user_nice(p, niceval);
164out:
165 return error;
166}
167
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100168SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct task_struct *g, *p;
171 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100172 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800174 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Daniel Walker3e88c552007-05-10 22:22:53 -0700176 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 goto out;
178
179 /* normalize: avoid signed division (rounding problems) */
180 error = -ESRCH;
181 if (niceval < -20)
182 niceval = -20;
183 if (niceval > 19)
184 niceval = 19;
185
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000186 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 read_lock(&tasklist_lock);
188 switch (which) {
189 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800190 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700191 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800192 else
193 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (p)
195 error = set_one_prio(p, niceval, error);
196 break;
197 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800198 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700199 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800200 else
201 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700202 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 error = set_one_prio(p, niceval, error);
Ken Chen2d70b682008-08-20 14:09:17 -0700204 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 break;
206 case PRIO_USER:
David Howellsd84f4f92008-11-14 10:39:23 +1100207 user = (struct user_struct *) cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (!who)
David Howells86a264a2008-11-14 10:39:18 +1100209 who = cred->uid;
210 else if ((who != cred->uid) &&
211 !(user = find_user(who)))
212 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800214 do_each_thread(g, p) {
David Howells86a264a2008-11-14 10:39:18 +1100215 if (__task_cred(p)->uid == who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 error = set_one_prio(p, niceval, error);
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800217 } while_each_thread(g, p);
David Howells86a264a2008-11-14 10:39:18 +1100218 if (who != cred->uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 free_uid(user); /* For find_user() */
220 break;
221 }
222out_unlock:
223 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000224 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225out:
226 return error;
227}
228
229/*
230 * Ugh. To avoid negative return values, "getpriority()" will
231 * not return the normal nice-value, but a negated value that
232 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
233 * to stay compatible.
234 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100235SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct task_struct *g, *p;
238 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100239 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800241 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Daniel Walker3e88c552007-05-10 22:22:53 -0700243 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -EINVAL;
245
Tetsuo Handa70118832010-02-22 12:44:16 -0800246 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 read_lock(&tasklist_lock);
248 switch (which) {
249 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800250 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700251 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800252 else
253 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (p) {
255 niceval = 20 - task_nice(p);
256 if (niceval > retval)
257 retval = niceval;
258 }
259 break;
260 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800261 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700262 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800263 else
264 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700265 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 niceval = 20 - task_nice(p);
267 if (niceval > retval)
268 retval = niceval;
Ken Chen2d70b682008-08-20 14:09:17 -0700269 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 break;
271 case PRIO_USER:
David Howells86a264a2008-11-14 10:39:18 +1100272 user = (struct user_struct *) cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!who)
David Howells86a264a2008-11-14 10:39:18 +1100274 who = cred->uid;
275 else if ((who != cred->uid) &&
276 !(user = find_user(who)))
277 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800279 do_each_thread(g, p) {
David Howells86a264a2008-11-14 10:39:18 +1100280 if (__task_cred(p)->uid == who) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 niceval = 20 - task_nice(p);
282 if (niceval > retval)
283 retval = niceval;
284 }
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800285 } while_each_thread(g, p);
David Howells86a264a2008-11-14 10:39:18 +1100286 if (who != cred->uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 free_uid(user); /* for find_user() */
288 break;
289 }
290out_unlock:
291 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800292 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 return retval;
295}
296
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700297/**
298 * emergency_restart - reboot the system
299 *
300 * Without shutting down any hardware or taking any locks
301 * reboot the system. This is called when we know we are in
302 * trouble so this is our best effort to reboot. This is
303 * safe to call in interrupt context.
304 */
Eric W. Biederman7c903472005-07-26 11:29:55 -0600305void emergency_restart(void)
306{
Seiji Aguchi04c68622011-01-12 16:59:30 -0800307 kmsg_dump(KMSG_DUMP_EMERG);
Eric W. Biederman7c903472005-07-26 11:29:55 -0600308 machine_emergency_restart();
309}
310EXPORT_SYMBOL_GPL(emergency_restart);
311
Huang Yingca195b72008-08-15 00:40:24 -0700312void kernel_restart_prepare(char *cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600313{
Alan Sterne041c682006-03-27 01:16:30 -0800314 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600315 system_state = SYSTEM_RESTART;
Kay Sieversb50fa7c2011-05-05 13:32:05 +0200316 usermodehelper_disable();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600317 device_shutdown();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100318 syscore_shutdown();
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700319}
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800320
321/**
Amerigo Wangc5f41752011-07-25 17:13:10 -0700322 * register_reboot_notifier - Register function to be called at reboot time
323 * @nb: Info about notifier function to be called
324 *
325 * Registers a function with the list of functions
326 * to be called at reboot time.
327 *
328 * Currently always returns zero, as blocking_notifier_chain_register()
329 * always returns zero.
330 */
331int register_reboot_notifier(struct notifier_block *nb)
332{
333 return blocking_notifier_chain_register(&reboot_notifier_list, nb);
334}
335EXPORT_SYMBOL(register_reboot_notifier);
336
337/**
338 * unregister_reboot_notifier - Unregister previously registered reboot notifier
339 * @nb: Hook to be unregistered
340 *
341 * Unregisters a previously registered reboot
342 * notifier function.
343 *
344 * Returns zero on success, or %-ENOENT on failure.
345 */
346int unregister_reboot_notifier(struct notifier_block *nb)
347{
348 return blocking_notifier_chain_unregister(&reboot_notifier_list, nb);
349}
350EXPORT_SYMBOL(unregister_reboot_notifier);
351
352/**
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800353 * kernel_restart - reboot the system
354 * @cmd: pointer to buffer containing command to execute for restart
Randy Dunlapb8887e62005-11-07 01:01:07 -0800355 * or %NULL
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800356 *
357 * Shutdown everything and perform a clean reboot.
358 * This is not safe to call in interrupt context.
359 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700360void kernel_restart(char *cmd)
361{
362 kernel_restart_prepare(cmd);
Cal Peake756184b2006-09-30 23:27:24 -0700363 if (!cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600364 printk(KERN_EMERG "Restarting system.\n");
Cal Peake756184b2006-09-30 23:27:24 -0700365 else
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600366 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
Seiji Aguchi04c68622011-01-12 16:59:30 -0800367 kmsg_dump(KMSG_DUMP_RESTART);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600368 machine_restart(cmd);
369}
370EXPORT_SYMBOL_GPL(kernel_restart);
371
Adrian Bunk4ef72292008-02-04 22:30:06 -0800372static void kernel_shutdown_prepare(enum system_states state)
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500373{
Alan Sterne041c682006-03-27 01:16:30 -0800374 blocking_notifier_call_chain(&reboot_notifier_list,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500375 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
376 system_state = state;
Kay Sieversb50fa7c2011-05-05 13:32:05 +0200377 usermodehelper_disable();
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500378 device_shutdown();
379}
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700380/**
381 * kernel_halt - halt the system
382 *
383 * Shutdown everything and perform a clean system halt.
384 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700385void kernel_halt(void)
386{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500387 kernel_shutdown_prepare(SYSTEM_HALT);
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100388 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600389 printk(KERN_EMERG "System halted.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800390 kmsg_dump(KMSG_DUMP_HALT);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600391 machine_halt();
392}
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500393
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600394EXPORT_SYMBOL_GPL(kernel_halt);
395
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700396/**
397 * kernel_power_off - power_off the system
398 *
399 * Shutdown everything and perform a clean system power_off.
400 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700401void kernel_power_off(void)
402{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500403 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700404 if (pm_power_off_prepare)
405 pm_power_off_prepare();
Mark Lord40477272007-10-01 01:20:10 -0700406 disable_nonboot_cpus();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100407 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600408 printk(KERN_EMERG "Power down.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800409 kmsg_dump(KMSG_DUMP_POWEROFF);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600410 machine_power_off();
411}
412EXPORT_SYMBOL_GPL(kernel_power_off);
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200413
414static DEFINE_MUTEX(reboot_mutex);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * Reboot system call: for obvious reasons only root may call it,
418 * and even root needs to set up some magic numbers in the registers
419 * so that some mistake won't make this reboot the whole machine.
420 * You can also set the meaning of the ctrl-alt-del-key here.
421 *
422 * reboot doesn't sync: do that yourself before calling this.
423 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100424SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd,
425 void __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 char buffer[256];
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700428 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /* We only trust the superuser with rebooting the system. */
431 if (!capable(CAP_SYS_BOOT))
432 return -EPERM;
433
434 /* For safety, we require "magic" arguments. */
435 if (magic1 != LINUX_REBOOT_MAGIC1 ||
436 (magic2 != LINUX_REBOOT_MAGIC2 &&
437 magic2 != LINUX_REBOOT_MAGIC2A &&
438 magic2 != LINUX_REBOOT_MAGIC2B &&
439 magic2 != LINUX_REBOOT_MAGIC2C))
440 return -EINVAL;
441
Eric W. Biederman5e382912006-01-08 01:03:46 -0800442 /* Instead of trying to make the power_off code look like
443 * halt when pm_power_off is not set do it the easy way.
444 */
445 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
446 cmd = LINUX_REBOOT_CMD_HALT;
447
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200448 mutex_lock(&reboot_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 switch (cmd) {
450 case LINUX_REBOOT_CMD_RESTART:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600451 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453
454 case LINUX_REBOOT_CMD_CAD_ON:
455 C_A_D = 1;
456 break;
457
458 case LINUX_REBOOT_CMD_CAD_OFF:
459 C_A_D = 0;
460 break;
461
462 case LINUX_REBOOT_CMD_HALT:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600463 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 do_exit(0);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700465 panic("cannot halt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 case LINUX_REBOOT_CMD_POWER_OFF:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600468 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 do_exit(0);
470 break;
471
472 case LINUX_REBOOT_CMD_RESTART2:
473 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200474 ret = -EFAULT;
475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 buffer[sizeof(buffer) - 1] = '\0';
478
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600479 kernel_restart(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 break;
481
Huang Ying3ab83522008-07-25 19:45:07 -0700482#ifdef CONFIG_KEXEC
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700483 case LINUX_REBOOT_CMD_KEXEC:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700484 ret = kernel_kexec();
485 break;
Huang Ying3ab83522008-07-25 19:45:07 -0700486#endif
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600487
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200488#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 case LINUX_REBOOT_CMD_SW_SUSPEND:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700490 ret = hibernate();
491 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492#endif
493
494 default:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700495 ret = -EINVAL;
496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200498 mutex_unlock(&reboot_mutex);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700499 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
David Howells65f27f32006-11-22 14:55:48 +0000502static void deferred_cad(struct work_struct *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Eric W. Biedermanabcd9e52005-07-26 11:27:34 -0600504 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/*
508 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
509 * As it's called within an interrupt, it may NOT sync: the only choice
510 * is whether to reboot at once, or just ignore the ctrl-alt-del.
511 */
512void ctrl_alt_del(void)
513{
David Howells65f27f32006-11-22 14:55:48 +0000514 static DECLARE_WORK(cad_work, deferred_cad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (C_A_D)
517 schedule_work(&cad_work);
518 else
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700519 kill_cad_pid(SIGINT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/*
523 * Unprivileged users may change the real gid to the effective gid
524 * or vice versa. (BSD-style)
525 *
526 * If you set the real gid at all, or set the effective gid to a value not
527 * equal to the real gid, then the saved gid is set to the new effective gid.
528 *
529 * This makes it possible for a setgid program to completely drop its
530 * privileges, which is often a useful assertion to make when you are doing
531 * a security audit over a program.
532 *
533 * The general idea is that a program which uses just setregid() will be
534 * 100% compatible with BSD. A program which uses just setgid() will be
535 * 100% compatible with POSIX with saved IDs.
536 *
537 * SMP: There are not races, the GIDs are checked only by filesystem
538 * operations (as far as semantic preservation is concerned).
539 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100540SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
David Howellsd84f4f92008-11-14 10:39:23 +1100542 const struct cred *old;
543 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int retval;
545
David Howellsd84f4f92008-11-14 10:39:23 +1100546 new = prepare_creds();
547 if (!new)
548 return -ENOMEM;
549 old = current_cred();
550
David Howellsd84f4f92008-11-14 10:39:23 +1100551 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (rgid != (gid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100553 if (old->gid == rgid ||
554 old->egid == rgid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700555 nsown_capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100556 new->gid = rgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 else
David Howellsd84f4f92008-11-14 10:39:23 +1100558 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560 if (egid != (gid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100561 if (old->gid == egid ||
562 old->egid == egid ||
563 old->sgid == egid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700564 nsown_capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100565 new->egid = egid;
Cal Peake756184b2006-09-30 23:27:24 -0700566 else
David Howellsd84f4f92008-11-14 10:39:23 +1100567 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
David Howellsd84f4f92008-11-14 10:39:23 +1100569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (rgid != (gid_t) -1 ||
David Howellsd84f4f92008-11-14 10:39:23 +1100571 (egid != (gid_t) -1 && egid != old->gid))
572 new->sgid = new->egid;
573 new->fsgid = new->egid;
574
575 return commit_creds(new);
576
577error:
578 abort_creds(new);
579 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582/*
583 * setgid() is implemented like SysV w/ SAVED_IDS
584 *
585 * SMP: Same implicit races as above.
586 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100587SYSCALL_DEFINE1(setgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
David Howellsd84f4f92008-11-14 10:39:23 +1100589 const struct cred *old;
590 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int retval;
592
David Howellsd84f4f92008-11-14 10:39:23 +1100593 new = prepare_creds();
594 if (!new)
595 return -ENOMEM;
596 old = current_cred();
597
David Howellsd84f4f92008-11-14 10:39:23 +1100598 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700599 if (nsown_capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100600 new->gid = new->egid = new->sgid = new->fsgid = gid;
601 else if (gid == old->gid || gid == old->sgid)
602 new->egid = new->fsgid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 else
David Howellsd84f4f92008-11-14 10:39:23 +1100604 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
David Howellsd84f4f92008-11-14 10:39:23 +1100606 return commit_creds(new);
607
608error:
609 abort_creds(new);
610 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
Dhaval Giani54e99122009-02-27 15:13:54 +0530612
David Howellsd84f4f92008-11-14 10:39:23 +1100613/*
614 * change the user struct in a credentials set to match the new UID
615 */
616static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 struct user_struct *new_user;
619
Serge Hallyn18b6e042008-10-15 16:38:45 -0500620 new_user = alloc_uid(current_user_ns(), new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (!new_user)
622 return -EAGAIN;
623
Jiri Slaby78d7d402010-03-05 13:42:54 -0800624 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Serge Hallyn18b6e042008-10-15 16:38:45 -0500625 new_user != INIT_USER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 free_uid(new_user);
627 return -EAGAIN;
628 }
629
David Howellsd84f4f92008-11-14 10:39:23 +1100630 free_uid(new->user);
631 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
633}
634
635/*
636 * Unprivileged users may change the real uid to the effective uid
637 * or vice versa. (BSD-style)
638 *
639 * If you set the real uid at all, or set the effective uid to a value not
640 * equal to the real uid, then the saved uid is set to the new effective uid.
641 *
642 * This makes it possible for a setuid program to completely drop its
643 * privileges, which is often a useful assertion to make when you are doing
644 * a security audit over a program.
645 *
646 * The general idea is that a program which uses just setreuid() will be
647 * 100% compatible with BSD. A program which uses just setuid() will be
648 * 100% compatible with POSIX with saved IDs.
649 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100650SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
David Howellsd84f4f92008-11-14 10:39:23 +1100652 const struct cred *old;
653 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 int retval;
655
David Howellsd84f4f92008-11-14 10:39:23 +1100656 new = prepare_creds();
657 if (!new)
658 return -ENOMEM;
659 old = current_cred();
660
David Howellsd84f4f92008-11-14 10:39:23 +1100661 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (ruid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100663 new->uid = ruid;
664 if (old->uid != ruid &&
665 old->euid != ruid &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700666 !nsown_capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100667 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669
670 if (euid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100671 new->euid = euid;
672 if (old->uid != euid &&
673 old->euid != euid &&
674 old->suid != euid &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700675 !nsown_capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100676 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
Dhaval Giani54e99122009-02-27 15:13:54 +0530679 if (new->uid != old->uid) {
680 retval = set_user(new);
681 if (retval < 0)
682 goto error;
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (ruid != (uid_t) -1 ||
David Howellsd84f4f92008-11-14 10:39:23 +1100685 (euid != (uid_t) -1 && euid != old->uid))
686 new->suid = new->euid;
687 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
David Howellsd84f4f92008-11-14 10:39:23 +1100689 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
690 if (retval < 0)
691 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
David Howellsd84f4f92008-11-14 10:39:23 +1100693 return commit_creds(new);
694
695error:
696 abort_creds(new);
697 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700/*
701 * setuid() is implemented like SysV with SAVED_IDS
702 *
703 * Note that SAVED_ID's is deficient in that a setuid root program
704 * like sendmail, for example, cannot set its uid to be a normal
705 * user and then switch back, because if you're root, setuid() sets
706 * the saved uid too. If you don't like this, blame the bright people
707 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
708 * will allow a root program to temporarily drop privileges and be able to
709 * regain them by swapping the real and effective uid.
710 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100711SYSCALL_DEFINE1(setuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
David Howellsd84f4f92008-11-14 10:39:23 +1100713 const struct cred *old;
714 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int retval;
716
David Howellsd84f4f92008-11-14 10:39:23 +1100717 new = prepare_creds();
718 if (!new)
719 return -ENOMEM;
720 old = current_cred();
721
David Howellsd84f4f92008-11-14 10:39:23 +1100722 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700723 if (nsown_capable(CAP_SETUID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100724 new->suid = new->uid = uid;
Dhaval Giani54e99122009-02-27 15:13:54 +0530725 if (uid != old->uid) {
726 retval = set_user(new);
727 if (retval < 0)
728 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100729 }
730 } else if (uid != old->uid && uid != new->suid) {
731 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
David Howellsd84f4f92008-11-14 10:39:23 +1100734 new->fsuid = new->euid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
David Howellsd84f4f92008-11-14 10:39:23 +1100736 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
737 if (retval < 0)
738 goto error;
739
740 return commit_creds(new);
741
742error:
743 abort_creds(new);
744 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747
748/*
749 * This function implements a generic ability to update ruid, euid,
750 * and suid. This allows you to implement the 4.4 compatible seteuid().
751 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100752SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
David Howellsd84f4f92008-11-14 10:39:23 +1100754 const struct cred *old;
755 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 int retval;
757
David Howellsd84f4f92008-11-14 10:39:23 +1100758 new = prepare_creds();
759 if (!new)
760 return -ENOMEM;
761
David Howellsd84f4f92008-11-14 10:39:23 +1100762 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
David Howellsd84f4f92008-11-14 10:39:23 +1100764 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700765 if (!nsown_capable(CAP_SETUID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100766 if (ruid != (uid_t) -1 && ruid != old->uid &&
767 ruid != old->euid && ruid != old->suid)
768 goto error;
769 if (euid != (uid_t) -1 && euid != old->uid &&
770 euid != old->euid && euid != old->suid)
771 goto error;
772 if (suid != (uid_t) -1 && suid != old->uid &&
773 suid != old->euid && suid != old->suid)
774 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
David Howellsd84f4f92008-11-14 10:39:23 +1100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (ruid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100778 new->uid = ruid;
Dhaval Giani54e99122009-02-27 15:13:54 +0530779 if (ruid != old->uid) {
780 retval = set_user(new);
781 if (retval < 0)
782 goto error;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
David Howellsd84f4f92008-11-14 10:39:23 +1100785 if (euid != (uid_t) -1)
786 new->euid = euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (suid != (uid_t) -1)
David Howellsd84f4f92008-11-14 10:39:23 +1100788 new->suid = suid;
789 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
David Howellsd84f4f92008-11-14 10:39:23 +1100791 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
792 if (retval < 0)
793 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
David Howellsd84f4f92008-11-14 10:39:23 +1100795 return commit_creds(new);
796
797error:
798 abort_creds(new);
799 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100802SYSCALL_DEFINE3(getresuid, uid_t __user *, ruid, uid_t __user *, euid, uid_t __user *, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
David Howells86a264a2008-11-14 10:39:18 +1100804 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int retval;
806
David Howells86a264a2008-11-14 10:39:18 +1100807 if (!(retval = put_user(cred->uid, ruid)) &&
808 !(retval = put_user(cred->euid, euid)))
David Howellsb6dff3e2008-11-14 10:39:16 +1100809 retval = put_user(cred->suid, suid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 return retval;
812}
813
814/*
815 * Same as above, but for rgid, egid, sgid.
816 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100817SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
David Howellsd84f4f92008-11-14 10:39:23 +1100819 const struct cred *old;
820 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 int retval;
822
David Howellsd84f4f92008-11-14 10:39:23 +1100823 new = prepare_creds();
824 if (!new)
825 return -ENOMEM;
826 old = current_cred();
827
David Howellsd84f4f92008-11-14 10:39:23 +1100828 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700829 if (!nsown_capable(CAP_SETGID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100830 if (rgid != (gid_t) -1 && rgid != old->gid &&
831 rgid != old->egid && rgid != old->sgid)
832 goto error;
833 if (egid != (gid_t) -1 && egid != old->gid &&
834 egid != old->egid && egid != old->sgid)
835 goto error;
836 if (sgid != (gid_t) -1 && sgid != old->gid &&
837 sgid != old->egid && sgid != old->sgid)
838 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
David Howellsd84f4f92008-11-14 10:39:23 +1100841 if (rgid != (gid_t) -1)
842 new->gid = rgid;
843 if (egid != (gid_t) -1)
844 new->egid = egid;
845 if (sgid != (gid_t) -1)
846 new->sgid = sgid;
847 new->fsgid = new->egid;
848
849 return commit_creds(new);
850
851error:
852 abort_creds(new);
853 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100856SYSCALL_DEFINE3(getresgid, gid_t __user *, rgid, gid_t __user *, egid, gid_t __user *, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
David Howells86a264a2008-11-14 10:39:18 +1100858 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 int retval;
860
David Howells86a264a2008-11-14 10:39:18 +1100861 if (!(retval = put_user(cred->gid, rgid)) &&
862 !(retval = put_user(cred->egid, egid)))
David Howellsb6dff3e2008-11-14 10:39:16 +1100863 retval = put_user(cred->sgid, sgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 return retval;
866}
867
868
869/*
870 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
871 * is used for "access()" and for the NFS daemon (letting nfsd stay at
872 * whatever uid it wants to). It normally shadows "euid", except when
873 * explicitly set by setfsuid() or for access..
874 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100875SYSCALL_DEFINE1(setfsuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
David Howellsd84f4f92008-11-14 10:39:23 +1100877 const struct cred *old;
878 struct cred *new;
879 uid_t old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
David Howellsd84f4f92008-11-14 10:39:23 +1100881 new = prepare_creds();
882 if (!new)
883 return current_fsuid();
884 old = current_cred();
885 old_fsuid = old->fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
David Howellsd84f4f92008-11-14 10:39:23 +1100887 if (uid == old->uid || uid == old->euid ||
888 uid == old->suid || uid == old->fsuid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700889 nsown_capable(CAP_SETUID)) {
Cal Peake756184b2006-09-30 23:27:24 -0700890 if (uid != old_fsuid) {
David Howellsd84f4f92008-11-14 10:39:23 +1100891 new->fsuid = uid;
892 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
893 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
David Howellsd84f4f92008-11-14 10:39:23 +1100897 abort_creds(new);
898 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
David Howellsd84f4f92008-11-14 10:39:23 +1100900change_okay:
901 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return old_fsuid;
903}
904
905/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +0200906 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100908SYSCALL_DEFINE1(setfsgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
David Howellsd84f4f92008-11-14 10:39:23 +1100910 const struct cred *old;
911 struct cred *new;
912 gid_t old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
David Howellsd84f4f92008-11-14 10:39:23 +1100914 new = prepare_creds();
915 if (!new)
916 return current_fsgid();
917 old = current_cred();
918 old_fsgid = old->fsgid;
919
David Howellsd84f4f92008-11-14 10:39:23 +1100920 if (gid == old->gid || gid == old->egid ||
921 gid == old->sgid || gid == old->fsgid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700922 nsown_capable(CAP_SETGID)) {
Cal Peake756184b2006-09-30 23:27:24 -0700923 if (gid != old_fsgid) {
David Howellsd84f4f92008-11-14 10:39:23 +1100924 new->fsgid = gid;
925 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
David Howellsd84f4f92008-11-14 10:39:23 +1100928
David Howellsd84f4f92008-11-14 10:39:23 +1100929 abort_creds(new);
930 return old_fsgid;
931
932change_okay:
933 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return old_fsgid;
935}
936
Frank Mayharf06febc2008-09-12 09:54:39 -0700937void do_sys_times(struct tms *tms)
938{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900939 cputime_t tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -0700940
Oleg Nesterov2b5fe6d2008-11-17 15:40:08 +0100941 spin_lock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900942 thread_group_times(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700943 cutime = current->signal->cutime;
944 cstime = current->signal->cstime;
945 spin_unlock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900946 tms->tms_utime = cputime_to_clock_t(tgutime);
947 tms->tms_stime = cputime_to_clock_t(tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700948 tms->tms_cutime = cputime_to_clock_t(cutime);
949 tms->tms_cstime = cputime_to_clock_t(cstime);
950}
951
Heiko Carstens58fd3aa2009-01-14 14:14:03 +0100952SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (tbuf) {
955 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Frank Mayharf06febc2008-09-12 09:54:39 -0700957 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
959 return -EFAULT;
960 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800961 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return (long) jiffies_64_to_clock_t(get_jiffies_64());
963}
964
965/*
966 * This needs some heavy checking ...
967 * I just haven't the stomach for it. I also don't fully
968 * understand sessions/pgrp etc. Let somebody who does explain it.
969 *
970 * OK, I think I have the protection semantics right.... this is really
971 * only important on a multi-user system anyway, to make sure one user
972 * can't send a signal to a process owned by another. -TYT, 12/12/91
973 *
974 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
975 * LBT 04.03.94
976 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100977SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -0800980 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -0800981 struct pid *pgrp;
982 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700985 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (!pgid)
987 pgid = pid;
988 if (pgid < 0)
989 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -0700990 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* From this point forward we keep holding onto the tasklist lock
993 * so that our parent does not change from under us. -DaveM
994 */
995 write_lock_irq(&tasklist_lock);
996
997 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -0800998 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (!p)
1000 goto out;
1001
1002 err = -EINVAL;
1003 if (!thread_group_leader(p))
1004 goto out;
1005
Oleg Nesterov4e021302008-02-08 04:19:08 -08001006 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -08001008 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 goto out;
1010 err = -EACCES;
1011 if (p->did_exec)
1012 goto out;
1013 } else {
1014 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001015 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 goto out;
1017 }
1018
1019 err = -EPERM;
1020 if (p->signal->leader)
1021 goto out;
1022
Oleg Nesterov4e021302008-02-08 04:19:08 -08001023 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001025 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Oleg Nesterov4e021302008-02-08 04:19:08 -08001027 pgrp = find_vpid(pgid);
1028 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -08001029 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001030 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 err = security_task_setpgid(p, pgid);
1034 if (err)
1035 goto out;
1036
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07001037 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -07001038 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 err = 0;
1041out:
1042 /* All paths lead to here, thus we are safe. -DaveM */
1043 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001044 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return err;
1046}
1047
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001048SYSCALL_DEFINE1(getpgid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001050 struct task_struct *p;
1051 struct pid *grp;
1052 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001054 rcu_read_lock();
1055 if (!pid)
1056 grp = task_pgrp(current);
1057 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001059 p = find_task_by_vpid(pid);
1060 if (!p)
1061 goto out;
1062 grp = task_pgrp(p);
1063 if (!grp)
1064 goto out;
1065
1066 retval = security_task_getpgid(p);
1067 if (retval)
1068 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001070 retval = pid_vnr(grp);
1071out:
1072 rcu_read_unlock();
1073 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
1076#ifdef __ARCH_WANT_SYS_GETPGRP
1077
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001078SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001080 return sys_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083#endif
1084
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001085SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001087 struct task_struct *p;
1088 struct pid *sid;
1089 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001090
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001091 rcu_read_lock();
1092 if (!pid)
1093 sid = task_session(current);
1094 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001096 p = find_task_by_vpid(pid);
1097 if (!p)
1098 goto out;
1099 sid = task_session(p);
1100 if (!sid)
1101 goto out;
1102
1103 retval = security_task_getsid(p);
1104 if (retval)
1105 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001107 retval = pid_vnr(sid);
1108out:
1109 rcu_read_unlock();
1110 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001113SYSCALL_DEFINE0(setsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Oren Laadane19f2472006-01-08 01:03:58 -08001115 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001116 struct pid *sid = task_pid(group_leader);
1117 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 int err = -EPERM;
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001121 /* Fail if I am already a session leader */
1122 if (group_leader->signal->leader)
1123 goto out;
1124
Oleg Nesterov430c6232008-02-08 04:19:11 -08001125 /* Fail if a process group id already exists that equals the
1126 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001127 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001128 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 goto out;
1130
Oren Laadane19f2472006-01-08 01:03:58 -08001131 group_leader->signal->leader = 1;
Oleg Nesterov8520d7c2008-02-08 04:19:09 -08001132 __set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001133
Alan Cox9c9f4de2008-10-13 10:37:26 +01001134 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001135
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001136 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137out:
1138 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001139 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001140 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001141 sched_autogroup_create_attach(group_leader);
1142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return err;
1144}
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146DECLARE_RWSEM(uts_sem);
1147
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001148#ifdef COMPAT_UTS_MACHINE
1149#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001150 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001151 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1152 sizeof(COMPAT_UTS_MACHINE)))
1153#else
1154#define override_architecture(name) 0
1155#endif
1156
Heiko Carstense48fbb62009-01-14 14:14:26 +01001157SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 int errno = 0;
1160
1161 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001162 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 errno = -EFAULT;
1164 up_read(&uts_sem);
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001165
1166 if (!errno && override_architecture(name))
1167 errno = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return errno;
1169}
1170
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001171#ifdef __ARCH_WANT_SYS_OLD_UNAME
1172/*
1173 * Old cruft
1174 */
1175SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1176{
1177 int error = 0;
1178
1179 if (!name)
1180 return -EFAULT;
1181
1182 down_read(&uts_sem);
1183 if (copy_to_user(name, utsname(), sizeof(*name)))
1184 error = -EFAULT;
1185 up_read(&uts_sem);
1186
1187 if (!error && override_architecture(name))
1188 error = -EFAULT;
1189 return error;
1190}
1191
1192SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1193{
1194 int error;
1195
1196 if (!name)
1197 return -EFAULT;
1198 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1199 return -EFAULT;
1200
1201 down_read(&uts_sem);
1202 error = __copy_to_user(&name->sysname, &utsname()->sysname,
1203 __OLD_UTS_LEN);
1204 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1205 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1206 __OLD_UTS_LEN);
1207 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1208 error |= __copy_to_user(&name->release, &utsname()->release,
1209 __OLD_UTS_LEN);
1210 error |= __put_user(0, name->release + __OLD_UTS_LEN);
1211 error |= __copy_to_user(&name->version, &utsname()->version,
1212 __OLD_UTS_LEN);
1213 error |= __put_user(0, name->version + __OLD_UTS_LEN);
1214 error |= __copy_to_user(&name->machine, &utsname()->machine,
1215 __OLD_UTS_LEN);
1216 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1217 up_read(&uts_sem);
1218
1219 if (!error && override_architecture(name))
1220 error = -EFAULT;
1221 return error ? -EFAULT : 0;
1222}
1223#endif
1224
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001225SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227 int errno;
1228 char tmp[__NEW_UTS_LEN];
1229
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -07001230 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (len < 0 || len > __NEW_UTS_LEN)
1234 return -EINVAL;
1235 down_write(&uts_sem);
1236 errno = -EFAULT;
1237 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001238 struct new_utsname *u = utsname();
1239
1240 memcpy(u->nodename, tmp, len);
1241 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 errno = 0;
1243 }
1244 up_write(&uts_sem);
1245 return errno;
1246}
1247
1248#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1249
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001250SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 int i, errno;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001253 struct new_utsname *u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 if (len < 0)
1256 return -EINVAL;
1257 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001258 u = utsname();
1259 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (i > len)
1261 i = len;
1262 errno = 0;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001263 if (copy_to_user(name, u->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 errno = -EFAULT;
1265 up_read(&uts_sem);
1266 return errno;
1267}
1268
1269#endif
1270
1271/*
1272 * Only setdomainname; getdomainname can be implemented by calling
1273 * uname()
1274 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001275SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
1277 int errno;
1278 char tmp[__NEW_UTS_LEN];
1279
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001280 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return -EPERM;
1282 if (len < 0 || len > __NEW_UTS_LEN)
1283 return -EINVAL;
1284
1285 down_write(&uts_sem);
1286 errno = -EFAULT;
1287 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001288 struct new_utsname *u = utsname();
1289
1290 memcpy(u->domainname, tmp, len);
1291 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 errno = 0;
1293 }
1294 up_write(&uts_sem);
1295 return errno;
1296}
1297
Heiko Carstense48fbb62009-01-14 14:14:26 +01001298SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Jiri Slabyb9518342010-05-04 11:28:25 +02001300 struct rlimit value;
1301 int ret;
1302
1303 ret = do_prlimit(current, resource, NULL, &value);
1304 if (!ret)
1305 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1306
1307 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1311
1312/*
1313 * Back compatibility for getrlimit. Needed for some apps.
1314 */
1315
Heiko Carstense48fbb62009-01-14 14:14:26 +01001316SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1317 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 struct rlimit x;
1320 if (resource >= RLIM_NLIMITS)
1321 return -EINVAL;
1322
1323 task_lock(current->group_leader);
1324 x = current->signal->rlim[resource];
1325 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001326 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001328 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 x.rlim_max = 0x7FFFFFFF;
1330 return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
1331}
1332
1333#endif
1334
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001335static inline bool rlim64_is_infinity(__u64 rlim64)
1336{
1337#if BITS_PER_LONG < 64
1338 return rlim64 >= ULONG_MAX;
1339#else
1340 return rlim64 == RLIM64_INFINITY;
1341#endif
1342}
1343
1344static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1345{
1346 if (rlim->rlim_cur == RLIM_INFINITY)
1347 rlim64->rlim_cur = RLIM64_INFINITY;
1348 else
1349 rlim64->rlim_cur = rlim->rlim_cur;
1350 if (rlim->rlim_max == RLIM_INFINITY)
1351 rlim64->rlim_max = RLIM64_INFINITY;
1352 else
1353 rlim64->rlim_max = rlim->rlim_max;
1354}
1355
1356static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1357{
1358 if (rlim64_is_infinity(rlim64->rlim_cur))
1359 rlim->rlim_cur = RLIM_INFINITY;
1360 else
1361 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1362 if (rlim64_is_infinity(rlim64->rlim_max))
1363 rlim->rlim_max = RLIM_INFINITY;
1364 else
1365 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1366}
1367
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001368/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001369int do_prlimit(struct task_struct *tsk, unsigned int resource,
1370 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Jiri Slaby5b415352010-03-24 16:11:29 +01001372 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001373 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 if (resource >= RLIM_NLIMITS)
1376 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001377 if (new_rlim) {
1378 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1379 return -EINVAL;
1380 if (resource == RLIMIT_NOFILE &&
1381 new_rlim->rlim_max > sysctl_nr_open)
1382 return -EPERM;
1383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001385 /* protect tsk->signal and tsk->sighand from disappearing */
1386 read_lock(&tasklist_lock);
1387 if (!tsk->sighand) {
1388 retval = -ESRCH;
1389 goto out;
1390 }
1391
Jiri Slaby5b415352010-03-24 16:11:29 +01001392 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001393 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001394 if (new_rlim) {
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001395 /* Keep the capable check against init_user_ns until
1396 cgroups can contain all limits */
Jiri Slaby5b415352010-03-24 16:11:29 +01001397 if (new_rlim->rlim_max > rlim->rlim_max &&
1398 !capable(CAP_SYS_RESOURCE))
1399 retval = -EPERM;
1400 if (!retval)
1401 retval = security_task_setrlimit(tsk->group_leader,
1402 resource, new_rlim);
1403 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1404 /*
1405 * The caller is asking for an immediate RLIMIT_CPU
1406 * expiry. But we use the zero value to mean "it was
1407 * never set". So let's cheat and make it one second
1408 * instead
1409 */
1410 new_rlim->rlim_cur = 1;
1411 }
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001412 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001413 if (!retval) {
1414 if (old_rlim)
1415 *old_rlim = *rlim;
1416 if (new_rlim)
1417 *rlim = *new_rlim;
1418 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001419 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Andrew Mortond3561f72006-03-24 03:18:36 -08001421 /*
1422 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1423 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1424 * very long-standing error, and fixing it now risks breakage of
1425 * applications, so we live with it
1426 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001427 if (!retval && new_rlim && resource == RLIMIT_CPU &&
1428 new_rlim->rlim_cur != RLIM_INFINITY)
1429 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001430out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001431 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001432 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001435/* rcu lock must be held */
1436static int check_prlimit_permission(struct task_struct *task)
1437{
1438 const struct cred *cred = current_cred(), *tcred;
1439
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001440 if (current == task)
1441 return 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001442
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001443 tcred = __task_cred(task);
1444 if (cred->user->user_ns == tcred->user->user_ns &&
1445 (cred->uid == tcred->euid &&
1446 cred->uid == tcred->suid &&
1447 cred->uid == tcred->uid &&
1448 cred->gid == tcred->egid &&
1449 cred->gid == tcred->sgid &&
1450 cred->gid == tcred->gid))
1451 return 0;
1452 if (ns_capable(tcred->user->user_ns, CAP_SYS_RESOURCE))
1453 return 0;
1454
1455 return -EPERM;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001456}
1457
1458SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1459 const struct rlimit64 __user *, new_rlim,
1460 struct rlimit64 __user *, old_rlim)
1461{
1462 struct rlimit64 old64, new64;
1463 struct rlimit old, new;
1464 struct task_struct *tsk;
1465 int ret;
1466
1467 if (new_rlim) {
1468 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1469 return -EFAULT;
1470 rlim64_to_rlim(&new64, &new);
1471 }
1472
1473 rcu_read_lock();
1474 tsk = pid ? find_task_by_vpid(pid) : current;
1475 if (!tsk) {
1476 rcu_read_unlock();
1477 return -ESRCH;
1478 }
1479 ret = check_prlimit_permission(tsk);
1480 if (ret) {
1481 rcu_read_unlock();
1482 return ret;
1483 }
1484 get_task_struct(tsk);
1485 rcu_read_unlock();
1486
1487 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1488 old_rlim ? &old : NULL);
1489
1490 if (!ret && old_rlim) {
1491 rlim_to_rlim64(&old, &old64);
1492 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1493 ret = -EFAULT;
1494 }
1495
1496 put_task_struct(tsk);
1497 return ret;
1498}
1499
Jiri Slaby7855c352009-08-26 23:45:34 +02001500SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1501{
1502 struct rlimit new_rlim;
1503
1504 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1505 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001506 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001507}
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509/*
1510 * It would make sense to put struct rusage in the task_struct,
1511 * except that would make the task_struct be *really big*. After
1512 * task_struct gets moved into malloc'ed memory, it would
1513 * make sense to do this. It will make moving the rest of the information
1514 * a lot simpler! (Which we're not doing right now because we're not
1515 * measuring them yet).
1516 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1518 * races with threads incrementing their own counters. But since word
1519 * reads are atomic, we either get new values or old values and we don't
1520 * care which for the sums. We always take the siglock to protect reading
1521 * the c* fields from p->signal from races with exit.c updating those
1522 * fields when reaping, so a sample either gets all the additions of a
1523 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001524 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001525 * Locking:
1526 * We need to take the siglock for CHILDEREN, SELF and BOTH
1527 * for the cases current multithreaded, non-current single threaded
1528 * non-current multithreaded. Thread traversal is now safe with
1529 * the siglock held.
1530 * Strictly speaking, we donot need to take the siglock if we are current and
1531 * single threaded, as no one else can take our signal_struct away, no one
1532 * else can reap the children to update signal->c* counters, and no one else
1533 * can race with the signal-> fields. If we do not take any lock, the
1534 * signal-> fields could be read out of order while another thread was just
1535 * exiting. So we should place a read memory barrier when we avoid the lock.
1536 * On the writer side, write memory barrier is implied in __exit_signal
1537 * as __exit_signal releases the siglock spinlock after updating the signal->
1538 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001539 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 */
1541
Frank Mayharf06febc2008-09-12 09:54:39 -07001542static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001543{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001544 r->ru_nvcsw += t->nvcsw;
1545 r->ru_nivcsw += t->nivcsw;
1546 r->ru_minflt += t->min_flt;
1547 r->ru_majflt += t->maj_flt;
1548 r->ru_inblock += task_io_get_inblock(t);
1549 r->ru_oublock += task_io_get_oublock(t);
1550}
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1553{
1554 struct task_struct *t;
1555 unsigned long flags;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001556 cputime_t tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001557 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 memset((char *) r, 0, sizeof *r);
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001560 utime = stime = cputime_zero;
1561
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001562 if (who == RUSAGE_THREAD) {
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09001563 task_times(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001564 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001565 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001566 goto out;
1567 }
1568
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001569 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001570 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 switch (who) {
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001573 case RUSAGE_BOTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 case RUSAGE_CHILDREN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 utime = p->signal->cutime;
1576 stime = p->signal->cstime;
1577 r->ru_nvcsw = p->signal->cnvcsw;
1578 r->ru_nivcsw = p->signal->cnivcsw;
1579 r->ru_minflt = p->signal->cmin_flt;
1580 r->ru_majflt = p->signal->cmaj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001581 r->ru_inblock = p->signal->cinblock;
1582 r->ru_oublock = p->signal->coublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001583 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001584
1585 if (who == RUSAGE_CHILDREN)
1586 break;
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 case RUSAGE_SELF:
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001589 thread_group_times(p, &tgutime, &tgstime);
1590 utime = cputime_add(utime, tgutime);
1591 stime = cputime_add(stime, tgstime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 r->ru_nvcsw += p->signal->nvcsw;
1593 r->ru_nivcsw += p->signal->nivcsw;
1594 r->ru_minflt += p->signal->min_flt;
1595 r->ru_majflt += p->signal->maj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001596 r->ru_inblock += p->signal->inblock;
1597 r->ru_oublock += p->signal->oublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001598 if (maxrss < p->signal->maxrss)
1599 maxrss = p->signal->maxrss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 t = p;
1601 do {
Frank Mayharf06febc2008-09-12 09:54:39 -07001602 accumulate_thread_rusage(t, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 t = next_thread(t);
1604 } while (t != p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 default:
1608 BUG();
1609 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001610 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001611
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001612out:
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001613 cputime_to_timeval(utime, &r->ru_utime);
1614 cputime_to_timeval(stime, &r->ru_stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001615
1616 if (who != RUSAGE_CHILDREN) {
1617 struct mm_struct *mm = get_task_mm(p);
1618 if (mm) {
1619 setmax_mm_hiwater_rss(&maxrss, mm);
1620 mmput(mm);
1621 }
1622 }
1623 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625
1626int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1627{
1628 struct rusage r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 k_getrusage(p, who, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1631}
1632
Heiko Carstense48fbb62009-01-14 14:14:26 +01001633SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001635 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1636 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return -EINVAL;
1638 return getrusage(current, who, ru);
1639}
1640
Heiko Carstense48fbb62009-01-14 14:14:26 +01001641SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
1643 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1644 return mask;
1645}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001646
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001647SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
1648 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
David Howellsb6dff3e2008-11-14 10:39:16 +11001650 struct task_struct *me = current;
1651 unsigned char comm[sizeof(me->comm)];
1652 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
David Howellsd84f4f92008-11-14 10:39:23 +11001654 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
1655 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return error;
1657
David Howellsd84f4f92008-11-14 10:39:23 +11001658 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 switch (option) {
1660 case PR_SET_PDEATHSIG:
Jesper Juhl0730ded2005-09-06 15:17:37 -07001661 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 error = -EINVAL;
1663 break;
1664 }
David Howellsb6dff3e2008-11-14 10:39:16 +11001665 me->pdeath_signal = arg2;
1666 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 break;
1668 case PR_GET_PDEATHSIG:
David Howellsb6dff3e2008-11-14 10:39:16 +11001669 error = put_user(me->pdeath_signal, (int __user *)arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 break;
1671 case PR_GET_DUMPABLE:
David Howellsb6dff3e2008-11-14 10:39:16 +11001672 error = get_dumpable(me->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 break;
1674 case PR_SET_DUMPABLE:
Marcel Holtmannabf75a52006-07-12 13:12:00 +02001675 if (arg2 < 0 || arg2 > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 error = -EINVAL;
1677 break;
1678 }
David Howellsb6dff3e2008-11-14 10:39:16 +11001679 set_dumpable(me->mm, arg2);
1680 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 break;
1682
1683 case PR_SET_UNALIGN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001684 error = SET_UNALIGN_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 break;
1686 case PR_GET_UNALIGN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001687 error = GET_UNALIGN_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 break;
1689 case PR_SET_FPEMU:
David Howellsb6dff3e2008-11-14 10:39:16 +11001690 error = SET_FPEMU_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 break;
1692 case PR_GET_FPEMU:
David Howellsb6dff3e2008-11-14 10:39:16 +11001693 error = GET_FPEMU_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 break;
1695 case PR_SET_FPEXC:
David Howellsb6dff3e2008-11-14 10:39:16 +11001696 error = SET_FPEXC_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 break;
1698 case PR_GET_FPEXC:
David Howellsb6dff3e2008-11-14 10:39:16 +11001699 error = GET_FPEXC_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 break;
1701 case PR_GET_TIMING:
1702 error = PR_TIMING_STATISTICAL;
1703 break;
1704 case PR_SET_TIMING:
Shi Weihua7b266552008-05-23 13:04:59 -07001705 if (arg2 != PR_TIMING_STATISTICAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 error = -EINVAL;
David Howellsb6dff3e2008-11-14 10:39:16 +11001707 else
1708 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 break;
1710
David Howellsb6dff3e2008-11-14 10:39:16 +11001711 case PR_SET_NAME:
1712 comm[sizeof(me->comm)-1] = 0;
1713 if (strncpy_from_user(comm, (char __user *)arg2,
1714 sizeof(me->comm) - 1) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return -EFAULT;
David Howellsb6dff3e2008-11-14 10:39:16 +11001716 set_task_comm(me, comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 0;
David Howellsb6dff3e2008-11-14 10:39:16 +11001718 case PR_GET_NAME:
1719 get_task_comm(comm, me);
1720 if (copy_to_user((char __user *)arg2, comm,
1721 sizeof(comm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return -EFAULT;
1723 return 0;
Anton Blanchard651d7652006-06-07 16:10:19 +10001724 case PR_GET_ENDIAN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001725 error = GET_ENDIAN(me, arg2);
Anton Blanchard651d7652006-06-07 16:10:19 +10001726 break;
1727 case PR_SET_ENDIAN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001728 error = SET_ENDIAN(me, arg2);
Anton Blanchard651d7652006-06-07 16:10:19 +10001729 break;
1730
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -07001731 case PR_GET_SECCOMP:
1732 error = prctl_get_seccomp();
1733 break;
1734 case PR_SET_SECCOMP:
1735 error = prctl_set_seccomp(arg2);
1736 break;
Erik Bosman8fb402b2008-04-11 18:54:17 +02001737 case PR_GET_TSC:
1738 error = GET_TSC_CTL(arg2);
1739 break;
1740 case PR_SET_TSC:
1741 error = SET_TSC_CTL(arg2);
1742 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001743 case PR_TASK_PERF_EVENTS_DISABLE:
1744 error = perf_event_task_disable();
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001745 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001746 case PR_TASK_PERF_EVENTS_ENABLE:
1747 error = perf_event_task_enable();
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001748 break;
Arjan van de Ven69766752008-09-01 15:52:40 -07001749 case PR_GET_TIMERSLACK:
1750 error = current->timer_slack_ns;
1751 break;
1752 case PR_SET_TIMERSLACK:
1753 if (arg2 <= 0)
1754 current->timer_slack_ns =
1755 current->default_timer_slack_ns;
1756 else
1757 current->timer_slack_ns = arg2;
David Howellsb6dff3e2008-11-14 10:39:16 +11001758 error = 0;
Arjan van de Ven69766752008-09-01 15:52:40 -07001759 break;
Andi Kleen4db96cf2009-09-16 11:50:14 +02001760 case PR_MCE_KILL:
1761 if (arg4 | arg5)
1762 return -EINVAL;
1763 switch (arg2) {
Andi Kleen1087e9b2009-10-04 02:20:11 +02001764 case PR_MCE_KILL_CLEAR:
Andi Kleen4db96cf2009-09-16 11:50:14 +02001765 if (arg3 != 0)
1766 return -EINVAL;
1767 current->flags &= ~PF_MCE_PROCESS;
1768 break;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001769 case PR_MCE_KILL_SET:
Andi Kleen4db96cf2009-09-16 11:50:14 +02001770 current->flags |= PF_MCE_PROCESS;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001771 if (arg3 == PR_MCE_KILL_EARLY)
Andi Kleen4db96cf2009-09-16 11:50:14 +02001772 current->flags |= PF_MCE_EARLY;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001773 else if (arg3 == PR_MCE_KILL_LATE)
Andi Kleen4db96cf2009-09-16 11:50:14 +02001774 current->flags &= ~PF_MCE_EARLY;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001775 else if (arg3 == PR_MCE_KILL_DEFAULT)
1776 current->flags &=
1777 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
1778 else
1779 return -EINVAL;
Andi Kleen4db96cf2009-09-16 11:50:14 +02001780 break;
1781 default:
1782 return -EINVAL;
1783 }
1784 error = 0;
1785 break;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001786 case PR_MCE_KILL_GET:
1787 if (arg2 | arg3 | arg4 | arg5)
1788 return -EINVAL;
1789 if (current->flags & PF_MCE_PROCESS)
1790 error = (current->flags & PF_MCE_EARLY) ?
1791 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
1792 else
1793 error = PR_MCE_KILL_DEFAULT;
1794 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 default:
1796 error = -EINVAL;
1797 break;
1798 }
1799 return error;
1800}
Andi Kleen3cfc3482006-09-26 10:52:28 +02001801
Heiko Carstens836f92a2009-01-14 14:14:33 +01001802SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
1803 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02001804{
1805 int err = 0;
1806 int cpu = raw_smp_processor_id();
1807 if (cpup)
1808 err |= put_user(cpu, cpup);
1809 if (nodep)
1810 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02001811 return err ? -EFAULT : 0;
1812}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001813
1814char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
1815
Neil Hormana06a4dc2010-05-26 14:42:58 -07001816static void argv_cleanup(struct subprocess_info *info)
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001817{
Neil Hormana06a4dc2010-05-26 14:42:58 -07001818 argv_free(info->argv);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001819}
1820
1821/**
1822 * orderly_poweroff - Trigger an orderly system poweroff
1823 * @force: force poweroff if command execution fails
1824 *
1825 * This may be called from any context to trigger a system shutdown.
1826 * If the orderly shutdown fails, it will force an immediate shutdown.
1827 */
1828int orderly_poweroff(bool force)
1829{
1830 int argc;
1831 char **argv = argv_split(GFP_ATOMIC, poweroff_cmd, &argc);
1832 static char *envp[] = {
1833 "HOME=/",
1834 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
1835 NULL
1836 };
1837 int ret = -ENOMEM;
1838 struct subprocess_info *info;
1839
1840 if (argv == NULL) {
1841 printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
1842 __func__, poweroff_cmd);
1843 goto out;
1844 }
1845
KOSAKI Motohiroac331d12008-07-25 01:45:38 -07001846 info = call_usermodehelper_setup(argv[0], argv, envp, GFP_ATOMIC);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001847 if (info == NULL) {
1848 argv_free(argv);
1849 goto out;
1850 }
1851
Neil Hormana06a4dc2010-05-26 14:42:58 -07001852 call_usermodehelper_setfns(info, NULL, argv_cleanup, NULL);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001853
Jeremy Fitzhardinge86313c42007-07-17 18:37:03 -07001854 ret = call_usermodehelper_exec(info, UMH_NO_WAIT);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001855
1856 out:
1857 if (ret && force) {
1858 printk(KERN_WARNING "Failed to start orderly shutdown: "
1859 "forcing the issue\n");
1860
1861 /* I guess this should try to kick off some daemon to
1862 sync and poweroff asap. Or not even bother syncing
1863 if we're doing an emergency shutdown? */
1864 emergency_sync();
1865 kernel_power_off();
1866 }
1867
1868 return ret;
1869}
1870EXPORT_SYMBOL_GPL(orderly_poweroff);