blob: dc71ec1e196724f06d4a9404329855f4e29f2a9d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/workqueue.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080020#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/device.h>
22#include <linux/key.h>
23#include <linux/times.h>
24#include <linux/posix-timers.h>
25#include <linux/security.h>
26#include <linux/dcookies.h>
27#include <linux/suspend.h>
28#include <linux/tty.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070029#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080030#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020031#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070032#include <linux/task_io_accounting_ops.h>
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070033#include <linux/seccomp.h>
Mark Lord40477272007-10-01 01:20:10 -070034#include <linux/cpu.h>
Christoph Hellwige28cbf22010-03-10 15:21:19 -080035#include <linux/personality.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080036#include <linux/ptrace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040037#include <linux/fs_struct.h>
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -070038#include <linux/file.h>
39#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010041#include <linux/syscore_ops.h>
Andi Kleenbe274252011-08-19 16:15:10 -070042#include <linux/version.h>
43#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <linux/compat.h>
46#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080047#include <linux/kprobes.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070048#include <linux/user_namespace.h>
Chen Gang7fe5e042013-02-21 16:43:06 -080049#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Stephen Rothwell4a22f162013-04-30 15:27:37 -070051#include <linux/sched.h>
Ingo Molnar4eb5aaa2017-02-08 18:51:29 +010052#include <linux/sched/autogroup.h>
Ingo Molnar4f177222017-02-08 08:45:17 +010053#include <linux/sched/loadavg.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010054#include <linux/sched/mm.h>
Stephen Rothwell4a22f162013-04-30 15:27:37 -070055#include <linux/rcupdate.h>
56#include <linux/uidgid.h>
57#include <linux/cred.h>
58
Seiji Aguchi04c68622011-01-12 16:59:30 -080059#include <linux/kmsg_dump.h>
Andi Kleenbe274252011-08-19 16:15:10 -070060/* Move somewhere else to avoid recompiling? */
61#include <generated/utsrelease.h>
Seiji Aguchi04c68622011-01-12 16:59:30 -080062
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080063#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/io.h>
65#include <asm/unistd.h>
66
67#ifndef SET_UNALIGN_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070068# define SET_UNALIGN_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#endif
70#ifndef GET_UNALIGN_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070071# define GET_UNALIGN_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73#ifndef SET_FPEMU_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070074# define SET_FPEMU_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif
76#ifndef GET_FPEMU_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070077# define GET_FPEMU_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#endif
79#ifndef SET_FPEXC_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070080# define SET_FPEXC_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82#ifndef GET_FPEXC_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070083# define GET_FPEXC_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100085#ifndef GET_ENDIAN
vishnu.psec94fc32014-10-09 15:30:23 -070086# define GET_ENDIAN(a, b) (-EINVAL)
Anton Blanchard651d7652006-06-07 16:10:19 +100087#endif
88#ifndef SET_ENDIAN
vishnu.psec94fc32014-10-09 15:30:23 -070089# define SET_ENDIAN(a, b) (-EINVAL)
Anton Blanchard651d7652006-06-07 16:10:19 +100090#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +020091#ifndef GET_TSC_CTL
92# define GET_TSC_CTL(a) (-EINVAL)
93#endif
94#ifndef SET_TSC_CTL
95# define SET_TSC_CTL(a) (-EINVAL)
96#endif
Dave Hansenfe3d1972014-11-14 07:18:29 -080097#ifndef MPX_ENABLE_MANAGEMENT
Dave Hansen46a6e0c2015-06-07 11:37:02 -070098# define MPX_ENABLE_MANAGEMENT() (-EINVAL)
Dave Hansenfe3d1972014-11-14 07:18:29 -080099#endif
100#ifndef MPX_DISABLE_MANAGEMENT
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700101# define MPX_DISABLE_MANAGEMENT() (-EINVAL)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800102#endif
Paul Burton97915542015-01-08 12:17:37 +0000103#ifndef GET_FP_MODE
104# define GET_FP_MODE(a) (-EINVAL)
105#endif
106#ifndef SET_FP_MODE
107# define SET_FP_MODE(a,b) (-EINVAL)
108#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/*
111 * this is where the system-wide overflow UID and GID are defined, for
112 * architectures that now have 32-bit UID/GID but didn't in the past
113 */
114
115int overflowuid = DEFAULT_OVERFLOWUID;
116int overflowgid = DEFAULT_OVERFLOWGID;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118EXPORT_SYMBOL(overflowuid);
119EXPORT_SYMBOL(overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
122 * the same as above, but for filesystems which can only store a 16-bit
123 * UID and GID. as such, this is needed on all architectures
124 */
125
126int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
127int fs_overflowgid = DEFAULT_FS_OVERFLOWUID;
128
129EXPORT_SYMBOL(fs_overflowuid);
130EXPORT_SYMBOL(fs_overflowgid);
131
132/*
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700133 * Returns true if current's euid is same as p's uid or euid,
134 * or has CAP_SYS_NICE to p's user_ns.
135 *
136 * Called with rcu_read_lock, creds are safe
137 */
138static bool set_one_prio_perm(struct task_struct *p)
139{
140 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
141
Eric W. Biederman5af66202012-03-03 20:21:47 -0800142 if (uid_eq(pcred->uid, cred->euid) ||
143 uid_eq(pcred->euid, cred->euid))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700144 return true;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800145 if (ns_capable(pcred->user_ns, CAP_SYS_NICE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700146 return true;
147 return false;
148}
149
150/*
David Howellsc69e8d92008-11-14 10:39:19 +1100151 * set the priority of a task
152 * - the caller must hold the RCU read lock
153 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int set_one_prio(struct task_struct *p, int niceval, int error)
155{
156 int no_nice;
157
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700158 if (!set_one_prio_perm(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 error = -EPERM;
160 goto out;
161 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700162 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 error = -EACCES;
164 goto out;
165 }
166 no_nice = security_task_setnice(p, niceval);
167 if (no_nice) {
168 error = no_nice;
169 goto out;
170 }
171 if (error == -ESRCH)
172 error = 0;
173 set_user_nice(p, niceval);
174out:
175 return error;
176}
177
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100178SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct task_struct *g, *p;
181 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100182 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800184 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800185 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Daniel Walker3e88c552007-05-10 22:22:53 -0700187 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto out;
189
190 /* normalize: avoid signed division (rounding problems) */
191 error = -ESRCH;
Dongsheng Yangc4a4d2f2014-02-11 15:34:51 +0800192 if (niceval < MIN_NICE)
193 niceval = MIN_NICE;
194 if (niceval > MAX_NICE)
195 niceval = MAX_NICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000197 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 read_lock(&tasklist_lock);
199 switch (which) {
vishnu.psec94fc32014-10-09 15:30:23 -0700200 case PRIO_PROCESS:
201 if (who)
202 p = find_task_by_vpid(who);
203 else
204 p = current;
205 if (p)
206 error = set_one_prio(p, niceval, error);
207 break;
208 case PRIO_PGRP:
209 if (who)
210 pgrp = find_vpid(who);
211 else
212 pgrp = task_pgrp(current);
213 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
214 error = set_one_prio(p, niceval, error);
215 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
216 break;
217 case PRIO_USER:
218 uid = make_kuid(cred->user_ns, who);
219 user = cred->user;
220 if (!who)
221 uid = cred->uid;
222 else if (!uid_eq(uid, cred->uid)) {
223 user = find_user(uid);
224 if (!user)
David Howells86a264a2008-11-14 10:39:18 +1100225 goto out_unlock; /* No processes for this user */
vishnu.psec94fc32014-10-09 15:30:23 -0700226 }
227 do_each_thread(g, p) {
Ben Segall8639b462015-11-06 16:32:48 -0800228 if (uid_eq(task_uid(p), uid) && task_pid_vnr(p))
vishnu.psec94fc32014-10-09 15:30:23 -0700229 error = set_one_prio(p, niceval, error);
230 } while_each_thread(g, p);
231 if (!uid_eq(uid, cred->uid))
232 free_uid(user); /* For find_user() */
233 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235out_unlock:
236 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000237 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238out:
239 return error;
240}
241
242/*
243 * Ugh. To avoid negative return values, "getpriority()" will
244 * not return the normal nice-value, but a negated value that
245 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
246 * to stay compatible.
247 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100248SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct task_struct *g, *p;
251 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100252 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800254 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800255 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Daniel Walker3e88c552007-05-10 22:22:53 -0700257 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return -EINVAL;
259
Tetsuo Handa70118832010-02-22 12:44:16 -0800260 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 read_lock(&tasklist_lock);
262 switch (which) {
vishnu.psec94fc32014-10-09 15:30:23 -0700263 case PRIO_PROCESS:
264 if (who)
265 p = find_task_by_vpid(who);
266 else
267 p = current;
268 if (p) {
269 niceval = nice_to_rlimit(task_nice(p));
270 if (niceval > retval)
271 retval = niceval;
272 }
273 break;
274 case PRIO_PGRP:
275 if (who)
276 pgrp = find_vpid(who);
277 else
278 pgrp = task_pgrp(current);
279 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
280 niceval = nice_to_rlimit(task_nice(p));
281 if (niceval > retval)
282 retval = niceval;
283 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
284 break;
285 case PRIO_USER:
286 uid = make_kuid(cred->user_ns, who);
287 user = cred->user;
288 if (!who)
289 uid = cred->uid;
290 else if (!uid_eq(uid, cred->uid)) {
291 user = find_user(uid);
292 if (!user)
293 goto out_unlock; /* No processes for this user */
294 }
295 do_each_thread(g, p) {
Ben Segall8639b462015-11-06 16:32:48 -0800296 if (uid_eq(task_uid(p), uid) && task_pid_vnr(p)) {
Dongsheng Yang7aa2c012014-05-08 18:33:49 +0900297 niceval = nice_to_rlimit(task_nice(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (niceval > retval)
299 retval = niceval;
300 }
vishnu.psec94fc32014-10-09 15:30:23 -0700301 } while_each_thread(g, p);
302 if (!uid_eq(uid, cred->uid))
303 free_uid(user); /* for find_user() */
304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306out_unlock:
307 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800308 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 return retval;
311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313/*
314 * Unprivileged users may change the real gid to the effective gid
315 * or vice versa. (BSD-style)
316 *
317 * If you set the real gid at all, or set the effective gid to a value not
318 * equal to the real gid, then the saved gid is set to the new effective gid.
319 *
320 * This makes it possible for a setgid program to completely drop its
321 * privileges, which is often a useful assertion to make when you are doing
322 * a security audit over a program.
323 *
324 * The general idea is that a program which uses just setregid() will be
325 * 100% compatible with BSD. A program which uses just setgid() will be
vishnu.psec94fc32014-10-09 15:30:23 -0700326 * 100% compatible with POSIX with saved IDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 *
328 * SMP: There are not races, the GIDs are checked only by filesystem
329 * operations (as far as semantic preservation is concerned).
330 */
Iulia Manda28138932015-04-15 16:16:41 -0700331#ifdef CONFIG_MULTIUSER
Heiko Carstensae1251a2009-01-14 14:14:05 +0100332SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800334 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100335 const struct cred *old;
336 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800338 kgid_t krgid, kegid;
339
340 krgid = make_kgid(ns, rgid);
341 kegid = make_kgid(ns, egid);
342
343 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
344 return -EINVAL;
345 if ((egid != (gid_t) -1) && !gid_valid(kegid))
346 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
David Howellsd84f4f92008-11-14 10:39:23 +1100348 new = prepare_creds();
349 if (!new)
350 return -ENOMEM;
351 old = current_cred();
352
David Howellsd84f4f92008-11-14 10:39:23 +1100353 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (rgid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800355 if (gid_eq(old->gid, krgid) ||
356 gid_eq(old->egid, krgid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700357 ns_capable(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800358 new->gid = krgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 else
David Howellsd84f4f92008-11-14 10:39:23 +1100360 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362 if (egid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800363 if (gid_eq(old->gid, kegid) ||
364 gid_eq(old->egid, kegid) ||
365 gid_eq(old->sgid, kegid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700366 ns_capable(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800367 new->egid = kegid;
Cal Peake756184b2006-09-30 23:27:24 -0700368 else
David Howellsd84f4f92008-11-14 10:39:23 +1100369 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
David Howellsd84f4f92008-11-14 10:39:23 +1100371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (rgid != (gid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800373 (egid != (gid_t) -1 && !gid_eq(kegid, old->gid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100374 new->sgid = new->egid;
375 new->fsgid = new->egid;
376
377 return commit_creds(new);
378
379error:
380 abort_creds(new);
381 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384/*
vishnu.psec94fc32014-10-09 15:30:23 -0700385 * setgid() is implemented like SysV w/ SAVED_IDS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *
387 * SMP: Same implicit races as above.
388 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100389SYSCALL_DEFINE1(setgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800391 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100392 const struct cred *old;
393 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800395 kgid_t kgid;
396
397 kgid = make_kgid(ns, gid);
398 if (!gid_valid(kgid))
399 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
David Howellsd84f4f92008-11-14 10:39:23 +1100401 new = prepare_creds();
402 if (!new)
403 return -ENOMEM;
404 old = current_cred();
405
David Howellsd84f4f92008-11-14 10:39:23 +1100406 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700407 if (ns_capable(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800408 new->gid = new->egid = new->sgid = new->fsgid = kgid;
409 else if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->sgid))
410 new->egid = new->fsgid = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 else
David Howellsd84f4f92008-11-14 10:39:23 +1100412 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
David Howellsd84f4f92008-11-14 10:39:23 +1100414 return commit_creds(new);
415
416error:
417 abort_creds(new);
418 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
Dhaval Giani54e99122009-02-27 15:13:54 +0530420
David Howellsd84f4f92008-11-14 10:39:23 +1100421/*
422 * change the user struct in a credentials set to match the new UID
423 */
424static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 struct user_struct *new_user;
427
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800428 new_user = alloc_uid(new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (!new_user)
430 return -EAGAIN;
431
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400432 /*
433 * We don't fail in case of NPROC limit excess here because too many
434 * poorly written programs don't check set*uid() return code, assuming
435 * it never fails if called by root. We may still enforce NPROC limit
436 * for programs doing set*uid()+execve() by harmlessly deferring the
437 * failure to the execve() stage.
438 */
Jiri Slaby78d7d402010-03-05 13:42:54 -0800439 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400440 new_user != INIT_USER)
441 current->flags |= PF_NPROC_EXCEEDED;
442 else
443 current->flags &= ~PF_NPROC_EXCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
David Howellsd84f4f92008-11-14 10:39:23 +1100445 free_uid(new->user);
446 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return 0;
448}
449
450/*
451 * Unprivileged users may change the real uid to the effective uid
452 * or vice versa. (BSD-style)
453 *
454 * If you set the real uid at all, or set the effective uid to a value not
455 * equal to the real uid, then the saved uid is set to the new effective uid.
456 *
457 * This makes it possible for a setuid program to completely drop its
458 * privileges, which is often a useful assertion to make when you are doing
459 * a security audit over a program.
460 *
461 * The general idea is that a program which uses just setreuid() will be
462 * 100% compatible with BSD. A program which uses just setuid() will be
vishnu.psec94fc32014-10-09 15:30:23 -0700463 * 100% compatible with POSIX with saved IDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100465SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800467 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100468 const struct cred *old;
469 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800471 kuid_t kruid, keuid;
472
473 kruid = make_kuid(ns, ruid);
474 keuid = make_kuid(ns, euid);
475
476 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
477 return -EINVAL;
478 if ((euid != (uid_t) -1) && !uid_valid(keuid))
479 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
David Howellsd84f4f92008-11-14 10:39:23 +1100481 new = prepare_creds();
482 if (!new)
483 return -ENOMEM;
484 old = current_cred();
485
David Howellsd84f4f92008-11-14 10:39:23 +1100486 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800488 new->uid = kruid;
489 if (!uid_eq(old->uid, kruid) &&
490 !uid_eq(old->euid, kruid) &&
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700491 !ns_capable(old->user_ns, CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100492 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494
495 if (euid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800496 new->euid = keuid;
497 if (!uid_eq(old->uid, keuid) &&
498 !uid_eq(old->euid, keuid) &&
499 !uid_eq(old->suid, keuid) &&
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700500 !ns_capable(old->user_ns, CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100501 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800504 if (!uid_eq(new->uid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530505 retval = set_user(new);
506 if (retval < 0)
507 goto error;
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (ruid != (uid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800510 (euid != (uid_t) -1 && !uid_eq(keuid, old->uid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100511 new->suid = new->euid;
512 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
David Howellsd84f4f92008-11-14 10:39:23 +1100514 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
515 if (retval < 0)
516 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
David Howellsd84f4f92008-11-14 10:39:23 +1100518 return commit_creds(new);
519
520error:
521 abort_creds(new);
522 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
vishnu.psec94fc32014-10-09 15:30:23 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/*
vishnu.psec94fc32014-10-09 15:30:23 -0700526 * setuid() is implemented like SysV with SAVED_IDS
527 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 * Note that SAVED_ID's is deficient in that a setuid root program
vishnu.psec94fc32014-10-09 15:30:23 -0700529 * like sendmail, for example, cannot set its uid to be a normal
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * user and then switch back, because if you're root, setuid() sets
531 * the saved uid too. If you don't like this, blame the bright people
532 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
533 * will allow a root program to temporarily drop privileges and be able to
vishnu.psec94fc32014-10-09 15:30:23 -0700534 * regain them by swapping the real and effective uid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100536SYSCALL_DEFINE1(setuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800538 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100539 const struct cred *old;
540 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800542 kuid_t kuid;
543
544 kuid = make_kuid(ns, uid);
545 if (!uid_valid(kuid))
546 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
David Howellsd84f4f92008-11-14 10:39:23 +1100548 new = prepare_creds();
549 if (!new)
550 return -ENOMEM;
551 old = current_cred();
552
David Howellsd84f4f92008-11-14 10:39:23 +1100553 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700554 if (ns_capable(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800555 new->suid = new->uid = kuid;
556 if (!uid_eq(kuid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530557 retval = set_user(new);
558 if (retval < 0)
559 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100560 }
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800561 } else if (!uid_eq(kuid, old->uid) && !uid_eq(kuid, new->suid)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100562 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800565 new->fsuid = new->euid = kuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
David Howellsd84f4f92008-11-14 10:39:23 +1100567 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
568 if (retval < 0)
569 goto error;
570
571 return commit_creds(new);
572
573error:
574 abort_creds(new);
575 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578
579/*
580 * This function implements a generic ability to update ruid, euid,
581 * and suid. This allows you to implement the 4.4 compatible seteuid().
582 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100583SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800585 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100586 const struct cred *old;
587 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800589 kuid_t kruid, keuid, ksuid;
590
591 kruid = make_kuid(ns, ruid);
592 keuid = make_kuid(ns, euid);
593 ksuid = make_kuid(ns, suid);
594
595 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
596 return -EINVAL;
597
598 if ((euid != (uid_t) -1) && !uid_valid(keuid))
599 return -EINVAL;
600
601 if ((suid != (uid_t) -1) && !uid_valid(ksuid))
602 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
David Howellsd84f4f92008-11-14 10:39:23 +1100604 new = prepare_creds();
605 if (!new)
606 return -ENOMEM;
607
David Howellsd84f4f92008-11-14 10:39:23 +1100608 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
David Howellsd84f4f92008-11-14 10:39:23 +1100610 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700611 if (!ns_capable(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800612 if (ruid != (uid_t) -1 && !uid_eq(kruid, old->uid) &&
613 !uid_eq(kruid, old->euid) && !uid_eq(kruid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100614 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800615 if (euid != (uid_t) -1 && !uid_eq(keuid, old->uid) &&
616 !uid_eq(keuid, old->euid) && !uid_eq(keuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100617 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800618 if (suid != (uid_t) -1 && !uid_eq(ksuid, old->uid) &&
619 !uid_eq(ksuid, old->euid) && !uid_eq(ksuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100620 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
David Howellsd84f4f92008-11-14 10:39:23 +1100622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800624 new->uid = kruid;
625 if (!uid_eq(kruid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530626 retval = set_user(new);
627 if (retval < 0)
628 goto error;
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
David Howellsd84f4f92008-11-14 10:39:23 +1100631 if (euid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800632 new->euid = keuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (suid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800634 new->suid = ksuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100635 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David Howellsd84f4f92008-11-14 10:39:23 +1100637 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
638 if (retval < 0)
639 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
David Howellsd84f4f92008-11-14 10:39:23 +1100641 return commit_creds(new);
642
643error:
644 abort_creds(new);
645 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800648SYSCALL_DEFINE3(getresuid, uid_t __user *, ruidp, uid_t __user *, euidp, uid_t __user *, suidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
David Howells86a264a2008-11-14 10:39:18 +1100650 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800652 uid_t ruid, euid, suid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800654 ruid = from_kuid_munged(cred->user_ns, cred->uid);
655 euid = from_kuid_munged(cred->user_ns, cred->euid);
656 suid = from_kuid_munged(cred->user_ns, cred->suid);
657
vishnu.psec94fc32014-10-09 15:30:23 -0700658 retval = put_user(ruid, ruidp);
659 if (!retval) {
660 retval = put_user(euid, euidp);
661 if (!retval)
662 return put_user(suid, suidp);
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return retval;
665}
666
667/*
668 * Same as above, but for rgid, egid, sgid.
669 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100670SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800672 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100673 const struct cred *old;
674 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800676 kgid_t krgid, kegid, ksgid;
677
678 krgid = make_kgid(ns, rgid);
679 kegid = make_kgid(ns, egid);
680 ksgid = make_kgid(ns, sgid);
681
682 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
683 return -EINVAL;
684 if ((egid != (gid_t) -1) && !gid_valid(kegid))
685 return -EINVAL;
686 if ((sgid != (gid_t) -1) && !gid_valid(ksgid))
687 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
David Howellsd84f4f92008-11-14 10:39:23 +1100689 new = prepare_creds();
690 if (!new)
691 return -ENOMEM;
692 old = current_cred();
693
David Howellsd84f4f92008-11-14 10:39:23 +1100694 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700695 if (!ns_capable(old->user_ns, CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800696 if (rgid != (gid_t) -1 && !gid_eq(krgid, old->gid) &&
697 !gid_eq(krgid, old->egid) && !gid_eq(krgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100698 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800699 if (egid != (gid_t) -1 && !gid_eq(kegid, old->gid) &&
700 !gid_eq(kegid, old->egid) && !gid_eq(kegid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100701 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800702 if (sgid != (gid_t) -1 && !gid_eq(ksgid, old->gid) &&
703 !gid_eq(ksgid, old->egid) && !gid_eq(ksgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100704 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
David Howellsd84f4f92008-11-14 10:39:23 +1100707 if (rgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800708 new->gid = krgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100709 if (egid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800710 new->egid = kegid;
David Howellsd84f4f92008-11-14 10:39:23 +1100711 if (sgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800712 new->sgid = ksgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100713 new->fsgid = new->egid;
714
715 return commit_creds(new);
716
717error:
718 abort_creds(new);
719 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800722SYSCALL_DEFINE3(getresgid, gid_t __user *, rgidp, gid_t __user *, egidp, gid_t __user *, sgidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
David Howells86a264a2008-11-14 10:39:18 +1100724 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800726 gid_t rgid, egid, sgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800728 rgid = from_kgid_munged(cred->user_ns, cred->gid);
729 egid = from_kgid_munged(cred->user_ns, cred->egid);
730 sgid = from_kgid_munged(cred->user_ns, cred->sgid);
731
vishnu.psec94fc32014-10-09 15:30:23 -0700732 retval = put_user(rgid, rgidp);
733 if (!retval) {
734 retval = put_user(egid, egidp);
735 if (!retval)
736 retval = put_user(sgid, sgidp);
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 return retval;
740}
741
742
743/*
744 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
745 * is used for "access()" and for the NFS daemon (letting nfsd stay at
746 * whatever uid it wants to). It normally shadows "euid", except when
747 * explicitly set by setfsuid() or for access..
748 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100749SYSCALL_DEFINE1(setfsuid, uid_t, uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
David Howellsd84f4f92008-11-14 10:39:23 +1100751 const struct cred *old;
752 struct cred *new;
753 uid_t old_fsuid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800754 kuid_t kuid;
755
756 old = current_cred();
757 old_fsuid = from_kuid_munged(old->user_ns, old->fsuid);
758
759 kuid = make_kuid(old->user_ns, uid);
760 if (!uid_valid(kuid))
761 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
David Howellsd84f4f92008-11-14 10:39:23 +1100763 new = prepare_creds();
764 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800765 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800767 if (uid_eq(kuid, old->uid) || uid_eq(kuid, old->euid) ||
768 uid_eq(kuid, old->suid) || uid_eq(kuid, old->fsuid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700769 ns_capable(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800770 if (!uid_eq(kuid, old->fsuid)) {
771 new->fsuid = kuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100772 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
773 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
David Howellsd84f4f92008-11-14 10:39:23 +1100777 abort_creds(new);
778 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
David Howellsd84f4f92008-11-14 10:39:23 +1100780change_okay:
781 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return old_fsuid;
783}
784
785/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +0200786 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 */
Heiko Carstensae1251a2009-01-14 14:14:05 +0100788SYSCALL_DEFINE1(setfsgid, gid_t, gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
David Howellsd84f4f92008-11-14 10:39:23 +1100790 const struct cred *old;
791 struct cred *new;
792 gid_t old_fsgid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800793 kgid_t kgid;
794
795 old = current_cred();
796 old_fsgid = from_kgid_munged(old->user_ns, old->fsgid);
797
798 kgid = make_kgid(old->user_ns, gid);
799 if (!gid_valid(kgid))
800 return old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
David Howellsd84f4f92008-11-14 10:39:23 +1100802 new = prepare_creds();
803 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800804 return old_fsgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100805
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800806 if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->egid) ||
807 gid_eq(kgid, old->sgid) || gid_eq(kgid, old->fsgid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700808 ns_capable(old->user_ns, CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800809 if (!gid_eq(kgid, old->fsgid)) {
810 new->fsgid = kgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100811 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
David Howellsd84f4f92008-11-14 10:39:23 +1100814
David Howellsd84f4f92008-11-14 10:39:23 +1100815 abort_creds(new);
816 return old_fsgid;
817
818change_okay:
819 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return old_fsgid;
821}
Iulia Manda28138932015-04-15 16:16:41 -0700822#endif /* CONFIG_MULTIUSER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Stephen Rothwell4a22f162013-04-30 15:27:37 -0700824/**
825 * sys_getpid - return the thread group id of the current process
826 *
827 * Note, despite the name, this returns the tgid not the pid. The tgid and
828 * the pid are identical unless CLONE_THREAD was specified on clone() in
829 * which case the tgid is the same in all threads of the same group.
830 *
831 * This is SMP safe as current->tgid does not change.
832 */
833SYSCALL_DEFINE0(getpid)
834{
835 return task_tgid_vnr(current);
836}
837
838/* Thread ID - the internal kernel "pid" */
839SYSCALL_DEFINE0(gettid)
840{
841 return task_pid_vnr(current);
842}
843
844/*
845 * Accessing ->real_parent is not SMP-safe, it could
846 * change from under us. However, we can use a stale
847 * value of ->real_parent under rcu_read_lock(), see
848 * release_task()->call_rcu(delayed_put_task_struct).
849 */
850SYSCALL_DEFINE0(getppid)
851{
852 int pid;
853
854 rcu_read_lock();
855 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
856 rcu_read_unlock();
857
858 return pid;
859}
860
861SYSCALL_DEFINE0(getuid)
862{
863 /* Only we change this so SMP safe */
864 return from_kuid_munged(current_user_ns(), current_uid());
865}
866
867SYSCALL_DEFINE0(geteuid)
868{
869 /* Only we change this so SMP safe */
870 return from_kuid_munged(current_user_ns(), current_euid());
871}
872
873SYSCALL_DEFINE0(getgid)
874{
875 /* Only we change this so SMP safe */
876 return from_kgid_munged(current_user_ns(), current_gid());
877}
878
879SYSCALL_DEFINE0(getegid)
880{
881 /* Only we change this so SMP safe */
882 return from_kgid_munged(current_user_ns(), current_egid());
883}
884
Frank Mayharf06febc2008-09-12 09:54:39 -0700885void do_sys_times(struct tms *tms)
886{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100887 u64 tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -0700888
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +0100889 thread_group_cputime_adjusted(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700890 cutime = current->signal->cutime;
891 cstime = current->signal->cstime;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100892 tms->tms_utime = nsec_to_clock_t(tgutime);
893 tms->tms_stime = nsec_to_clock_t(tgstime);
894 tms->tms_cutime = nsec_to_clock_t(cutime);
895 tms->tms_cstime = nsec_to_clock_t(cstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700896}
897
Heiko Carstens58fd3aa2009-01-14 14:14:03 +0100898SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (tbuf) {
901 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Frank Mayharf06febc2008-09-12 09:54:39 -0700903 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
905 return -EFAULT;
906 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800907 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return (long) jiffies_64_to_clock_t(get_jiffies_64());
909}
910
911/*
912 * This needs some heavy checking ...
913 * I just haven't the stomach for it. I also don't fully
914 * understand sessions/pgrp etc. Let somebody who does explain it.
915 *
916 * OK, I think I have the protection semantics right.... this is really
917 * only important on a multi-user system anyway, to make sure one user
918 * can't send a signal to a process owned by another. -TYT, 12/12/91
919 *
Oleg Nesterov98611e42014-01-23 15:55:52 -0800920 * !PF_FORKNOEXEC check to conform completely to POSIX.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100922SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -0800925 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -0800926 struct pid *pgrp;
927 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700930 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (!pgid)
932 pgid = pid;
933 if (pgid < 0)
934 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -0700935 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 /* From this point forward we keep holding onto the tasklist lock
938 * so that our parent does not change from under us. -DaveM
939 */
940 write_lock_irq(&tasklist_lock);
941
942 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -0800943 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (!p)
945 goto out;
946
947 err = -EINVAL;
948 if (!thread_group_leader(p))
949 goto out;
950
Oleg Nesterov4e021302008-02-08 04:19:08 -0800951 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800953 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 goto out;
955 err = -EACCES;
Oleg Nesterov98611e42014-01-23 15:55:52 -0800956 if (!(p->flags & PF_FORKNOEXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 goto out;
958 } else {
959 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -0800960 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 goto out;
962 }
963
964 err = -EPERM;
965 if (p->signal->leader)
966 goto out;
967
Oleg Nesterov4e021302008-02-08 04:19:08 -0800968 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700970 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Oleg Nesterov4e021302008-02-08 04:19:08 -0800972 pgrp = find_vpid(pgid);
973 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -0800974 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -0800975 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 err = security_task_setpgid(p, pgid);
979 if (err)
980 goto out;
981
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -0700982 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -0700983 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 err = 0;
986out:
987 /* All paths lead to here, thus we are safe. -DaveM */
988 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -0700989 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return err;
991}
992
Heiko Carstensdbf040d2009-01-14 14:14:04 +0100993SYSCALL_DEFINE1(getpgid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -0700995 struct task_struct *p;
996 struct pid *grp;
997 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -0700999 rcu_read_lock();
1000 if (!pid)
1001 grp = task_pgrp(current);
1002 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001004 p = find_task_by_vpid(pid);
1005 if (!p)
1006 goto out;
1007 grp = task_pgrp(p);
1008 if (!grp)
1009 goto out;
1010
1011 retval = security_task_getpgid(p);
1012 if (retval)
1013 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001015 retval = pid_vnr(grp);
1016out:
1017 rcu_read_unlock();
1018 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021#ifdef __ARCH_WANT_SYS_GETPGRP
1022
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001023SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001025 return sys_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028#endif
1029
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001030SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001032 struct task_struct *p;
1033 struct pid *sid;
1034 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001035
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001036 rcu_read_lock();
1037 if (!pid)
1038 sid = task_session(current);
1039 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001041 p = find_task_by_vpid(pid);
1042 if (!p)
1043 goto out;
1044 sid = task_session(p);
1045 if (!sid)
1046 goto out;
1047
1048 retval = security_task_getsid(p);
1049 if (retval)
1050 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001052 retval = pid_vnr(sid);
1053out:
1054 rcu_read_unlock();
1055 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Oleg Nesterov81dabb42013-07-03 15:08:26 -07001058static void set_special_pids(struct pid *pid)
1059{
1060 struct task_struct *curr = current->group_leader;
1061
1062 if (task_session(curr) != pid)
1063 change_pid(curr, PIDTYPE_SID, pid);
1064
1065 if (task_pgrp(curr) != pid)
1066 change_pid(curr, PIDTYPE_PGID, pid);
1067}
1068
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001069SYSCALL_DEFINE0(setsid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Oren Laadane19f2472006-01-08 01:03:58 -08001071 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001072 struct pid *sid = task_pid(group_leader);
1073 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 int err = -EPERM;
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001077 /* Fail if I am already a session leader */
1078 if (group_leader->signal->leader)
1079 goto out;
1080
Oleg Nesterov430c6232008-02-08 04:19:11 -08001081 /* Fail if a process group id already exists that equals the
1082 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001083 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001084 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 goto out;
1086
Oren Laadane19f2472006-01-08 01:03:58 -08001087 group_leader->signal->leader = 1;
Oleg Nesterov81dabb42013-07-03 15:08:26 -07001088 set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001089
Alan Cox9c9f4de2008-10-13 10:37:26 +01001090 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001091
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001092 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093out:
1094 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001095 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001096 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001097 sched_autogroup_create_attach(group_leader);
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return err;
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102DECLARE_RWSEM(uts_sem);
1103
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001104#ifdef COMPAT_UTS_MACHINE
1105#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001106 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001107 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1108 sizeof(COMPAT_UTS_MACHINE)))
1109#else
1110#define override_architecture(name) 0
1111#endif
1112
Andi Kleenbe274252011-08-19 16:15:10 -07001113/*
1114 * Work around broken programs that cannot handle "Linux 3.0".
1115 * Instead we map 3.x to 2.6.40+x, so e.g. 3.0 would be 2.6.40
Jon DeVree39afb5e2015-02-27 15:52:07 -08001116 * And we map 4.x to 2.6.60+x, so 4.0 would be 2.6.60.
Andi Kleenbe274252011-08-19 16:15:10 -07001117 */
Kees Cook2702b152012-10-19 13:56:51 -07001118static int override_release(char __user *release, size_t len)
Andi Kleenbe274252011-08-19 16:15:10 -07001119{
1120 int ret = 0;
Andi Kleenbe274252011-08-19 16:15:10 -07001121
1122 if (current->personality & UNAME26) {
Kees Cook2702b152012-10-19 13:56:51 -07001123 const char *rest = UTS_RELEASE;
1124 char buf[65] = { 0 };
Andi Kleenbe274252011-08-19 16:15:10 -07001125 int ndots = 0;
1126 unsigned v;
Kees Cook2702b152012-10-19 13:56:51 -07001127 size_t copy;
Andi Kleenbe274252011-08-19 16:15:10 -07001128
1129 while (*rest) {
1130 if (*rest == '.' && ++ndots >= 3)
1131 break;
1132 if (!isdigit(*rest) && *rest != '.')
1133 break;
1134 rest++;
1135 }
Jon DeVree39afb5e2015-02-27 15:52:07 -08001136 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 60;
Kees Cook31fd84b92012-10-19 18:45:53 -07001137 copy = clamp_t(size_t, len, 1, sizeof(buf));
Kees Cook2702b152012-10-19 13:56:51 -07001138 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
1139 ret = copy_to_user(release, buf, copy + 1);
Andi Kleenbe274252011-08-19 16:15:10 -07001140 }
1141 return ret;
1142}
1143
Heiko Carstense48fbb62009-01-14 14:14:26 +01001144SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
1146 int errno = 0;
1147
1148 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001149 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 errno = -EFAULT;
1151 up_read(&uts_sem);
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001152
Andi Kleenbe274252011-08-19 16:15:10 -07001153 if (!errno && override_release(name->release, sizeof(name->release)))
1154 errno = -EFAULT;
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001155 if (!errno && override_architecture(name))
1156 errno = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return errno;
1158}
1159
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001160#ifdef __ARCH_WANT_SYS_OLD_UNAME
1161/*
1162 * Old cruft
1163 */
1164SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1165{
1166 int error = 0;
1167
1168 if (!name)
1169 return -EFAULT;
1170
1171 down_read(&uts_sem);
1172 if (copy_to_user(name, utsname(), sizeof(*name)))
1173 error = -EFAULT;
1174 up_read(&uts_sem);
1175
Andi Kleenbe274252011-08-19 16:15:10 -07001176 if (!error && override_release(name->release, sizeof(name->release)))
1177 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001178 if (!error && override_architecture(name))
1179 error = -EFAULT;
1180 return error;
1181}
1182
1183SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1184{
1185 int error;
1186
1187 if (!name)
1188 return -EFAULT;
1189 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1190 return -EFAULT;
1191
1192 down_read(&uts_sem);
1193 error = __copy_to_user(&name->sysname, &utsname()->sysname,
1194 __OLD_UTS_LEN);
1195 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1196 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1197 __OLD_UTS_LEN);
1198 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1199 error |= __copy_to_user(&name->release, &utsname()->release,
1200 __OLD_UTS_LEN);
1201 error |= __put_user(0, name->release + __OLD_UTS_LEN);
1202 error |= __copy_to_user(&name->version, &utsname()->version,
1203 __OLD_UTS_LEN);
1204 error |= __put_user(0, name->version + __OLD_UTS_LEN);
1205 error |= __copy_to_user(&name->machine, &utsname()->machine,
1206 __OLD_UTS_LEN);
1207 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1208 up_read(&uts_sem);
1209
1210 if (!error && override_architecture(name))
1211 error = -EFAULT;
Andi Kleenbe274252011-08-19 16:15:10 -07001212 if (!error && override_release(name->release, sizeof(name->release)))
1213 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001214 return error ? -EFAULT : 0;
1215}
1216#endif
1217
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001218SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 int errno;
1221 char tmp[__NEW_UTS_LEN];
1222
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -07001223 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (len < 0 || len > __NEW_UTS_LEN)
1227 return -EINVAL;
1228 down_write(&uts_sem);
1229 errno = -EFAULT;
1230 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001231 struct new_utsname *u = utsname();
1232
1233 memcpy(u->nodename, tmp, len);
1234 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001236 uts_proc_notify(UTS_PROC_HOSTNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238 up_write(&uts_sem);
1239 return errno;
1240}
1241
1242#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1243
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001244SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
1246 int i, errno;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001247 struct new_utsname *u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 if (len < 0)
1250 return -EINVAL;
1251 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001252 u = utsname();
1253 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (i > len)
1255 i = len;
1256 errno = 0;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001257 if (copy_to_user(name, u->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 errno = -EFAULT;
1259 up_read(&uts_sem);
1260 return errno;
1261}
1262
1263#endif
1264
1265/*
1266 * Only setdomainname; getdomainname can be implemented by calling
1267 * uname()
1268 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001269SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 int errno;
1272 char tmp[__NEW_UTS_LEN];
1273
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001274 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return -EPERM;
1276 if (len < 0 || len > __NEW_UTS_LEN)
1277 return -EINVAL;
1278
1279 down_write(&uts_sem);
1280 errno = -EFAULT;
1281 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001282 struct new_utsname *u = utsname();
1283
1284 memcpy(u->domainname, tmp, len);
1285 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001287 uts_proc_notify(UTS_PROC_DOMAINNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
1289 up_write(&uts_sem);
1290 return errno;
1291}
1292
Heiko Carstense48fbb62009-01-14 14:14:26 +01001293SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Jiri Slabyb9518342010-05-04 11:28:25 +02001295 struct rlimit value;
1296 int ret;
1297
1298 ret = do_prlimit(current, resource, NULL, &value);
1299 if (!ret)
1300 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1301
1302 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
1305#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1306
1307/*
1308 * Back compatibility for getrlimit. Needed for some apps.
1309 */
Heiko Carstense48fbb62009-01-14 14:14:26 +01001310SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1311 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 struct rlimit x;
1314 if (resource >= RLIM_NLIMITS)
1315 return -EINVAL;
1316
1317 task_lock(current->group_leader);
1318 x = current->signal->rlim[resource];
1319 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001320 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001322 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 x.rlim_max = 0x7FFFFFFF;
vishnu.psec94fc32014-10-09 15:30:23 -07001324 return copy_to_user(rlim, &x, sizeof(x)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
1327#endif
1328
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001329static inline bool rlim64_is_infinity(__u64 rlim64)
1330{
1331#if BITS_PER_LONG < 64
1332 return rlim64 >= ULONG_MAX;
1333#else
1334 return rlim64 == RLIM64_INFINITY;
1335#endif
1336}
1337
1338static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1339{
1340 if (rlim->rlim_cur == RLIM_INFINITY)
1341 rlim64->rlim_cur = RLIM64_INFINITY;
1342 else
1343 rlim64->rlim_cur = rlim->rlim_cur;
1344 if (rlim->rlim_max == RLIM_INFINITY)
1345 rlim64->rlim_max = RLIM64_INFINITY;
1346 else
1347 rlim64->rlim_max = rlim->rlim_max;
1348}
1349
1350static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1351{
1352 if (rlim64_is_infinity(rlim64->rlim_cur))
1353 rlim->rlim_cur = RLIM_INFINITY;
1354 else
1355 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1356 if (rlim64_is_infinity(rlim64->rlim_max))
1357 rlim->rlim_max = RLIM_INFINITY;
1358 else
1359 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1360}
1361
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001362/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001363int do_prlimit(struct task_struct *tsk, unsigned int resource,
1364 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Jiri Slaby5b415352010-03-24 16:11:29 +01001366 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001367 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 if (resource >= RLIM_NLIMITS)
1370 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001371 if (new_rlim) {
1372 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1373 return -EINVAL;
1374 if (resource == RLIMIT_NOFILE &&
1375 new_rlim->rlim_max > sysctl_nr_open)
1376 return -EPERM;
1377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001379 /* protect tsk->signal and tsk->sighand from disappearing */
1380 read_lock(&tasklist_lock);
1381 if (!tsk->sighand) {
1382 retval = -ESRCH;
1383 goto out;
1384 }
1385
Jiri Slaby5b415352010-03-24 16:11:29 +01001386 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001387 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001388 if (new_rlim) {
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001389 /* Keep the capable check against init_user_ns until
1390 cgroups can contain all limits */
Jiri Slaby5b415352010-03-24 16:11:29 +01001391 if (new_rlim->rlim_max > rlim->rlim_max &&
1392 !capable(CAP_SYS_RESOURCE))
1393 retval = -EPERM;
1394 if (!retval)
1395 retval = security_task_setrlimit(tsk->group_leader,
1396 resource, new_rlim);
1397 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1398 /*
1399 * The caller is asking for an immediate RLIMIT_CPU
1400 * expiry. But we use the zero value to mean "it was
1401 * never set". So let's cheat and make it one second
1402 * instead
1403 */
1404 new_rlim->rlim_cur = 1;
1405 }
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001406 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001407 if (!retval) {
1408 if (old_rlim)
1409 *old_rlim = *rlim;
1410 if (new_rlim)
1411 *rlim = *new_rlim;
1412 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001413 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Andrew Mortond3561f72006-03-24 03:18:36 -08001415 /*
1416 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1417 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1418 * very long-standing error, and fixing it now risks breakage of
1419 * applications, so we live with it
1420 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001421 if (!retval && new_rlim && resource == RLIMIT_CPU &&
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05001422 new_rlim->rlim_cur != RLIM_INFINITY &&
1423 IS_ENABLED(CONFIG_POSIX_TIMERS))
Jiri Slaby5b415352010-03-24 16:11:29 +01001424 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001425out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001426 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001427 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001430/* rcu lock must be held */
1431static int check_prlimit_permission(struct task_struct *task)
1432{
1433 const struct cred *cred = current_cred(), *tcred;
1434
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001435 if (current == task)
1436 return 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001437
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001438 tcred = __task_cred(task);
Eric W. Biederman5af66202012-03-03 20:21:47 -08001439 if (uid_eq(cred->uid, tcred->euid) &&
1440 uid_eq(cred->uid, tcred->suid) &&
1441 uid_eq(cred->uid, tcred->uid) &&
1442 gid_eq(cred->gid, tcred->egid) &&
1443 gid_eq(cred->gid, tcred->sgid) &&
1444 gid_eq(cred->gid, tcred->gid))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001445 return 0;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -08001446 if (ns_capable(tcred->user_ns, CAP_SYS_RESOURCE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001447 return 0;
1448
1449 return -EPERM;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001450}
1451
1452SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1453 const struct rlimit64 __user *, new_rlim,
1454 struct rlimit64 __user *, old_rlim)
1455{
1456 struct rlimit64 old64, new64;
1457 struct rlimit old, new;
1458 struct task_struct *tsk;
1459 int ret;
1460
1461 if (new_rlim) {
1462 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1463 return -EFAULT;
1464 rlim64_to_rlim(&new64, &new);
1465 }
1466
1467 rcu_read_lock();
1468 tsk = pid ? find_task_by_vpid(pid) : current;
1469 if (!tsk) {
1470 rcu_read_unlock();
1471 return -ESRCH;
1472 }
1473 ret = check_prlimit_permission(tsk);
1474 if (ret) {
1475 rcu_read_unlock();
1476 return ret;
1477 }
1478 get_task_struct(tsk);
1479 rcu_read_unlock();
1480
1481 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1482 old_rlim ? &old : NULL);
1483
1484 if (!ret && old_rlim) {
1485 rlim_to_rlim64(&old, &old64);
1486 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1487 ret = -EFAULT;
1488 }
1489
1490 put_task_struct(tsk);
1491 return ret;
1492}
1493
Jiri Slaby7855c352009-08-26 23:45:34 +02001494SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1495{
1496 struct rlimit new_rlim;
1497
1498 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1499 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001500 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001501}
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503/*
1504 * It would make sense to put struct rusage in the task_struct,
1505 * except that would make the task_struct be *really big*. After
1506 * task_struct gets moved into malloc'ed memory, it would
1507 * make sense to do this. It will make moving the rest of the information
1508 * a lot simpler! (Which we're not doing right now because we're not
1509 * measuring them yet).
1510 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1512 * races with threads incrementing their own counters. But since word
1513 * reads are atomic, we either get new values or old values and we don't
1514 * care which for the sums. We always take the siglock to protect reading
1515 * the c* fields from p->signal from races with exit.c updating those
1516 * fields when reaping, so a sample either gets all the additions of a
1517 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001518 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001519 * Locking:
1520 * We need to take the siglock for CHILDEREN, SELF and BOTH
1521 * for the cases current multithreaded, non-current single threaded
1522 * non-current multithreaded. Thread traversal is now safe with
1523 * the siglock held.
1524 * Strictly speaking, we donot need to take the siglock if we are current and
1525 * single threaded, as no one else can take our signal_struct away, no one
1526 * else can reap the children to update signal->c* counters, and no one else
1527 * can race with the signal-> fields. If we do not take any lock, the
1528 * signal-> fields could be read out of order while another thread was just
1529 * exiting. So we should place a read memory barrier when we avoid the lock.
1530 * On the writer side, write memory barrier is implied in __exit_signal
1531 * as __exit_signal releases the siglock spinlock after updating the signal->
1532 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001533 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
1535
Frank Mayharf06febc2008-09-12 09:54:39 -07001536static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001537{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001538 r->ru_nvcsw += t->nvcsw;
1539 r->ru_nivcsw += t->nivcsw;
1540 r->ru_minflt += t->min_flt;
1541 r->ru_majflt += t->maj_flt;
1542 r->ru_inblock += task_io_get_inblock(t);
1543 r->ru_oublock += task_io_get_oublock(t);
1544}
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546static void k_getrusage(struct task_struct *p, int who, struct rusage *r)
1547{
1548 struct task_struct *t;
1549 unsigned long flags;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +01001550 u64 tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001551 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
vishnu.psec94fc32014-10-09 15:30:23 -07001553 memset((char *)r, 0, sizeof (*r));
Martin Schwidefsky64861632011-12-15 14:56:09 +01001554 utime = stime = 0;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001555
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001556 if (who == RUSAGE_THREAD) {
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +01001557 task_cputime_adjusted(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001558 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001559 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001560 goto out;
1561 }
1562
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001563 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001564 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 switch (who) {
vishnu.psec94fc32014-10-09 15:30:23 -07001567 case RUSAGE_BOTH:
1568 case RUSAGE_CHILDREN:
1569 utime = p->signal->cutime;
1570 stime = p->signal->cstime;
1571 r->ru_nvcsw = p->signal->cnvcsw;
1572 r->ru_nivcsw = p->signal->cnivcsw;
1573 r->ru_minflt = p->signal->cmin_flt;
1574 r->ru_majflt = p->signal->cmaj_flt;
1575 r->ru_inblock = p->signal->cinblock;
1576 r->ru_oublock = p->signal->coublock;
1577 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001578
vishnu.psec94fc32014-10-09 15:30:23 -07001579 if (who == RUSAGE_CHILDREN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001581
vishnu.psec94fc32014-10-09 15:30:23 -07001582 case RUSAGE_SELF:
1583 thread_group_cputime_adjusted(p, &tgutime, &tgstime);
1584 utime += tgutime;
1585 stime += tgstime;
1586 r->ru_nvcsw += p->signal->nvcsw;
1587 r->ru_nivcsw += p->signal->nivcsw;
1588 r->ru_minflt += p->signal->min_flt;
1589 r->ru_majflt += p->signal->maj_flt;
1590 r->ru_inblock += p->signal->inblock;
1591 r->ru_oublock += p->signal->oublock;
1592 if (maxrss < p->signal->maxrss)
1593 maxrss = p->signal->maxrss;
1594 t = p;
1595 do {
1596 accumulate_thread_rusage(t, r);
1597 } while_each_thread(p, t);
1598 break;
1599
1600 default:
1601 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001603 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001604
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001605out:
Frederic Weisbecker5613fda2017-01-31 04:09:23 +01001606 r->ru_utime = ns_to_timeval(utime);
1607 r->ru_stime = ns_to_timeval(stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001608
1609 if (who != RUSAGE_CHILDREN) {
1610 struct mm_struct *mm = get_task_mm(p);
vishnu.psec94fc32014-10-09 15:30:23 -07001611
Jiri Pirko1f102062009-09-22 16:44:10 -07001612 if (mm) {
1613 setmax_mm_hiwater_rss(&maxrss, mm);
1614 mmput(mm);
1615 }
1616 }
1617 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
1620int getrusage(struct task_struct *p, int who, struct rusage __user *ru)
1621{
1622 struct rusage r;
vishnu.psec94fc32014-10-09 15:30:23 -07001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 k_getrusage(p, who, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1626}
1627
Heiko Carstense48fbb62009-01-14 14:14:26 +01001628SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001630 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1631 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return -EINVAL;
1633 return getrusage(current, who, ru);
1634}
1635
Al Viro8d2d5c42013-03-03 12:49:06 -05001636#ifdef CONFIG_COMPAT
1637COMPAT_SYSCALL_DEFINE2(getrusage, int, who, struct compat_rusage __user *, ru)
1638{
1639 struct rusage r;
1640
1641 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1642 who != RUSAGE_THREAD)
1643 return -EINVAL;
1644
1645 k_getrusage(current, who, &r);
1646 return put_compat_rusage(&r, ru);
1647}
1648#endif
1649
Heiko Carstense48fbb62009-01-14 14:14:26 +01001650SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
1652 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1653 return mask;
1654}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001655
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001656static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001657{
Al Viro2903ff02012-08-28 12:52:22 -04001658 struct fd exe;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001659 struct file *old_exe, *exe_file;
Al Viro496ad9a2013-01-23 17:07:38 -05001660 struct inode *inode;
Al Viro2903ff02012-08-28 12:52:22 -04001661 int err;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001662
Al Viro2903ff02012-08-28 12:52:22 -04001663 exe = fdget(fd);
1664 if (!exe.file)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001665 return -EBADF;
1666
Al Viro496ad9a2013-01-23 17:07:38 -05001667 inode = file_inode(exe.file);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001668
1669 /*
1670 * Because the original mm->exe_file points to executable file, make
1671 * sure that this one is executable as well, to avoid breaking an
1672 * overall picture.
1673 */
1674 err = -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -05001675 if (!S_ISREG(inode->i_mode) || path_noexec(&exe.file->f_path))
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001676 goto exit;
1677
Al Viro496ad9a2013-01-23 17:07:38 -05001678 err = inode_permission(inode, MAY_EXEC);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001679 if (err)
1680 goto exit;
1681
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001682 /*
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001683 * Forbid mm->exe_file change if old file still mapped.
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001684 */
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001685 exe_file = get_mm_exe_file(mm);
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001686 err = -EBUSY;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001687 if (exe_file) {
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001688 struct vm_area_struct *vma;
1689
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001690 down_read(&mm->mmap_sem);
1691 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1692 if (!vma->vm_file)
1693 continue;
1694 if (path_equal(&vma->vm_file->f_path,
1695 &exe_file->f_path))
1696 goto exit_err;
1697 }
1698
1699 up_read(&mm->mmap_sem);
1700 fput(exe_file);
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001701 }
1702
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001703 err = 0;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001704 /* set the new file, lockless */
1705 get_file(exe.file);
1706 old_exe = xchg(&mm->exe_file, exe.file);
1707 if (old_exe)
1708 fput(old_exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001709exit:
Al Viro2903ff02012-08-28 12:52:22 -04001710 fdput(exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001711 return err;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001712exit_err:
1713 up_read(&mm->mmap_sem);
1714 fput(exe_file);
1715 goto exit;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001716}
1717
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001718/*
1719 * WARNING: we don't require any capability here so be very careful
1720 * in what is allowed for modification from userspace.
1721 */
1722static int validate_prctl_map(struct prctl_mm_map *prctl_map)
1723{
1724 unsigned long mmap_max_addr = TASK_SIZE;
1725 struct mm_struct *mm = current->mm;
1726 int error = -EINVAL, i;
1727
1728 static const unsigned char offsets[] = {
1729 offsetof(struct prctl_mm_map, start_code),
1730 offsetof(struct prctl_mm_map, end_code),
1731 offsetof(struct prctl_mm_map, start_data),
1732 offsetof(struct prctl_mm_map, end_data),
1733 offsetof(struct prctl_mm_map, start_brk),
1734 offsetof(struct prctl_mm_map, brk),
1735 offsetof(struct prctl_mm_map, start_stack),
1736 offsetof(struct prctl_mm_map, arg_start),
1737 offsetof(struct prctl_mm_map, arg_end),
1738 offsetof(struct prctl_mm_map, env_start),
1739 offsetof(struct prctl_mm_map, env_end),
1740 };
1741
1742 /*
1743 * Make sure the members are not somewhere outside
1744 * of allowed address space.
1745 */
1746 for (i = 0; i < ARRAY_SIZE(offsets); i++) {
1747 u64 val = *(u64 *)((char *)prctl_map + offsets[i]);
1748
1749 if ((unsigned long)val >= mmap_max_addr ||
1750 (unsigned long)val < mmap_min_addr)
1751 goto out;
1752 }
1753
1754 /*
1755 * Make sure the pairs are ordered.
1756 */
1757#define __prctl_check_order(__m1, __op, __m2) \
1758 ((unsigned long)prctl_map->__m1 __op \
1759 (unsigned long)prctl_map->__m2) ? 0 : -EINVAL
1760 error = __prctl_check_order(start_code, <, end_code);
1761 error |= __prctl_check_order(start_data, <, end_data);
1762 error |= __prctl_check_order(start_brk, <=, brk);
1763 error |= __prctl_check_order(arg_start, <=, arg_end);
1764 error |= __prctl_check_order(env_start, <=, env_end);
1765 if (error)
1766 goto out;
1767#undef __prctl_check_order
1768
1769 error = -EINVAL;
1770
1771 /*
1772 * @brk should be after @end_data in traditional maps.
1773 */
1774 if (prctl_map->start_brk <= prctl_map->end_data ||
1775 prctl_map->brk <= prctl_map->end_data)
1776 goto out;
1777
1778 /*
1779 * Neither we should allow to override limits if they set.
1780 */
1781 if (check_data_rlimit(rlimit(RLIMIT_DATA), prctl_map->brk,
1782 prctl_map->start_brk, prctl_map->end_data,
1783 prctl_map->start_data))
1784 goto out;
1785
1786 /*
1787 * Someone is trying to cheat the auxv vector.
1788 */
1789 if (prctl_map->auxv_size) {
1790 if (!prctl_map->auxv || prctl_map->auxv_size > sizeof(mm->saved_auxv))
1791 goto out;
1792 }
1793
1794 /*
1795 * Finally, make sure the caller has the rights to
1796 * change /proc/pid/exe link: only local root should
1797 * be allowed to.
1798 */
1799 if (prctl_map->exe_fd != (u32)-1) {
1800 struct user_namespace *ns = current_user_ns();
1801 const struct cred *cred = current_cred();
1802
1803 if (!uid_eq(cred->uid, make_kuid(ns, 0)) ||
1804 !gid_eq(cred->gid, make_kgid(ns, 0)))
1805 goto out;
1806 }
1807
1808 error = 0;
1809out:
1810 return error;
1811}
1812
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001813#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001814static int prctl_set_mm_map(int opt, const void __user *addr, unsigned long data_size)
1815{
1816 struct prctl_mm_map prctl_map = { .exe_fd = (u32)-1, };
1817 unsigned long user_auxv[AT_VECTOR_SIZE];
1818 struct mm_struct *mm = current->mm;
1819 int error;
1820
1821 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1822 BUILD_BUG_ON(sizeof(struct prctl_mm_map) > 256);
1823
1824 if (opt == PR_SET_MM_MAP_SIZE)
1825 return put_user((unsigned int)sizeof(prctl_map),
1826 (unsigned int __user *)addr);
1827
1828 if (data_size != sizeof(prctl_map))
1829 return -EINVAL;
1830
1831 if (copy_from_user(&prctl_map, addr, sizeof(prctl_map)))
1832 return -EFAULT;
1833
1834 error = validate_prctl_map(&prctl_map);
1835 if (error)
1836 return error;
1837
1838 if (prctl_map.auxv_size) {
1839 memset(user_auxv, 0, sizeof(user_auxv));
1840 if (copy_from_user(user_auxv,
1841 (const void __user *)prctl_map.auxv,
1842 prctl_map.auxv_size))
1843 return -EFAULT;
1844
1845 /* Last entry must be AT_NULL as specification requires */
1846 user_auxv[AT_VECTOR_SIZE - 2] = AT_NULL;
1847 user_auxv[AT_VECTOR_SIZE - 1] = AT_NULL;
1848 }
1849
Mateusz Guzikddf1d392016-01-20 15:01:02 -08001850 if (prctl_map.exe_fd != (u32)-1) {
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001851 error = prctl_set_mm_exe_file(mm, prctl_map.exe_fd);
Mateusz Guzikddf1d392016-01-20 15:01:02 -08001852 if (error)
1853 return error;
1854 }
1855
1856 down_write(&mm->mmap_sem);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001857
1858 /*
1859 * We don't validate if these members are pointing to
1860 * real present VMAs because application may have correspond
1861 * VMAs already unmapped and kernel uses these members for statistics
1862 * output in procfs mostly, except
1863 *
1864 * - @start_brk/@brk which are used in do_brk but kernel lookups
1865 * for VMAs when updating these memvers so anything wrong written
1866 * here cause kernel to swear at userspace program but won't lead
1867 * to any problem in kernel itself
1868 */
1869
1870 mm->start_code = prctl_map.start_code;
1871 mm->end_code = prctl_map.end_code;
1872 mm->start_data = prctl_map.start_data;
1873 mm->end_data = prctl_map.end_data;
1874 mm->start_brk = prctl_map.start_brk;
1875 mm->brk = prctl_map.brk;
1876 mm->start_stack = prctl_map.start_stack;
1877 mm->arg_start = prctl_map.arg_start;
1878 mm->arg_end = prctl_map.arg_end;
1879 mm->env_start = prctl_map.env_start;
1880 mm->env_end = prctl_map.env_end;
1881
1882 /*
1883 * Note this update of @saved_auxv is lockless thus
1884 * if someone reads this member in procfs while we're
1885 * updating -- it may get partly updated results. It's
1886 * known and acceptable trade off: we leave it as is to
1887 * not introduce additional locks here making the kernel
1888 * more complex.
1889 */
1890 if (prctl_map.auxv_size)
1891 memcpy(mm->saved_auxv, user_auxv, sizeof(user_auxv));
1892
Mateusz Guzikddf1d392016-01-20 15:01:02 -08001893 up_write(&mm->mmap_sem);
1894 return 0;
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001895}
1896#endif /* CONFIG_CHECKPOINT_RESTORE */
1897
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001898static int prctl_set_auxv(struct mm_struct *mm, unsigned long addr,
1899 unsigned long len)
1900{
1901 /*
1902 * This doesn't move the auxiliary vector itself since it's pinned to
1903 * mm_struct, but it permits filling the vector with new values. It's
1904 * up to the caller to provide sane values here, otherwise userspace
1905 * tools which use this vector might be unhappy.
1906 */
1907 unsigned long user_auxv[AT_VECTOR_SIZE];
1908
1909 if (len > sizeof(user_auxv))
1910 return -EINVAL;
1911
1912 if (copy_from_user(user_auxv, (const void __user *)addr, len))
1913 return -EFAULT;
1914
1915 /* Make sure the last entry is always AT_NULL */
1916 user_auxv[AT_VECTOR_SIZE - 2] = 0;
1917 user_auxv[AT_VECTOR_SIZE - 1] = 0;
1918
1919 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1920
1921 task_lock(current);
1922 memcpy(mm->saved_auxv, user_auxv, len);
1923 task_unlock(current);
1924
1925 return 0;
1926}
1927
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001928static int prctl_set_mm(int opt, unsigned long addr,
1929 unsigned long arg4, unsigned long arg5)
1930{
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001931 struct mm_struct *mm = current->mm;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001932 struct prctl_mm_map prctl_map;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001933 struct vm_area_struct *vma;
1934 int error;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001935
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001936 if (arg5 || (arg4 && (opt != PR_SET_MM_AUXV &&
1937 opt != PR_SET_MM_MAP &&
1938 opt != PR_SET_MM_MAP_SIZE)))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001939 return -EINVAL;
1940
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001941#ifdef CONFIG_CHECKPOINT_RESTORE
1942 if (opt == PR_SET_MM_MAP || opt == PR_SET_MM_MAP_SIZE)
1943 return prctl_set_mm_map(opt, (const void __user *)addr, arg4);
1944#endif
1945
Cyrill Gorcunov79f07132012-03-15 15:17:10 -07001946 if (!capable(CAP_SYS_RESOURCE))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001947 return -EPERM;
1948
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001949 if (opt == PR_SET_MM_EXE_FILE)
1950 return prctl_set_mm_exe_file(mm, (unsigned int)addr);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001951
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001952 if (opt == PR_SET_MM_AUXV)
1953 return prctl_set_auxv(mm, addr, arg4);
1954
Cyrill Gorcunov1ad75b92012-06-07 14:21:11 -07001955 if (addr >= TASK_SIZE || addr < mmap_min_addr)
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001956 return -EINVAL;
1957
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001958 error = -EINVAL;
1959
Mateusz Guzikddf1d392016-01-20 15:01:02 -08001960 down_write(&mm->mmap_sem);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001961 vma = find_vma(mm, addr);
1962
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001963 prctl_map.start_code = mm->start_code;
1964 prctl_map.end_code = mm->end_code;
1965 prctl_map.start_data = mm->start_data;
1966 prctl_map.end_data = mm->end_data;
1967 prctl_map.start_brk = mm->start_brk;
1968 prctl_map.brk = mm->brk;
1969 prctl_map.start_stack = mm->start_stack;
1970 prctl_map.arg_start = mm->arg_start;
1971 prctl_map.arg_end = mm->arg_end;
1972 prctl_map.env_start = mm->env_start;
1973 prctl_map.env_end = mm->env_end;
1974 prctl_map.auxv = NULL;
1975 prctl_map.auxv_size = 0;
1976 prctl_map.exe_fd = -1;
1977
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001978 switch (opt) {
1979 case PR_SET_MM_START_CODE:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001980 prctl_map.start_code = addr;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001981 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001982 case PR_SET_MM_END_CODE:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001983 prctl_map.end_code = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001984 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001985 case PR_SET_MM_START_DATA:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001986 prctl_map.start_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001987 break;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07001988 case PR_SET_MM_END_DATA:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001989 prctl_map.end_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001990 break;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001991 case PR_SET_MM_START_STACK:
1992 prctl_map.start_stack = addr;
1993 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001994 case PR_SET_MM_START_BRK:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001995 prctl_map.start_brk = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001996 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001997 case PR_SET_MM_BRK:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001998 prctl_map.brk = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08001999 break;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002000 case PR_SET_MM_ARG_START:
2001 prctl_map.arg_start = addr;
2002 break;
2003 case PR_SET_MM_ARG_END:
2004 prctl_map.arg_end = addr;
2005 break;
2006 case PR_SET_MM_ENV_START:
2007 prctl_map.env_start = addr;
2008 break;
2009 case PR_SET_MM_ENV_END:
2010 prctl_map.env_end = addr;
2011 break;
2012 default:
2013 goto out;
2014 }
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002015
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002016 error = validate_prctl_map(&prctl_map);
2017 if (error)
2018 goto out;
2019
2020 switch (opt) {
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002021 /*
2022 * If command line arguments and environment
2023 * are placed somewhere else on stack, we can
2024 * set them up here, ARG_START/END to setup
2025 * command line argumets and ENV_START/END
2026 * for environment.
2027 */
2028 case PR_SET_MM_START_STACK:
2029 case PR_SET_MM_ARG_START:
2030 case PR_SET_MM_ARG_END:
2031 case PR_SET_MM_ENV_START:
2032 case PR_SET_MM_ENV_END:
2033 if (!vma) {
2034 error = -EFAULT;
2035 goto out;
2036 }
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002037 }
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002038
2039 mm->start_code = prctl_map.start_code;
2040 mm->end_code = prctl_map.end_code;
2041 mm->start_data = prctl_map.start_data;
2042 mm->end_data = prctl_map.end_data;
2043 mm->start_brk = prctl_map.start_brk;
2044 mm->brk = prctl_map.brk;
2045 mm->start_stack = prctl_map.start_stack;
2046 mm->arg_start = prctl_map.arg_start;
2047 mm->arg_end = prctl_map.arg_end;
2048 mm->env_start = prctl_map.env_start;
2049 mm->env_end = prctl_map.env_end;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002050
2051 error = 0;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002052out:
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002053 up_write(&mm->mmap_sem);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002054 return error;
2055}
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002056
Amnon Shiloh52b36942013-04-30 15:28:48 -07002057#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002058static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2059{
2060 return put_user(me->clear_child_tid, tid_addr);
2061}
Amnon Shiloh52b36942013-04-30 15:28:48 -07002062#else
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002063static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2064{
2065 return -EINVAL;
2066}
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002067#endif
2068
Pavel Tikhomirov749860c2017-01-30 18:06:12 +03002069static int propagate_has_child_subreaper(struct task_struct *p, void *data)
2070{
2071 /*
2072 * If task has has_child_subreaper - all its decendants
2073 * already have these flag too and new decendants will
2074 * inherit it on fork, skip them.
2075 *
2076 * If we've found child_reaper - skip descendants in
2077 * it's subtree as they will never get out pidns.
2078 */
2079 if (p->signal->has_child_subreaper ||
2080 is_child_reaper(task_pid(p)))
2081 return 0;
2082
2083 p->signal->has_child_subreaper = 1;
2084 return 1;
2085}
2086
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01002087SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
2088 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
David Howellsb6dff3e2008-11-14 10:39:16 +11002090 struct task_struct *me = current;
2091 unsigned char comm[sizeof(me->comm)];
2092 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
David Howellsd84f4f92008-11-14 10:39:23 +11002094 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
2095 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return error;
2097
David Howellsd84f4f92008-11-14 10:39:23 +11002098 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 switch (option) {
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002100 case PR_SET_PDEATHSIG:
2101 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 error = -EINVAL;
2103 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002104 }
2105 me->pdeath_signal = arg2;
2106 break;
2107 case PR_GET_PDEATHSIG:
2108 error = put_user(me->pdeath_signal, (int __user *)arg2);
2109 break;
2110 case PR_GET_DUMPABLE:
2111 error = get_dumpable(me->mm);
2112 break;
2113 case PR_SET_DUMPABLE:
2114 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) {
2115 error = -EINVAL;
2116 break;
2117 }
2118 set_dumpable(me->mm, arg2);
2119 break;
2120
2121 case PR_SET_UNALIGN:
2122 error = SET_UNALIGN_CTL(me, arg2);
2123 break;
2124 case PR_GET_UNALIGN:
2125 error = GET_UNALIGN_CTL(me, arg2);
2126 break;
2127 case PR_SET_FPEMU:
2128 error = SET_FPEMU_CTL(me, arg2);
2129 break;
2130 case PR_GET_FPEMU:
2131 error = GET_FPEMU_CTL(me, arg2);
2132 break;
2133 case PR_SET_FPEXC:
2134 error = SET_FPEXC_CTL(me, arg2);
2135 break;
2136 case PR_GET_FPEXC:
2137 error = GET_FPEXC_CTL(me, arg2);
2138 break;
2139 case PR_GET_TIMING:
2140 error = PR_TIMING_STATISTICAL;
2141 break;
2142 case PR_SET_TIMING:
2143 if (arg2 != PR_TIMING_STATISTICAL)
2144 error = -EINVAL;
2145 break;
2146 case PR_SET_NAME:
2147 comm[sizeof(me->comm) - 1] = 0;
2148 if (strncpy_from_user(comm, (char __user *)arg2,
2149 sizeof(me->comm) - 1) < 0)
2150 return -EFAULT;
2151 set_task_comm(me, comm);
2152 proc_comm_connector(me);
2153 break;
2154 case PR_GET_NAME:
2155 get_task_comm(comm, me);
2156 if (copy_to_user((char __user *)arg2, comm, sizeof(comm)))
2157 return -EFAULT;
2158 break;
2159 case PR_GET_ENDIAN:
2160 error = GET_ENDIAN(me, arg2);
2161 break;
2162 case PR_SET_ENDIAN:
2163 error = SET_ENDIAN(me, arg2);
2164 break;
2165 case PR_GET_SECCOMP:
2166 error = prctl_get_seccomp();
2167 break;
2168 case PR_SET_SECCOMP:
2169 error = prctl_set_seccomp(arg2, (char __user *)arg3);
2170 break;
2171 case PR_GET_TSC:
2172 error = GET_TSC_CTL(arg2);
2173 break;
2174 case PR_SET_TSC:
2175 error = SET_TSC_CTL(arg2);
2176 break;
2177 case PR_TASK_PERF_EVENTS_DISABLE:
2178 error = perf_event_task_disable();
2179 break;
2180 case PR_TASK_PERF_EVENTS_ENABLE:
2181 error = perf_event_task_enable();
2182 break;
2183 case PR_GET_TIMERSLACK:
John Stultzda8b44d2016-03-17 14:20:51 -07002184 if (current->timer_slack_ns > ULONG_MAX)
2185 error = ULONG_MAX;
2186 else
2187 error = current->timer_slack_ns;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002188 break;
2189 case PR_SET_TIMERSLACK:
2190 if (arg2 <= 0)
2191 current->timer_slack_ns =
2192 current->default_timer_slack_ns;
2193 else
2194 current->timer_slack_ns = arg2;
2195 break;
2196 case PR_MCE_KILL:
2197 if (arg4 | arg5)
2198 return -EINVAL;
2199 switch (arg2) {
2200 case PR_MCE_KILL_CLEAR:
2201 if (arg3 != 0)
2202 return -EINVAL;
2203 current->flags &= ~PF_MCE_PROCESS;
2204 break;
2205 case PR_MCE_KILL_SET:
2206 current->flags |= PF_MCE_PROCESS;
2207 if (arg3 == PR_MCE_KILL_EARLY)
2208 current->flags |= PF_MCE_EARLY;
2209 else if (arg3 == PR_MCE_KILL_LATE)
2210 current->flags &= ~PF_MCE_EARLY;
2211 else if (arg3 == PR_MCE_KILL_DEFAULT)
2212 current->flags &=
2213 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
2214 else
2215 return -EINVAL;
2216 break;
2217 default:
2218 return -EINVAL;
2219 }
2220 break;
2221 case PR_MCE_KILL_GET:
2222 if (arg2 | arg3 | arg4 | arg5)
2223 return -EINVAL;
2224 if (current->flags & PF_MCE_PROCESS)
2225 error = (current->flags & PF_MCE_EARLY) ?
2226 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
2227 else
2228 error = PR_MCE_KILL_DEFAULT;
2229 break;
2230 case PR_SET_MM:
2231 error = prctl_set_mm(arg2, arg3, arg4, arg5);
2232 break;
2233 case PR_GET_TID_ADDRESS:
2234 error = prctl_get_tid_address(me, (int __user **)arg2);
2235 break;
2236 case PR_SET_CHILD_SUBREAPER:
2237 me->signal->is_child_subreaper = !!arg2;
Pavel Tikhomirov749860c2017-01-30 18:06:12 +03002238 if (!arg2)
2239 break;
2240
2241 walk_process_tree(me, propagate_has_child_subreaper, NULL);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002242 break;
2243 case PR_GET_CHILD_SUBREAPER:
2244 error = put_user(me->signal->is_child_subreaper,
2245 (int __user *)arg2);
2246 break;
2247 case PR_SET_NO_NEW_PRIVS:
2248 if (arg2 != 1 || arg3 || arg4 || arg5)
2249 return -EINVAL;
2250
Kees Cook1d4457f2014-05-21 15:23:46 -07002251 task_set_no_new_privs(current);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002252 break;
2253 case PR_GET_NO_NEW_PRIVS:
2254 if (arg2 || arg3 || arg4 || arg5)
2255 return -EINVAL;
Kees Cook1d4457f2014-05-21 15:23:46 -07002256 return task_no_new_privs(current) ? 1 : 0;
Alex Thorltona0715cc2014-04-07 15:37:10 -07002257 case PR_GET_THP_DISABLE:
2258 if (arg2 || arg3 || arg4 || arg5)
2259 return -EINVAL;
2260 error = !!(me->mm->def_flags & VM_NOHUGEPAGE);
2261 break;
2262 case PR_SET_THP_DISABLE:
2263 if (arg3 || arg4 || arg5)
2264 return -EINVAL;
Michal Hocko17b05732016-05-23 16:26:05 -07002265 if (down_write_killable(&me->mm->mmap_sem))
2266 return -EINTR;
Alex Thorltona0715cc2014-04-07 15:37:10 -07002267 if (arg2)
2268 me->mm->def_flags |= VM_NOHUGEPAGE;
2269 else
2270 me->mm->def_flags &= ~VM_NOHUGEPAGE;
2271 up_write(&me->mm->mmap_sem);
2272 break;
Dave Hansenfe3d1972014-11-14 07:18:29 -08002273 case PR_MPX_ENABLE_MANAGEMENT:
Dave Hansene9d1b4f2015-01-08 14:30:22 -08002274 if (arg2 || arg3 || arg4 || arg5)
2275 return -EINVAL;
Dave Hansen46a6e0c2015-06-07 11:37:02 -07002276 error = MPX_ENABLE_MANAGEMENT();
Dave Hansenfe3d1972014-11-14 07:18:29 -08002277 break;
2278 case PR_MPX_DISABLE_MANAGEMENT:
Dave Hansene9d1b4f2015-01-08 14:30:22 -08002279 if (arg2 || arg3 || arg4 || arg5)
2280 return -EINVAL;
Dave Hansen46a6e0c2015-06-07 11:37:02 -07002281 error = MPX_DISABLE_MANAGEMENT();
Dave Hansenfe3d1972014-11-14 07:18:29 -08002282 break;
Paul Burton97915542015-01-08 12:17:37 +00002283 case PR_SET_FP_MODE:
2284 error = SET_FP_MODE(me, arg2);
2285 break;
2286 case PR_GET_FP_MODE:
2287 error = GET_FP_MODE(me);
2288 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002289 default:
2290 error = -EINVAL;
2291 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293 return error;
2294}
Andi Kleen3cfc3482006-09-26 10:52:28 +02002295
Heiko Carstens836f92a2009-01-14 14:14:33 +01002296SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
2297 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02002298{
2299 int err = 0;
2300 int cpu = raw_smp_processor_id();
vishnu.psec94fc32014-10-09 15:30:23 -07002301
Andi Kleen3cfc3482006-09-26 10:52:28 +02002302 if (cpup)
2303 err |= put_user(cpu, cpup);
2304 if (nodep)
2305 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02002306 return err ? -EFAULT : 0;
2307}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002308
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002309/**
2310 * do_sysinfo - fill in sysinfo struct
2311 * @info: pointer to buffer to fill
2312 */
2313static int do_sysinfo(struct sysinfo *info)
2314{
2315 unsigned long mem_total, sav_total;
2316 unsigned int mem_unit, bitcount;
2317 struct timespec tp;
2318
2319 memset(info, 0, sizeof(struct sysinfo));
2320
Oleg Nesterov45c64942013-07-03 15:05:01 -07002321 get_monotonic_boottime(&tp);
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002322 info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
2323
2324 get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT);
2325
2326 info->procs = nr_threads;
2327
2328 si_meminfo(info);
2329 si_swapinfo(info);
2330
2331 /*
2332 * If the sum of all the available memory (i.e. ram + swap)
2333 * is less than can be stored in a 32 bit unsigned long then
2334 * we can be binary compatible with 2.2.x kernels. If not,
2335 * well, in that case 2.2.x was broken anyways...
2336 *
2337 * -Erik Andersen <andersee@debian.org>
2338 */
2339
2340 mem_total = info->totalram + info->totalswap;
2341 if (mem_total < info->totalram || mem_total < info->totalswap)
2342 goto out;
2343 bitcount = 0;
2344 mem_unit = info->mem_unit;
2345 while (mem_unit > 1) {
2346 bitcount++;
2347 mem_unit >>= 1;
2348 sav_total = mem_total;
2349 mem_total <<= 1;
2350 if (mem_total < sav_total)
2351 goto out;
2352 }
2353
2354 /*
2355 * If mem_total did not overflow, multiply all memory values by
2356 * info->mem_unit and set it to 1. This leaves things compatible
2357 * with 2.2.x, and also retains compatibility with earlier 2.4.x
2358 * kernels...
2359 */
2360
2361 info->mem_unit = 1;
2362 info->totalram <<= bitcount;
2363 info->freeram <<= bitcount;
2364 info->sharedram <<= bitcount;
2365 info->bufferram <<= bitcount;
2366 info->totalswap <<= bitcount;
2367 info->freeswap <<= bitcount;
2368 info->totalhigh <<= bitcount;
2369 info->freehigh <<= bitcount;
2370
2371out:
2372 return 0;
2373}
2374
2375SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info)
2376{
2377 struct sysinfo val;
2378
2379 do_sysinfo(&val);
2380
2381 if (copy_to_user(info, &val, sizeof(struct sysinfo)))
2382 return -EFAULT;
2383
2384 return 0;
2385}
2386
2387#ifdef CONFIG_COMPAT
2388struct compat_sysinfo {
2389 s32 uptime;
2390 u32 loads[3];
2391 u32 totalram;
2392 u32 freeram;
2393 u32 sharedram;
2394 u32 bufferram;
2395 u32 totalswap;
2396 u32 freeswap;
2397 u16 procs;
2398 u16 pad;
2399 u32 totalhigh;
2400 u32 freehigh;
2401 u32 mem_unit;
2402 char _f[20-2*sizeof(u32)-sizeof(int)];
2403};
2404
2405COMPAT_SYSCALL_DEFINE1(sysinfo, struct compat_sysinfo __user *, info)
2406{
2407 struct sysinfo s;
2408
2409 do_sysinfo(&s);
2410
2411 /* Check to see if any memory value is too large for 32-bit and scale
2412 * down if needed
2413 */
Scotty Bauer0baae412014-10-09 15:30:26 -07002414 if (upper_32_bits(s.totalram) || upper_32_bits(s.totalswap)) {
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002415 int bitcount = 0;
2416
2417 while (s.mem_unit < PAGE_SIZE) {
2418 s.mem_unit <<= 1;
2419 bitcount++;
2420 }
2421
2422 s.totalram >>= bitcount;
2423 s.freeram >>= bitcount;
2424 s.sharedram >>= bitcount;
2425 s.bufferram >>= bitcount;
2426 s.totalswap >>= bitcount;
2427 s.freeswap >>= bitcount;
2428 s.totalhigh >>= bitcount;
2429 s.freehigh >>= bitcount;
2430 }
2431
2432 if (!access_ok(VERIFY_WRITE, info, sizeof(struct compat_sysinfo)) ||
2433 __put_user(s.uptime, &info->uptime) ||
2434 __put_user(s.loads[0], &info->loads[0]) ||
2435 __put_user(s.loads[1], &info->loads[1]) ||
2436 __put_user(s.loads[2], &info->loads[2]) ||
2437 __put_user(s.totalram, &info->totalram) ||
2438 __put_user(s.freeram, &info->freeram) ||
2439 __put_user(s.sharedram, &info->sharedram) ||
2440 __put_user(s.bufferram, &info->bufferram) ||
2441 __put_user(s.totalswap, &info->totalswap) ||
2442 __put_user(s.freeswap, &info->freeswap) ||
2443 __put_user(s.procs, &info->procs) ||
2444 __put_user(s.totalhigh, &info->totalhigh) ||
2445 __put_user(s.freehigh, &info->freehigh) ||
2446 __put_user(s.mem_unit, &info->mem_unit))
2447 return -EFAULT;
2448
2449 return 0;
2450}
2451#endif /* CONFIG_COMPAT */