blob: 71852417cfc80f4c550130dba18f892306fcf34b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/sys.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
Paul Gortmaker9984de12011-05-23 14:51:41 -04007#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
9#include <linux/utsname.h>
10#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/reboot.h>
12#include <linux/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/highuid.h>
14#include <linux/fs.h>
Paul Gortmaker74da1ff2011-05-26 12:48:41 -040015#include <linux/kmod.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020016#include <linux/perf_event.h>
Daniel Walker3e88c552007-05-10 22:22:53 -070017#include <linux/resource.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070018#include <linux/kernel.h>
19#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/workqueue.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/device.h>
23#include <linux/key.h>
24#include <linux/times.h>
25#include <linux/posix-timers.h>
26#include <linux/security.h>
27#include <linux/dcookies.h>
28#include <linux/suspend.h>
29#include <linux/tty.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070030#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080031#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020032#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070033#include <linux/task_io_accounting_ops.h>
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070034#include <linux/seccomp.h>
Mark Lord40477272007-10-01 01:20:10 -070035#include <linux/cpu.h>
Christoph Hellwige28cbf22010-03-10 15:21:19 -080036#include <linux/personality.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080037#include <linux/ptrace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040038#include <linux/fs_struct.h>
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>
Andi Kleenbe274252011-08-19 16:15:10 -070041#include <linux/version.h>
42#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <linux/compat.h>
45#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080046#include <linux/kprobes.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070047#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Seiji Aguchi04c68622011-01-12 16:59:30 -080049#include <linux/kmsg_dump.h>
Andi Kleenbe274252011-08-19 16:15:10 -070050/* Move somewhere else to avoid recompiling? */
51#include <generated/utsrelease.h>
Seiji Aguchi04c68622011-01-12 16:59:30 -080052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/uaccess.h>
54#include <asm/io.h>
55#include <asm/unistd.h>
56
57#ifndef SET_UNALIGN_CTL
58# define SET_UNALIGN_CTL(a,b) (-EINVAL)
59#endif
60#ifndef GET_UNALIGN_CTL
61# define GET_UNALIGN_CTL(a,b) (-EINVAL)
62#endif
63#ifndef SET_FPEMU_CTL
64# define SET_FPEMU_CTL(a,b) (-EINVAL)
65#endif
66#ifndef GET_FPEMU_CTL
67# define GET_FPEMU_CTL(a,b) (-EINVAL)
68#endif
69#ifndef SET_FPEXC_CTL
70# define SET_FPEXC_CTL(a,b) (-EINVAL)
71#endif
72#ifndef GET_FPEXC_CTL
73# define GET_FPEXC_CTL(a,b) (-EINVAL)
74#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100075#ifndef GET_ENDIAN
76# define GET_ENDIAN(a,b) (-EINVAL)
77#endif
78#ifndef SET_ENDIAN
79# define SET_ENDIAN(a,b) (-EINVAL)
80#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +020081#ifndef GET_TSC_CTL
82# define GET_TSC_CTL(a) (-EINVAL)
83#endif
84#ifndef SET_TSC_CTL
85# define SET_TSC_CTL(a) (-EINVAL)
86#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88/*
89 * this is where the system-wide overflow UID and GID are defined, for
90 * architectures that now have 32-bit UID/GID but didn't in the past
91 */
92
93int overflowuid = DEFAULT_OVERFLOWUID;
94int overflowgid = DEFAULT_OVERFLOWGID;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096EXPORT_SYMBOL(overflowuid);
97EXPORT_SYMBOL(overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * the same as above, but for filesystems which can only store a 16-bit
101 * UID and GID. as such, this is needed on all architectures
102 */
103
104int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
105int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
106
107EXPORT_SYMBOL(fs_overflowuid);
108EXPORT_SYMBOL(fs_overflowgid);
109
110/*
111 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
112 */
113
114int C_A_D = 1;
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700115struct pid *cad_pid;
116EXPORT_SYMBOL(cad_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/*
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700119 * If set, this is used for preparing the system to power off.
120 */
121
122void (*pm_power_off_prepare)(void);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700123
David Howellsc69e8d92008-11-14 10:39:19 +1100124/*
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700125 * Returns true if current's euid is same as p's uid or euid,
126 * or has CAP_SYS_NICE to p's user_ns.
127 *
128 * Called with rcu_read_lock, creds are safe
129 */
130static bool set_one_prio_perm(struct task_struct *p)
131{
132 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
133
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800134 if (pcred->user_ns == cred->user_ns &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700135 (pcred->uid == cred->euid ||
136 pcred->euid == cred->euid))
137 return true;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800138 if (ns_capable(pcred->user_ns, CAP_SYS_NICE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700139 return true;
140 return false;
141}
142
143/*
David Howellsc69e8d92008-11-14 10:39:19 +1100144 * set the priority of a task
145 * - the caller must hold the RCU read lock
146 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static int set_one_prio(struct task_struct *p, int niceval, int error)
148{
149 int no_nice;
150
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700151 if (!set_one_prio_perm(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 error = -EPERM;
153 goto out;
154 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700155 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 error = -EACCES;
157 goto out;
158 }
159 no_nice = security_task_setnice(p, niceval);
160 if (no_nice) {
161 error = no_nice;
162 goto out;
163 }
164 if (error == -ESRCH)
165 error = 0;
166 set_user_nice(p, niceval);
167out:
168 return error;
169}
170
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100171SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct task_struct *g, *p;
174 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100175 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800177 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Daniel Walker3e88c552007-05-10 22:22:53 -0700179 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 goto out;
181
182 /* normalize: avoid signed division (rounding problems) */
183 error = -ESRCH;
184 if (niceval < -20)
185 niceval = -20;
186 if (niceval > 19)
187 niceval = 19;
188
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000189 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 read_lock(&tasklist_lock);
191 switch (which) {
192 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800193 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700194 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800195 else
196 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (p)
198 error = set_one_prio(p, niceval, error);
199 break;
200 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800201 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700202 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800203 else
204 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700205 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 error = set_one_prio(p, niceval, error);
Ken Chen2d70b682008-08-20 14:09:17 -0700207 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 break;
209 case PRIO_USER:
Eric W. Biederman74ba5082012-03-03 18:58:11 -0800210 user = cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (!who)
David Howells86a264a2008-11-14 10:39:18 +1100212 who = cred->uid;
213 else if ((who != cred->uid) &&
214 !(user = find_user(who)))
215 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800217 do_each_thread(g, p) {
David Howells86a264a2008-11-14 10:39:18 +1100218 if (__task_cred(p)->uid == who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 error = set_one_prio(p, niceval, error);
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800220 } while_each_thread(g, p);
David Howells86a264a2008-11-14 10:39:18 +1100221 if (who != cred->uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 free_uid(user); /* For find_user() */
223 break;
224 }
225out_unlock:
226 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000227 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228out:
229 return error;
230}
231
232/*
233 * Ugh. To avoid negative return values, "getpriority()" will
234 * not return the normal nice-value, but a negated value that
235 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
236 * to stay compatible.
237 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100238SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 struct task_struct *g, *p;
241 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100242 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800244 struct pid *pgrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Daniel Walker3e88c552007-05-10 22:22:53 -0700246 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -EINVAL;
248
Tetsuo Handa70118832010-02-22 12:44:16 -0800249 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 read_lock(&tasklist_lock);
251 switch (which) {
252 case PRIO_PROCESS:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800253 if (who)
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700254 p = find_task_by_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800255 else
256 p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (p) {
258 niceval = 20 - task_nice(p);
259 if (niceval > retval)
260 retval = niceval;
261 }
262 break;
263 case PRIO_PGRP:
Eric W. Biederman41487c62007-02-12 00:53:01 -0800264 if (who)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700265 pgrp = find_vpid(who);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800266 else
267 pgrp = task_pgrp(current);
Ken Chen2d70b682008-08-20 14:09:17 -0700268 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 niceval = 20 - task_nice(p);
270 if (niceval > retval)
271 retval = niceval;
Ken Chen2d70b682008-08-20 14:09:17 -0700272 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 break;
274 case PRIO_USER:
Eric W. Biederman74ba5082012-03-03 18:58:11 -0800275 user = cred->user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (!who)
David Howells86a264a2008-11-14 10:39:18 +1100277 who = cred->uid;
278 else if ((who != cred->uid) &&
279 !(user = find_user(who)))
280 goto out_unlock; /* No processes for this user */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800282 do_each_thread(g, p) {
David Howells86a264a2008-11-14 10:39:18 +1100283 if (__task_cred(p)->uid == who) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 niceval = 20 - task_nice(p);
285 if (niceval > retval)
286 retval = niceval;
287 }
H Hartley Sweetendfc6a732009-12-14 18:00:22 -0800288 } while_each_thread(g, p);
David Howells86a264a2008-11-14 10:39:18 +1100289 if (who != cred->uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 free_uid(user); /* for find_user() */
291 break;
292 }
293out_unlock:
294 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800295 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 return retval;
298}
299
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700300/**
301 * emergency_restart - reboot the system
302 *
303 * Without shutting down any hardware or taking any locks
304 * reboot the system. This is called when we know we are in
305 * trouble so this is our best effort to reboot. This is
306 * safe to call in interrupt context.
307 */
Eric W. Biederman7c903472005-07-26 11:29:55 -0600308void emergency_restart(void)
309{
Seiji Aguchi04c68622011-01-12 16:59:30 -0800310 kmsg_dump(KMSG_DUMP_EMERG);
Eric W. Biederman7c903472005-07-26 11:29:55 -0600311 machine_emergency_restart();
312}
313EXPORT_SYMBOL_GPL(emergency_restart);
314
Huang Yingca195b72008-08-15 00:40:24 -0700315void kernel_restart_prepare(char *cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600316{
Alan Sterne041c682006-03-27 01:16:30 -0800317 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600318 system_state = SYSTEM_RESTART;
Kay Sieversb50fa7c2011-05-05 13:32:05 +0200319 usermodehelper_disable();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600320 device_shutdown();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100321 syscore_shutdown();
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700322}
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800323
324/**
Amerigo Wangc5f41752011-07-25 17:13:10 -0700325 * register_reboot_notifier - Register function to be called at reboot time
326 * @nb: Info about notifier function to be called
327 *
328 * Registers a function with the list of functions
329 * to be called at reboot time.
330 *
331 * Currently always returns zero, as blocking_notifier_chain_register()
332 * always returns zero.
333 */
334int register_reboot_notifier(struct notifier_block *nb)
335{
336 return blocking_notifier_chain_register(&reboot_notifier_list, nb);
337}
338EXPORT_SYMBOL(register_reboot_notifier);
339
340/**
341 * unregister_reboot_notifier - Unregister previously registered reboot notifier
342 * @nb: Hook to be unregistered
343 *
344 * Unregisters a previously registered reboot
345 * notifier function.
346 *
347 * Returns zero on success, or %-ENOENT on failure.
348 */
349int unregister_reboot_notifier(struct notifier_block *nb)
350{
351 return blocking_notifier_chain_unregister(&reboot_notifier_list, nb);
352}
353EXPORT_SYMBOL(unregister_reboot_notifier);
354
355/**
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800356 * kernel_restart - reboot the system
357 * @cmd: pointer to buffer containing command to execute for restart
Randy Dunlapb8887e62005-11-07 01:01:07 -0800358 * or %NULL
Randy Dunlap1e5d5332005-11-07 01:01:06 -0800359 *
360 * Shutdown everything and perform a clean reboot.
361 * This is not safe to call in interrupt context.
362 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700363void kernel_restart(char *cmd)
364{
365 kernel_restart_prepare(cmd);
Cal Peake756184b2006-09-30 23:27:24 -0700366 if (!cmd)
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600367 printk(KERN_EMERG "Restarting system.\n");
Cal Peake756184b2006-09-30 23:27:24 -0700368 else
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600369 printk(KERN_EMERG "Restarting system with command '%s'.\n", cmd);
Seiji Aguchi04c68622011-01-12 16:59:30 -0800370 kmsg_dump(KMSG_DUMP_RESTART);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600371 machine_restart(cmd);
372}
373EXPORT_SYMBOL_GPL(kernel_restart);
374
Adrian Bunk4ef72292008-02-04 22:30:06 -0800375static void kernel_shutdown_prepare(enum system_states state)
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500376{
Alan Sterne041c682006-03-27 01:16:30 -0800377 blocking_notifier_call_chain(&reboot_notifier_list,
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500378 (state == SYSTEM_HALT)?SYS_HALT:SYS_POWER_OFF, NULL);
379 system_state = state;
Kay Sieversb50fa7c2011-05-05 13:32:05 +0200380 usermodehelper_disable();
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500381 device_shutdown();
382}
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700383/**
384 * kernel_halt - halt the system
385 *
386 * Shutdown everything and perform a clean system halt.
387 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700388void kernel_halt(void)
389{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500390 kernel_shutdown_prepare(SYSTEM_HALT);
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100391 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600392 printk(KERN_EMERG "System halted.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800393 kmsg_dump(KMSG_DUMP_HALT);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600394 machine_halt();
395}
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500396
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600397EXPORT_SYMBOL_GPL(kernel_halt);
398
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700399/**
400 * kernel_power_off - power_off the system
401 *
402 * Shutdown everything and perform a clean system power_off.
403 */
Eric W. Biedermane4c94332005-09-22 21:43:45 -0700404void kernel_power_off(void)
405{
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -0500406 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700407 if (pm_power_off_prepare)
408 pm_power_off_prepare();
Mark Lord40477272007-10-01 01:20:10 -0700409 disable_nonboot_cpus();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100410 syscore_shutdown();
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600411 printk(KERN_EMERG "Power down.\n");
Seiji Aguchi04c68622011-01-12 16:59:30 -0800412 kmsg_dump(KMSG_DUMP_POWEROFF);
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600413 machine_power_off();
414}
415EXPORT_SYMBOL_GPL(kernel_power_off);
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200416
417static DEFINE_MUTEX(reboot_mutex);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*
420 * Reboot system call: for obvious reasons only root may call it,
421 * and even root needs to set up some magic numbers in the registers
422 * so that some mistake won't make this reboot the whole machine.
423 * You can also set the meaning of the ctrl-alt-del-key here.
424 *
425 * reboot doesn't sync: do that yourself before calling this.
426 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100427SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd,
428 void __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 char buffer[256];
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700431 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* We only trust the superuser with rebooting the system. */
434 if (!capable(CAP_SYS_BOOT))
435 return -EPERM;
436
437 /* For safety, we require "magic" arguments. */
438 if (magic1 != LINUX_REBOOT_MAGIC1 ||
439 (magic2 != LINUX_REBOOT_MAGIC2 &&
440 magic2 != LINUX_REBOOT_MAGIC2A &&
441 magic2 != LINUX_REBOOT_MAGIC2B &&
442 magic2 != LINUX_REBOOT_MAGIC2C))
443 return -EINVAL;
444
Daniel Lezcanocf3f8922012-03-28 14:42:51 -0700445 /*
446 * If pid namespaces are enabled and the current task is in a child
447 * pid_namespace, the command is handled by reboot_pid_ns() which will
448 * call do_exit().
449 */
450 ret = reboot_pid_ns(task_active_pid_ns(current), cmd);
451 if (ret)
452 return ret;
453
Eric W. Biederman5e382912006-01-08 01:03:46 -0800454 /* Instead of trying to make the power_off code look like
455 * halt when pm_power_off is not set do it the easy way.
456 */
457 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
458 cmd = LINUX_REBOOT_CMD_HALT;
459
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200460 mutex_lock(&reboot_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 switch (cmd) {
462 case LINUX_REBOOT_CMD_RESTART:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600463 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 break;
465
466 case LINUX_REBOOT_CMD_CAD_ON:
467 C_A_D = 1;
468 break;
469
470 case LINUX_REBOOT_CMD_CAD_OFF:
471 C_A_D = 0;
472 break;
473
474 case LINUX_REBOOT_CMD_HALT:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600475 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 do_exit(0);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700477 panic("cannot halt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 case LINUX_REBOOT_CMD_POWER_OFF:
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600480 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 do_exit(0);
482 break;
483
484 case LINUX_REBOOT_CMD_RESTART2:
485 if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) {
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200486 ret = -EFAULT;
487 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489 buffer[sizeof(buffer) - 1] = '\0';
490
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600491 kernel_restart(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493
Huang Ying3ab83522008-07-25 19:45:07 -0700494#ifdef CONFIG_KEXEC
Eric W. Biedermandc009d92005-06-25 14:57:52 -0700495 case LINUX_REBOOT_CMD_KEXEC:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700496 ret = kernel_kexec();
497 break;
Huang Ying3ab83522008-07-25 19:45:07 -0700498#endif
Eric W. Biederman4a00ea12005-07-26 11:24:14 -0600499
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200500#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 case LINUX_REBOOT_CMD_SW_SUSPEND:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700502 ret = hibernate();
503 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504#endif
505
506 default:
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700507 ret = -EINVAL;
508 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
Thomas Gleixner6f15fa52009-10-09 20:31:33 +0200510 mutex_unlock(&reboot_mutex);
Andi Kleen3d26dcf2009-04-13 14:40:08 -0700511 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
David Howells65f27f32006-11-22 14:55:48 +0000514static void deferred_cad(struct work_struct *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Eric W. Biedermanabcd9e52005-07-26 11:27:34 -0600516 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519/*
520 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
521 * As it's called within an interrupt, it may NOT sync: the only choice
522 * is whether to reboot at once, or just ignore the ctrl-alt-del.
523 */
524void ctrl_alt_del(void)
525{
David Howells65f27f32006-11-22 14:55:48 +0000526 static DECLARE_WORK(cad_work, deferred_cad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 if (C_A_D)
529 schedule_work(&cad_work);
530 else
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700531 kill_cad_pid(SIGINT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/*
535 * Unprivileged users may change the real gid to the effective gid
536 * or vice versa. (BSD-style)
537 *
538 * If you set the real gid at all, or set the effective gid to a value not
539 * equal to the real gid, then the saved gid is set to the new effective gid.
540 *
541 * This makes it possible for a setgid program to completely drop its
542 * privileges, which is often a useful assertion to make when you are doing
543 * a security audit over a program.
544 *
545 * The general idea is that a program which uses just setregid() will be
546 * 100% compatible with BSD. A program which uses just setgid() will be
547 * 100% compatible with POSIX with saved IDs.
548 *
549 * SMP: There are not races, the GIDs are checked only by filesystem
550 * operations (as far as semantic preservation is concerned).
551 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100552SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
David Howellsd84f4f92008-11-14 10:39:23 +1100554 const struct cred *old;
555 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 int retval;
557
David Howellsd84f4f92008-11-14 10:39:23 +1100558 new = prepare_creds();
559 if (!new)
560 return -ENOMEM;
561 old = current_cred();
562
David Howellsd84f4f92008-11-14 10:39:23 +1100563 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (rgid != (gid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100565 if (old->gid == rgid ||
566 old->egid == rgid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700567 nsown_capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100568 new->gid = rgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 else
David Howellsd84f4f92008-11-14 10:39:23 +1100570 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572 if (egid != (gid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100573 if (old->gid == egid ||
574 old->egid == egid ||
575 old->sgid == egid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700576 nsown_capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100577 new->egid = egid;
Cal Peake756184b2006-09-30 23:27:24 -0700578 else
David Howellsd84f4f92008-11-14 10:39:23 +1100579 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
David Howellsd84f4f92008-11-14 10:39:23 +1100581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (rgid != (gid_t) -1 ||
David Howellsd84f4f92008-11-14 10:39:23 +1100583 (egid != (gid_t) -1 && egid != old->gid))
584 new->sgid = new->egid;
585 new->fsgid = new->egid;
586
587 return commit_creds(new);
588
589error:
590 abort_creds(new);
591 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594/*
595 * setgid() is implemented like SysV w/ SAVED_IDS
596 *
597 * SMP: Same implicit races as above.
598 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100599SYSCALL_DEFINE1(setgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
David Howellsd84f4f92008-11-14 10:39:23 +1100601 const struct cred *old;
602 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 int retval;
604
David Howellsd84f4f92008-11-14 10:39:23 +1100605 new = prepare_creds();
606 if (!new)
607 return -ENOMEM;
608 old = current_cred();
609
David Howellsd84f4f92008-11-14 10:39:23 +1100610 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700611 if (nsown_capable(CAP_SETGID))
David Howellsd84f4f92008-11-14 10:39:23 +1100612 new->gid = new->egid = new->sgid = new->fsgid = gid;
613 else if (gid == old->gid || gid == old->sgid)
614 new->egid = new->fsgid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 else
David Howellsd84f4f92008-11-14 10:39:23 +1100616 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
David Howellsd84f4f92008-11-14 10:39:23 +1100618 return commit_creds(new);
619
620error:
621 abort_creds(new);
622 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
Dhaval Giani54e99122009-02-27 15:13:54 +0530624
David Howellsd84f4f92008-11-14 10:39:23 +1100625/*
626 * change the user struct in a credentials set to match the new UID
627 */
628static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct user_struct *new_user;
631
Serge Hallyn18b6e042008-10-15 16:38:45 -0500632 new_user = alloc_uid(current_user_ns(), new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (!new_user)
634 return -EAGAIN;
635
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400636 /*
637 * We don't fail in case of NPROC limit excess here because too many
638 * poorly written programs don't check set*uid() return code, assuming
639 * it never fails if called by root. We may still enforce NPROC limit
640 * for programs doing set*uid()+execve() by harmlessly deferring the
641 * failure to the execve() stage.
642 */
Jiri Slaby78d7d402010-03-05 13:42:54 -0800643 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400644 new_user != INIT_USER)
645 current->flags |= PF_NPROC_EXCEEDED;
646 else
647 current->flags &= ~PF_NPROC_EXCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
David Howellsd84f4f92008-11-14 10:39:23 +1100649 free_uid(new->user);
650 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return 0;
652}
653
654/*
655 * Unprivileged users may change the real uid to the effective uid
656 * or vice versa. (BSD-style)
657 *
658 * If you set the real uid at all, or set the effective uid to a value not
659 * equal to the real uid, then the saved uid is set to the new effective uid.
660 *
661 * This makes it possible for a setuid program to completely drop its
662 * privileges, which is often a useful assertion to make when you are doing
663 * a security audit over a program.
664 *
665 * The general idea is that a program which uses just setreuid() will be
666 * 100% compatible with BSD. A program which uses just setuid() will be
667 * 100% compatible with POSIX with saved IDs.
668 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100669SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
David Howellsd84f4f92008-11-14 10:39:23 +1100671 const struct cred *old;
672 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 int retval;
674
David Howellsd84f4f92008-11-14 10:39:23 +1100675 new = prepare_creds();
676 if (!new)
677 return -ENOMEM;
678 old = current_cred();
679
David Howellsd84f4f92008-11-14 10:39:23 +1100680 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (ruid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100682 new->uid = ruid;
683 if (old->uid != ruid &&
684 old->euid != ruid &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700685 !nsown_capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100686 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688
689 if (euid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100690 new->euid = euid;
691 if (old->uid != euid &&
692 old->euid != euid &&
693 old->suid != euid &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700694 !nsown_capable(CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100695 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697
Dhaval Giani54e99122009-02-27 15:13:54 +0530698 if (new->uid != old->uid) {
699 retval = set_user(new);
700 if (retval < 0)
701 goto error;
702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (ruid != (uid_t) -1 ||
David Howellsd84f4f92008-11-14 10:39:23 +1100704 (euid != (uid_t) -1 && euid != old->uid))
705 new->suid = new->euid;
706 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
David Howellsd84f4f92008-11-14 10:39:23 +1100708 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
709 if (retval < 0)
710 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
David Howellsd84f4f92008-11-14 10:39:23 +1100712 return commit_creds(new);
713
714error:
715 abort_creds(new);
716 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719/*
720 * setuid() is implemented like SysV with SAVED_IDS
721 *
722 * Note that SAVED_ID's is deficient in that a setuid root program
723 * like sendmail, for example, cannot set its uid to be a normal
724 * user and then switch back, because if you're root, setuid() sets
725 * the saved uid too. If you don't like this, blame the bright people
726 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
727 * will allow a root program to temporarily drop privileges and be able to
728 * regain them by swapping the real and effective uid.
729 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100730SYSCALL_DEFINE1(setuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
David Howellsd84f4f92008-11-14 10:39:23 +1100732 const struct cred *old;
733 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 int retval;
735
David Howellsd84f4f92008-11-14 10:39:23 +1100736 new = prepare_creds();
737 if (!new)
738 return -ENOMEM;
739 old = current_cred();
740
David Howellsd84f4f92008-11-14 10:39:23 +1100741 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700742 if (nsown_capable(CAP_SETUID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100743 new->suid = new->uid = uid;
Dhaval Giani54e99122009-02-27 15:13:54 +0530744 if (uid != old->uid) {
745 retval = set_user(new);
746 if (retval < 0)
747 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100748 }
749 } else if (uid != old->uid && uid != new->suid) {
750 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
David Howellsd84f4f92008-11-14 10:39:23 +1100753 new->fsuid = new->euid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
David Howellsd84f4f92008-11-14 10:39:23 +1100755 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
756 if (retval < 0)
757 goto error;
758
759 return commit_creds(new);
760
761error:
762 abort_creds(new);
763 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766
767/*
768 * This function implements a generic ability to update ruid, euid,
769 * and suid. This allows you to implement the 4.4 compatible seteuid().
770 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100771SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
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
David Howellsd84f4f92008-11-14 10:39:23 +1100781 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
David Howellsd84f4f92008-11-14 10:39:23 +1100783 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700784 if (!nsown_capable(CAP_SETUID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100785 if (ruid != (uid_t) -1 && ruid != old->uid &&
786 ruid != old->euid && ruid != old->suid)
787 goto error;
788 if (euid != (uid_t) -1 && euid != old->uid &&
789 euid != old->euid && euid != old->suid)
790 goto error;
791 if (suid != (uid_t) -1 && suid != old->uid &&
792 suid != old->euid && suid != old->suid)
793 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
David Howellsd84f4f92008-11-14 10:39:23 +1100795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (ruid != (uid_t) -1) {
David Howellsd84f4f92008-11-14 10:39:23 +1100797 new->uid = ruid;
Dhaval Giani54e99122009-02-27 15:13:54 +0530798 if (ruid != old->uid) {
799 retval = set_user(new);
800 if (retval < 0)
801 goto error;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
David Howellsd84f4f92008-11-14 10:39:23 +1100804 if (euid != (uid_t) -1)
805 new->euid = euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (suid != (uid_t) -1)
David Howellsd84f4f92008-11-14 10:39:23 +1100807 new->suid = suid;
808 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
David Howellsd84f4f92008-11-14 10:39:23 +1100810 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
811 if (retval < 0)
812 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
David Howellsd84f4f92008-11-14 10:39:23 +1100814 return commit_creds(new);
815
816error:
817 abort_creds(new);
818 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100821SYSCALL_DEFINE3(getresuid, uid_t __user *, ruid, uid_t __user *, euid, uid_t __user *, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
David Howells86a264a2008-11-14 10:39:18 +1100823 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 int retval;
825
David Howells86a264a2008-11-14 10:39:18 +1100826 if (!(retval = put_user(cred->uid, ruid)) &&
827 !(retval = put_user(cred->euid, euid)))
David Howellsb6dff3e2008-11-14 10:39:16 +1100828 retval = put_user(cred->suid, suid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 return retval;
831}
832
833/*
834 * Same as above, but for rgid, egid, sgid.
835 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100836SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
David Howellsd84f4f92008-11-14 10:39:23 +1100838 const struct cred *old;
839 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 int retval;
841
David Howellsd84f4f92008-11-14 10:39:23 +1100842 new = prepare_creds();
843 if (!new)
844 return -ENOMEM;
845 old = current_cred();
846
David Howellsd84f4f92008-11-14 10:39:23 +1100847 retval = -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700848 if (!nsown_capable(CAP_SETGID)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100849 if (rgid != (gid_t) -1 && rgid != old->gid &&
850 rgid != old->egid && rgid != old->sgid)
851 goto error;
852 if (egid != (gid_t) -1 && egid != old->gid &&
853 egid != old->egid && egid != old->sgid)
854 goto error;
855 if (sgid != (gid_t) -1 && sgid != old->gid &&
856 sgid != old->egid && sgid != old->sgid)
857 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
David Howellsd84f4f92008-11-14 10:39:23 +1100860 if (rgid != (gid_t) -1)
861 new->gid = rgid;
862 if (egid != (gid_t) -1)
863 new->egid = egid;
864 if (sgid != (gid_t) -1)
865 new->sgid = sgid;
866 new->fsgid = new->egid;
867
868 return commit_creds(new);
869
870error:
871 abort_creds(new);
872 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100875SYSCALL_DEFINE3(getresgid, gid_t __user *, rgid, gid_t __user *, egid, gid_t __user *, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
David Howells86a264a2008-11-14 10:39:18 +1100877 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 int retval;
879
David Howells86a264a2008-11-14 10:39:18 +1100880 if (!(retval = put_user(cred->gid, rgid)) &&
881 !(retval = put_user(cred->egid, egid)))
David Howellsb6dff3e2008-11-14 10:39:16 +1100882 retval = put_user(cred->sgid, sgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 return retval;
885}
886
887
888/*
889 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
890 * is used for "access()" and for the NFS daemon (letting nfsd stay at
891 * whatever uid it wants to). It normally shadows "euid", except when
892 * explicitly set by setfsuid() or for access..
893 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100894SYSCALL_DEFINE1(setfsuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
David Howellsd84f4f92008-11-14 10:39:23 +1100896 const struct cred *old;
897 struct cred *new;
898 uid_t old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
David Howellsd84f4f92008-11-14 10:39:23 +1100900 new = prepare_creds();
901 if (!new)
902 return current_fsuid();
903 old = current_cred();
904 old_fsuid = old->fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
David Howellsd84f4f92008-11-14 10:39:23 +1100906 if (uid == old->uid || uid == old->euid ||
907 uid == old->suid || uid == old->fsuid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700908 nsown_capable(CAP_SETUID)) {
Cal Peake756184b2006-09-30 23:27:24 -0700909 if (uid != old_fsuid) {
David Howellsd84f4f92008-11-14 10:39:23 +1100910 new->fsuid = uid;
911 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
912 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
David Howellsd84f4f92008-11-14 10:39:23 +1100916 abort_creds(new);
917 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
David Howellsd84f4f92008-11-14 10:39:23 +1100919change_okay:
920 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return old_fsuid;
922}
923
924/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +0200925 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100927SYSCALL_DEFINE1(setfsgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
David Howellsd84f4f92008-11-14 10:39:23 +1100929 const struct cred *old;
930 struct cred *new;
931 gid_t old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
David Howellsd84f4f92008-11-14 10:39:23 +1100933 new = prepare_creds();
934 if (!new)
935 return current_fsgid();
936 old = current_cred();
937 old_fsgid = old->fsgid;
938
David Howellsd84f4f92008-11-14 10:39:23 +1100939 if (gid == old->gid || gid == old->egid ||
940 gid == old->sgid || gid == old->fsgid ||
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700941 nsown_capable(CAP_SETGID)) {
Cal Peake756184b2006-09-30 23:27:24 -0700942 if (gid != old_fsgid) {
David Howellsd84f4f92008-11-14 10:39:23 +1100943 new->fsgid = gid;
944 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
David Howellsd84f4f92008-11-14 10:39:23 +1100947
David Howellsd84f4f92008-11-14 10:39:23 +1100948 abort_creds(new);
949 return old_fsgid;
950
951change_okay:
952 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return old_fsgid;
954}
955
Frank Mayharf06febc2008-09-12 09:54:39 -0700956void do_sys_times(struct tms *tms)
957{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900958 cputime_t tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -0700959
Oleg Nesterov2b5fe6d2008-11-17 15:40:08 +0100960 spin_lock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900961 thread_group_times(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700962 cutime = current->signal->cutime;
963 cstime = current->signal->cstime;
964 spin_unlock_irq(&current->sighand->siglock);
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +0900965 tms->tms_utime = cputime_to_clock_t(tgutime);
966 tms->tms_stime = cputime_to_clock_t(tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700967 tms->tms_cutime = cputime_to_clock_t(cutime);
968 tms->tms_cstime = cputime_to_clock_t(cstime);
969}
970
Heiko Carstens58fd3aa2009-01-14 14:14:03 +0100971SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (tbuf) {
974 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Frank Mayharf06febc2008-09-12 09:54:39 -0700976 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
978 return -EFAULT;
979 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800980 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return (long) jiffies_64_to_clock_t(get_jiffies_64());
982}
983
984/*
985 * This needs some heavy checking ...
986 * I just haven't the stomach for it. I also don't fully
987 * understand sessions/pgrp etc. Let somebody who does explain it.
988 *
989 * OK, I think I have the protection semantics right.... this is really
990 * only important on a multi-user system anyway, to make sure one user
991 * can't send a signal to a process owned by another. -TYT, 12/12/91
992 *
993 * Auch. Had to add the 'did_exec' flag to conform completely to POSIX.
994 * LBT 04.03.94
995 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100996SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -0800999 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001000 struct pid *pgrp;
1001 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001004 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (!pgid)
1006 pgid = pid;
1007 if (pgid < 0)
1008 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001009 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /* From this point forward we keep holding onto the tasklist lock
1012 * so that our parent does not change from under us. -DaveM
1013 */
1014 write_lock_irq(&tasklist_lock);
1015
1016 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001017 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!p)
1019 goto out;
1020
1021 err = -EINVAL;
1022 if (!thread_group_leader(p))
1023 goto out;
1024
Oleg Nesterov4e021302008-02-08 04:19:08 -08001025 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -08001027 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 goto out;
1029 err = -EACCES;
1030 if (p->did_exec)
1031 goto out;
1032 } else {
1033 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001034 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 goto out;
1036 }
1037
1038 err = -EPERM;
1039 if (p->signal->leader)
1040 goto out;
1041
Oleg Nesterov4e021302008-02-08 04:19:08 -08001042 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001044 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Oleg Nesterov4e021302008-02-08 04:19:08 -08001046 pgrp = find_vpid(pgid);
1047 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -08001048 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001049 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 err = security_task_setpgid(p, pgid);
1053 if (err)
1054 goto out;
1055
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07001056 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -07001057 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 err = 0;
1060out:
1061 /* All paths lead to here, thus we are safe. -DaveM */
1062 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001063 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return err;
1065}
1066
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001067SYSCALL_DEFINE1(getpgid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001069 struct task_struct *p;
1070 struct pid *grp;
1071 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001073 rcu_read_lock();
1074 if (!pid)
1075 grp = task_pgrp(current);
1076 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001078 p = find_task_by_vpid(pid);
1079 if (!p)
1080 goto out;
1081 grp = task_pgrp(p);
1082 if (!grp)
1083 goto out;
1084
1085 retval = security_task_getpgid(p);
1086 if (retval)
1087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001089 retval = pid_vnr(grp);
1090out:
1091 rcu_read_unlock();
1092 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
1095#ifdef __ARCH_WANT_SYS_GETPGRP
1096
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001097SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001099 return sys_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
1102#endif
1103
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001104SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001106 struct task_struct *p;
1107 struct pid *sid;
1108 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001109
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001110 rcu_read_lock();
1111 if (!pid)
1112 sid = task_session(current);
1113 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001115 p = find_task_by_vpid(pid);
1116 if (!p)
1117 goto out;
1118 sid = task_session(p);
1119 if (!sid)
1120 goto out;
1121
1122 retval = security_task_getsid(p);
1123 if (retval)
1124 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001126 retval = pid_vnr(sid);
1127out:
1128 rcu_read_unlock();
1129 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001132SYSCALL_DEFINE0(setsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Oren Laadane19f2472006-01-08 01:03:58 -08001134 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001135 struct pid *sid = task_pid(group_leader);
1136 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 int err = -EPERM;
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001140 /* Fail if I am already a session leader */
1141 if (group_leader->signal->leader)
1142 goto out;
1143
Oleg Nesterov430c6232008-02-08 04:19:11 -08001144 /* Fail if a process group id already exists that equals the
1145 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001146 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001147 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 goto out;
1149
Oren Laadane19f2472006-01-08 01:03:58 -08001150 group_leader->signal->leader = 1;
Oleg Nesterov8520d7c2008-02-08 04:19:09 -08001151 __set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001152
Alan Cox9c9f4de2008-10-13 10:37:26 +01001153 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001154
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001155 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156out:
1157 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001158 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001159 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001160 sched_autogroup_create_attach(group_leader);
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return err;
1163}
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165DECLARE_RWSEM(uts_sem);
1166
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001167#ifdef COMPAT_UTS_MACHINE
1168#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001169 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001170 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1171 sizeof(COMPAT_UTS_MACHINE)))
1172#else
1173#define override_architecture(name) 0
1174#endif
1175
Andi Kleenbe274252011-08-19 16:15:10 -07001176/*
1177 * Work around broken programs that cannot handle "Linux 3.0".
1178 * Instead we map 3.x to 2.6.40+x, so e.g. 3.0 would be 2.6.40
1179 */
1180static int override_release(char __user *release, int len)
1181{
1182 int ret = 0;
Linus Torvaldsa84a79e2011-10-17 08:24:24 -07001183 char buf[65];
Andi Kleenbe274252011-08-19 16:15:10 -07001184
1185 if (current->personality & UNAME26) {
1186 char *rest = UTS_RELEASE;
1187 int ndots = 0;
1188 unsigned v;
1189
1190 while (*rest) {
1191 if (*rest == '.' && ++ndots >= 3)
1192 break;
1193 if (!isdigit(*rest) && *rest != '.')
1194 break;
1195 rest++;
1196 }
1197 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40;
1198 snprintf(buf, len, "2.6.%u%s", v, rest);
1199 ret = copy_to_user(release, buf, len);
1200 }
1201 return ret;
1202}
1203
Heiko Carstense48fbb62009-01-14 14:14:26 +01001204SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 int errno = 0;
1207
1208 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001209 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 errno = -EFAULT;
1211 up_read(&uts_sem);
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001212
Andi Kleenbe274252011-08-19 16:15:10 -07001213 if (!errno && override_release(name->release, sizeof(name->release)))
1214 errno = -EFAULT;
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001215 if (!errno && override_architecture(name))
1216 errno = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return errno;
1218}
1219
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001220#ifdef __ARCH_WANT_SYS_OLD_UNAME
1221/*
1222 * Old cruft
1223 */
1224SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1225{
1226 int error = 0;
1227
1228 if (!name)
1229 return -EFAULT;
1230
1231 down_read(&uts_sem);
1232 if (copy_to_user(name, utsname(), sizeof(*name)))
1233 error = -EFAULT;
1234 up_read(&uts_sem);
1235
Andi Kleenbe274252011-08-19 16:15:10 -07001236 if (!error && override_release(name->release, sizeof(name->release)))
1237 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001238 if (!error && override_architecture(name))
1239 error = -EFAULT;
1240 return error;
1241}
1242
1243SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1244{
1245 int error;
1246
1247 if (!name)
1248 return -EFAULT;
1249 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1250 return -EFAULT;
1251
1252 down_read(&uts_sem);
1253 error = __copy_to_user(&name->sysname, &utsname()->sysname,
1254 __OLD_UTS_LEN);
1255 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1256 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1257 __OLD_UTS_LEN);
1258 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1259 error |= __copy_to_user(&name->release, &utsname()->release,
1260 __OLD_UTS_LEN);
1261 error |= __put_user(0, name->release + __OLD_UTS_LEN);
1262 error |= __copy_to_user(&name->version, &utsname()->version,
1263 __OLD_UTS_LEN);
1264 error |= __put_user(0, name->version + __OLD_UTS_LEN);
1265 error |= __copy_to_user(&name->machine, &utsname()->machine,
1266 __OLD_UTS_LEN);
1267 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1268 up_read(&uts_sem);
1269
1270 if (!error && override_architecture(name))
1271 error = -EFAULT;
Andi Kleenbe274252011-08-19 16:15:10 -07001272 if (!error && override_release(name->release, sizeof(name->release)))
1273 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001274 return error ? -EFAULT : 0;
1275}
1276#endif
1277
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001278SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 int errno;
1281 char tmp[__NEW_UTS_LEN];
1282
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -07001283 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (len < 0 || len > __NEW_UTS_LEN)
1287 return -EINVAL;
1288 down_write(&uts_sem);
1289 errno = -EFAULT;
1290 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001291 struct new_utsname *u = utsname();
1292
1293 memcpy(u->nodename, tmp, len);
1294 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 errno = 0;
1296 }
Lucas De Marchif1ecf062011-11-02 13:39:22 -07001297 uts_proc_notify(UTS_PROC_HOSTNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 up_write(&uts_sem);
1299 return errno;
1300}
1301
1302#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1303
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001304SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 int i, errno;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001307 struct new_utsname *u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 if (len < 0)
1310 return -EINVAL;
1311 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001312 u = utsname();
1313 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (i > len)
1315 i = len;
1316 errno = 0;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001317 if (copy_to_user(name, u->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 errno = -EFAULT;
1319 up_read(&uts_sem);
1320 return errno;
1321}
1322
1323#endif
1324
1325/*
1326 * Only setdomainname; getdomainname can be implemented by calling
1327 * uname()
1328 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001329SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 int errno;
1332 char tmp[__NEW_UTS_LEN];
1333
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001334 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return -EPERM;
1336 if (len < 0 || len > __NEW_UTS_LEN)
1337 return -EINVAL;
1338
1339 down_write(&uts_sem);
1340 errno = -EFAULT;
1341 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001342 struct new_utsname *u = utsname();
1343
1344 memcpy(u->domainname, tmp, len);
1345 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 errno = 0;
1347 }
Lucas De Marchif1ecf062011-11-02 13:39:22 -07001348 uts_proc_notify(UTS_PROC_DOMAINNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 up_write(&uts_sem);
1350 return errno;
1351}
1352
Heiko Carstense48fbb62009-01-14 14:14:26 +01001353SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Jiri Slabyb9518342010-05-04 11:28:25 +02001355 struct rlimit value;
1356 int ret;
1357
1358 ret = do_prlimit(current, resource, NULL, &value);
1359 if (!ret)
1360 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1361
1362 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
1365#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1366
1367/*
1368 * Back compatibility for getrlimit. Needed for some apps.
1369 */
1370
Heiko Carstense48fbb62009-01-14 14:14:26 +01001371SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1372 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct rlimit x;
1375 if (resource >= RLIM_NLIMITS)
1376 return -EINVAL;
1377
1378 task_lock(current->group_leader);
1379 x = current->signal->rlim[resource];
1380 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001381 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001383 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 x.rlim_max = 0x7FFFFFFF;
1385 return copy_to_user(rlim, &x, sizeof(x))?-EFAULT:0;
1386}
1387
1388#endif
1389
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001390static inline bool rlim64_is_infinity(__u64 rlim64)
1391{
1392#if BITS_PER_LONG < 64
1393 return rlim64 >= ULONG_MAX;
1394#else
1395 return rlim64 == RLIM64_INFINITY;
1396#endif
1397}
1398
1399static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1400{
1401 if (rlim->rlim_cur == RLIM_INFINITY)
1402 rlim64->rlim_cur = RLIM64_INFINITY;
1403 else
1404 rlim64->rlim_cur = rlim->rlim_cur;
1405 if (rlim->rlim_max == RLIM_INFINITY)
1406 rlim64->rlim_max = RLIM64_INFINITY;
1407 else
1408 rlim64->rlim_max = rlim->rlim_max;
1409}
1410
1411static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1412{
1413 if (rlim64_is_infinity(rlim64->rlim_cur))
1414 rlim->rlim_cur = RLIM_INFINITY;
1415 else
1416 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1417 if (rlim64_is_infinity(rlim64->rlim_max))
1418 rlim->rlim_max = RLIM_INFINITY;
1419 else
1420 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1421}
1422
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001423/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001424int do_prlimit(struct task_struct *tsk, unsigned int resource,
1425 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Jiri Slaby5b415352010-03-24 16:11:29 +01001427 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001428 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 if (resource >= RLIM_NLIMITS)
1431 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001432 if (new_rlim) {
1433 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1434 return -EINVAL;
1435 if (resource == RLIMIT_NOFILE &&
1436 new_rlim->rlim_max > sysctl_nr_open)
1437 return -EPERM;
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001440 /* protect tsk->signal and tsk->sighand from disappearing */
1441 read_lock(&tasklist_lock);
1442 if (!tsk->sighand) {
1443 retval = -ESRCH;
1444 goto out;
1445 }
1446
Jiri Slaby5b415352010-03-24 16:11:29 +01001447 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001448 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001449 if (new_rlim) {
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001450 /* Keep the capable check against init_user_ns until
1451 cgroups can contain all limits */
Jiri Slaby5b415352010-03-24 16:11:29 +01001452 if (new_rlim->rlim_max > rlim->rlim_max &&
1453 !capable(CAP_SYS_RESOURCE))
1454 retval = -EPERM;
1455 if (!retval)
1456 retval = security_task_setrlimit(tsk->group_leader,
1457 resource, new_rlim);
1458 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1459 /*
1460 * The caller is asking for an immediate RLIMIT_CPU
1461 * expiry. But we use the zero value to mean "it was
1462 * never set". So let's cheat and make it one second
1463 * instead
1464 */
1465 new_rlim->rlim_cur = 1;
1466 }
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001467 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001468 if (!retval) {
1469 if (old_rlim)
1470 *old_rlim = *rlim;
1471 if (new_rlim)
1472 *rlim = *new_rlim;
1473 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001474 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Andrew Mortond3561f72006-03-24 03:18:36 -08001476 /*
1477 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1478 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1479 * very long-standing error, and fixing it now risks breakage of
1480 * applications, so we live with it
1481 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001482 if (!retval && new_rlim && resource == RLIMIT_CPU &&
1483 new_rlim->rlim_cur != RLIM_INFINITY)
1484 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001485out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001486 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001487 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001490/* rcu lock must be held */
1491static int check_prlimit_permission(struct task_struct *task)
1492{
1493 const struct cred *cred = current_cred(), *tcred;
1494
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001495 if (current == task)
1496 return 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001497
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001498 tcred = __task_cred(task);
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -08001499 if (cred->user_ns == tcred->user_ns &&
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001500 (cred->uid == tcred->euid &&
1501 cred->uid == tcred->suid &&
1502 cred->uid == tcred->uid &&
1503 cred->gid == tcred->egid &&
1504 cred->gid == tcred->sgid &&
1505 cred->gid == tcred->gid))
1506 return 0;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -08001507 if (ns_capable(tcred->user_ns, CAP_SYS_RESOURCE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001508 return 0;
1509
1510 return -EPERM;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001511}
1512
1513SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1514 const struct rlimit64 __user *, new_rlim,
1515 struct rlimit64 __user *, old_rlim)
1516{
1517 struct rlimit64 old64, new64;
1518 struct rlimit old, new;
1519 struct task_struct *tsk;
1520 int ret;
1521
1522 if (new_rlim) {
1523 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1524 return -EFAULT;
1525 rlim64_to_rlim(&new64, &new);
1526 }
1527
1528 rcu_read_lock();
1529 tsk = pid ? find_task_by_vpid(pid) : current;
1530 if (!tsk) {
1531 rcu_read_unlock();
1532 return -ESRCH;
1533 }
1534 ret = check_prlimit_permission(tsk);
1535 if (ret) {
1536 rcu_read_unlock();
1537 return ret;
1538 }
1539 get_task_struct(tsk);
1540 rcu_read_unlock();
1541
1542 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1543 old_rlim ? &old : NULL);
1544
1545 if (!ret && old_rlim) {
1546 rlim_to_rlim64(&old, &old64);
1547 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1548 ret = -EFAULT;
1549 }
1550
1551 put_task_struct(tsk);
1552 return ret;
1553}
1554
Jiri Slaby7855c352009-08-26 23:45:34 +02001555SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1556{
1557 struct rlimit new_rlim;
1558
1559 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1560 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001561 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001562}
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564/*
1565 * It would make sense to put struct rusage in the task_struct,
1566 * except that would make the task_struct be *really big*. After
1567 * task_struct gets moved into malloc'ed memory, it would
1568 * make sense to do this. It will make moving the rest of the information
1569 * a lot simpler! (Which we're not doing right now because we're not
1570 * measuring them yet).
1571 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1573 * races with threads incrementing their own counters. But since word
1574 * reads are atomic, we either get new values or old values and we don't
1575 * care which for the sums. We always take the siglock to protect reading
1576 * the c* fields from p->signal from races with exit.c updating those
1577 * fields when reaping, so a sample either gets all the additions of a
1578 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001579 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001580 * Locking:
1581 * We need to take the siglock for CHILDEREN, SELF and BOTH
1582 * for the cases current multithreaded, non-current single threaded
1583 * non-current multithreaded. Thread traversal is now safe with
1584 * the siglock held.
1585 * Strictly speaking, we donot need to take the siglock if we are current and
1586 * single threaded, as no one else can take our signal_struct away, no one
1587 * else can reap the children to update signal->c* counters, and no one else
1588 * can race with the signal-> fields. If we do not take any lock, the
1589 * signal-> fields could be read out of order while another thread was just
1590 * exiting. So we should place a read memory barrier when we avoid the lock.
1591 * On the writer side, write memory barrier is implied in __exit_signal
1592 * as __exit_signal releases the siglock spinlock after updating the signal->
1593 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001594 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
1596
Frank Mayharf06febc2008-09-12 09:54:39 -07001597static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001598{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001599 r->ru_nvcsw += t->nvcsw;
1600 r->ru_nivcsw += t->nivcsw;
1601 r->ru_minflt += t->min_flt;
1602 r->ru_majflt += t->maj_flt;
1603 r->ru_inblock += task_io_get_inblock(t);
1604 r->ru_oublock += task_io_get_oublock(t);
1605}
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1608{
1609 struct task_struct *t;
1610 unsigned long flags;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001611 cputime_t tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001612 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 memset((char *) r, 0, sizeof *r);
Martin Schwidefsky64861632011-12-15 14:56:09 +01001615 utime = stime = 0;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001616
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001617 if (who == RUSAGE_THREAD) {
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09001618 task_times(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001619 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001620 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001621 goto out;
1622 }
1623
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001624 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001625 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 switch (who) {
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001628 case RUSAGE_BOTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 case RUSAGE_CHILDREN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 utime = p->signal->cutime;
1631 stime = p->signal->cstime;
1632 r->ru_nvcsw = p->signal->cnvcsw;
1633 r->ru_nivcsw = p->signal->cnivcsw;
1634 r->ru_minflt = p->signal->cmin_flt;
1635 r->ru_majflt = p->signal->cmaj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001636 r->ru_inblock = p->signal->cinblock;
1637 r->ru_oublock = p->signal->coublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001638 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001639
1640 if (who == RUSAGE_CHILDREN)
1641 break;
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 case RUSAGE_SELF:
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09001644 thread_group_times(p, &tgutime, &tgstime);
Martin Schwidefsky64861632011-12-15 14:56:09 +01001645 utime += tgutime;
1646 stime += tgstime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 r->ru_nvcsw += p->signal->nvcsw;
1648 r->ru_nivcsw += p->signal->nivcsw;
1649 r->ru_minflt += p->signal->min_flt;
1650 r->ru_majflt += p->signal->maj_flt;
Eric Dumazet6eaeeab2007-05-10 22:22:37 -07001651 r->ru_inblock += p->signal->inblock;
1652 r->ru_oublock += p->signal->oublock;
Jiri Pirko1f102062009-09-22 16:44:10 -07001653 if (maxrss < p->signal->maxrss)
1654 maxrss = p->signal->maxrss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 t = p;
1656 do {
Frank Mayharf06febc2008-09-12 09:54:39 -07001657 accumulate_thread_rusage(t, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 t = next_thread(t);
1659 } while (t != p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 default:
1663 BUG();
1664 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001665 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001666
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001667out:
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001668 cputime_to_timeval(utime, &r->ru_utime);
1669 cputime_to_timeval(stime, &r->ru_stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001670
1671 if (who != RUSAGE_CHILDREN) {
1672 struct mm_struct *mm = get_task_mm(p);
1673 if (mm) {
1674 setmax_mm_hiwater_rss(&maxrss, mm);
1675 mmput(mm);
1676 }
1677 }
1678 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
1681int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1682{
1683 struct rusage r;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 k_getrusage(p, who, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1686}
1687
Heiko Carstense48fbb62009-01-14 14:14:26 +01001688SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001690 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1691 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return -EINVAL;
1693 return getrusage(current, who, ru);
1694}
1695
Heiko Carstense48fbb62009-01-14 14:14:26 +01001696SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
1698 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1699 return mask;
1700}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001701
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001702#ifdef CONFIG_CHECKPOINT_RESTORE
1703static int prctl_set_mm(int opt, unsigned long addr,
1704 unsigned long arg4, unsigned long arg5)
1705{
1706 unsigned long rlim = rlimit(RLIMIT_DATA);
1707 unsigned long vm_req_flags;
1708 unsigned long vm_bad_flags;
1709 struct vm_area_struct *vma;
1710 int error = 0;
1711 struct mm_struct *mm = current->mm;
1712
1713 if (arg4 | arg5)
1714 return -EINVAL;
1715
Cyrill Gorcunov79f07132012-03-15 15:17:10 -07001716 if (!capable(CAP_SYS_RESOURCE))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001717 return -EPERM;
1718
1719 if (addr >= TASK_SIZE)
1720 return -EINVAL;
1721
1722 down_read(&mm->mmap_sem);
1723 vma = find_vma(mm, addr);
1724
1725 if (opt != PR_SET_MM_START_BRK && opt != PR_SET_MM_BRK) {
1726 /* It must be existing VMA */
1727 if (!vma || vma->vm_start > addr)
1728 goto out;
1729 }
1730
1731 error = -EINVAL;
1732 switch (opt) {
1733 case PR_SET_MM_START_CODE:
1734 case PR_SET_MM_END_CODE:
1735 vm_req_flags = VM_READ | VM_EXEC;
1736 vm_bad_flags = VM_WRITE | VM_MAYSHARE;
1737
1738 if ((vma->vm_flags & vm_req_flags) != vm_req_flags ||
1739 (vma->vm_flags & vm_bad_flags))
1740 goto out;
1741
1742 if (opt == PR_SET_MM_START_CODE)
1743 mm->start_code = addr;
1744 else
1745 mm->end_code = addr;
1746 break;
1747
1748 case PR_SET_MM_START_DATA:
1749 case PR_SET_MM_END_DATA:
1750 vm_req_flags = VM_READ | VM_WRITE;
1751 vm_bad_flags = VM_EXEC | VM_MAYSHARE;
1752
1753 if ((vma->vm_flags & vm_req_flags) != vm_req_flags ||
1754 (vma->vm_flags & vm_bad_flags))
1755 goto out;
1756
1757 if (opt == PR_SET_MM_START_DATA)
1758 mm->start_data = addr;
1759 else
1760 mm->end_data = addr;
1761 break;
1762
1763 case PR_SET_MM_START_STACK:
1764
1765#ifdef CONFIG_STACK_GROWSUP
1766 vm_req_flags = VM_READ | VM_WRITE | VM_GROWSUP;
1767#else
1768 vm_req_flags = VM_READ | VM_WRITE | VM_GROWSDOWN;
1769#endif
1770 if ((vma->vm_flags & vm_req_flags) != vm_req_flags)
1771 goto out;
1772
1773 mm->start_stack = addr;
1774 break;
1775
1776 case PR_SET_MM_START_BRK:
1777 if (addr <= mm->end_data)
1778 goto out;
1779
1780 if (rlim < RLIM_INFINITY &&
1781 (mm->brk - addr) +
1782 (mm->end_data - mm->start_data) > rlim)
1783 goto out;
1784
1785 mm->start_brk = addr;
1786 break;
1787
1788 case PR_SET_MM_BRK:
1789 if (addr <= mm->end_data)
1790 goto out;
1791
1792 if (rlim < RLIM_INFINITY &&
1793 (addr - mm->start_brk) +
1794 (mm->end_data - mm->start_data) > rlim)
1795 goto out;
1796
1797 mm->brk = addr;
1798 break;
1799
1800 default:
1801 error = -EINVAL;
1802 goto out;
1803 }
1804
1805 error = 0;
1806
1807out:
1808 up_read(&mm->mmap_sem);
1809
1810 return error;
1811}
1812#else /* CONFIG_CHECKPOINT_RESTORE */
1813static int prctl_set_mm(int opt, unsigned long addr,
1814 unsigned long arg4, unsigned long arg5)
1815{
1816 return -EINVAL;
1817}
1818#endif
1819
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001820SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
1821 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
David Howellsb6dff3e2008-11-14 10:39:16 +11001823 struct task_struct *me = current;
1824 unsigned char comm[sizeof(me->comm)];
1825 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
David Howellsd84f4f92008-11-14 10:39:23 +11001827 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
1828 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return error;
1830
David Howellsd84f4f92008-11-14 10:39:23 +11001831 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 switch (option) {
1833 case PR_SET_PDEATHSIG:
Jesper Juhl0730ded2005-09-06 15:17:37 -07001834 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 error = -EINVAL;
1836 break;
1837 }
David Howellsb6dff3e2008-11-14 10:39:16 +11001838 me->pdeath_signal = arg2;
1839 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 break;
1841 case PR_GET_PDEATHSIG:
David Howellsb6dff3e2008-11-14 10:39:16 +11001842 error = put_user(me->pdeath_signal, (int __user *)arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 break;
1844 case PR_GET_DUMPABLE:
David Howellsb6dff3e2008-11-14 10:39:16 +11001845 error = get_dumpable(me->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 break;
1847 case PR_SET_DUMPABLE:
Marcel Holtmannabf75a52006-07-12 13:12:00 +02001848 if (arg2 < 0 || arg2 > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 error = -EINVAL;
1850 break;
1851 }
David Howellsb6dff3e2008-11-14 10:39:16 +11001852 set_dumpable(me->mm, arg2);
1853 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 break;
1855
1856 case PR_SET_UNALIGN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001857 error = SET_UNALIGN_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 break;
1859 case PR_GET_UNALIGN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001860 error = GET_UNALIGN_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 break;
1862 case PR_SET_FPEMU:
David Howellsb6dff3e2008-11-14 10:39:16 +11001863 error = SET_FPEMU_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 break;
1865 case PR_GET_FPEMU:
David Howellsb6dff3e2008-11-14 10:39:16 +11001866 error = GET_FPEMU_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 break;
1868 case PR_SET_FPEXC:
David Howellsb6dff3e2008-11-14 10:39:16 +11001869 error = SET_FPEXC_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 break;
1871 case PR_GET_FPEXC:
David Howellsb6dff3e2008-11-14 10:39:16 +11001872 error = GET_FPEXC_CTL(me, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 break;
1874 case PR_GET_TIMING:
1875 error = PR_TIMING_STATISTICAL;
1876 break;
1877 case PR_SET_TIMING:
Shi Weihua7b266552008-05-23 13:04:59 -07001878 if (arg2 != PR_TIMING_STATISTICAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 error = -EINVAL;
David Howellsb6dff3e2008-11-14 10:39:16 +11001880 else
1881 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 break;
1883
David Howellsb6dff3e2008-11-14 10:39:16 +11001884 case PR_SET_NAME:
1885 comm[sizeof(me->comm)-1] = 0;
1886 if (strncpy_from_user(comm, (char __user *)arg2,
1887 sizeof(me->comm) - 1) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -EFAULT;
David Howellsb6dff3e2008-11-14 10:39:16 +11001889 set_task_comm(me, comm);
Vladimir Zapolskiyf786ecb2011-09-21 09:26:44 +00001890 proc_comm_connector(me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 return 0;
David Howellsb6dff3e2008-11-14 10:39:16 +11001892 case PR_GET_NAME:
1893 get_task_comm(comm, me);
1894 if (copy_to_user((char __user *)arg2, comm,
1895 sizeof(comm)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 return -EFAULT;
1897 return 0;
Anton Blanchard651d7652006-06-07 16:10:19 +10001898 case PR_GET_ENDIAN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001899 error = GET_ENDIAN(me, arg2);
Anton Blanchard651d7652006-06-07 16:10:19 +10001900 break;
1901 case PR_SET_ENDIAN:
David Howellsb6dff3e2008-11-14 10:39:16 +11001902 error = SET_ENDIAN(me, arg2);
Anton Blanchard651d7652006-06-07 16:10:19 +10001903 break;
1904
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -07001905 case PR_GET_SECCOMP:
1906 error = prctl_get_seccomp();
1907 break;
1908 case PR_SET_SECCOMP:
1909 error = prctl_set_seccomp(arg2);
1910 break;
Erik Bosman8fb402b2008-04-11 18:54:17 +02001911 case PR_GET_TSC:
1912 error = GET_TSC_CTL(arg2);
1913 break;
1914 case PR_SET_TSC:
1915 error = SET_TSC_CTL(arg2);
1916 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001917 case PR_TASK_PERF_EVENTS_DISABLE:
1918 error = perf_event_task_disable();
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001919 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001920 case PR_TASK_PERF_EVENTS_ENABLE:
1921 error = perf_event_task_enable();
Ingo Molnar1d1c7dd2008-12-11 14:59:31 +01001922 break;
Arjan van de Ven69766752008-09-01 15:52:40 -07001923 case PR_GET_TIMERSLACK:
1924 error = current->timer_slack_ns;
1925 break;
1926 case PR_SET_TIMERSLACK:
1927 if (arg2 <= 0)
1928 current->timer_slack_ns =
1929 current->default_timer_slack_ns;
1930 else
1931 current->timer_slack_ns = arg2;
David Howellsb6dff3e2008-11-14 10:39:16 +11001932 error = 0;
Arjan van de Ven69766752008-09-01 15:52:40 -07001933 break;
Andi Kleen4db96cf2009-09-16 11:50:14 +02001934 case PR_MCE_KILL:
1935 if (arg4 | arg5)
1936 return -EINVAL;
1937 switch (arg2) {
Andi Kleen1087e9b2009-10-04 02:20:11 +02001938 case PR_MCE_KILL_CLEAR:
Andi Kleen4db96cf2009-09-16 11:50:14 +02001939 if (arg3 != 0)
1940 return -EINVAL;
1941 current->flags &= ~PF_MCE_PROCESS;
1942 break;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001943 case PR_MCE_KILL_SET:
Andi Kleen4db96cf2009-09-16 11:50:14 +02001944 current->flags |= PF_MCE_PROCESS;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001945 if (arg3 == PR_MCE_KILL_EARLY)
Andi Kleen4db96cf2009-09-16 11:50:14 +02001946 current->flags |= PF_MCE_EARLY;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001947 else if (arg3 == PR_MCE_KILL_LATE)
Andi Kleen4db96cf2009-09-16 11:50:14 +02001948 current->flags &= ~PF_MCE_EARLY;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001949 else if (arg3 == PR_MCE_KILL_DEFAULT)
1950 current->flags &=
1951 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
1952 else
1953 return -EINVAL;
Andi Kleen4db96cf2009-09-16 11:50:14 +02001954 break;
1955 default:
1956 return -EINVAL;
1957 }
1958 error = 0;
1959 break;
Andi Kleen1087e9b2009-10-04 02:20:11 +02001960 case PR_MCE_KILL_GET:
1961 if (arg2 | arg3 | arg4 | arg5)
1962 return -EINVAL;
1963 if (current->flags & PF_MCE_PROCESS)
1964 error = (current->flags & PF_MCE_EARLY) ?
1965 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
1966 else
1967 error = PR_MCE_KILL_DEFAULT;
1968 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001969 case PR_SET_MM:
1970 error = prctl_set_mm(arg2, arg3, arg4, arg5);
1971 break;
Lennart Poetteringebec18a2012-03-23 15:01:54 -07001972 case PR_SET_CHILD_SUBREAPER:
1973 me->signal->is_child_subreaper = !!arg2;
1974 error = 0;
1975 break;
1976 case PR_GET_CHILD_SUBREAPER:
1977 error = put_user(me->signal->is_child_subreaper,
1978 (int __user *) arg2);
1979 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 default:
1981 error = -EINVAL;
1982 break;
1983 }
1984 return error;
1985}
Andi Kleen3cfc3482006-09-26 10:52:28 +02001986
Heiko Carstens836f92a2009-01-14 14:14:33 +01001987SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
1988 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02001989{
1990 int err = 0;
1991 int cpu = raw_smp_processor_id();
1992 if (cpup)
1993 err |= put_user(cpu, cpup);
1994 if (nodep)
1995 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02001996 return err ? -EFAULT : 0;
1997}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001998
1999char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
2000
Neil Hormana06a4dc2010-05-26 14:42:58 -07002001static void argv_cleanup(struct subprocess_info *info)
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002002{
Neil Hormana06a4dc2010-05-26 14:42:58 -07002003 argv_free(info->argv);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002004}
2005
2006/**
2007 * orderly_poweroff - Trigger an orderly system poweroff
2008 * @force: force poweroff if command execution fails
2009 *
2010 * This may be called from any context to trigger a system shutdown.
2011 * If the orderly shutdown fails, it will force an immediate shutdown.
2012 */
2013int orderly_poweroff(bool force)
2014{
2015 int argc;
2016 char **argv = argv_split(GFP_ATOMIC, poweroff_cmd, &argc);
2017 static char *envp[] = {
2018 "HOME=/",
2019 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
2020 NULL
2021 };
2022 int ret = -ENOMEM;
2023 struct subprocess_info *info;
2024
2025 if (argv == NULL) {
2026 printk(KERN_WARNING "%s failed to allocate memory for \"%s\"\n",
2027 __func__, poweroff_cmd);
2028 goto out;
2029 }
2030
KOSAKI Motohiroac331d12008-07-25 01:45:38 -07002031 info = call_usermodehelper_setup(argv[0], argv, envp, GFP_ATOMIC);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002032 if (info == NULL) {
2033 argv_free(argv);
2034 goto out;
2035 }
2036
Neil Hormana06a4dc2010-05-26 14:42:58 -07002037 call_usermodehelper_setfns(info, NULL, argv_cleanup, NULL);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002038
Jeremy Fitzhardinge86313c42007-07-17 18:37:03 -07002039 ret = call_usermodehelper_exec(info, UMH_NO_WAIT);
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002040
2041 out:
2042 if (ret && force) {
2043 printk(KERN_WARNING "Failed to start orderly shutdown: "
2044 "forcing the issue\n");
2045
2046 /* I guess this should try to kick off some daemon to
2047 sync and poweroff asap. Or not even bother syncing
2048 if we're doing an emergency shutdown? */
2049 emergency_sync();
2050 kernel_power_off();
2051 }
2052
2053 return ret;
2054}
2055EXPORT_SYMBOL_GPL(orderly_poweroff);