blob: 1ad48b3b9068ff7454d753c7e36e844ab507afd8 [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/notifier.h>
12#include <linux/reboot.h>
13#include <linux/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/highuid.h>
15#include <linux/fs.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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010040#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/compat.h>
43#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080044#include <linux/kprobes.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070045#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Seiji Aguchi04c68622011-01-12 16:59:30 -080047#include <linux/kmsg_dump.h>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/uaccess.h>
50#include <asm/io.h>
51#include <asm/unistd.h>
52
53#ifndef SET_UNALIGN_CTL
54# define SET_UNALIGN_CTL(a,b) (-EINVAL)
55#endif
56#ifndef GET_UNALIGN_CTL
57# define GET_UNALIGN_CTL(a,b) (-EINVAL)
58#endif
59#ifndef SET_FPEMU_CTL
60# define SET_FPEMU_CTL(a,b) (-EINVAL)
61#endif
62#ifndef GET_FPEMU_CTL
63# define GET_FPEMU_CTL(a,b) (-EINVAL)
64#endif
65#ifndef SET_FPEXC_CTL
66# define SET_FPEXC_CTL(a,b) (-EINVAL)
67#endif
68#ifndef GET_FPEXC_CTL
69# define GET_FPEXC_CTL(a,b) (-EINVAL)
70#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100071#ifndef GET_ENDIAN
72# define GET_ENDIAN(a,b) (-EINVAL)
73#endif
74#ifndef SET_ENDIAN
75# define SET_ENDIAN(a,b) (-EINVAL)
76#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +020077#ifndef GET_TSC_CTL
78# define GET_TSC_CTL(a) (-EINVAL)
79#endif
80#ifndef SET_TSC_CTL
81# define SET_TSC_CTL(a) (-EINVAL)
82#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/*
85 * this is where the system-wide overflow UID and GID are defined, for
86 * architectures that now have 32-bit UID/GID but didn't in the past
87 */
88
89int overflowuid = DEFAULT_OVERFLOWUID;
90int overflowgid = DEFAULT_OVERFLOWGID;
91
92#ifdef CONFIG_UID16
93EXPORT_SYMBOL(overflowuid);
94EXPORT_SYMBOL(overflowgid);
95#endif
96
97/*
98 * the same as above, but for filesystems which can only store a 16-bit
99 * UID and GID. as such, this is needed on all architectures
100 */
101
102int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
103int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
104
105EXPORT_SYMBOL(fs_overflowuid);
106EXPORT_SYMBOL(fs_overflowgid);
107
108/*
109 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
110 */
111
112int C_A_D = 1;
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700113struct pid *cad_pid;
114EXPORT_SYMBOL(cad_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700117 * If set, this is used for preparing the system to power off.
118 */
119
120void (*pm_power_off_prepare)(void);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700121
David Howellsc69e8d92008-11-14 10:39:19 +1100122/*
123 * set the priority of a task
124 * - the caller must hold the RCU read lock
125 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static int set_one_prio(struct task_struct *p, int niceval, int error)
127{
David Howellsc69e8d92008-11-14 10:39:19 +1100128 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int no_nice;
130
David Howellsc69e8d92008-11-14 10:39:19 +1100131 if (pcred->uid != cred->euid &&
132 pcred->euid != cred->euid && !capable(CAP_SYS_NICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 error = -EPERM;
134 goto out;
135 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700136 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 error = -EACCES;
138 goto out;
139 }
140 no_nice = security_task_setnice(p, niceval);
141 if (no_nice) {
142 error = no_nice;
143 goto out;
144 }
145 if (error == -ESRCH)
146 error = 0;
147 set_user_nice(p, niceval);
148out:
149 return error;
150}
151
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100152SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct task_struct *g, *p;
155 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100156 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800158 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Daniel Walker3e88c552007-05-10 22:22:53 -0700160 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 goto out;
162
163 /* normalize: avoid signed division (rounding problems) */
164 error = -ESRCH;
165 if (niceval < -20)
166 niceval = -20;
167 if (niceval > 19)
168 niceval = 19;
169
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000170 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 read_lock(&tasklist_lock);
172 switch (which) {
173 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800174 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700175 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800176 else
177 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (p)
179 error = set_one_prio(p, niceval, error);
180 break;
181 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800182 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700183 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800184 else
185 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700186 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 error = set_one_prio(p, niceval, error);
Ken Chen2d70b682008-08-20 14:09:17 -0700188 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
190 case PRIO_USER:
David Howellsd84f4f92008-11-14 10:39:23 +1100191 user = (struct user_struct *) cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (!who)
David Howells86a264a2008-11-14 10:39:18 +1100193 who = cred->uid;
194 else if ((who != cred->uid) &&
195 !(user = find_user(who)))
196 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800198 do_each_thread(g, p) {
David Howells86a264a2008-11-14 10:39:18 +1100199 if (__task_cred(p)->uid == who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 error = set_one_prio(p, niceval, error);
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800201 } while_each_thread(g, p);
David Howells86a264a2008-11-14 10:39:18 +1100202 if (who != cred->uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 free_uid(user); /* For find_user() */
204 break;
205 }
206out_unlock:
207 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000208 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209out:
210 return error;
211}
212
213/*
214 * Ugh. To avoid negative return values, "getpriority()" will
215 * not return the normal nice-value, but a negated value that
216 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
217 * to stay compatible.
218 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100219SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 struct task_struct *g, *p;
222 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100223 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800225 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Daniel Walker3e88c552007-05-10 22:22:53 -0700227 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return -EINVAL;
229
Tetsuo Handa70118832010-02-22 12:44:16 -0800230 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 read_lock(&tasklist_lock);
232 switch (which) {
233 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800234 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700235 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800236 else
237 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (p) {
239 niceval = 20 - task_nice(p);
240 if (niceval > retval)
241 retval = niceval;
242 }
243 break;
244 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800245 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700246 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800247 else
248 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700249 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 niceval = 20 - task_nice(p);
251 if (niceval > retval)
252 retval = niceval;
Ken Chen2d70b682008-08-20 14:09:17 -0700253 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 break;
255 case PRIO_USER:
David Howells86a264a2008-11-14 10:39:18 +1100256 user = (struct user_struct *) cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (!who)
David Howells86a264a2008-11-14 10:39:18 +1100258 who = cred->uid;
259 else if ((who != cred->uid) &&
260 !(user = find_user(who)))
261 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800263 do_each_thread(g, p) {
David Howells86a264a2008-11-14 10:39:18 +1100264 if (__task_cred(p)->uid == who) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 niceval = 20 - task_nice(p);
266 if (niceval > retval)
267 retval = niceval;
268 }
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800269 } while_each_thread(g, p);
David Howells86a264a2008-11-14 10:39:18 +1100270 if (who != cred->uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 free_uid(user); /* for find_user() */
272 break;
273 }
274out_unlock:
275 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800276 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 return retval;
279}
280
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700281/**
282 * emergency_restart - reboot the system
283 *
284 * Without shutting down any hardware or taking any locks
285 * reboot the system. This is called when we know we are in
286 * trouble so this is our best effort to reboot. This is
287 * safe to call in interrupt context.
288 */
Eric W. Biederman7c903472005-07-26 11:29:55 -0600289void emergency_restart(void)
290{
Seiji Aguchi04c68622011-01-12 16:59:30 -0800291 kmsg_dump(KMSG_DUMP_EMERG);
Eric W. Biederman7c903472005-07-26 11:29:55 -0600292 machine_emergency_restart();
293}
294EXPORT_SYMBOL_GPL(emergency_restart);
295
Huang Yingca195b72008-08-15 00:40:24 -0700296void kernel_restart_prepare(char *cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600297{
Alan Sterne041c682006-03-27 01:16:30 -0800298 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600299 system_state = SYSTEM_RESTART;
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600300 device_shutdown();
Rafael J. Wysocki58b3b712007-07-26 16:29:55 +0200301 sysdev_shutdown();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100302 syscore_shutdown();
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700303}
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800304
305/**
306 * kernel_restart - reboot the system
307 * @cmd: pointer to buffer containing command to execute for restart
Randy Dunlapb8887e62005-11-07 01:01:07 -0800308 * or %NULL
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800309 *
310 * Shutdown everything and perform a clean reboot.
311 * This is not safe to call in interrupt context.
312 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700313void kernel_restart(char *cmd)
314{
315 kernel_restart_prepare(cmd);
Cal Peake756184b2006-09-30 23:27:24 -0700316 if (!cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600317 printk(KERN_EMERG "Restarting system.\n");
Cal Peake756184b2006-09-30 23:27:24 -0700318 else
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600319 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
Seiji Aguchi04c68622011-01-12 16:59:30 -0800320 kmsg_dump(KMSG_DUMP_RESTART);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600321 machine_restart(cmd);
322}
323EXPORT_SYMBOL_GPL(kernel_restart);
324
Adrian Bunk4ef72292008-02-04 22:30:06 -0800325static void kernel_shutdown_prepare(enum system_states state)
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500326{
Alan Sterne041c682006-03-27 01:16:30 -0800327 blocking_notifier_call_chain(&reboot_notifier_list,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500328 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
329 system_state = state;
330 device_shutdown();
331}
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700332/**
333 * kernel_halt - halt the system
334 *
335 * Shutdown everything and perform a clean system halt.
336 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700337void kernel_halt(void)
338{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500339 kernel_shutdown_prepare(SYSTEM_HALT);
Rafael J. Wysocki58b3b712007-07-26 16:29:55 +0200340 sysdev_shutdown();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100341 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600342 printk(KERN_EMERG "System halted.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800343 kmsg_dump(KMSG_DUMP_HALT);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600344 machine_halt();
345}
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500346
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600347EXPORT_SYMBOL_GPL(kernel_halt);
348
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700349/**
350 * kernel_power_off - power_off the system
351 *
352 * Shutdown everything and perform a clean system power_off.
353 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700354void kernel_power_off(void)
355{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500356 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700357 if (pm_power_off_prepare)
358 pm_power_off_prepare();
Mark Lord40477272007-10-01 01:20:10 -0700359 disable_nonboot_cpus();
Rafael J. Wysocki58b3b712007-07-26 16:29:55 +0200360 sysdev_shutdown();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100361 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600362 printk(KERN_EMERG "Power down.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800363 kmsg_dump(KMSG_DUMP_POWEROFF);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600364 machine_power_off();
365}
366EXPORT_SYMBOL_GPL(kernel_power_off);
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200367
368static DEFINE_MUTEX(reboot_mutex);
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370/*
371 * Reboot system call: for obvious reasons only root may call it,
372 * and even root needs to set up some magic numbers in the registers
373 * so that some mistake won't make this reboot the whole machine.
374 * You can also set the meaning of the ctrl-alt-del-key here.
375 *
376 * reboot doesn't sync: do that yourself before calling this.
377 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100378SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd,
379 void __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 char buffer[256];
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700382 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* We only trust the superuser with rebooting the system. */
385 if (!capable(CAP_SYS_BOOT))
386 return -EPERM;
387
388 /* For safety, we require "magic" arguments. */
389 if (magic1 != LINUX_REBOOT_MAGIC1 ||
390 (magic2 != LINUX_REBOOT_MAGIC2 &&
391 magic2 != LINUX_REBOOT_MAGIC2A &&
392 magic2 != LINUX_REBOOT_MAGIC2B &&
393 magic2 != LINUX_REBOOT_MAGIC2C))
394 return -EINVAL;
395
Eric W. Biederman5e382912006-01-08 01:03:46 -0800396 /* Instead of trying to make the power_off code look like
397 * halt when pm_power_off is not set do it the easy way.
398 */
399 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
400 cmd = LINUX_REBOOT_CMD_HALT;
401
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200402 mutex_lock(&reboot_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 switch (cmd) {
404 case LINUX_REBOOT_CMD_RESTART:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600405 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 break;
407
408 case LINUX_REBOOT_CMD_CAD_ON:
409 C_A_D = 1;
410 break;
411
412 case LINUX_REBOOT_CMD_CAD_OFF:
413 C_A_D = 0;
414 break;
415
416 case LINUX_REBOOT_CMD_HALT:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600417 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 do_exit(0);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700419 panic("cannot halt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 case LINUX_REBOOT_CMD_POWER_OFF:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600422 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 do_exit(0);
424 break;
425
426 case LINUX_REBOOT_CMD_RESTART2:
427 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200428 ret = -EFAULT;
429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 buffer[sizeof(buffer) - 1] = '\0';
432
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600433 kernel_restart(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 break;
435
Huang Ying3ab83522008-07-25 19:45:07 -0700436#ifdef CONFIG_KEXEC
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700437 case LINUX_REBOOT_CMD_KEXEC:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700438 ret = kernel_kexec();
439 break;
Huang Ying3ab83522008-07-25 19:45:07 -0700440#endif
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600441
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200442#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 case LINUX_REBOOT_CMD_SW_SUSPEND:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700444 ret = hibernate();
445 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#endif
447
448 default:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700449 ret = -EINVAL;
450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200452 mutex_unlock(&reboot_mutex);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700453 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
David Howells65f27f32006-11-22 14:55:48 +0000456static void deferred_cad(struct work_struct *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Eric W. Biedermanabcd9e52005-07-26 11:27:34 -0600458 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
461/*
462 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
463 * As it's called within an interrupt, it may NOT sync: the only choice
464 * is whether to reboot at once, or just ignore the ctrl-alt-del.
465 */
466void ctrl_alt_del(void)
467{
David Howells65f27f32006-11-22 14:55:48 +0000468 static DECLARE_WORK(cad_work, deferred_cad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if (C_A_D)
471 schedule_work(&cad_work);
472 else
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700473 kill_cad_pid(SIGINT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * Unprivileged users may change the real gid to the effective gid
478 * or vice versa. (BSD-style)
479 *
480 * If you set the real gid at all, or set the effective gid to a value not
481 * equal to the real gid, then the saved gid is set to the new effective gid.
482 *
483 * This makes it possible for a setgid program to completely drop its
484 * privileges, which is often a useful assertion to make when you are doing
485 * a security audit over a program.
486 *
487 * The general idea is that a program which uses just setregid() will be
488 * 100% compatible with BSD. A program which uses just setgid() will be
489 * 100% compatible with POSIX with saved IDs.
490 *
491 * SMP: There are not races, the GIDs are checked only by filesystem
492 * operations (as far as semantic preservation is concerned).
493 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100494SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
David Howellsd84f4f92008-11-14 10:39:23 +1100496 const struct cred *old;
497 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 int retval;
499
David Howellsd84f4f92008-11-14 10:39:23 +1100500 new = prepare_creds();
501 if (!new)
502 return -ENOMEM;
503 old = current_cred();
504
David Howellsd84f4f92008-11-14 10:39:23 +1100505 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (rgid != (gid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100507 if (old->gid == rgid ||
508 old->egid == rgid ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100510 new->gid = rgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 else
David Howellsd84f4f92008-11-14 10:39:23 +1100512 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 if (egid != (gid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100515 if (old->gid == egid ||
516 old->egid == egid ||
517 old->sgid == egid ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100519 new->egid = egid;
Cal Peake756184b2006-09-30 23:27:24 -0700520 else
David Howellsd84f4f92008-11-14 10:39:23 +1100521 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
David Howellsd84f4f92008-11-14 10:39:23 +1100523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (rgid != (gid_t) -1 ||
David Howellsd84f4f92008-11-14 10:39:23 +1100525 (egid != (gid_t) -1 && egid != old->gid))
526 new->sgid = new->egid;
527 new->fsgid = new->egid;
528
529 return commit_creds(new);
530
531error:
532 abort_creds(new);
533 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536/*
537 * setgid() is implemented like SysV w/ SAVED_IDS
538 *
539 * SMP: Same implicit races as above.
540 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100541SYSCALL_DEFINE1(setgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
David Howellsd84f4f92008-11-14 10:39:23 +1100543 const struct cred *old;
544 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int retval;
546
David Howellsd84f4f92008-11-14 10:39:23 +1100547 new = prepare_creds();
548 if (!new)
549 return -ENOMEM;
550 old = current_cred();
551
David Howellsd84f4f92008-11-14 10:39:23 +1100552 retval = -EPERM;
553 if (capable(CAP_SETGID))
554 new->gid = new->egid = new->sgid = new->fsgid = gid;
555 else if (gid == old->gid || gid == old->sgid)
556 new->egid = new->fsgid = gid;
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
David Howellsd84f4f92008-11-14 10:39:23 +1100560 return commit_creds(new);
561
562error:
563 abort_creds(new);
564 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
Dhaval Giani54e99122009-02-27 15:13:54 +0530566
David Howellsd84f4f92008-11-14 10:39:23 +1100567/*
568 * change the user struct in a credentials set to match the new UID
569 */
570static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 struct user_struct *new_user;
573
Serge Hallyn18b6e042008-10-15 16:38:45 -0500574 new_user = alloc_uid(current_user_ns(), new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (!new_user)
576 return -EAGAIN;
577
Jiri Slaby78d7d402010-03-05 13:42:54 -0800578 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Serge Hallyn18b6e042008-10-15 16:38:45 -0500579 new_user != INIT_USER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 free_uid(new_user);
581 return -EAGAIN;
582 }
583
David Howellsd84f4f92008-11-14 10:39:23 +1100584 free_uid(new->user);
585 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
587}
588
589/*
590 * Unprivileged users may change the real uid to the effective uid
591 * or vice versa. (BSD-style)
592 *
593 * If you set the real uid at all, or set the effective uid to a value not
594 * equal to the real uid, then the saved uid is set to the new effective uid.
595 *
596 * This makes it possible for a setuid program to completely drop its
597 * privileges, which is often a useful assertion to make when you are doing
598 * a security audit over a program.
599 *
600 * The general idea is that a program which uses just setreuid() will be
601 * 100% compatible with BSD. A program which uses just setuid() will be
602 * 100% compatible with POSIX with saved IDs.
603 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100604SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
David Howellsd84f4f92008-11-14 10:39:23 +1100606 const struct cred *old;
607 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 int retval;
609
David Howellsd84f4f92008-11-14 10:39:23 +1100610 new = prepare_creds();
611 if (!new)
612 return -ENOMEM;
613 old = current_cred();
614
David Howellsd84f4f92008-11-14 10:39:23 +1100615 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (ruid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100617 new->uid = ruid;
618 if (old->uid != ruid &&
619 old->euid != ruid &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 !capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100621 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
624 if (euid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100625 new->euid = euid;
626 if (old->uid != euid &&
627 old->euid != euid &&
628 old->suid != euid &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 !capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100630 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
Dhaval Giani54e99122009-02-27 15:13:54 +0530633 if (new->uid != old->uid) {
634 retval = set_user(new);
635 if (retval < 0)
636 goto error;
637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (ruid != (uid_t) -1 ||
David Howellsd84f4f92008-11-14 10:39:23 +1100639 (euid != (uid_t) -1 && euid != old->uid))
640 new->suid = new->euid;
641 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
David Howellsd84f4f92008-11-14 10:39:23 +1100643 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
644 if (retval < 0)
645 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
David Howellsd84f4f92008-11-14 10:39:23 +1100647 return commit_creds(new);
648
649error:
650 abort_creds(new);
651 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654/*
655 * setuid() is implemented like SysV with SAVED_IDS
656 *
657 * Note that SAVED_ID's is deficient in that a setuid root program
658 * like sendmail, for example, cannot set its uid to be a normal
659 * user and then switch back, because if you're root, setuid() sets
660 * the saved uid too. If you don't like this, blame the bright people
661 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
662 * will allow a root program to temporarily drop privileges and be able to
663 * regain them by swapping the real and effective uid.
664 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100665SYSCALL_DEFINE1(setuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
David Howellsd84f4f92008-11-14 10:39:23 +1100667 const struct cred *old;
668 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int retval;
670
David Howellsd84f4f92008-11-14 10:39:23 +1100671 new = prepare_creds();
672 if (!new)
673 return -ENOMEM;
674 old = current_cred();
675
David Howellsd84f4f92008-11-14 10:39:23 +1100676 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (capable(CAP_SETUID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100678 new->suid = new->uid = uid;
Dhaval Giani54e99122009-02-27 15:13:54 +0530679 if (uid != old->uid) {
680 retval = set_user(new);
681 if (retval < 0)
682 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100683 }
684 } else if (uid != old->uid && uid != new->suid) {
685 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
David Howellsd84f4f92008-11-14 10:39:23 +1100688 new->fsuid = new->euid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
David Howellsd84f4f92008-11-14 10:39:23 +1100690 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
691 if (retval < 0)
692 goto error;
693
694 return commit_creds(new);
695
696error:
697 abort_creds(new);
698 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
701
702/*
703 * This function implements a generic ability to update ruid, euid,
704 * and suid. This allows you to implement the 4.4 compatible seteuid().
705 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100706SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
David Howellsd84f4f92008-11-14 10:39:23 +1100708 const struct cred *old;
709 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int retval;
711
David Howellsd84f4f92008-11-14 10:39:23 +1100712 new = prepare_creds();
713 if (!new)
714 return -ENOMEM;
715
David Howellsd84f4f92008-11-14 10:39:23 +1100716 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David Howellsd84f4f92008-11-14 10:39:23 +1100718 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!capable(CAP_SETUID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100720 if (ruid != (uid_t) -1 && ruid != old->uid &&
721 ruid != old->euid && ruid != old->suid)
722 goto error;
723 if (euid != (uid_t) -1 && euid != old->uid &&
724 euid != old->euid && euid != old->suid)
725 goto error;
726 if (suid != (uid_t) -1 && suid != old->uid &&
727 suid != old->euid && suid != old->suid)
728 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
David Howellsd84f4f92008-11-14 10:39:23 +1100730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (ruid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100732 new->uid = ruid;
Dhaval Giani54e99122009-02-27 15:13:54 +0530733 if (ruid != old->uid) {
734 retval = set_user(new);
735 if (retval < 0)
736 goto error;
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
David Howellsd84f4f92008-11-14 10:39:23 +1100739 if (euid != (uid_t) -1)
740 new->euid = euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (suid != (uid_t) -1)
David Howellsd84f4f92008-11-14 10:39:23 +1100742 new->suid = suid;
743 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
David Howellsd84f4f92008-11-14 10:39:23 +1100745 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
746 if (retval < 0)
747 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
David Howellsd84f4f92008-11-14 10:39:23 +1100749 return commit_creds(new);
750
751error:
752 abort_creds(new);
753 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100756SYSCALL_DEFINE3(getresuid, uid_t __user *, ruid, uid_t __user *, euid, uid_t __user *, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
David Howells86a264a2008-11-14 10:39:18 +1100758 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int retval;
760
David Howells86a264a2008-11-14 10:39:18 +1100761 if (!(retval = put_user(cred->uid, ruid)) &&
762 !(retval = put_user(cred->euid, euid)))
David Howellsb6dff3e2008-11-14 10:39:16 +1100763 retval = put_user(cred->suid, suid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 return retval;
766}
767
768/*
769 * Same as above, but for rgid, egid, sgid.
770 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100771SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
David Howellsd84f4f92008-11-14 10:39:23 +1100773 const struct cred *old;
774 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 int retval;
776
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (!capable(CAP_SETGID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100784 if (rgid != (gid_t) -1 && rgid != old->gid &&
785 rgid != old->egid && rgid != old->sgid)
786 goto error;
787 if (egid != (gid_t) -1 && egid != old->gid &&
788 egid != old->egid && egid != old->sgid)
789 goto error;
790 if (sgid != (gid_t) -1 && sgid != old->gid &&
791 sgid != old->egid && sgid != old->sgid)
792 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
David Howellsd84f4f92008-11-14 10:39:23 +1100795 if (rgid != (gid_t) -1)
796 new->gid = rgid;
797 if (egid != (gid_t) -1)
798 new->egid = egid;
799 if (sgid != (gid_t) -1)
800 new->sgid = sgid;
801 new->fsgid = new->egid;
802
803 return commit_creds(new);
804
805error:
806 abort_creds(new);
807 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100810SYSCALL_DEFINE3(getresgid, gid_t __user *, rgid, gid_t __user *, egid, gid_t __user *, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
David Howells86a264a2008-11-14 10:39:18 +1100812 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 int retval;
814
David Howells86a264a2008-11-14 10:39:18 +1100815 if (!(retval = put_user(cred->gid, rgid)) &&
816 !(retval = put_user(cred->egid, egid)))
David Howellsb6dff3e2008-11-14 10:39:16 +1100817 retval = put_user(cred->sgid, sgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 return retval;
820}
821
822
823/*
824 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
825 * is used for "access()" and for the NFS daemon (letting nfsd stay at
826 * whatever uid it wants to). It normally shadows "euid", except when
827 * explicitly set by setfsuid() or for access..
828 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100829SYSCALL_DEFINE1(setfsuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
David Howellsd84f4f92008-11-14 10:39:23 +1100831 const struct cred *old;
832 struct cred *new;
833 uid_t old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
David Howellsd84f4f92008-11-14 10:39:23 +1100835 new = prepare_creds();
836 if (!new)
837 return current_fsuid();
838 old = current_cred();
839 old_fsuid = old->fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
David Howellsd84f4f92008-11-14 10:39:23 +1100841 if (uid == old->uid || uid == old->euid ||
842 uid == old->suid || uid == old->fsuid ||
Cal Peake756184b2006-09-30 23:27:24 -0700843 capable(CAP_SETUID)) {
844 if (uid != old_fsuid) {
David Howellsd84f4f92008-11-14 10:39:23 +1100845 new->fsuid = uid;
846 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
847 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
David Howellsd84f4f92008-11-14 10:39:23 +1100851 abort_creds(new);
852 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
David Howellsd84f4f92008-11-14 10:39:23 +1100854change_okay:
855 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return old_fsuid;
857}
858
859/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +0200860 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100862SYSCALL_DEFINE1(setfsgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
David Howellsd84f4f92008-11-14 10:39:23 +1100864 const struct cred *old;
865 struct cred *new;
866 gid_t old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
David Howellsd84f4f92008-11-14 10:39:23 +1100868 new = prepare_creds();
869 if (!new)
870 return current_fsgid();
871 old = current_cred();
872 old_fsgid = old->fsgid;
873
David Howellsd84f4f92008-11-14 10:39:23 +1100874 if (gid == old->gid || gid == old->egid ||
875 gid == old->sgid || gid == old->fsgid ||
Cal Peake756184b2006-09-30 23:27:24 -0700876 capable(CAP_SETGID)) {
877 if (gid != old_fsgid) {
David Howellsd84f4f92008-11-14 10:39:23 +1100878 new->fsgid = gid;
879 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
David Howellsd84f4f92008-11-14 10:39:23 +1100882
David Howellsd84f4f92008-11-14 10:39:23 +1100883 abort_creds(new);
884 return old_fsgid;
885
886change_okay:
887 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return old_fsgid;
889}
890
Frank Mayharf06febc2008-09-12 09:54:39 -0700891void do_sys_times(struct tms *tms)
892{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900893 cputime_t tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -0700894
Oleg Nesterov2b5fe6d2008-11-17 15:40:08 +0100895 spin_lock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900896 thread_group_times(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700897 cutime = current->signal->cutime;
898 cstime = current->signal->cstime;
899 spin_unlock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900900 tms->tms_utime = cputime_to_clock_t(tgutime);
901 tms->tms_stime = cputime_to_clock_t(tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700902 tms->tms_cutime = cputime_to_clock_t(cutime);
903 tms->tms_cstime = cputime_to_clock_t(cstime);
904}
905
Heiko Carstens58fd3aa2009-01-14 14:14:03 +0100906SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (tbuf) {
909 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Frank Mayharf06febc2008-09-12 09:54:39 -0700911 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
913 return -EFAULT;
914 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800915 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return (long) jiffies_64_to_clock_t(get_jiffies_64());
917}
918
919/*
920 * This needs some heavy checking ...
921 * I just haven't the stomach for it. I also don't fully
922 * understand sessions/pgrp etc. Let somebody who does explain it.
923 *
924 * OK, I think I have the protection semantics right.... this is really
925 * only important on a multi-user system anyway, to make sure one user
926 * can't send a signal to a process owned by another. -TYT, 12/12/91
927 *
928 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
929 * LBT 04.03.94
930 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100931SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -0800934 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -0800935 struct pid *pgrp;
936 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700939 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (!pgid)
941 pgid = pid;
942 if (pgid < 0)
943 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -0700944 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 /* From this point forward we keep holding onto the tasklist lock
947 * so that our parent does not change from under us. -DaveM
948 */
949 write_lock_irq(&tasklist_lock);
950
951 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -0800952 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!p)
954 goto out;
955
956 err = -EINVAL;
957 if (!thread_group_leader(p))
958 goto out;
959
Oleg Nesterov4e021302008-02-08 04:19:08 -0800960 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800962 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 goto out;
964 err = -EACCES;
965 if (p->did_exec)
966 goto out;
967 } else {
968 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -0800969 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 goto out;
971 }
972
973 err = -EPERM;
974 if (p->signal->leader)
975 goto out;
976
Oleg Nesterov4e021302008-02-08 04:19:08 -0800977 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700979 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Oleg Nesterov4e021302008-02-08 04:19:08 -0800981 pgrp = find_vpid(pgid);
982 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800983 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -0800984 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 err = security_task_setpgid(p, pgid);
988 if (err)
989 goto out;
990
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -0700991 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -0700992 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 err = 0;
995out:
996 /* All paths lead to here, thus we are safe. -DaveM */
997 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -0700998 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return err;
1000}
1001
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001002SYSCALL_DEFINE1(getpgid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001004 struct task_struct *p;
1005 struct pid *grp;
1006 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001008 rcu_read_lock();
1009 if (!pid)
1010 grp = task_pgrp(current);
1011 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001013 p = find_task_by_vpid(pid);
1014 if (!p)
1015 goto out;
1016 grp = task_pgrp(p);
1017 if (!grp)
1018 goto out;
1019
1020 retval = security_task_getpgid(p);
1021 if (retval)
1022 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001024 retval = pid_vnr(grp);
1025out:
1026 rcu_read_unlock();
1027 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030#ifdef __ARCH_WANT_SYS_GETPGRP
1031
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001032SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001034 return sys_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037#endif
1038
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001039SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001041 struct task_struct *p;
1042 struct pid *sid;
1043 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001044
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001045 rcu_read_lock();
1046 if (!pid)
1047 sid = task_session(current);
1048 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001050 p = find_task_by_vpid(pid);
1051 if (!p)
1052 goto out;
1053 sid = task_session(p);
1054 if (!sid)
1055 goto out;
1056
1057 retval = security_task_getsid(p);
1058 if (retval)
1059 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001061 retval = pid_vnr(sid);
1062out:
1063 rcu_read_unlock();
1064 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001067SYSCALL_DEFINE0(setsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Oren Laadane19f2472006-01-08 01:03:58 -08001069 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001070 struct pid *sid = task_pid(group_leader);
1071 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 int err = -EPERM;
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001075 /* Fail if I am already a session leader */
1076 if (group_leader->signal->leader)
1077 goto out;
1078
Oleg Nesterov430c6232008-02-08 04:19:11 -08001079 /* Fail if a process group id already exists that equals the
1080 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001081 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001082 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 goto out;
1084
Oren Laadane19f2472006-01-08 01:03:58 -08001085 group_leader->signal->leader = 1;
Oleg Nesterov8520d7c2008-02-08 04:19:09 -08001086 __set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001087
Alan Cox9c9f4de2008-10-13 10:37:26 +01001088 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001089
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001090 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091out:
1092 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001093 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001094 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001095 sched_autogroup_create_attach(group_leader);
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return err;
1098}
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100DECLARE_RWSEM(uts_sem);
1101
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001102#ifdef COMPAT_UTS_MACHINE
1103#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001104 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001105 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1106 sizeof(COMPAT_UTS_MACHINE)))
1107#else
1108#define override_architecture(name) 0
1109#endif
1110
Heiko Carstense48fbb62009-01-14 14:14:26 +01001111SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 int errno = 0;
1114
1115 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001116 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 errno = -EFAULT;
1118 up_read(&uts_sem);
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001119
1120 if (!errno && override_architecture(name))
1121 errno = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return errno;
1123}
1124
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001125#ifdef __ARCH_WANT_SYS_OLD_UNAME
1126/*
1127 * Old cruft
1128 */
1129SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1130{
1131 int error = 0;
1132
1133 if (!name)
1134 return -EFAULT;
1135
1136 down_read(&uts_sem);
1137 if (copy_to_user(name, utsname(), sizeof(*name)))
1138 error = -EFAULT;
1139 up_read(&uts_sem);
1140
1141 if (!error && override_architecture(name))
1142 error = -EFAULT;
1143 return error;
1144}
1145
1146SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1147{
1148 int error;
1149
1150 if (!name)
1151 return -EFAULT;
1152 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1153 return -EFAULT;
1154
1155 down_read(&uts_sem);
1156 error = __copy_to_user(&name->sysname, &utsname()->sysname,
1157 __OLD_UTS_LEN);
1158 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1159 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1160 __OLD_UTS_LEN);
1161 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1162 error |= __copy_to_user(&name->release, &utsname()->release,
1163 __OLD_UTS_LEN);
1164 error |= __put_user(0, name->release + __OLD_UTS_LEN);
1165 error |= __copy_to_user(&name->version, &utsname()->version,
1166 __OLD_UTS_LEN);
1167 error |= __put_user(0, name->version + __OLD_UTS_LEN);
1168 error |= __copy_to_user(&name->machine, &utsname()->machine,
1169 __OLD_UTS_LEN);
1170 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1171 up_read(&uts_sem);
1172
1173 if (!error && override_architecture(name))
1174 error = -EFAULT;
1175 return error ? -EFAULT : 0;
1176}
1177#endif
1178
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001179SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
1181 int errno;
1182 char tmp[__NEW_UTS_LEN];
1183
1184 if (!capable(CAP_SYS_ADMIN))
1185 return -EPERM;
1186 if (len < 0 || len > __NEW_UTS_LEN)
1187 return -EINVAL;
1188 down_write(&uts_sem);
1189 errno = -EFAULT;
1190 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001191 struct new_utsname *u = utsname();
1192
1193 memcpy(u->nodename, tmp, len);
1194 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 errno = 0;
1196 }
1197 up_write(&uts_sem);
1198 return errno;
1199}
1200
1201#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1202
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001203SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
1205 int i, errno;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001206 struct new_utsname *u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 if (len < 0)
1209 return -EINVAL;
1210 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001211 u = utsname();
1212 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (i > len)
1214 i = len;
1215 errno = 0;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001216 if (copy_to_user(name, u->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 errno = -EFAULT;
1218 up_read(&uts_sem);
1219 return errno;
1220}
1221
1222#endif
1223
1224/*
1225 * Only setdomainname; getdomainname can be implemented by calling
1226 * uname()
1227 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001228SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 int errno;
1231 char tmp[__NEW_UTS_LEN];
1232
1233 if (!capable(CAP_SYS_ADMIN))
1234 return -EPERM;
1235 if (len < 0 || len > __NEW_UTS_LEN)
1236 return -EINVAL;
1237
1238 down_write(&uts_sem);
1239 errno = -EFAULT;
1240 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001241 struct new_utsname *u = utsname();
1242
1243 memcpy(u->domainname, tmp, len);
1244 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 errno = 0;
1246 }
1247 up_write(&uts_sem);
1248 return errno;
1249}
1250
Heiko Carstense48fbb62009-01-14 14:14:26 +01001251SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Jiri Slabyb9518342010-05-04 11:28:25 +02001253 struct rlimit value;
1254 int ret;
1255
1256 ret = do_prlimit(current, resource, NULL, &value);
1257 if (!ret)
1258 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1259
1260 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
1263#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1264
1265/*
1266 * Back compatibility for getrlimit. Needed for some apps.
1267 */
1268
Heiko Carstense48fbb62009-01-14 14:14:26 +01001269SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1270 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
1272 struct rlimit x;
1273 if (resource >= RLIM_NLIMITS)
1274 return -EINVAL;
1275
1276 task_lock(current->group_leader);
1277 x = current->signal->rlim[resource];
1278 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001279 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001281 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 x.rlim_max = 0x7FFFFFFF;
1283 return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
1284}
1285
1286#endif
1287
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001288static inline bool rlim64_is_infinity(__u64 rlim64)
1289{
1290#if BITS_PER_LONG < 64
1291 return rlim64 >= ULONG_MAX;
1292#else
1293 return rlim64 == RLIM64_INFINITY;
1294#endif
1295}
1296
1297static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1298{
1299 if (rlim->rlim_cur == RLIM_INFINITY)
1300 rlim64->rlim_cur = RLIM64_INFINITY;
1301 else
1302 rlim64->rlim_cur = rlim->rlim_cur;
1303 if (rlim->rlim_max == RLIM_INFINITY)
1304 rlim64->rlim_max = RLIM64_INFINITY;
1305 else
1306 rlim64->rlim_max = rlim->rlim_max;
1307}
1308
1309static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1310{
1311 if (rlim64_is_infinity(rlim64->rlim_cur))
1312 rlim->rlim_cur = RLIM_INFINITY;
1313 else
1314 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1315 if (rlim64_is_infinity(rlim64->rlim_max))
1316 rlim->rlim_max = RLIM_INFINITY;
1317 else
1318 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1319}
1320
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001321/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001322int do_prlimit(struct task_struct *tsk, unsigned int resource,
1323 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Jiri Slaby5b415352010-03-24 16:11:29 +01001325 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001326 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 if (resource >= RLIM_NLIMITS)
1329 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001330 if (new_rlim) {
1331 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1332 return -EINVAL;
1333 if (resource == RLIMIT_NOFILE &&
1334 new_rlim->rlim_max > sysctl_nr_open)
1335 return -EPERM;
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001338 /* protect tsk->signal and tsk->sighand from disappearing */
1339 read_lock(&tasklist_lock);
1340 if (!tsk->sighand) {
1341 retval = -ESRCH;
1342 goto out;
1343 }
1344
Jiri Slaby5b415352010-03-24 16:11:29 +01001345 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001346 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001347 if (new_rlim) {
1348 if (new_rlim->rlim_max > rlim->rlim_max &&
1349 !capable(CAP_SYS_RESOURCE))
1350 retval = -EPERM;
1351 if (!retval)
1352 retval = security_task_setrlimit(tsk->group_leader,
1353 resource, new_rlim);
1354 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1355 /*
1356 * The caller is asking for an immediate RLIMIT_CPU
1357 * expiry. But we use the zero value to mean "it was
1358 * never set". So let's cheat and make it one second
1359 * instead
1360 */
1361 new_rlim->rlim_cur = 1;
1362 }
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001363 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001364 if (!retval) {
1365 if (old_rlim)
1366 *old_rlim = *rlim;
1367 if (new_rlim)
1368 *rlim = *new_rlim;
1369 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001370 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Andrew Mortond3561f72006-03-24 03:18:36 -08001372 /*
1373 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1374 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1375 * very long-standing error, and fixing it now risks breakage of
1376 * applications, so we live with it
1377 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001378 if (!retval && new_rlim && resource == RLIMIT_CPU &&
1379 new_rlim->rlim_cur != RLIM_INFINITY)
1380 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001381out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001382 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001383 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001386/* rcu lock must be held */
1387static int check_prlimit_permission(struct task_struct *task)
1388{
1389 const struct cred *cred = current_cred(), *tcred;
1390
1391 tcred = __task_cred(task);
Kacper Kornetaa5bd672011-01-29 00:21:04 +01001392 if (current != task &&
1393 (cred->uid != tcred->euid ||
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001394 cred->uid != tcred->suid ||
1395 cred->uid != tcred->uid ||
1396 cred->gid != tcred->egid ||
1397 cred->gid != tcred->sgid ||
1398 cred->gid != tcred->gid) &&
1399 !capable(CAP_SYS_RESOURCE)) {
1400 return -EPERM;
1401 }
1402
1403 return 0;
1404}
1405
1406SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1407 const struct rlimit64 __user *, new_rlim,
1408 struct rlimit64 __user *, old_rlim)
1409{
1410 struct rlimit64 old64, new64;
1411 struct rlimit old, new;
1412 struct task_struct *tsk;
1413 int ret;
1414
1415 if (new_rlim) {
1416 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1417 return -EFAULT;
1418 rlim64_to_rlim(&new64, &new);
1419 }
1420
1421 rcu_read_lock();
1422 tsk = pid ? find_task_by_vpid(pid) : current;
1423 if (!tsk) {
1424 rcu_read_unlock();
1425 return -ESRCH;
1426 }
1427 ret = check_prlimit_permission(tsk);
1428 if (ret) {
1429 rcu_read_unlock();
1430 return ret;
1431 }
1432 get_task_struct(tsk);
1433 rcu_read_unlock();
1434
1435 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1436 old_rlim ? &old : NULL);
1437
1438 if (!ret && old_rlim) {
1439 rlim_to_rlim64(&old, &old64);
1440 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1441 ret = -EFAULT;
1442 }
1443
1444 put_task_struct(tsk);
1445 return ret;
1446}
1447
Jiri Slaby7855c352009-08-26 23:45:34 +02001448SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1449{
1450 struct rlimit new_rlim;
1451
1452 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1453 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001454 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001455}
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*
1458 * It would make sense to put struct rusage in the task_struct,
1459 * except that would make the task_struct be *really big*. After
1460 * task_struct gets moved into malloc'ed memory, it would
1461 * make sense to do this. It will make moving the rest of the information
1462 * a lot simpler! (Which we're not doing right now because we're not
1463 * measuring them yet).
1464 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1466 * races with threads incrementing their own counters. But since word
1467 * reads are atomic, we either get new values or old values and we don't
1468 * care which for the sums. We always take the siglock to protect reading
1469 * the c* fields from p->signal from races with exit.c updating those
1470 * fields when reaping, so a sample either gets all the additions of a
1471 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001472 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001473 * Locking:
1474 * We need to take the siglock for CHILDEREN, SELF and BOTH
1475 * for the cases current multithreaded, non-current single threaded
1476 * non-current multithreaded. Thread traversal is now safe with
1477 * the siglock held.
1478 * Strictly speaking, we donot need to take the siglock if we are current and
1479 * single threaded, as no one else can take our signal_struct away, no one
1480 * else can reap the children to update signal->c* counters, and no one else
1481 * can race with the signal-> fields. If we do not take any lock, the
1482 * signal-> fields could be read out of order while another thread was just
1483 * exiting. So we should place a read memory barrier when we avoid the lock.
1484 * On the writer side, write memory barrier is implied in __exit_signal
1485 * as __exit_signal releases the siglock spinlock after updating the signal->
1486 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001487 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 */
1489
Frank Mayharf06febc2008-09-12 09:54:39 -07001490static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001491{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001492 r->ru_nvcsw += t->nvcsw;
1493 r->ru_nivcsw += t->nivcsw;
1494 r->ru_minflt += t->min_flt;
1495 r->ru_majflt += t->maj_flt;
1496 r->ru_inblock += task_io_get_inblock(t);
1497 r->ru_oublock += task_io_get_oublock(t);
1498}
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1501{
1502 struct task_struct *t;
1503 unsigned long flags;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001504 cputime_t tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001505 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 memset((char *) r, 0, sizeof *r);
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001508 utime = stime = cputime_zero;
1509
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001510 if (who == RUSAGE_THREAD) {
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09001511 task_times(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001512 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001513 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001514 goto out;
1515 }
1516
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001517 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001518 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 switch (who) {
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001521 case RUSAGE_BOTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 case RUSAGE_CHILDREN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 utime = p->signal->cutime;
1524 stime = p->signal->cstime;
1525 r->ru_nvcsw = p->signal->cnvcsw;
1526 r->ru_nivcsw = p->signal->cnivcsw;
1527 r->ru_minflt = p->signal->cmin_flt;
1528 r->ru_majflt = p->signal->cmaj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001529 r->ru_inblock = p->signal->cinblock;
1530 r->ru_oublock = p->signal->coublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001531 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001532
1533 if (who == RUSAGE_CHILDREN)
1534 break;
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 case RUSAGE_SELF:
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001537 thread_group_times(p, &tgutime, &tgstime);
1538 utime = cputime_add(utime, tgutime);
1539 stime = cputime_add(stime, tgstime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 r->ru_nvcsw += p->signal->nvcsw;
1541 r->ru_nivcsw += p->signal->nivcsw;
1542 r->ru_minflt += p->signal->min_flt;
1543 r->ru_majflt += p->signal->maj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001544 r->ru_inblock += p->signal->inblock;
1545 r->ru_oublock += p->signal->oublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001546 if (maxrss < p->signal->maxrss)
1547 maxrss = p->signal->maxrss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 t = p;
1549 do {
Frank Mayharf06febc2008-09-12 09:54:39 -07001550 accumulate_thread_rusage(t, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 t = next_thread(t);
1552 } while (t != p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 default:
1556 BUG();
1557 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001558 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001559
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001560out:
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001561 cputime_to_timeval(utime, &r->ru_utime);
1562 cputime_to_timeval(stime, &r->ru_stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001563
1564 if (who != RUSAGE_CHILDREN) {
1565 struct mm_struct *mm = get_task_mm(p);
1566 if (mm) {
1567 setmax_mm_hiwater_rss(&maxrss, mm);
1568 mmput(mm);
1569 }
1570 }
1571 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
1574int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1575{
1576 struct rusage r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 k_getrusage(p, who, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1579}
1580
Heiko Carstense48fbb62009-01-14 14:14:26 +01001581SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001583 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1584 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 return -EINVAL;
1586 return getrusage(current, who, ru);
1587}
1588
Heiko Carstense48fbb62009-01-14 14:14:26 +01001589SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1592 return mask;
1593}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001594
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001595SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
1596 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
David Howellsb6dff3e2008-11-14 10:39:16 +11001598 struct task_struct *me = current;
1599 unsigned char comm[sizeof(me->comm)];
1600 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
David Howellsd84f4f92008-11-14 10:39:23 +11001602 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
1603 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return error;
1605
David Howellsd84f4f92008-11-14 10:39:23 +11001606 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 switch (option) {
1608 case PR_SET_PDEATHSIG:
Jesper Juhl0730ded2005-09-06 15:17:37 -07001609 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 error = -EINVAL;
1611 break;
1612 }
David Howellsb6dff3e2008-11-14 10:39:16 +11001613 me->pdeath_signal = arg2;
1614 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 break;
1616 case PR_GET_PDEATHSIG:
David Howellsb6dff3e2008-11-14 10:39:16 +11001617 error = put_user(me->pdeath_signal, (int __user *)arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 break;
1619 case PR_GET_DUMPABLE:
David Howellsb6dff3e2008-11-14 10:39:16 +11001620 error = get_dumpable(me->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 break;
1622 case PR_SET_DUMPABLE:
Marcel Holtmannabf75a52006-07-12 13:12:00 +02001623 if (arg2 < 0 || arg2 > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 error = -EINVAL;
1625 break;
1626 }
David Howellsb6dff3e2008-11-14 10:39:16 +11001627 set_dumpable(me->mm, arg2);
1628 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 break;
1630
1631 case PR_SET_UNALIGN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001632 error = SET_UNALIGN_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 break;
1634 case PR_GET_UNALIGN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001635 error = GET_UNALIGN_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 break;
1637 case PR_SET_FPEMU:
David Howellsb6dff3e2008-11-14 10:39:16 +11001638 error = SET_FPEMU_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 break;
1640 case PR_GET_FPEMU:
David Howellsb6dff3e2008-11-14 10:39:16 +11001641 error = GET_FPEMU_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 break;
1643 case PR_SET_FPEXC:
David Howellsb6dff3e2008-11-14 10:39:16 +11001644 error = SET_FPEXC_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 break;
1646 case PR_GET_FPEXC:
David Howellsb6dff3e2008-11-14 10:39:16 +11001647 error = GET_FPEXC_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 break;
1649 case PR_GET_TIMING:
1650 error = PR_TIMING_STATISTICAL;
1651 break;
1652 case PR_SET_TIMING:
Shi Weihua7b266552008-05-23 13:04:59 -07001653 if (arg2 != PR_TIMING_STATISTICAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 error = -EINVAL;
David Howellsb6dff3e2008-11-14 10:39:16 +11001655 else
1656 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 break;
1658
David Howellsb6dff3e2008-11-14 10:39:16 +11001659 case PR_SET_NAME:
1660 comm[sizeof(me->comm)-1] = 0;
1661 if (strncpy_from_user(comm, (char __user *)arg2,
1662 sizeof(me->comm) - 1) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return -EFAULT;
David Howellsb6dff3e2008-11-14 10:39:16 +11001664 set_task_comm(me, comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return 0;
David Howellsb6dff3e2008-11-14 10:39:16 +11001666 case PR_GET_NAME:
1667 get_task_comm(comm, me);
1668 if (copy_to_user((char __user *)arg2, comm,
1669 sizeof(comm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return -EFAULT;
1671 return 0;
Anton Blanchard651d7652006-06-07 16:10:19 +10001672 case PR_GET_ENDIAN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001673 error = GET_ENDIAN(me, arg2);
Anton Blanchard651d7652006-06-07 16:10:19 +10001674 break;
1675 case PR_SET_ENDIAN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001676 error = SET_ENDIAN(me, arg2);
Anton Blanchard651d7652006-06-07 16:10:19 +10001677 break;
1678
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -07001679 case PR_GET_SECCOMP:
1680 error = prctl_get_seccomp();
1681 break;
1682 case PR_SET_SECCOMP:
1683 error = prctl_set_seccomp(arg2);
1684 break;
Erik Bosman8fb402b2008-04-11 18:54:17 +02001685 case PR_GET_TSC:
1686 error = GET_TSC_CTL(arg2);
1687 break;
1688 case PR_SET_TSC:
1689 error = SET_TSC_CTL(arg2);
1690 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001691 case PR_TASK_PERF_EVENTS_DISABLE:
1692 error = perf_event_task_disable();
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001693 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001694 case PR_TASK_PERF_EVENTS_ENABLE:
1695 error = perf_event_task_enable();
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001696 break;
Arjan van de Ven69766752008-09-01 15:52:40 -07001697 case PR_GET_TIMERSLACK:
1698 error = current->timer_slack_ns;
1699 break;
1700 case PR_SET_TIMERSLACK:
1701 if (arg2 <= 0)
1702 current->timer_slack_ns =
1703 current->default_timer_slack_ns;
1704 else
1705 current->timer_slack_ns = arg2;
David Howellsb6dff3e2008-11-14 10:39:16 +11001706 error = 0;
Arjan van de Ven69766752008-09-01 15:52:40 -07001707 break;
Andi Kleen4db96cf2009-09-16 11:50:14 +02001708 case PR_MCE_KILL:
1709 if (arg4 | arg5)
1710 return -EINVAL;
1711 switch (arg2) {
Andi Kleen1087e9b2009-10-04 02:20:11 +02001712 case PR_MCE_KILL_CLEAR:
Andi Kleen4db96cf2009-09-16 11:50:14 +02001713 if (arg3 != 0)
1714 return -EINVAL;
1715 current->flags &= ~PF_MCE_PROCESS;
1716 break;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001717 case PR_MCE_KILL_SET:
Andi Kleen4db96cf2009-09-16 11:50:14 +02001718 current->flags |= PF_MCE_PROCESS;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001719 if (arg3 == PR_MCE_KILL_EARLY)
Andi Kleen4db96cf2009-09-16 11:50:14 +02001720 current->flags |= PF_MCE_EARLY;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001721 else if (arg3 == PR_MCE_KILL_LATE)
Andi Kleen4db96cf2009-09-16 11:50:14 +02001722 current->flags &= ~PF_MCE_EARLY;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001723 else if (arg3 == PR_MCE_KILL_DEFAULT)
1724 current->flags &=
1725 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
1726 else
1727 return -EINVAL;
Andi Kleen4db96cf2009-09-16 11:50:14 +02001728 break;
1729 default:
1730 return -EINVAL;
1731 }
1732 error = 0;
1733 break;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001734 case PR_MCE_KILL_GET:
1735 if (arg2 | arg3 | arg4 | arg5)
1736 return -EINVAL;
1737 if (current->flags & PF_MCE_PROCESS)
1738 error = (current->flags & PF_MCE_EARLY) ?
1739 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
1740 else
1741 error = PR_MCE_KILL_DEFAULT;
1742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 default:
1744 error = -EINVAL;
1745 break;
1746 }
1747 return error;
1748}
Andi Kleen3cfc3482006-09-26 10:52:28 +02001749
Heiko Carstens836f92a2009-01-14 14:14:33 +01001750SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
1751 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02001752{
1753 int err = 0;
1754 int cpu = raw_smp_processor_id();
1755 if (cpup)
1756 err |= put_user(cpu, cpup);
1757 if (nodep)
1758 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02001759 return err ? -EFAULT : 0;
1760}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001761
1762char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
1763
Neil Hormana06a4dc2010-05-26 14:42:58 -07001764static void argv_cleanup(struct subprocess_info *info)
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001765{
Neil Hormana06a4dc2010-05-26 14:42:58 -07001766 argv_free(info->argv);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001767}
1768
1769/**
1770 * orderly_poweroff - Trigger an orderly system poweroff
1771 * @force: force poweroff if command execution fails
1772 *
1773 * This may be called from any context to trigger a system shutdown.
1774 * If the orderly shutdown fails, it will force an immediate shutdown.
1775 */
1776int orderly_poweroff(bool force)
1777{
1778 int argc;
1779 char **argv = argv_split(GFP_ATOMIC, poweroff_cmd, &argc);
1780 static char *envp[] = {
1781 "HOME=/",
1782 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
1783 NULL
1784 };
1785 int ret = -ENOMEM;
1786 struct subprocess_info *info;
1787
1788 if (argv == NULL) {
1789 printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
1790 __func__, poweroff_cmd);
1791 goto out;
1792 }
1793
KOSAKI Motohiroac331d12008-07-25 01:45:38 -07001794 info = call_usermodehelper_setup(argv[0], argv, envp, GFP_ATOMIC);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001795 if (info == NULL) {
1796 argv_free(argv);
1797 goto out;
1798 }
1799
Neil Hormana06a4dc2010-05-26 14:42:58 -07001800 call_usermodehelper_setfns(info, NULL, argv_cleanup, NULL);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001801
Jeremy Fitzhardinge86313c42007-07-17 18:37:03 -07001802 ret = call_usermodehelper_exec(info, UMH_NO_WAIT);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001803
1804 out:
1805 if (ret && force) {
1806 printk(KERN_WARNING "Failed to start orderly shutdown: "
1807 "forcing the issue\n");
1808
1809 /* I guess this should try to kick off some daemon to
1810 sync and poweroff asap. Or not even bother syncing
1811 if we're doing an emergency shutdown? */
1812 emergency_sync();
1813 kernel_power_off();
1814 }
1815
1816 return ret;
1817}
1818EXPORT_SYMBOL_GPL(orderly_poweroff);